diff --git a/INCUBATE/Dockerfile b/INCUBATE/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..9dc3749ccbc1f29ebc5d4b05de05bdf89abdde05 --- /dev/null +++ b/INCUBATE/Dockerfile @@ -0,0 +1,20 @@ +FROM debian:bullseye-slim + +RUN apt-get update +RUN apt-get install apache2 python3 python3-pip libmariadb-dev \ + libapache2-mod-wsgi-py3 python3-dev openssh-client nano -y + +# Configure timezone +ENV TZ=America/Mexico_City +RUN ln -snf /etc/l/usr/share/zoneinfo/$TZocaltime && echo $TZ > /etc/timezone + +# Application environment +WORKDIR /app + +COPY ./incubate/requirements.txt /app/requirements.txt + +RUN pip3 install -r /app/requirements.txt + +EXPOSE 80 + +CMD ["apachectl", "-D", "FOREGROUND"] diff --git a/INCUBATE/docker-compose.yml b/INCUBATE/docker-compose.yml new file mode 100644 index 0000000000000000000000000000000000000000..90c16640bf903033b2fcd037ed6b6e25dbc7c0d0 --- /dev/null +++ b/INCUBATE/docker-compose.yml @@ -0,0 +1,33 @@ +version: '3.3' + +services: + app: + build: + context: . + dockerfile: ./Dockerfile + container_name: incubate + #restart: always + depends_on: + - db + ports: + - 8000:8000 + volumes: + - ./incubate/:/app + + db: + image: mariadb + container_name: incubate-db + #restart: always + environment: + MYSQL_DATABASE: incubatedb + MYSQL_USER: incubatedb_user + MYSQL_PASSWORD: incubatedb123 + MYSQL_ROOT_PASSWORD: admin1234 + volumes: + - db:/var/lib/mysql + ports: + - 3310:3306 + +volumes: + db: + diff --git a/INCUBATE/incubate/incubate/Formulario/__init__.py b/INCUBATE/incubate/incubate/Formulario/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/INCUBATE/incubate/incubate/Formulario/__pycache__/__init__.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94fc0bb1111697fff4fb345c8b0cca3e7f3ad34d Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/__pycache__/__init__.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/__pycache__/admin.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/__pycache__/admin.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e264f82c0d5fc11bc09c991133e77e3a6d658034 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/__pycache__/admin.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/__pycache__/apps.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/__pycache__/apps.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e9d40dee0faad53ac250d9f36981cfaac023b9e4 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/__pycache__/apps.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/__pycache__/forms.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/__pycache__/forms.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fd5fcca6a336fa8311307da0ab9971923f1c74c3 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/__pycache__/forms.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/__pycache__/models.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/__pycache__/models.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..609807fb92a87844f9b5f7b589327593cd019881 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/__pycache__/models.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/__pycache__/urls.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/__pycache__/urls.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b5d6a51220cbb219399b8cdf3a06b9f4bd2df982 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/__pycache__/urls.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/__pycache__/utils.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/__pycache__/utils.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f24d30fb766aa7fe749ca73237c567a0ebd65130 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/__pycache__/utils.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/__pycache__/validadores.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/__pycache__/validadores.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4da272bd547386b9183058ae2a562a22c63c20b Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/__pycache__/validadores.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/__pycache__/views.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/__pycache__/views.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86076676c62a10c23637ab6e284829d0e16f1c96 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/__pycache__/views.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/admin.py b/INCUBATE/incubate/incubate/Formulario/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..ce5d3484ee420fca62f1e1430a6bf3be8467cd42 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/admin.py @@ -0,0 +1,16 @@ +from django.contrib import admin +from . import models + +admin.site.register(models.Categoria) +admin.site.register(models.Formularios) +admin.site.register(models.Campo) +admin.site.register(models.ContestaFormularios) +admin.site.register(models.DetalleContestaFormularios) +admin.site.register(models.OpcionesCampo) +admin.site.register(models.OpcionesCuestionario) + +admin.site.register(models.CuestionarioCampo) +admin.site.register(models.ContestaCuestionario) +admin.site.register(models.DetalleContestaCuestionario) +admin.site.register(models.Grafica) + diff --git a/INCUBATE/incubate/incubate/Formulario/apps.py b/INCUBATE/incubate/incubate/Formulario/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..a6ce396f1376d573c892cd2e2857d968c58a95c2 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class FormularioConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'Formulario' diff --git a/INCUBATE/incubate/incubate/Formulario/forms.py b/INCUBATE/incubate/incubate/Formulario/forms.py new file mode 100644 index 0000000000000000000000000000000000000000..68a15f4733af612edd35f3647dc7313e2a3dafb1 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/forms.py @@ -0,0 +1,158 @@ +from django import forms +from django.db import models + +from convocatoria.models import Convocatoria +from .models import ContestaFormularios, Campo, CuestionarioCampo, Formularios, OpcionesCampo, OpcionesCuestionario +from django.contrib.auth.decorators import login_required,permission_required + +class AplicaFormulario(forms.Form): + def __init__(self, *args, **kwargs): + campos = kwargs.pop('campos') + + super(AplicaFormulario, self).__init__(*args, **kwargs) + + TIPO_DATO = { + '1': forms.CharField(max_length=100,widget=forms.TextInput(attrs={'class':'form-control'})), + '2': forms.IntegerField(widget=forms.NumberInput(attrs={'class':'form-control'})), + '3': forms.DecimalField(widget=forms.NumberInput(attrs={'class':'form-control'})), + '4': forms.DateField(widget=forms.DateInput(attrs={'type':'date'})), + '5': forms.DateTimeField(widget=forms.widgets.DateTimeInput(attrs={'type':'date'})), + '6': forms.EmailField(widget=forms.TextInput(attrs={'class':'form-control'})), + '7': forms.ModelChoiceField(queryset=None,widget=forms.Select(attrs={'class':'form-control'})), + '8': forms.ModelChoiceField(queryset=None, widget=forms.RadioSelect()), + '9': forms.FileField(widget=forms.ClearableFileInput(attrs={'class': 'form-control'})) + } + + for campo in campos: + if campo.tipo_dato not in ['7','8']: + self.fields[f"{str(campo.campo)}"] = TIPO_DATO[campo.tipo_dato] + else: + opciones = [(op.opcion,op.opcion) for op in campo.opciones_campo.all()] + if campo.tipo_dato == '7': + self.fields[f"{str(campo.campo)}"] = forms.CharField( + widget = forms.Select(attrs={'class':'form-control'}, choices=opciones)) + else: + self.fields[f"{str(campo.campo)}"] = forms.CharField( + widget = forms.RadioSelect(choices=opciones)) + + if campo.requerida == '0': + self.fields[f"{str(campo.campo)}"].required = False + if campo.tipo_dato == '1': + self.fields[f"{str(campo.campo)}"].max_length = campo.size_texto + +class AplicaEvaluacion(forms.Form): + def __init__(self, *args, **kwargs): + cuestionario_campos = kwargs.pop('campos') + + super(AplicaEvaluacion, self).__init__(*args, **kwargs) + + TIPO_DATO = { + '1': forms.CharField(max_length=1500,widget=forms.TextInput(attrs={'class':'form-control'})), + '2': forms.IntegerField(widget=forms.NumberInput(attrs={'class':'form-control'})), + '3': forms.ModelChoiceField(queryset=None,widget=forms.Select(attrs={'class':'form-control'})), + '4': forms.ModelChoiceField(queryset=None, widget=forms.RadioSelect()), + } + + for campo in cuestionario_campos: + if campo.tipo_dato not in ['3','4']: + self.fields[f"{str(campo.campo)}"] = TIPO_DATO[campo.tipo_dato] + else: + opciones = [(op.opcion,op.opcion) for op in campo.opciones_cuestionarios.all()] + if campo.tipo_dato == '3': + self.fields[f"{str(campo.campo)}"] = forms.CharField( + widget = forms.Select(attrs={'class':'form-control'}, choices=opciones)) + else: + self.fields[f"{str(campo.campo)}"] = forms.CharField( + widget = forms.RadioSelect(choices=opciones)) + + if campo.requerida == '0': + self.fields[f"{str(campo.campo)}"].required = False + if campo.tipo_dato == '1': + self.fields[f"{str(campo.campo)}"].max_length = campo.size_texto + +class FormCampos2(forms.ModelForm): + class Meta: + model = Campo + exclude = ['formularios'] + widgets = { + 'campo': forms.TextInput(attrs={'class': 'form-control'}), + 'requerida': forms.Select(attrs={'class': 'form-control'}), + 'tipo_dato': forms.Select(attrs={'class': 'form-control'}), + 'size_texto': forms.NumberInput(attrs={'class': 'form-control'}), + } + + +class FormCuestionarioCampo3(forms.ModelForm): + class Meta: + model = CuestionarioCampo + exclude = ['formularios'] + + widgets = { + 'campo': forms.TextInput(attrs={'class': 'form-control'}), + 'requerida': forms.Select(attrs={'class': 'form-control'}), + 'tipo_dato': forms.Select(attrs={'class': 'form-control'}), + 'apartado': forms.Select(attrs={'class': 'form-control'}), + 'size_texto': forms.NumberInput(attrs={'class': 'form-control'}), + } + +class FormFormularios(forms.ModelForm): + class Meta: + model = Formularios + fields = ['nombre', 'descripcion', 'imagen'] + + widgets = { + 'nombre': forms.TextInput(attrs={'class': 'form-control'}), + 'descripcion': forms.Textarea(attrs={'class': 'form-control', 'rows': 4}), + 'imagen': forms.ClearableFileInput(attrs={'class': 'form-control-file'}), + } + +class FormFiltroSolicitud(forms.Form): + formularios = forms.CharField( + widget=forms.TextInput(attrs={'class':'form-control','placeholder':'Modalidad'}), + required=False + ) + usuario = forms.CharField( + widget=forms.TextInput(attrs={'class':'form-control','placeholder':'Usuario'}), + required=False + ) + +class FormFiltroCampos(forms.Form): + requerida = forms.CharField( + widget=forms.TextInput(attrs={'class':'form-control','placeholder':'requerida'}), + required=False + ) + tipo_dato = forms.CharField( + widget=forms.TextInput(attrs={'class':'form-control','placeholder':'tipo_dato'}), + required=False + ) + +class FormOpcionesCampo1(forms.ModelForm): + class Meta: + model = OpcionesCampo + exclude = ['campo'] + widgets = { + 'opcion': forms.TextInput(attrs={'class': 'form-control'}), + 'valor': forms.TextInput(attrs={'class': 'form-control'}), + } + +class FormOpcionesCampo2(forms.ModelForm): + class Meta: + model = OpcionesCuestionario + exclude = ['campo'] + fields = '__all__' + widgets = { + 'opcion': forms.TextInput(attrs={'class': 'form-control'}), + 'valor': forms.TextInput(attrs={'class': 'form-control'}), + } + +def handle_uploaded_file(f): + with open('Documentos/Usuario/'+f, 'wb+') as destination: + for chunk in f.chunks(): + destination.write(chunk) + +class FiltrosSolicitud(forms.Form): + comb=Convocatoria.objects.all() + convocatoria = forms.CharField( + widget=forms.TextInput(attrs={'placeholder':'Combocatoria','class':'form-control'}), + required=False, + ) \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0001_initial.py b/INCUBATE/incubate/incubate/Formulario/migrations/0001_initial.py new file mode 100644 index 0000000000000000000000000000000000000000..2a6d511c3a25b97a3bf2b10614d87ffc51c9bdce --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0001_initial.py @@ -0,0 +1,147 @@ +# Generated by Django 4.2.4 on 2023-08-21 19:33 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('convocatoria', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='Campo', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('campo', models.CharField(max_length=500)), + ('requerida', models.CharField(choices=[('1', 'Si'), ('0', 'No')], default='1', max_length=1)), + ('tipo_dato', models.CharField(choices=[('1', 'Texto'), ('2', 'Númerico'), ('3', 'Decimal'), ('4', 'Fecha'), ('5', 'Fecha y hora'), ('6', 'Correo electrónico'), ('7', 'Selección (Combo)'), ('8', 'Selección (Opciones)'), ('9', 'Archivo PDF')], max_length=2, verbose_name='Tipo de respuesta')), + ('size_texto', models.SmallIntegerField(blank=True, choices=[(25, '25'), (50, '50'), (100, '100'), (150, '150'), (200, '200'), (300, '300'), (500, '500')], null=True, verbose_name='Máximo de palabras apróximadamente')), + ], + ), + migrations.CreateModel( + name='Categoria', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('nombre', models.CharField(max_length=50)), + ], + ), + migrations.CreateModel( + name='ContestaCuestionario', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('fecha', models.DateTimeField(auto_now=True, verbose_name='Fecha')), + ('validacion', models.CharField(choices=[('2', 'Rechazado'), ('1', 'Aceptado'), ('0', 'Pendiente')], default=0, max_length=1)), + ], + ), + migrations.CreateModel( + name='ContestaFormularios', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('fecha', models.DateTimeField(auto_now=True, verbose_name='Fecha')), + ('validacion', models.CharField(choices=[('2', 'Rechazado'), ('1', 'Aceptado'), ('0', 'Pendiente')], default=0, max_length=1)), + ('convocatoria', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='convocatoria.convocatoria', verbose_name='Convocatoria')), + ], + ), + migrations.CreateModel( + name='CuestionarioCampo', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('campo', models.CharField(max_length=700)), + ('requerida', models.CharField(choices=[('1', 'Si'), ('0', 'No')], default='1', max_length=1)), + ('tipo_dato', models.CharField(choices=[('1', 'Texto'), ('2', 'Númerico'), ('3', 'Selección (Combo)'), ('4', 'Selección (Opciones)')], max_length=2, verbose_name='Tipo de respuesta')), + ('size_texto', models.SmallIntegerField(blank=True, null=True, verbose_name='Máximo de palabras aproximadamente')), + ], + ), + migrations.CreateModel( + name='Formularios', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('nombre', models.CharField(max_length=50, unique=True)), + ('descripcion', models.TextField(max_length=250, verbose_name='Descripción')), + ], + ), + migrations.CreateModel( + name='OpcionesCuestionario', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('opcion', models.CharField(max_length=150, verbose_name='Opción')), + ('valor', models.CharField(max_length=2, null=True)), + ('campo', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='opciones_cuestionarios', to='Formulario.cuestionariocampo', verbose_name='OpcionesCuestionario')), + ], + ), + migrations.CreateModel( + name='OpcionesCampo', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('opcion', models.CharField(max_length=150, verbose_name='Opción')), + ('valor', models.CharField(max_length=2)), + ('campo', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='opciones_campo', to='Formulario.campo', verbose_name='Opciones')), + ], + ), + migrations.CreateModel( + name='DetalleContestaFormularios', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('respuesta', models.CharField(max_length=1500)), + ('uploadedFile', models.FileField(blank=True, null=True, upload_to='Documentos')), + ('campo', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Formulario.campo', verbose_name='Campo')), + ('contesta_formularios', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Formulario.contestaformularios', verbose_name='Contesta')), + ], + ), + migrations.CreateModel( + name='DetalleContestaCuestionario', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('respuesta', models.CharField(max_length=1500)), + ('campo', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Formulario.cuestionariocampo', verbose_name='CuestionarioCuestionario')), + ('contesta_formularios', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Formulario.contestacuestionario', verbose_name='Contesta')), + ], + ), + migrations.AddField( + model_name='cuestionariocampo', + name='formularios', + field=models.ForeignKey(default=11, on_delete=django.db.models.deletion.CASCADE, related_name='cuestionario_campos', to='Formulario.formularios', verbose_name='Modalidad'), + ), + migrations.AddField( + model_name='contestaformularios', + name='formularios', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Formulario.formularios', verbose_name='Formularios'), + ), + migrations.AddField( + model_name='contestaformularios', + name='usuario', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='Usuario'), + ), + migrations.AddField( + model_name='contestacuestionario', + name='contestaFormularios', + field=models.OneToOneField(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='evaluacion', to='Formulario.contestaformularios', verbose_name='Contestar_formulario'), + ), + migrations.AddField( + model_name='contestacuestionario', + name='convocatoria', + field=models.ForeignKey(default=5, on_delete=django.db.models.deletion.CASCADE, to='convocatoria.convocatoria', verbose_name='Convocatoria'), + ), + migrations.AddField( + model_name='contestacuestionario', + name='formularios', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Formulario.formularios', verbose_name='Formularios'), + ), + migrations.AddField( + model_name='contestacuestionario', + name='usuario', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='Usuario'), + ), + migrations.AddField( + model_name='campo', + name='formularios', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='campos', to='Formulario.formularios', verbose_name='Modalidad'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0002_alter_detallecontestaformularios_respuesta.py b/INCUBATE/incubate/incubate/Formulario/migrations/0002_alter_detallecontestaformularios_respuesta.py new file mode 100644 index 0000000000000000000000000000000000000000..e7205dbbb305032815b6eb6db0c80749223f8591 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0002_alter_detallecontestaformularios_respuesta.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.4 on 2023-08-22 06:41 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='detallecontestaformularios', + name='respuesta', + field=models.TextField(verbose_name='Respuesta'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0003_alter_detallecontestaformularios_respuesta.py b/INCUBATE/incubate/incubate/Formulario/migrations/0003_alter_detallecontestaformularios_respuesta.py new file mode 100644 index 0000000000000000000000000000000000000000..7e1a2eef5c3bf5ec6e7900f8900fdcc8e93028ff --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0003_alter_detallecontestaformularios_respuesta.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.4 on 2023-08-22 06:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0002_alter_detallecontestaformularios_respuesta'), + ] + + operations = [ + migrations.AlterField( + model_name='detallecontestaformularios', + name='respuesta', + field=models.CharField(max_length=1500), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0004_cuestionariocampo_apartado_alter_campo_size_texto_and_more.py b/INCUBATE/incubate/incubate/Formulario/migrations/0004_cuestionariocampo_apartado_alter_campo_size_texto_and_more.py new file mode 100644 index 0000000000000000000000000000000000000000..c28194a338a6fe6957c983418a3b9a59aead53e8 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0004_cuestionariocampo_apartado_alter_campo_size_texto_and_more.py @@ -0,0 +1,28 @@ +# Generated by Django 4.2.4 on 2023-08-22 10:51 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0003_alter_detallecontestaformularios_respuesta'), + ] + + operations = [ + migrations.AddField( + model_name='cuestionariocampo', + name='apartado', + field=models.CharField(choices=[('1', 'Innovación'), ('2', 'Marketing'), ('3', 'Administración'), ('4', 'Finanzas')], default='1', max_length=2, verbose_name='Apartado'), + ), + migrations.AlterField( + model_name='campo', + name='size_texto', + field=models.SmallIntegerField(blank=True, choices=[(25, '25'), (50, '50'), (100, '100'), (150, '150'), (200, '200'), (300, '300'), (500, '500'), (1000, '1000'), (1500, '1500')], null=True, verbose_name='Máximo de palabras apróximadamente'), + ), + migrations.AlterField( + model_name='cuestionariocampo', + name='campo', + field=models.CharField(max_length=700, verbose_name='Criterio de Evaluacíon'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0005_alter_cuestionariocampo_size_texto.py b/INCUBATE/incubate/incubate/Formulario/migrations/0005_alter_cuestionariocampo_size_texto.py new file mode 100644 index 0000000000000000000000000000000000000000..1537b505fdde0e2c43ec47e8f0daf2d6248b3cf2 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0005_alter_cuestionariocampo_size_texto.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.4 on 2023-08-22 11:01 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0004_cuestionariocampo_apartado_alter_campo_size_texto_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='cuestionariocampo', + name='size_texto', + field=models.SmallIntegerField(blank=True, choices=[(25, '25'), (50, '50'), (100, '100'), (150, '150'), (200, '200'), (300, '300'), (500, '500'), (1000, '1000'), (1500, '1500')], default='1', null=True, verbose_name='Máximo de palabras apróximadamente'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0006_alter_cuestionariocampo_campo.py b/INCUBATE/incubate/incubate/Formulario/migrations/0006_alter_cuestionariocampo_campo.py new file mode 100644 index 0000000000000000000000000000000000000000..712b283eddb5f038128d9635e24953e2766e45e4 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0006_alter_cuestionariocampo_campo.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.4 on 2023-08-22 11:06 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0005_alter_cuestionariocampo_size_texto'), + ] + + operations = [ + migrations.AlterField( + model_name='cuestionariocampo', + name='campo', + field=models.TextField(verbose_name='Criterio de Evaluacíon'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0007_alter_cuestionariocampo_campo.py b/INCUBATE/incubate/incubate/Formulario/migrations/0007_alter_cuestionariocampo_campo.py new file mode 100644 index 0000000000000000000000000000000000000000..eaea22c3ef4eabe56d2e0eb14a6a1653431c45e4 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0007_alter_cuestionariocampo_campo.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.4 on 2023-08-22 11:12 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0006_alter_cuestionariocampo_campo'), + ] + + operations = [ + migrations.AlterField( + model_name='cuestionariocampo', + name='campo', + field=models.CharField(max_length=1000, verbose_name='Criterio de Evaluacíon'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0008_remove_contestacuestionario_usuario_and_more.py b/INCUBATE/incubate/incubate/Formulario/migrations/0008_remove_contestacuestionario_usuario_and_more.py new file mode 100644 index 0000000000000000000000000000000000000000..112884d4229d7768d1ed8696efbabd1d5f853816 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0008_remove_contestacuestionario_usuario_and_more.py @@ -0,0 +1,21 @@ +# Generated by Django 4.2.4 on 2023-08-22 15:26 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0007_alter_cuestionariocampo_campo'), + ] + + operations = [ + migrations.RemoveField( + model_name='contestacuestionario', + name='usuario', + ), + migrations.RemoveField( + model_name='contestacuestionario', + name='validacion', + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0009_contestacuestionario_usuario_and_more.py b/INCUBATE/incubate/incubate/Formulario/migrations/0009_contestacuestionario_usuario_and_more.py new file mode 100644 index 0000000000000000000000000000000000000000..d14e6a7b9e5476df17b9e411afe41dde739dfed9 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0009_contestacuestionario_usuario_and_more.py @@ -0,0 +1,26 @@ +# Generated by Django 4.2.4 on 2023-08-22 16:12 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('Formulario', '0008_remove_contestacuestionario_usuario_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='contestacuestionario', + name='usuario', + field=models.ForeignKey(default=0, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='Usuario'), + ), + migrations.AddField( + model_name='contestacuestionario', + name='validacion', + field=models.CharField(choices=[('2', 'Rechazado'), ('1', 'Aceptado'), ('0', 'Pendiente')], default=0, max_length=1), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0010_alter_contestacuestionario_usuario.py b/INCUBATE/incubate/incubate/Formulario/migrations/0010_alter_contestacuestionario_usuario.py new file mode 100644 index 0000000000000000000000000000000000000000..3b908616df1f7efddabad870895dacf13b9e3fd4 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0010_alter_contestacuestionario_usuario.py @@ -0,0 +1,21 @@ +# Generated by Django 4.2.4 on 2023-08-22 16:13 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('Formulario', '0009_contestacuestionario_usuario_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='contestacuestionario', + name='usuario', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='Usuario'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0011_remove_contestacuestionario_validacion.py b/INCUBATE/incubate/incubate/Formulario/migrations/0011_remove_contestacuestionario_validacion.py new file mode 100644 index 0000000000000000000000000000000000000000..eaf10666181234f438551aa80463f66a23b7d2f5 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0011_remove_contestacuestionario_validacion.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.4 on 2023-08-22 16:54 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0010_alter_contestacuestionario_usuario'), + ] + + operations = [ + migrations.RemoveField( + model_name='contestacuestionario', + name='validacion', + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0012_detallecontestacuestionario_contestaformularios.py b/INCUBATE/incubate/incubate/Formulario/migrations/0012_detallecontestacuestionario_contestaformularios.py new file mode 100644 index 0000000000000000000000000000000000000000..927c0457db69f5d6590bdbcf5217084f90b11d25 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0012_detallecontestacuestionario_contestaformularios.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.4 on 2023-08-23 07:15 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0011_remove_contestacuestionario_validacion'), + ] + + operations = [ + migrations.AddField( + model_name='detallecontestacuestionario', + name='contestaFormularios', + field=models.OneToOneField(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='evaluacion1', to='Formulario.contestaformularios', verbose_name='Contestar_formulario1'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0013_remove_detallecontestacuestionario_contestaformularios.py b/INCUBATE/incubate/incubate/Formulario/migrations/0013_remove_detallecontestacuestionario_contestaformularios.py new file mode 100644 index 0000000000000000000000000000000000000000..d883161e7b4b5a244c096cfb6342223bce14eaa3 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0013_remove_detallecontestacuestionario_contestaformularios.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.4 on 2023-08-23 07:47 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0012_detallecontestacuestionario_contestaformularios'), + ] + + operations = [ + migrations.RemoveField( + model_name='detallecontestacuestionario', + name='contestaFormularios', + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0014_detallecontestacuestionario_contestaformularios1.py b/INCUBATE/incubate/incubate/Formulario/migrations/0014_detallecontestacuestionario_contestaformularios1.py new file mode 100644 index 0000000000000000000000000000000000000000..c19042ef21904c796ac1e338b0434d723360ae00 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0014_detallecontestacuestionario_contestaformularios1.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.4 on 2023-08-23 07:48 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0013_remove_detallecontestacuestionario_contestaformularios'), + ] + + operations = [ + migrations.AddField( + model_name='detallecontestacuestionario', + name='contestaFormularios1', + field=models.OneToOneField(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='evaluacion1', to='Formulario.contestaformularios', verbose_name='Contestar_formulario1'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0015_alter_detallecontestacuestionario_contestaformularios1.py b/INCUBATE/incubate/incubate/Formulario/migrations/0015_alter_detallecontestacuestionario_contestaformularios1.py new file mode 100644 index 0000000000000000000000000000000000000000..13d0c6e48bf8ff7422f05a9763ff1eeea7aea88e --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0015_alter_detallecontestacuestionario_contestaformularios1.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.4 on 2023-08-23 08:12 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0014_detallecontestacuestionario_contestaformularios1'), + ] + + operations = [ + migrations.AlterField( + model_name='detallecontestacuestionario', + name='contestaFormularios1', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='Formulario.contestaformularios', verbose_name='Contestar_formulario1'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0016_alter_detallecontestacuestionario_contestaformularios1.py b/INCUBATE/incubate/incubate/Formulario/migrations/0016_alter_detallecontestacuestionario_contestaformularios1.py new file mode 100644 index 0000000000000000000000000000000000000000..ca3099a6fab724a8d9b80ef7b85ee9746c6696a4 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0016_alter_detallecontestacuestionario_contestaformularios1.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.4 on 2023-08-23 08:21 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0015_alter_detallecontestacuestionario_contestaformularios1'), + ] + + operations = [ + migrations.AlterField( + model_name='detallecontestacuestionario', + name='contestaFormularios1', + field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='Formulario.contestaformularios', verbose_name='Contestar_formulario1'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0017_alter_contestacuestionario_contestaformularios.py b/INCUBATE/incubate/incubate/Formulario/migrations/0017_alter_contestacuestionario_contestaformularios.py new file mode 100644 index 0000000000000000000000000000000000000000..9991580ca83f59f1e6bef8751f852cc2d4d10c44 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0017_alter_contestacuestionario_contestaformularios.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.4 on 2023-08-23 08:35 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0016_alter_detallecontestacuestionario_contestaformularios1'), + ] + + operations = [ + migrations.AlterField( + model_name='contestacuestionario', + name='contestaFormularios', + field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='evaluaciones', to='Formulario.contestaformularios', verbose_name='Contestar_formulario'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0018_grafica.py b/INCUBATE/incubate/incubate/Formulario/migrations/0018_grafica.py new file mode 100644 index 0000000000000000000000000000000000000000..9c580cac661e1129949215a93abc14c2d3d4bb82 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0018_grafica.py @@ -0,0 +1,25 @@ +# Generated by Django 4.2.4 on 2023-08-23 12:14 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('Formulario', '0017_alter_contestacuestionario_contestaformularios'), + ] + + operations = [ + migrations.CreateModel( + name='Grafica', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('valor_numerico', models.DecimalField(decimal_places=2, max_digits=10, verbose_name='Valor Numérico')), + ('contesta_formularios', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Formulario.contestaformularios', verbose_name='ContestaFormularios')), + ('usuario', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='Usuario')), + ], + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0019_alter_grafica_valor_numerico.py b/INCUBATE/incubate/incubate/Formulario/migrations/0019_alter_grafica_valor_numerico.py new file mode 100644 index 0000000000000000000000000000000000000000..d5ebac2cb5c35fff0d2ab9784b1fa987e959b59e --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0019_alter_grafica_valor_numerico.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.4 on 2023-08-23 13:50 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0018_grafica'), + ] + + operations = [ + migrations.AlterField( + model_name='grafica', + name='valor_numerico', + field=models.DecimalField(decimal_places=2, default=0, max_digits=10, verbose_name='Valor Numérico'), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0020_formularios_imagen.py b/INCUBATE/incubate/incubate/Formulario/migrations/0020_formularios_imagen.py new file mode 100644 index 0000000000000000000000000000000000000000..ffd9751c9154c2bee88e11eb3c4e6a0da793a6bc --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0020_formularios_imagen.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.7 on 2023-12-12 04:30 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0019_alter_grafica_valor_numerico'), + ] + + operations = [ + migrations.AddField( + model_name='formularios', + name='imagen', + field=models.ImageField(blank=True, null=True, upload_to='Imagenes/formularios', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['png', 'jpg'], message='Sólo se permiten imágenes PNG')], verbose_name=''), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0021_alter_formularios_imagen.py b/INCUBATE/incubate/incubate/Formulario/migrations/0021_alter_formularios_imagen.py new file mode 100644 index 0000000000000000000000000000000000000000..8007bb994cc7c02d7fe41576ad4b3adad0fbae5d --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0021_alter_formularios_imagen.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.7 on 2023-12-12 05:23 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0020_formularios_imagen'), + ] + + operations = [ + migrations.AlterField( + model_name='formularios', + name='imagen', + field=models.ImageField(blank=True, null=True, upload_to='formulariosImg/', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['png', 'jpg', 'PNG'], message='Sólo se permiten imágenes PNG')]), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/0022_alter_formularios_imagen.py b/INCUBATE/incubate/incubate/Formulario/migrations/0022_alter_formularios_imagen.py new file mode 100644 index 0000000000000000000000000000000000000000..eb6f5911c2557743a6512495998964da4bd0e35d --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/migrations/0022_alter_formularios_imagen.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.7 on 2023-12-12 17:40 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0021_alter_formularios_imagen'), + ] + + operations = [ + migrations.AlterField( + model_name='formularios', + name='imagen', + field=models.ImageField(upload_to='formulariosImg/', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['png', 'jpg', 'PNG'], message='Sólo se permiten imágenes PNG')]), + ), + ] diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__init__.py b/INCUBATE/incubate/incubate/Formulario/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0001_initial.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0001_initial.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5d2ea7465ca2b51f687eebe7b10771434786a081 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0001_initial.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0002_alter_detallecontestaformularios_respuesta.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0002_alter_detallecontestaformularios_respuesta.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a22e93cee9ba3ddbac16e7ffad7617ebb8c333e Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0002_alter_detallecontestaformularios_respuesta.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0003_alter_detallecontestaformularios_respuesta.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0003_alter_detallecontestaformularios_respuesta.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b9f7e1ffb3941c0031402db4d769f594b014ad96 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0003_alter_detallecontestaformularios_respuesta.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0004_cuestionariocampo_apartado_alter_campo_size_texto_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0004_cuestionariocampo_apartado_alter_campo_size_texto_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09865cfd2d756e235aaed7669be81f1d6cc60ab5 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0004_cuestionariocampo_apartado_alter_campo_size_texto_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0005_alter_cuestionariocampo_size_texto.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0005_alter_cuestionariocampo_size_texto.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..698260aa39ca22ef3c601e1c0437d57e329610a5 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0005_alter_cuestionariocampo_size_texto.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0006_alter_cuestionariocampo_campo.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0006_alter_cuestionariocampo_campo.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..91209a0d742a6a45d4b0e208d45cb40b83f8d630 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0006_alter_cuestionariocampo_campo.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0007_alter_cuestionariocampo_campo.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0007_alter_cuestionariocampo_campo.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..069f7aab2069603eee1b2887569aa5cafd16927d Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0007_alter_cuestionariocampo_campo.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0008_remove_contestacuestionario_usuario_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0008_remove_contestacuestionario_usuario_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e8e438696f2b77302f000e06798b8ffe9b51513f Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0008_remove_contestacuestionario_usuario_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0009_contestacuestionario_usuario_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0009_contestacuestionario_usuario_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45be9ada44576548854de922110bead936e18ef0 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0009_contestacuestionario_usuario_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0010_alter_contestacuestionario_usuario.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0010_alter_contestacuestionario_usuario.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4766aac637683f0d1946169d13c0b87f5ea84e8e Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0010_alter_contestacuestionario_usuario.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0011_remove_contestacuestionario_validacion.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0011_remove_contestacuestionario_validacion.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a51c242d230b752a032f050b3288d4b2454e19d6 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0011_remove_contestacuestionario_validacion.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0012_detallecontestacuestionario_contestaformularios.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0012_detallecontestacuestionario_contestaformularios.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2511f28196c1794c3d83e906ae293bc62e2eaec0 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0012_detallecontestacuestionario_contestaformularios.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0013_alter_detallecontestacuestionario_contestaformularios.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0013_alter_detallecontestacuestionario_contestaformularios.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1dd2f9b1aa428c73db4378eaed031fd171b881b7 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0013_alter_detallecontestacuestionario_contestaformularios.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0013_remove_detallecontestacuestionario_contestaformularios.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0013_remove_detallecontestacuestionario_contestaformularios.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7f745f46f9150491d82b9cc6bc68388e3ff13991 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0013_remove_detallecontestacuestionario_contestaformularios.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_alter_detallecontestacuestionario_contestaformularios.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_alter_detallecontestacuestionario_contestaformularios.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d400e22e2213617419e76afe2082fe9716da7526 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_alter_detallecontestacuestionario_contestaformularios.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_detallecontestacuestionario_contestaformularios.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_detallecontestacuestionario_contestaformularios.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce00452d8e47ef5a04209b2fbdc6a559ea650c46 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_detallecontestacuestionario_contestaformularios.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_detallecontestacuestionario_contestaformularios1.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_detallecontestacuestionario_contestaformularios1.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..16349efbd7774bf59e15e119b50bda40884ab623 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_detallecontestacuestionario_contestaformularios1.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_remove_detallecontestacuestionario_contestaformularios.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_remove_detallecontestacuestionario_contestaformularios.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8f5a5a81a6d6d1893a6de03b288f421f7b2c345 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0014_remove_detallecontestacuestionario_contestaformularios.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0015_alter_detallecontestacuestionario_contestaformularios.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0015_alter_detallecontestacuestionario_contestaformularios.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67b094f57fd016b9505997ac51beae340c60cd32 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0015_alter_detallecontestacuestionario_contestaformularios.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0015_alter_detallecontestacuestionario_contestaformularios1.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0015_alter_detallecontestacuestionario_contestaformularios1.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fca2e3fb8dd3858fdd17f5ee7a43fc247bd95ae4 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0015_alter_detallecontestacuestionario_contestaformularios1.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0015_remove_detallecontestacuestionario_contestaformularios.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0015_remove_detallecontestacuestionario_contestaformularios.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..30cc5b772c532c73bd12166908bc9a7010818f10 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0015_remove_detallecontestacuestionario_contestaformularios.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0016_alter_detallecontestacuestionario_contestaformularios1.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0016_alter_detallecontestacuestionario_contestaformularios1.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9fafbfa5f18078b89bad5b604ba594aaf0ffa4ba Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0016_alter_detallecontestacuestionario_contestaformularios1.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0017_alter_contestacuestionario_contestaformularios.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0017_alter_contestacuestionario_contestaformularios.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f5909fd0fc68634a36ac3b0c8d70568c6a0de758 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0017_alter_contestacuestionario_contestaformularios.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0018_grafica.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0018_grafica.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ef95dcbcbfa190b5de87fd96cbe099ef6ed66687 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0018_grafica.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0019_alter_grafica_valor_numerico.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0019_alter_grafica_valor_numerico.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c9667532ecb6a059a2843ff38f7ec381e1c2f35f Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0019_alter_grafica_valor_numerico.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0020_formularios_imagen.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0020_formularios_imagen.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af16c527714201465ffe5fe52a06f0adb38ad382 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0020_formularios_imagen.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0021_alter_formularios_imagen.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0021_alter_formularios_imagen.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..29e427b92dbd775921779409741b27f8a0b6c618 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0021_alter_formularios_imagen.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0022_alter_formularios_imagen.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0022_alter_formularios_imagen.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3654de2dfd0775bd61e510bdb8f0ea679c72c89b Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/0022_alter_formularios_imagen.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/__init__.cpython-39.pyc b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a7628c6581116f88cef4e42cf780b8b8b43f1f53 Binary files /dev/null and b/INCUBATE/incubate/incubate/Formulario/migrations/__pycache__/__init__.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/Formulario/models.py b/INCUBATE/incubate/incubate/Formulario/models.py new file mode 100644 index 0000000000000000000000000000000000000000..c490c495366c9544a8ab4e44c45825fef05d606c --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/models.py @@ -0,0 +1,166 @@ +from django.db import models +from django.contrib.auth.models import User +from convocatoria.models import Convocatoria +from .validadores import documentos_validador,imagen_validador + +class Categoria(models.Model): + nombre = models.CharField(max_length=50) + + def __str__(self): + return self.nombre + +#,unique=True +class Formularios(models.Model): + nombre = models.CharField(max_length=50,unique=True) + descripcion = models.TextField("Descripción", max_length=250) + imagen = models.ImageField(upload_to='formulariosImg/',validators=[imagen_validador],null=False,blank=False) + + def __str__(self): + return self.nombre + +SI_NO=[ + ('1','Si'), + ('0','No'), +] + +VALIDACION=[ + ('2','Rechazado'), + ('1','Aceptado'), + ('0','Pendiente'), +] + +SIZE_TEXTO = [ + (25,'25'), + (50,'50'), + (100,'100'), + (150,'150'), + (200,'200'), + (300,'300'), + (500,'500'), + (1000,'1000'), + (1500,'1500'), + +] +TIPO_DATO=[ + ('1','Texto'), + ('2','Númerico'), + ('3','Decimal'), + ('4','Fecha'), + ('5','Fecha y hora'), + ('6','Correo electrónico'), + ('7','Selección (Combo)'), + ('8','Selección (Opciones)'), + ('9','Archivo PDF'), +] + +TIPO_DATO2=[ + ('1','Texto'), + ('2','Númerico'), + ('3','Selección (Combo)'), + ('4','Selección (Opciones)'), +] + +APARTADOS=[ + ('1','Innovación'), + ('2','Marketing'), + ('3','Administración'), + ('4','Finanzas'), +] + +class Campo(models.Model): + campo = models.CharField(max_length=500) + requerida = models.CharField(choices=SI_NO, max_length=1, default='1') + tipo_dato = models.CharField("Tipo de respuesta", max_length=2, choices=TIPO_DATO) + size_texto = models.SmallIntegerField("Máximo de palabras apróximadamente", null=True, + blank=True, choices=SIZE_TEXTO) + formularios = models.ForeignKey("Formulario.Formularios", verbose_name="Modalidad", + on_delete=models.CASCADE, related_name='campos', null=True) + + def __str__(self): + return self.campo + +class OpcionesCampo(models.Model): + opcion = models.CharField("Opción", max_length=150) + valor = models.CharField(max_length=2) + campo = models.ForeignKey("Formulario.Campo", verbose_name="Opciones", + on_delete=models.CASCADE, related_name='opciones_campo') + + def __str__(self): + return self.opcion + +class ContestaFormularios(models.Model): + fecha = models.DateTimeField("Fecha", auto_now=True) + formularios = models.ForeignKey("Formulario.Formularios", verbose_name="Formularios", on_delete=models.CASCADE) + usuario = models.ForeignKey(User, verbose_name="Usuario", on_delete=models.CASCADE) + validacion = models.CharField(choices=VALIDACION, max_length=1, default=0) + convocatoria = models.ForeignKey(Convocatoria, verbose_name="Convocatoria", on_delete=models.CASCADE, null=True) + + def __str__(self): + return self.formularios.nombre +" realizada por: "+ self.usuario.username + +class DetalleContestaFormularios(models.Model): + campo = models.ForeignKey("Formulario.Campo", verbose_name="Campo", on_delete=models.CASCADE) + respuesta = models.CharField(max_length=1500) + uploadedFile = models.FileField(upload_to = "Documentos", null=True,blank=True) + contesta_formularios = models.ForeignKey("Formulario.ContestaFormularios", verbose_name="Contesta", on_delete=models.CASCADE) + + def __str__(self): + return self.campo.campo + self.respuesta + +class CuestionarioCampo(models.Model): + campo = models.CharField("Criterio de Evaluacíon",max_length=1000) + requerida = models.CharField(choices=SI_NO, max_length=1, default='1') + tipo_dato = models.CharField("Tipo de respuesta", max_length=2, choices=TIPO_DATO2) + apartado = models.CharField("Apartado", max_length=2, choices=APARTADOS, default='1') + size_texto = models.SmallIntegerField("Máximo de palabras apróximadamente", null=True, + blank=True, choices=SIZE_TEXTO,default='1') + formularios = models.ForeignKey( + "Formulario.Formularios", + verbose_name="Modalidad", + on_delete=models.CASCADE, + related_name='cuestionario_campos', + default=11 + ) + + def __str__(self): + return self.campo + +class OpcionesCuestionario(models.Model): + opcion = models.CharField("Opción", max_length=150) + valor = models.CharField(max_length=2, null=True) + campo = models.ForeignKey("Formulario.CuestionarioCampo", verbose_name="OpcionesCuestionario", + on_delete=models.CASCADE, related_name='opciones_cuestionarios') + + def __str__(self): + return self.opcion + +class ContestaCuestionario(models.Model): + fecha = models.DateTimeField("Fecha", auto_now=True) + formularios = models.ForeignKey("Formulario.Formularios", verbose_name="Formularios", on_delete=models.CASCADE) + usuario = models.ForeignKey(User, verbose_name="Usuario", on_delete=models.CASCADE) + convocatoria = models.ForeignKey(Convocatoria, verbose_name="Convocatoria", on_delete=models.CASCADE, default=5) + contestaFormularios = models.ForeignKey(ContestaFormularios, verbose_name="Contestar_formulario", related_name='evaluaciones', + on_delete=models.CASCADE, null=True) + + def __str__(self): + return self.formularios.nombre + " del usuario: " + self.usuario.username + + +class DetalleContestaCuestionario(models.Model): + campo = models.ForeignKey("Formulario.CuestionarioCampo", verbose_name="CuestionarioCuestionario", on_delete=models.CASCADE) + respuesta = models.CharField(max_length=1500) + contesta_formularios = models.ForeignKey("Formulario.ContestaCuestionario", verbose_name="Contesta", on_delete=models.CASCADE) + contestaFormularios1=models.ForeignKey("Formulario.ContestaFormularios", verbose_name="Contestar_formulario1", + on_delete=models.CASCADE, default=1) + def __str__(self): + return self.campo.campo + self.respuesta +#aquixd +# todo bien asta + +class Grafica(models.Model): + usuario = models.ForeignKey(User, verbose_name="Usuario", on_delete=models.CASCADE) + contesta_formularios = models.ForeignKey(ContestaFormularios, verbose_name="ContestaFormularios", on_delete=models.CASCADE) + valor_numerico = models.DecimalField("Valor Numérico", max_digits=10, decimal_places=2, default=0) # Cambia los parámetros según tus necesidades + + def __str__(self): + return f"Grafica de {self.usuario.username} - {self.contesta_formularios}" \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/templates/Formulario/campo_form.html b/INCUBATE/incubate/incubate/Formulario/templates/Formulario/campo_form.html new file mode 100644 index 0000000000000000000000000000000000000000..24a18342f2848dfaaf94dd94bdcce8ba08c37d39 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/Formulario/campo_form.html @@ -0,0 +1,44 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Nuevo Campo +{% endblock titulo %} + +{% block encabezado %} +
+
+
+

Agregar un nuevo campo

+
+
+
+{% endblock encabezado %} + +{% block contenido %} +
+
+
+ {% if messages %} + {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} + {% endif %} +
+ {% csrf_token %} + {{ form.as_p }} +
+
+ +
+
+ Regresar +
+
+
+
+
+
+{% endblock contenido %} diff --git a/INCUBATE/incubate/incubate/Formulario/templates/Formulario/contestacuestionario_list.html b/INCUBATE/incubate/incubate/Formulario/templates/Formulario/contestacuestionario_list.html new file mode 100644 index 0000000000000000000000000000000000000000..9914497ec181fd77aa20f80a6d32c41321560619 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/Formulario/contestacuestionario_list.html @@ -0,0 +1,46 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Solicitudes +{% endblock titulo %} + +{% block encabezado %} +
+
+
+

Lista de solicitudes

+
+
+
+{% endblock encabezado %} + +{% block contenido %} +
+
+
+
+ {% csrf_token %} +
+ + + + + + + + + + {% for detalle in detalles %} + + + + + + {% endfor %} + +
CampoRespuestaContesta Formularios
{{ detalle.campo }}{{ detalle.respuesta }}{{ detalle.contesta_formularios }}
+
+
+
+{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/templates/Formulario/formularios_form.html b/INCUBATE/incubate/incubate/Formulario/templates/Formulario/formularios_form.html new file mode 100644 index 0000000000000000000000000000000000000000..b4565d692ab3cba3bc357151b4bb0590e7cbd5f2 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/Formulario/formularios_form.html @@ -0,0 +1,44 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Creación de Modalidad +{% endblock titulo %} + +{% block encabezado %} +
+
+
+

{{ accion }} Modalidad

+
+
+
+{% endblock encabezado %} + +{% block contenido %} +
+
+
+
+ {% csrf_token %} +
+ + {{ form.nombre }} +
+
+ + {{ form.descripcion }} +
+
+ + {{ form.imagen }} +
+
+ + Regresar +
+
+
+
+
+{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/templates/Formulario/opcionescampo_form.html b/INCUBATE/incubate/incubate/Formulario/templates/Formulario/opcionescampo_form.html new file mode 100644 index 0000000000000000000000000000000000000000..0b198a362c02f89682060e8f5a49ef34045134b8 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/Formulario/opcionescampo_form.html @@ -0,0 +1,40 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Nueva Opción de Campo +{% endblock titulo %} + +{% block encabezado %} +
+
+
+

Agregar Opción de Campo

+
+
+
+{% endblock encabezado %} + +{% block contenido %} +
+
+
+ {% if messages %} + {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} + {% endif %} +
+ {% csrf_token %} + {{ form.as_p }} +
+ + Regresar +
+
+
+
+
+{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/templates/campo_form.html b/INCUBATE/incubate/incubate/Formulario/templates/campo_form.html new file mode 100644 index 0000000000000000000000000000000000000000..253706f56b90148a2af245abc6f9baa150a5a956 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/campo_form.html @@ -0,0 +1,34 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Nuevo Campo +{% endblock titulo %} + +{% block encabezado %} +

Agregar un nuevo campo

+{% endblock encabezado %} + +{% block contenido %} +
+
+ {% if messages %} + {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} + {% endif %} +
+
+ {% csrf_token %} +
+ {{ form.as_p }} +
+
+ + Regresar +
+
+
+{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/templates/campo_form1.html b/INCUBATE/incubate/incubate/Formulario/templates/campo_form1.html new file mode 100644 index 0000000000000000000000000000000000000000..bd2bf526cca2d4ea9e222dbe009ba863745f5208 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/campo_form1.html @@ -0,0 +1,34 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Nuevo Campo Evaluacion +{% endblock titulo %} + +{% block encabezado %} +

Agregar un nuevo campo a la evaluion

+{% endblock encabezado %} + +{% block contenido %} +
+
+ {% if messages %} + {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} + {% endif %} +
+
+ {% csrf_token %} +
+ {{ form.as_p }} +
+
+ + Regresar +
+
+
+{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/templates/camposFormularios.html b/INCUBATE/incubate/incubate/Formulario/templates/camposFormularios.html new file mode 100644 index 0000000000000000000000000000000000000000..e40b68ee1172d341ee25d4a01b94c98cf85be3dd --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/camposFormularios.html @@ -0,0 +1,172 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Lista de campos +{% endblock titulo %} + +{% block encabezado %} +

Campos de la modalidad: {{ nom_formulario }}

+{% endblock encabezado %} + +{% block contenido %} +
+
+ +
+
+
+
+ + + + + + + + + + {% for camposFormulario in camposFormularios %} + + + + {% if camposFormulario.tipo_dato == "1" %} + + {% elif camposFormulario.tipo_dato == "2" %} + + {% elif camposFormulario.tipo_dato == "3" %} + + {% elif camposFormulario.tipo_dato == "4" %} + + {% elif camposFormulario.tipo_dato == "5" %} + + {% elif camposFormulario.tipo_dato == "6" %} + + {% elif camposFormulario.tipo_dato|stringformat:"s" in "7 8" %} + + {% else %} + + {% endif %} + + + + {% empty %} + + + + {% endfor %} + +
CampoTipo del campoOpciones
{{ camposFormulario.campo }}TextoNuméricoDecimalFechaFecha y horaCorreo electrónicoSelecciónArchivo PDF + {% if camposFormulario.tipo_dato|stringformat:"s" in "7 8" %} +
+ + +
+ +
+
+ {% else %} +
+ + +
+
+ + +
+
+
+ {% endif %} +
+

No hay campos registrados

+
+
+
+
+{% endblock contenido %} + +{% block contenido2 %} +

Evaluación para la modalidad: {{ nom_formulario }}

+
+ +
+
+
+
+ + + + + + + + + + + {% for evaluform in evaluacionFormulario %} + + + {% if evaluform.apartado == "1" %} + + {% elif evaluform.apartado == "2" %} + + {% elif evaluform.apartado == "3" %} + + {% else %} + + {% endif %} + + {% if evaluform.tipo_dato == "1" %} + + {% elif evaluform.tipo_dato == "2" %} + + {% elif evaluform.tipo_dato|stringformat:"s" in "3 4" %} + + {% else %} + + {% endif %} + + + + + {% empty %} + + + + {% endfor %} + +
CampoApartadoTipo del campoOpciones
{{ evaluform.campo }}InnovaciónMarketingAdministraciónFinanzasTextoNuméricoSelecciónSelección (Opciones) + {% if evaluform.tipo_dato|stringformat:"s" in "3 4" %} + Agregar opción + {% endif %} + Editar + Eliminar +
+

No hay campos registrados

+
+
+
+
+
+{% endblock contenido2 %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/templates/contestaFormularios.html b/INCUBATE/incubate/incubate/Formulario/templates/contestaFormularios.html new file mode 100644 index 0000000000000000000000000000000000000000..3917d4d79902202462dbcebcb2f9bc0faf9027b6 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/contestaFormularios.html @@ -0,0 +1,64 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Solicitudes +{% endblock titulo %} + +{% block encabezado %} +

Lista de solicitudes

+{% endblock encabezado %} + +{% block contenido %} + +
+
+ + + + + + + + + + + + + {% for contestaFormulario in contestaFormularios %} + + + + + + + + + {% empty %} + + + + {% endfor %} + +
FechaModalidadEquipoValidaciónConvocatoriaOpciones
{{ contestaFormulario.fecha }}{{ contestaFormulario.formularios }} + {{ contestaFormulario.usuario.username}} + + {% if contestaFormulario.validacion == "0" %} + Pendiente + {% elif contestaFormulario.validacion == "1" %} + Aceptado + {% else %} + Rechazado + {% endif %} + De {{ contestaFormulario.convocatoria.fecha_inicio }} + +
+

No hay solicitudes registradas

+
+
+
+{% endblock contenido %} + diff --git a/INCUBATE/incubate/incubate/Formulario/templates/contestaFormularios1.html b/INCUBATE/incubate/incubate/Formulario/templates/contestaFormularios1.html new file mode 100644 index 0000000000000000000000000000000000000000..9b2f19c5f102760cb018f98a024f1b2d6f5dd5af --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/contestaFormularios1.html @@ -0,0 +1,139 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Solicitudes +{% endblock titulo %} + +{% block encabezado %} +

Lista de solicitudes

+{% endblock encabezado %} + +{% block contenido %} +{% for grupo in request.user.groups.all %} + {% if 'Evaluador' in grupo.name %} +
+ + +
+ + + + + + + + + + + + + {% for contestaFormulario in contestaFormulariosEva %} + + + + + + + + + {% empty %} + + + + {% endfor %} + +
FechaModalidadEquipoValidaciónConvocatoriaOpciones
{{ contestaFormulario.fecha }}{{ contestaFormulario.formularios }} + + {{ contestaFormulario.usuario.username}} + + + {% if contestaFormulario.validacion == "0" %} + Pendiente + {% elif contestaFormulario.validacion == "1" %} + Aceptado + {% else %} + Rechazado + {% endif %} + De {{ contestaFormulario.convocatoria.fecha_inicio }} + +
+

No hay solicitudes registradas

+
+
+
+ + {% endif %} +{% endfor %} + +{% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} +
+
+ {% csrf_token %} +
+ +
+ +
+
+
+ +
+ + + + + + + + + + + + + + {% for contestaFormulario in contestaFormularios %} + + + + + + + + + + {% empty %} + + + + {% endfor %} + +
FechaModalidadEquipoValidaciónConvocatoriaPuntajeOpciones
{{ contestaFormulario.contesta_formularios.fecha}}{{ contestaFormulario.contesta_formularios.formularios }} + {{ contestaFormulario.usuario.username}} + + {% if contestaFormulario.contesta_formularios.validacion == "0" %} + Pendiente + {% elif contestaFormulario.contesta_formularios.validacion == "1" %} + Aceptado + {% else %} + Rechazado + {% endif %} + De {{ contestaFormulario.contesta_formularios.convocatoria.fecha_inicio }} {{ contestaFormulario.valor_numerico}} + +
+

No hay solicitudes registradas

+
+
+
+ {% endif %} +{% endfor %} + +{% endblock contenido %} + diff --git a/INCUBATE/incubate/incubate/Formulario/templates/detallecontestacampos_list.html b/INCUBATE/incubate/incubate/Formulario/templates/detallecontestacampos_list.html new file mode 100644 index 0000000000000000000000000000000000000000..f1bb70437965de21f9865bbb91e462cc4f86be1e --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/detallecontestacampos_list.html @@ -0,0 +1,66 @@ +{% extends 'base.html' %} + +{% block titulo %} + Evaluacion +{% endblock titulo %} + +{% block encabezado %} +

Evaluacion y CALIFICACION FINAL: + {{ total_sum }}

+{% endblock encabezado %} + +{% block contenido %} + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + {% if messages %} +
+ {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} +
+ {% endif %} + {% load static %} + {% endif %} + {% endfor %} + {{ accion }} +
+ + + + + + + + + {% for detalles in object_list %} + + + + + {% empty %} + + + + {% endfor %} + + +
CampoRespuesta
{{ detalles.campo }} + {% if detalles.uploadedFile %} + +
+ {{ detalles.uploadedFile.url }} + {% else %} + {{ detalles.respuesta }} + {% endif %} +
+

No existen detalles de contesta cuestionario registrados

+
+
+{% endblock contenido %} + +{% block scripts %} + +{% endblock scripts %} diff --git a/INCUBATE/incubate/incubate/Formulario/templates/detallecontestaformularios_list.html b/INCUBATE/incubate/incubate/Formulario/templates/detallecontestaformularios_list.html new file mode 100644 index 0000000000000000000000000000000000000000..8b57d48572687811a26184e99b105a4b0fa314da --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/detallecontestaformularios_list.html @@ -0,0 +1,122 @@ +{% extends 'base.html' %} + +{% block titulo %} + Lista de Detalles de la modalidad +{% endblock titulo %} + +{% block encabezado %} +

Lista de Detalles de la modalidad: {{ usuario }}

+{% endblock encabezado %} + +{% block contenido %} + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + {% if messages %} +
+ {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} +
+ {% endif %} + {% load static %} + {% endif %} + {% endfor %} + {{ accion }} +
+ + + + + + + + + {% for detalles in object_list %} + + + + + {% empty %} + + + + {% endfor %} + +
CampoRespuesta
{{ detalles.campo }} + {% if detalles.uploadedFile %} + +
+ {{ detalles.uploadedFile.url }} + {% else %} + {{ detalles.respuesta }} + {% endif %} +
+

No existen modalidades registradas

+
+
+
+ + + {% for grupo in request.user.groups.all %} + {% if 'Evaluador' in grupo.name %} +

Evaluación para la modalidad

+ {% csrf_token %} + {{ form.as_p }} +
+ Regresar + +
+ {% endif %} + {% endfor %} +
+ + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} +
+ Rechazar + Aceptar +
+ {% endif %} + {% endfor %} + +


Registro de tareas

+
+
+ + + + + + + + + + {% for contestaFormulario in contestaTareas %} + + + + + + {% empty %} + + + + {% endfor %} + +
FechaTareasOpciones
{{ contestaFormulario.fecha}}{{ contestaFormulario.tareas.nombre }} +
+ Detalles +
+
+

No hay tareas registradas

+
+
+
+{% endblock contenido %} + +{% block scripts %} + +{% endblock scripts %} diff --git a/INCUBATE/incubate/incubate/Formulario/templates/detallecontestatarea_list.html b/INCUBATE/incubate/incubate/Formulario/templates/detallecontestatarea_list.html new file mode 100644 index 0000000000000000000000000000000000000000..f46faf2a09967b81ba7320762f3b642bb3a37777 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/detallecontestatarea_list.html @@ -0,0 +1,65 @@ +{% extends 'base.html' %} + +{% block titulo %} + Evaluacion +{% endblock titulo %} + +{% block encabezado %} +

Detalle de la tarea

+{% endblock encabezado %} + +{% block contenido %} + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + {% if messages %} +
+ {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} +
+ {% endif %} + {% load static %} + {% endif %} + {% endfor %} + {{ accion }} +
+ + + + + + + + + {% for detalles in object_list %} + + + + + {% empty %} + + + + {% endfor %} + + +
CampoRespuesta
{{ detalles.campo }} + {% if detalles.uploadedFile %} + +
+ {{ detalles.uploadedFile.url }} + {% else %} + {{ detalles.respuesta }} + {% endif %} +
+

No existen detalles de las tareas

+
+
+{% endblock contenido %} + +{% block scripts %} + +{% endblock scripts %} diff --git a/INCUBATE/incubate/incubate/Formulario/templates/formulario.html b/INCUBATE/incubate/incubate/Formulario/templates/formulario.html new file mode 100644 index 0000000000000000000000000000000000000000..b1954d73f571607f2925d472690bf6844a14fca8 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/formulario.html @@ -0,0 +1,38 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Registro de campos +{% endblock titulo %} + +{% block encabezado %} +

Modalidad: {{ nom_formulario }}

+{% endblock encabezado %} + +{% block contenido %} +
+
+ {% csrf_token %} + {{ form.non_field_errors }} +
+
+ {% for field in form %} +
+ + {{ field }} + {{ field.errors }} +
+ {% endfor %} +
+ + Regresar +
+
+
+
+
+{% endblock contenido %} + +{% block scripts %} + +{% endblock scripts %} diff --git a/INCUBATE/incubate/incubate/Formulario/templates/grafica.html b/INCUBATE/incubate/incubate/Formulario/templates/grafica.html new file mode 100644 index 0000000000000000000000000000000000000000..02e4845d23d5c2776d09b18345445abbbd425e03 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/grafica.html @@ -0,0 +1,57 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Grafica +{% endblock titulo %} + +{% block encabezado %} +

Grafica

+{% endblock encabezado %} + +{% block contenido %} +
+ + + + + + +{% endblock contenido %} diff --git a/INCUBATE/incubate/incubate/Formulario/templates/graficaeval.html b/INCUBATE/incubate/incubate/Formulario/templates/graficaeval.html new file mode 100644 index 0000000000000000000000000000000000000000..8e8cffae999ab75e878eb17554bbb535e695232f --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/graficaeval.html @@ -0,0 +1,30 @@ +{% extends 'base.html' %} +{% block contenido %} +
+ + + + +{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/templates/lista_Formulario.html b/INCUBATE/incubate/incubate/Formulario/templates/lista_Formulario.html new file mode 100644 index 0000000000000000000000000000000000000000..1393c1e8cabdbae5682443423dcddc3eae27cb5d --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/lista_Formulario.html @@ -0,0 +1,114 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Modalidades +{% endblock titulo %} + +{% block encabe %} + {% if messages %} +
+ {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} +
+ {% endif %} +{% endblock encabe %} + +{% block encabezado %} +

Lista de Modalidades

+ {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + {% if convocatorias %} + {% if convocatorias.activado == 0 %} + Activar Convocatoria + Editar Fechas + {% else %} + Editar Fechas + {% endif %} + {% else %} + +

No hay convocatorias registradas, puedes activar una convocatoria aquí: Activar Convocatoria +

+ {% endif %} + Agregar Módulo + {% endif %} + {% endfor %} +{% endblock encabezado %} + +{% block contenido %} + + + +
+
+ {% for formulario in formularios %} +
+
+
+
{{ formulario.nombre }}
+
+
+ {{ formulario.nombre }} Imagen +

{{ formulario.descripcion|default:"No cuenta con descripción" }}

+
+ +
+
+ {% empty %} +

No existen modalidades registradas

+ {% endfor %} +
+
+{% endblock contenido %} diff --git a/INCUBATE/incubate/incubate/Formulario/templates/pdf.html b/INCUBATE/incubate/incubate/Formulario/templates/pdf.html new file mode 100644 index 0000000000000000000000000000000000000000..fff90cf6d2eebd9511b2fdf0e402f9da27c310da --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/templates/pdf.html @@ -0,0 +1,146 @@ +

 

+

CONVENIO DE APOYO Y COLABORACIÓN QUE CELEBRAN POR UNA PARTE EL CONSEJO ZACATECANO DE CIENCIA, TECNOLOGÍA E INNOVACIÓN, EN LO SUCESIVO "EL COZCYT”, REPRESENTADO POR SU DIRECTOR GENERAL, EL DOCTOR EN CIENCIAS HAMURABI GAMBOA ROSALES; Y POR LA OTRA, EL C. {{nombre}} {{apellido}}, EN COLABORACION DE {{instituto}}., EN LO SUCESIVO “EL BENEFICIARIO” EN EL QUE SE ESTABLECEN LAS BASES PARA EL OTORGAMIENTO DE APOYO ECONÓMICO PARA EL DESARROLLO DE  SUS ACTIVIDADES EN  BENEFICIO DEL ESTADO DE ZACATECAS AL TENOR DE LOS SIGUIENTES  ANTECEDENTES, DECLARACIONES Y CLÁUSULAS:

+

 

+

A N T E C E D E N T E S:

+

 

+

1.- Que por parte "EL COZCYT”, ha implementado un proyecto para promover la Formación de Recursos humanos en formación profesional de alto nivel, con especialidad para erradicar la problemática que los sectores productivos enfrentan en nuestra entidad.

+

 

+

2.- Que una de las acciones  para llevar a cabo dicho proyecto y con fundamento en el Capítulo III de la Formación de Recursos Humanos, Artículo 34 Fracción III, de la Ley de Ciencia, Tecnología e Innovación del Estado de Zacatecas, es Fomentar programas de apoyos para la formación de recursos humanos orientados a la investigación científica y tecnológica a través de estudios de formación profesional, que satisfagan las necesidades del conocimiento y la investigación en las áreas prioritarias del Estado.

+

 

+

3.- Que para cumplir con los objetivos y metas establecidas en el Proyecto en comento, las partes suscribirán los instrumentos legales correspondientes para realizar las acciones específicas acordadas que coadyuven a la operación y ejecución del mismo.

+

 

+

D E C L A R A C I O N E S:

+

 

+

I.- DE "EL COZCYT”:

+

 

+
    +
  1. Que es un organismo público descentralizado del Gobierno del Estado de Zacatecas, con personalidad jurídica y  patrimonio  propio,  como lo establece el artículo 9 de la Ley de Ciencia, Tecnología e Innovación del Estado de Zacatecas, creado  por  decreto  número  63  del  Ejecutivo  Estatal,  publicado en el Periódico Oficial Órgano de Gobierno del Estado No. 45, tomo CXII  de fecha 5 de junio de 2002 y artículo 1ero. de la Ley que crea al Consejo Zacatecano de Ciencia y Tecnología del Estado de Zacatecas.
  2. +
+

 

+
    +
  1. Que el Director General quien suscribe el presente convenio, cuenta con las facultades necesarias y suficientes para celebrar el presente instrumento jurídico, de acuerdo al nombramiento expedido por el C. Gobernador del Estado, Lic. David Monreal Avila, el 26 de octubre del 2021 y con fundamento en lo establecido por el artículo 14. fracción III y 22 fracción VIII de la Ley de Ciencia, Tecnología e Innovación del Estado de Zacatecas.
  2. +
+

 

+
    +
  1. Que dentro de sus objetivos es establecer convenios y contratos con instituciones municipales, estatales o federales; públicas o privadas, nacionales o extranjeras, para la consecución de sus fines.
  2. +
+

 

+
    +
  1. Que de conformidad con lo establecido en la Fracción XI del Artículo 12 de la Ley de Ciencia, Tecnología e Innovación del Estado de Zacatecas, le atribuye, entre otros asuntos: Apoyar, mediante el otorgamiento de becas, apoyos y otros medios, la formación de recursos humanos de alto nivel académico para la investigación científica y tecnológica, y la innovación, contribuyendo al fortalecimiento de los programas de postgrado en la entidad, y en general, todas aquellas acciones, cursos, programas de formación continua y de intercambio académico que tiendan a fomentar la reproducción de las nuevas generaciones de investigadores y actualizar los conocimientos a los del más alto nivel.
  2. +
+

 

+

Que para los efectos de este convenio tiene su domicilio en Av. de la Juventud No. 504, Colonia Barros Sierra, C.P. 98090, Zacatecas, Zacatecas.

+

 

+

II.- DE “EL BENEFICIARIO”.

+

 

+
    +
  1. Que EL C. {{nombre}} {{apellido}}, Estudiante de {{grado_estudio}} en {{instituto}} solicita apoyo económico para el   + Desarrollo de {{cambio}}Desarrollo_sistema
  2. +
+

 

+
    +
  1. Que el apoyo económico que se logre se destinará única y exclusivamente para el objeto planteado en este instrumento jurídico.
  2. +
+

 

+
    +
  1. Que para los efectos de este convenio “EL BENEFICIARIO” tienen su Domicilio en la Calle {{calle}} numero {{nexterno}} colonia {{colonia}} del estado {{estado}} del municipio {{municipio}} CP {{cpostal}}.
  2. +
+

 

+

C L A U S U L A S:

+

 

+

PRIMERA.- El presente Convenio tiene por objeto establecer la debida colaboración entre “EL COZCYT” y “EL BENEFICIARIO”, para que a través de un apoyo económico, “EL BENEFICIARIO” tenga la posibilidad de realizar las  actividades en beneficio del desarrollo del Estado de Zacatecas.

+

 

+

SEGUNDA.- Para la consecución del objeto del presente Convenio “EL COZCYT”, se compromete a:

+

 

+
    +
  1. Otorgar un apoyo económico por la cantidad de ${{cambio}}cantidad , como apoyo para “EL BENEFICIARIO”.
  2. +
+

TERCERA.- “EL BENEFICIARIO” para la consecución del objeto del presente Convenio,  se compromete a:

+

 

+
    +
  1. Otorgar consentimiento para que el COZCyT elabore una factura de egresos por el monto del apoyo que va a recibir.
  2. +
+

 

+
    +
  1. Ejercer el apoyo otorgado por “EL COZCYT” para realizar la actividad mencionada en la Declaración II.1 del presente instrumento legal.
  2. +
+

 

+
    +
  1. Entregar a “EL COZCYT” a más tardar treinta días hábiles después de haber concluido el objeto del apoyo, un INFORME TÉCNICO en donde se manifieste las actividades realizadas durante el mismo, el cual deberá contener al menos alguno de los siguientes entregables: Constancia, resumen de actividades, evidencia fotográfica, diploma, etc.
  2. +
+

 

+

 

+

CUARTA.- Cada una de las partes se obliga a proporcionar oportunamente los elementos necesarios para la realización del presente Convenio Específico, en los términos establecidos en el mismo, así como los de carácter legal y leyes vigentes del Estado de Zacatecas.

+

 

+

QUINTA.- Ambas partes apoyarán y fomentarán toda actividad relativa a la formación de la ciencia y la tecnología, a la divulgación académica, científica, cultural, tecnológica y a la superación académica en las áreas que consideren de su interés, relacionadas con los estudios en mención.

+

 

+

SEXTA.- El incumplimiento a cualquiera de las obligaciones pactadas en el presente convenio dará lugar a que en actividades académicas futuras se niegue a “EL BENEFICIARIO” por parte de “EL COZCYT”, todo apoyo ya sea económico o en especie, y en especial el incumpliendo a la cláusula tercera inciso C, dará lugar al requerimiento de la devolución íntegra del monto establecido en la cláusula segunda inciso A del presente instrumento legal.

+

 

+

SEPTIMA.- El presente Convenio surtirá sus efectos a partir de la fecha de su firma y tendrá una vigencia  hasta el momento de la entrega de los informes técnico.

+

 

+

OCTAVA.- Enteradas las partes del contenido y alcance legal de todas y cada una de sus declaraciones y cláusulas, firman al calce y al margen los que en ella intervinieron y quisieron hacerlo en la Ciudad de Zacatecas, Zacatecas,  a  los 27  días del mes de abril del dos mil veintidós.

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+

 

+ + + + + + + + + + + + + + + + + + +
+

POR "EL COZCYT”

+
+

 

+
+

POR “EL BENEFICIARIO”

+
+

DR. EN C HAMURABI GAMBOA ROSALES

+

DIRECTOR GENERAL DEL CONSEJO ZACATECANO                                     DE CIENCIA, TECNOLOGÍA E INNOVACIÓN

+
+

 

+
+

{{nombre}} {{apellido}}

+

 ESTUDIANTE DE + {% if grado_estudio == '1' %} + Licenciatura + {% else %} + {% if grado_estudio == '2' %} + Maestría + {% else %} + {% if grado_estudio == '3' %} + Doctorado + {% else %} + Posdoctorado + {% endif %} + {% endif %} + {% endif %} + + EN  {{instituto}}.

+
+

 

+
+

 

+
+

 

+
\ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/tests.py b/INCUBATE/incubate/incubate/Formulario/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/INCUBATE/incubate/incubate/Formulario/urls.py b/INCUBATE/incubate/incubate/Formulario/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..fe0d2674947709fdc461fb60b3a3bca18ff7ea7d --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/urls.py @@ -0,0 +1,54 @@ +from django.urls import path +from Formulario import views +from django.contrib.auth.decorators import login_required + + +urlpatterns = [ + path('ModalidadesLista', views.lista_Formulario, name='modalidades_lista'), + + path('Nueva', login_required(views.CrearFormularioView.as_view()), name='nuevoFormulario'), + + path('Editar/', login_required(views.EditarFormularioView.as_view()), name='editarFormulario'), + + path('eliminar/', views.eliminar_formulario, name='eliminar_Formulario'), + + path('responder/', views.formulario, name='formulario'), + + path('campos/', views.modalidadesCamposLista, name='campos_Lista'), + + path('eliminar/campo/', views.eliminar_campo, name='eliminar_campo'), + + path('eliminar/campoCuestionario/', views.eliminar_CampoCuestionario, name='eliminar_campoC'), + + path('editar/campo/', views.editar_campo, name='editar_campo'), + + path('editar/campoCuestionario/', views.editar_campoC, name='editar_campoC'), + + path('Nuevo/campo/', views.nuevo_campo1, name='nuevo_campo'), + + path('Nuevo/campoEvaluacion/', views.nuevo_campoCuest, name='nuevo_evaluacionC'), + + path('solicitudes', views.lista_solicitudes, name='solicitudes_lista'), + + path('Mis_solicitudes', views.lista_solicitudes1, name='solicitudes_lista1'), + + path('Evaluacion_solicitudes/', views.lista_SolicitEvaluaciones, name='evaluacionS'), + + path('opcion_campo_evaluacion/Nuevo/', views.opcionCampoNuevo1, name='opcion_campo_Nuevo1'), + + path('opcion_campo/Nuevo/', views.opcionCampoNuevo, name='opcion_campo_Nuevo'), + + path('Detalles/modalidad_solicitud/', views.lista_Solicit, name='lista_solicitudes'), + + path('Detalles/modalidad_solicitud/tareas/', views.lista_TareaDetalles, name='lista_tareasDetalles'), + + path('Detalles/modalidad_solicitud/aceptar/', views.aceptar_solicitud , name='aceptar_solisitud'), + + path('Detalles/modalidad_solicitud/rechazar/', views.rechazar_solicitud , name='rechazar_solicitud'), + + path('PDF/', views.pdf_view, name='pdfVista'), + + path('buscar-solisitudes', views.buscar_solisitudes, name='buscar_solisitudes'), + + path('ruta-de-tu-grafica/', views.GraficaView.as_view(), name='graficaE'), +] diff --git a/INCUBATE/incubate/incubate/Formulario/utils.py b/INCUBATE/incubate/incubate/Formulario/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..78fc548a0363fbba497688c749f38d394295ea20 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/utils.py @@ -0,0 +1,14 @@ +from io import BytesIO # nos ayuda a convertir un html en pdf +from django.http import HttpResponse +from django.template.loader import get_template + +from xhtml2pdf import pisa + +def render_to_pdf(template_src, context_dict={}): + template = get_template(template_src) + html = template.render(context_dict) + result = BytesIO() + pdf = pisa.pisaDocument(BytesIO(html.encode("ISO-8859-1")), result) + if not pdf.err: + return HttpResponse(result.getvalue(), content_type='application/pdf') + return None \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/validadores.py b/INCUBATE/incubate/incubate/Formulario/validadores.py new file mode 100644 index 0000000000000000000000000000000000000000..125383a217e456da171f725f2b4351c0b68dbbf1 --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/validadores.py @@ -0,0 +1,11 @@ +from django.core.validators import FileExtensionValidator, RegexValidator + +documentos_validador = FileExtensionValidator( + allowed_extensions=['pdf'], + message="Sólo se permiten Documentos PDF" +) + +imagen_validador = FileExtensionValidator( + allowed_extensions=['png','jpg','PNG'], + message="Sólo se permiten imágenes PNG" +) \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/Formulario/views.py b/INCUBATE/incubate/incubate/Formulario/views.py new file mode 100644 index 0000000000000000000000000000000000000000..2771995cdccd513f3ef5aeae5544fd231e1629bd --- /dev/null +++ b/INCUBATE/incubate/incubate/Formulario/views.py @@ -0,0 +1,509 @@ +from django.shortcuts import render, redirect +from django.views.generic import View +from django.http import HttpResponse +from django.contrib.messages.views import SuccessMessageMixin +from asignacion_tareas.models import ContestaTareas, DetalleContestaTareas +from .utils import render_to_pdf +from .models import ContestaCuestionario, DetalleContestaCuestionario, Formularios, ContestaFormularios, DetalleContestaFormularios, Campo,CuestionarioCampo, Formularios, OpcionesCampo, OpcionesCuestionario +from convocatoria.models import Convocatoria +from .forms import AplicaEvaluacion, AplicaFormulario, FiltrosSolicitud,FormCuestionarioCampo3, FormCampos2, FormFiltroCampos, FormFormularios, FormOpcionesCampo1, FormFiltroSolicitud, FormOpcionesCampo2 +from django.views.generic.edit import CreateView,UpdateView,DeleteView +from django.urls import reverse_lazy +from django.views.generic import ListView, TemplateView +from django.contrib.auth.decorators import login_required,permission_required +from datetime import datetime +from django.db.models import Count +import pytz +from django.db.models import F +from django.db.models import Max +from django.views.generic import TemplateView +from .models import Grafica +from django.db.models import Sum +import matplotlib.pyplot as plt +from io import BytesIO +import base64 + + + +@login_required +def formulario(request, id): + nom_formulario="" + formulario=Formularios.objects.filter(id=id) + convocatoriaF=Convocatoria.objects.all().last() + for formu in formulario: + nom_formulario=formu.nombre + quiz = Formularios.objects.get(id=id) + form = AplicaFormulario(request.FILES,campos=quiz.campos.all()) + if request.method == 'POST': + form = AplicaFormulario(request.POST,request.FILES,campos=quiz.campos.all()) + if form.is_valid(): + print("pasa por aqui 11111") + data = form.cleaned_data + contesta_formulario = ContestaFormularios.objects.create( + formularios = quiz, + usuario = request.user, + convocatoria=convocatoriaF + ) + + for campo in quiz.campos.all(): + if campo.tipo_dato == '9': + DetalleContestaFormularios.objects.create( + campo = campo, + respuesta = data[f"{campo.campo}"], + uploadedFile = data[f"{campo.campo}"], + contesta_formularios = contesta_formulario, + ) + else: + DetalleContestaFormularios.objects.create( + campo = campo, + respuesta = data[f"{campo.campo}"], + contesta_formularios = contesta_formulario + ) + context = { + # 'quiz': quiz, + 'form': form, + 'nom_formulario':nom_formulario + } + # Load documents for the list page + return render(request, 'formulario.html', context) + + +@login_required +def nuevo_campo1(request, id): + if request.method == 'POST': + form = FormCampos2(request.POST) + if form.is_valid(): + form = Campo.objects.create( + campo = request.POST.get('campo', None), + requerida = request.POST.get('requerida', None), + tipo_dato = request.POST.get('tipo_dato', None), + size_texto = request.POST.get('size_texto', None), + formularios_id = id + ) + return redirect('campos_Lista',id) + else: + print("Aqui tambien") + form = FormCampos2() + return render(request, 'campo_form.html', {'form':form, 'id':id}) + +@login_required +def nuevo_campoCuest(request, id): + if request.method == 'POST': + form = FormCuestionarioCampo3(request.POST) + if form.is_valid(): + form = CuestionarioCampo.objects.create( + campo = request.POST.get('campo', None), + requerida = request.POST.get('requerida', None), + tipo_dato = request.POST.get('tipo_dato', None), + apartado = request.POST.get('apartado', None), + size_texto = request.POST.get('size_texto', None), + formularios_id = id + ) + return redirect('campos_Lista',id) + else: + print("Aqui tambien") + form = FormCuestionarioCampo3() + return render(request, 'campo_form1.html', {'form':form, 'id':id}) + +class CrearFormularioView(SuccessMessageMixin, CreateView): + model = Formularios + form_class = FormFormularios + template_name = 'Formulario/formularios_form.html' # Reemplaza 'tu_template.html' con la ruta correcta a tu plantilla + success_url = reverse_lazy('modalidades_lista') + extra_context = {'accion': 'Nueva'} + success_message = "Formulario creado correctamente" + + def form_valid(self, form): + form.instance.usuario = self.request.user # Si deseas asociar el formulario con el usuario actual, si tienes un campo 'usuario' en tu modelo + return super().form_valid(form) + +class EditarFormularioView(SuccessMessageMixin, UpdateView): + model = Formularios + form_class = FormFormularios + template_name = 'Formulario/formularios_form.html' # Reemplaza 'tu_template.html' con la ruta correcta a tu plantilla + extra_context = {'accion': 'Modificar'} + success_url = reverse_lazy('modalidades_lista') + success_message = "Formulario editado correctamente" + +@login_required +def eliminar_formulario(request, id): + Formularios.objects.get(id=id).delete() + return redirect('modalidades_lista') + +@login_required +def lista_Formulario(request): + formulario = "0" + convocatoria=Convocatoria.objects.all().last() + utc=pytz.UTC + now = datetime.now() + mensaje="Lo siento, las modaidades no estan disponibles" + if convocatoria==None: + print("NO ENTRA :V") + elif (now.replace(tzinfo=pytz.utc)>=convocatoria.fecha_inicio.replace(tzinfo=pytz.utc)) and (now.replace(tzinfo=pytz.utc)<=convocatoria.fecha_cierre.replace(tzinfo=pytz.utc)) and (convocatoria.activado=='1'): + convocatoria.activado = 1 + convocatoria.save() + x=str(convocatoria.fecha_inicio.day)+"/"+str(convocatoria.fecha_inicio.month)+"/"+str(convocatoria.fecha_inicio.year) + y=str(convocatoria.fecha_cierre.day)+"/"+str(convocatoria.fecha_cierre.month)+"/"+str(convocatoria.fecha_cierre.year) + x = str(x) + y = str(y) + mensaje="Las modalidades estarán activas del "+ x + " al "+ y + formulario=Formularios.objects.all() + else: + print(formulario) + convocatoria.activado = 0 + convocatoria.save() + context = { + 'mensajes':mensaje, + 'convocatorias': convocatoria, + 'formularios' : formulario + } + return render(request, 'lista_Formulario.html', context) + +@login_required +def eliminar_campo(request, id): + campo = Campo.objects.get(id=id) + id_p=campo.formularios_id + Campo.objects.get(id=id).delete() + return redirect('campos_Lista',id_p) + +@login_required +def eliminar_CampoCuestionario(request, id): + campo = CuestionarioCampo.objects.get(id=id) + id_p=campo.formularios_id + CuestionarioCampo.objects.get(id=id).delete() + return redirect('campos_Lista',id_p) + +#esto es nuevo +@login_required +def editar_campo(request, id): + campo = Campo.objects.get(id=id) + id=campo.formularios_id + if request.method == 'POST': + form = FormCampos2(request.POST, instance=campo) + if form.is_valid(): + form.save() + return redirect('campos_Lista',id) + else: + form = FormCampos2(instance=campo) + return render(request, 'campo_form.html', {'form':form, 'id':id}) + +@login_required +def editar_campoC(request, id): + campo = CuestionarioCampo.objects.get(id=id) + id=campo.formularios_id + if request.method == 'POST': + form = FormCuestionarioCampo3(request.POST, instance=campo) + if form.is_valid(): + form.save() + return redirect('campos_Lista',id) + else: + form = FormCuestionarioCampo3(instance=campo) + return render(request, 'campo_form1.html', {'form':form, 'id':id}) + +@login_required +def modalidadesCamposLista(request, id): + nom_formulario="" + form = FormFiltroCampos() + camposFormularios = Campo.objects.filter(formularios_id=id) + evaluacionFormulario= CuestionarioCampo.objects.filter(formularios_id=id) + formulario=Formularios.objects.filter(id=id) + for formu in formulario: + nom_formulario=formu.nombre + + if request.method == 'POST': + form = FormFiltroCampos(request.POST) + requerida = request.POST.get('requerida', None) + tipo_dato = request.POST.get('tipo_dato', None) + if requerida: + camposFormularios = camposFormularios.filter(requerida__contains=requerida) + if tipo_dato: + tipo_dato = camposFormularios.filter(tipo_dato__contains=tipo_dato) + + context={ + 'camposFormularios': camposFormularios, + 'evaluacionFormulario':evaluacionFormulario, + 'form':form, + 'id_form':id, + 'nom_formulario':nom_formulario + } + return render(request, 'camposFormularios.html', context) + +@login_required +def opcionCampoNuevo(request, id): + campo = Campo.objects.get(id=id) + id_p=campo.formularios_id + if request.method == 'POST': + form = FormOpcionesCampo1(request.POST) + if form.is_valid(): + form = OpcionesCampo.objects.create( + opcion = request.POST.get('opcion', None), + valor = request.POST.get('valor', None), + campo_id = id + ) + return redirect('campos_Lista',id_p) + else: + form = FormOpcionesCampo1() + return render(request, 'campo_form.html', {'form':form, 'id':id_p}) + +@login_required +def opcionCampoNuevo1(request, id): + campo = CuestionarioCampo.objects.get(id=id) + id_p=campo.formularios_id + if request.method == 'POST': + form = FormOpcionesCampo2(request.POST) + if form.is_valid(): + form = OpcionesCuestionario.objects.create( + opcion = request.POST.get('opcion', None), + valor = request.POST.get('valor', None), + campo_id = id + ) + return redirect('campos_Lista',id_p) + else: + form = FormOpcionesCampo2() + return render(request, 'campo_form.html', {'form':form, 'id':id_p}) + +@login_required +def lista_solicitudes(request): + form = FormFiltroSolicitud() + + ultima_convocatoria=Convocatoria.objects.all().last() + contestaFormulariosEva = ContestaFormularios.objects.filter(convocatoria=ultima_convocatoria).order_by('-fecha','convocatoria') + contestaFormularios = Grafica.objects.filter(contesta_formularios__convocatoria=ultima_convocatoria) + if request.method == 'POST': + print(request.POST.get('formularios_id', None)) + contestaFormularios=contestaFormularios.order_by("-valor_numerico") + + context={ + 'contestaFormularios': contestaFormularios, + 'contestaFormulariosEva': contestaFormulariosEva, + 'form':form + } + return render(request, 'contestaFormularios1.html', context) + + + #contestaFormularios = ContestaFormularios.objects.get('usuario_id'==id_usuario) + +@login_required +def lista_Solicit(request, id): + detail_answer_forms_data = DetalleContestaFormularios.objects.filter(contesta_formularios=id).last() + contestaFormularios = ContestaFormularios.objects.get(id=id) + contestaTareas = ContestaTareas.objects.filter(contesta_formularios=id) + print(contestaFormularios.id) + print(id) + x = detail_answer_forms_data.contesta_formularios.id + y = detail_answer_forms_data.contesta_formularios.formularios.id + quiz = Formularios.objects.get(id=y) + convocatoriaF=Convocatoria.objects.all().last() + usuario = detail_answer_forms_data.contesta_formularios + queryset = DetalleContestaFormularios.objects.filter(contesta_formularios=id) + form = AplicaEvaluacion(request.FILES,campos=quiz.cuestionario_campos.all()) + total_sum = 0 + if request.method == 'POST': + form = AplicaEvaluacion(request.POST,request.FILES,campos=quiz.cuestionario_campos.all()) + if form.is_valid(): + print("pasa por aqui 11111") + data = form.cleaned_data + contesta_formulario = ContestaCuestionario.objects.create( + formularios = quiz, + usuario = request.user, + convocatoria=convocatoriaF, + contestaFormularios=contestaFormularios + ) + + for campo in quiz.cuestionario_campos.all(): + DetalleContestaCuestionario.objects.create( + campo = campo, + respuesta = data[f"{campo.campo}"], + contesta_formularios = contesta_formulario, + contestaFormularios1=contestaFormularios + ) + + queryset1 = DetalleContestaCuestionario.objects.filter(contestaFormularios1=id) + #///// + print("////////") + print(total_sum) + print("////////") + for detalles in queryset1: + val = detalles.respuesta + try: + num_val = float(val) # Intentamos convertir a número decimal + total_sum += num_val # Sumamos el valor al total + except ValueError: + print(f"Valor no numérico: {val}") + print("////////") + print(total_sum) + + grafica, created = Grafica.objects.get_or_create( + usuario=contestaFormularios.usuario, + contesta_formularios=contestaFormularios + ) + + if created: + # Si el objeto fue creado, establecer valor_numerico en total_sum + grafica.valor_numerico = total_sum + grafica.save() + else: + # Si el objeto ya existe, incrementar valor_numerico en 1 + grafica.valor_numerico =total_sum + grafica.save() + # Después de procesar los datos, redirige a la vista 'tareas_lista' + return redirect('modalidades_lista') + + + context = { + 'detail_answer_forms_data': x, + 'usuario': usuario, + 'object_list': queryset, + # 'quiz': quiz, + 'form': form, + 'y': y, + 'contestaTareas' : contestaTareas + } + + return render(request, 'detallecontestaformularios_list.html', context) + +@login_required +def lista_TareaDetalles(request, id): + queryset = DetalleContestaTareas.objects.filter(contesta_Tareas=id) + context = { + 'object_list': queryset, + } + + return render(request, 'detallecontestatarea_list.html', context) + +@login_required +def lista_SolicitEvaluaciones(request, id): + #///// + queryset = DetalleContestaCuestionario.objects.filter(contestaFormularios1=id) + #///// + total_sum = 0 + print("////////") + print(total_sum) + print("////////") + for detalles in queryset: + val = detalles.respuesta + try: + num_val = float(val) # Intentamos convertir a número decimal + total_sum += num_val # Sumamos el valor al total + except ValueError: + print(f"Valor no numérico: {val}") + print("////////") + print(total_sum) + #///// + context = { + 'total_sum':total_sum, + 'object_list': queryset, + # 'quiz': quiz, + } + #/////7 + + return render(request, 'detallecontestacampos_list.html', context) + +#aquixd + +@login_required +def lista_solicitudes1(request): + form = FormFiltroSolicitud() + + contestaFormularios = ContestaFormularios.objects.filter(usuario=request.user).order_by('-fecha','convocatoria') + + if request.method == 'POST': + form = FormFiltroSolicitud(request.POST) + formularios = request.POST.get('formularios_id', None) + usuario = request.POST.get('usuario_id', None) + if formularios: + contestaFormularios = contestaFormularios.filter(formularios__contains=formularios) + if usuario: + usuario = contestaFormularios.filter(usuario__contains=usuario) + + context={ + 'contestaFormularios': contestaFormularios, + 'form':form + } + return render(request, 'contestaFormularios.html', context) + +def aceptar_solicitud(request, id): + programa = ContestaFormularios.objects.get(id=id) + print(programa.validacion) + programa.validacion='1' + print(programa.validacion) + programa.save() + return redirect('solicitudes_lista') + +def rechazar_solicitud(request, id): + programa = ContestaFormularios.objects.get(id=id) + print(programa.validacion) + programa.validacion='2' + print(programa.validacion) + programa.save() + return redirect('solicitudes_lista') + +@login_required +def pdf_view(request, id): + programa = ContestaFormularios.objects.get(id=id) + nombre=programa.usuario.first_name + nombre=nombre.upper() + apellido=programa.usuario.last_name + apellido=apellido.upper() + instituto=programa.usuario.datos.instituto + instituto=instituto.upper() + grado_estudio=programa.usuario.datos.grado_estudio + calle=programa.usuario.datos.calle + nexterno=programa.usuario.datos.nexterno + colonia=programa.usuario.datos.colonia + estado=programa.usuario.datos.estado + municipio=programa.usuario.datos.municipio + cpostal=programa.usuario.datos.cpostal + context = { + 'nombre': nombre, + 'apellido':apellido, + 'cambio':"cambios a realizar", + 'instituto': instituto, + 'grado_estudio': grado_estudio, + 'calle': calle, + 'nexterno': nexterno, + 'colonia': colonia, + 'estado': estado, + 'municipio': municipio, + 'cpostal': cpostal, + } + pdf=render_to_pdf('pdf.html', context) + + return HttpResponse(pdf, content_type='application/pdf') + +def buscar_solisitudes(request): + contestaFormularios = ContestaFormularios.objects.all().order_by('fecha','convocatoria') + + if request.method == 'POST': + + form = FiltrosSolicitud(request.POST) + convocatoria = request.POST.get('convocatoria',None) + if convocatoria: + contestaFormularios = contestaFormularios.filter(convocatoria=convocatoria) + else: + form = FiltrosSolicitud() + context = { + 'object_list': contestaFormularios, + 'form': form + } + return render(request, 'contestaFormularios.html', context) + + +class GraficaView(TemplateView): + template_name = "graficaeval.html" + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + + graficas = Grafica.objects.all() + + nombres_graficas = [grafica.usuario.username for grafica in graficas] + valores_numericos = [float(grafica.valor_numerico) for grafica in graficas] + + max_valor_numerico = max(valores_numericos) + + context['nombres_graficas'] = nombres_graficas + context['valores_numericos'] = valores_numericos + context['max_valor_numerico'] = max_valor_numerico + + return context \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/__init__.py b/INCUBATE/incubate/incubate/actividades/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/INCUBATE/incubate/incubate/actividades/__pycache__/__init__.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4804be4c0d1d196f77a214369e299a98776c25f6 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/__pycache__/__init__.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/__pycache__/admin.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/__pycache__/admin.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a52e0502788a7affe5fe41662e2d8f498badc76 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/__pycache__/admin.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/__pycache__/apps.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/__pycache__/apps.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e910cd2b329270f95ce7865659dd1ee674c51cd8 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/__pycache__/apps.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/__pycache__/forms.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/__pycache__/forms.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ceacdda22145e5eaa06cf67aeb020d028aa47297 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/__pycache__/forms.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/__pycache__/models.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/__pycache__/models.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7064244bf1fd582ec6ae20090fbabbfb4faf1556 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/__pycache__/models.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/__pycache__/urls.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/__pycache__/urls.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3da0704bfd502cc7a950503fcf64b9ec970cd977 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/__pycache__/urls.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/__pycache__/validadores.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/__pycache__/validadores.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..957d4831ac5fab2957c2bd03ee45b43974c34e63 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/__pycache__/validadores.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/__pycache__/views.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/__pycache__/views.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..82eae74a1cd0f56945f48d2da468c2351fa4208a Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/__pycache__/views.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/admin.py b/INCUBATE/incubate/incubate/actividades/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..725a2079e3b18509519c1a2343b7c9c8d07c6642 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/admin.py @@ -0,0 +1,6 @@ +from django.contrib import admin + +from . import models + +admin.site.register(models.Discapacidades_motoras) +admin.site.register(models.Actividad) \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/apps.py b/INCUBATE/incubate/incubate/actividades/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..1d6c406557eec4b550113224c2780601d2ed3a1a --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ActividadesConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'actividades' diff --git a/INCUBATE/incubate/incubate/actividades/forms.py b/INCUBATE/incubate/incubate/actividades/forms.py new file mode 100644 index 0000000000000000000000000000000000000000..92e0b481db50e04b17ac4968c01d24a38352c6dc --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/forms.py @@ -0,0 +1,102 @@ +from django import forms +from django.db import models +from .models import Actividad, Discapacidades_motoras + +class FormDiscapacidades_motoras(forms.ModelForm): + class Meta: + model = Discapacidades_motoras + fields = '__all__' + exclude = [] + widgets = { + 'nombreDisapacidad': forms.TextInput(attrs={'class':'form-control'}), + 'descripcion': forms.Textarea(attrs={'class':'form-control'}), + 'que_es':forms.Textarea(attrs={'class':'form-control'}), + 'que_deve_conocer_familia':forms.Textarea(attrs={'class':'form-control'}), + 'documentacion':forms.FileInput(attrs={'class':'form-control'}), + 'recomendaciones':forms.Textarea(attrs={'class':'form-control'}), + 'referencias': forms.Textarea(attrs={'class':'form-control'}), + } + + +class FormDiscapacidadEditar(FormDiscapacidades_motoras): + class Meta: + exclude = [] + model = Discapacidades_motoras + fields = '__all__' + widgets = { + 'nombreDisapacidad': forms.TextInput(attrs={'class':'form-control'}), + 'que_es':forms.Textarea(attrs={'class':'form-control'}), + 'que_deve_conocer_familia':forms.Textarea(attrs={'class':'form-control'}), + 'recomendaciones':forms.Textarea(attrs={'class':'form-control'}), + 'referencias': forms.Textarea(attrs={'class':'form-control'}), + + } + + #def __init__(self, *args, **kwargs): + # super().__init__(*args, **kwargs) + # if self.instance.pk and self.instance.nombreDisapacidad: + # self.fields['nombreDisapacidad'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.que_es: + # self.fields['que_es'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.que_deve_conocer_familia: + # self.fields['que_deve_conocer_familia'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.recomendaciones: + # self.fields['recomendaciones'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.referencias: + # self.fields['referencias'].widget.attrs.update({'disabled': True}) + +class FormdiscapacidadActividad(forms.Form): + nombreActividad = forms.CharField( + widget=forms.TextInput(attrs={'class':'form-control','placeholder':'nombreActividad'}), + required=False + ) + +class FormActividad(forms.ModelForm): + class Meta: + model = Actividad + fields = '__all__' + widgets = { + 'nombreActividad' : forms.TextInput(attrs={'class':'form-control'}), + 'tempo': forms.NumberInput(attrs={'class':'form-control'}), + 'aprendizajes_esperados':forms.Textarea(attrs={'class':'form-control'}), + 'aspectos_a_favorecer':forms.Textarea(attrs={'class':'form-control'}), + 'Recursos':forms.Textarea(attrs={'class':'form-control'}), + 'competencias_desarrollar':forms.Textarea(attrs={'class':'form-control'}), + 'descripción_actividad':forms.Textarea(attrs={'class':'form-control'}), + 'url' : forms.TextInput(attrs={'class':'form-control'}), + + } + #def __init__(self, *args, **kwargs): + # super().__init__(*args, **kwargs) + # if self.instance.pk and self.instance.nombreActividad: + # self.fields['nombreActividad'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.tempo: + # self.fields['tempo'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.aprendizajes_esperados: + # self.fields['aprendizajes_esperados'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.Recursos: + # self.fields['Recursos'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.competencias_desarrollar: + # self.fields['competencias_desarrollar'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.descripción_actividad: + # self.fields['descripción_actividad'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.url: + # self.fields['url'].widget.attrs.update({'disabled': True}) + # if self.instance.pk and self.instance.referencias: + # self.fields['referencias'].widget.attrs.update({'disabled': True}) + + +class FormActividadEditar(FormActividad): + class Meta: + fields = '__all__' + model = Actividad + widgets = { + 'nombreActividad' : forms.TextInput(attrs={'class':'form-control'}), + 'tempo': forms.NumberInput(attrs={'class':'form-control'}), + 'aprendizajes_esperados':forms.Textarea(attrs={'class':'form-control'}), + 'aspectos_a_favorecer':forms.Textarea(attrs={'class':'form-control'}), + 'Recursos':forms.Textarea(attrs={'class':'form-control'}), + 'competencias_desarrollar':forms.Textarea(attrs={'class':'form-control'}), + 'descripción_actividad':forms.Textarea(attrs={'class':'form-control'}), + 'url' : forms.TextInput(attrs={'class':'form-control'}), + } \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/migrations/0001_initial.py b/INCUBATE/incubate/incubate/actividades/migrations/0001_initial.py new file mode 100644 index 0000000000000000000000000000000000000000..5178e853f71256157e6aa77c76f681433c650b40 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/migrations/0001_initial.py @@ -0,0 +1,42 @@ +# Generated by Django 4.2.1 on 2023-05-05 11:30 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Actividad', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('nombreActividad', models.CharField(max_length=200, verbose_name='Nombre de la actividad')), + ('tempo', models.IntegerField(default=0)), + ('aprendizajes_esperados', models.TextField(verbose_name='Aprendizajes esperados ')), + ('aspectos_a_favorecer', models.TextField(verbose_name='Aspectos a favorecer')), + ('Recursos', models.TextField(verbose_name='Recursos')), + ('competencias_desarrollar', models.TextField(blank=True, null=True, verbose_name='Competencias a desarrollar')), + ('descripción_actividad', models.TextField(verbose_name='Descripción de la actividad')), + ('url', models.URLField(max_length=500)), + ('referencias', models.TextField(verbose_name='Referencias')), + ], + ), + migrations.CreateModel( + name='Discapacidades_motoras', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('nombreDisapacidad', models.CharField(max_length=200, unique=True, verbose_name='Nombre del la discapacidad')), + ('que_es', models.TextField(verbose_name='¿Que es?')), + ('que_deve_conocer_familia', models.TextField(verbose_name='¿Que se debe conocer en el entorno familiar?')), + ('documentacion', models.FileField(upload_to='Documentos/', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['pdf'], message='Sólo se permiten Documentos PDF')])), + ('recomendaciones', models.TextField(verbose_name='Recomendaciones')), + ('referencias', models.TextField(verbose_name='Referencias')), + ], + ), + ] diff --git a/INCUBATE/incubate/incubate/actividades/migrations/0002_alter_discapacidades_motoras_documentacion.py b/INCUBATE/incubate/incubate/actividades/migrations/0002_alter_discapacidades_motoras_documentacion.py new file mode 100644 index 0000000000000000000000000000000000000000..be1db44285bb71740e2c632b0354c339a3faa752 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/migrations/0002_alter_discapacidades_motoras_documentacion.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.1 on 2023-05-05 11:36 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('actividades', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='discapacidades_motoras', + name='documentacion', + field=models.FileField(blank=True, null=True, upload_to='Documentos/', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['pdf'], message='Sólo se permiten Documentos PDF')]), + ), + ] diff --git a/INCUBATE/incubate/incubate/actividades/migrations/0003_rename_documentacion_discapacidades_motoras_documentaciones.py b/INCUBATE/incubate/incubate/actividades/migrations/0003_rename_documentacion_discapacidades_motoras_documentaciones.py new file mode 100644 index 0000000000000000000000000000000000000000..71421e5ac947af85fd51646ad66328e6742e2730 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/migrations/0003_rename_documentacion_discapacidades_motoras_documentaciones.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.1 on 2023-05-05 11:37 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('actividades', '0002_alter_discapacidades_motoras_documentacion'), + ] + + operations = [ + migrations.RenameField( + model_name='discapacidades_motoras', + old_name='documentacion', + new_name='documentaciones', + ), + ] diff --git a/INCUBATE/incubate/incubate/actividades/migrations/0004_discapacidades_motoras_que_deve_im_and_more.py b/INCUBATE/incubate/incubate/actividades/migrations/0004_discapacidades_motoras_que_deve_im_and_more.py new file mode 100644 index 0000000000000000000000000000000000000000..ad35ce4374a5a7085e9c16a31cca840a57c36649 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/migrations/0004_discapacidades_motoras_que_deve_im_and_more.py @@ -0,0 +1,34 @@ +# Generated by Django 4.2.1 on 2023-05-05 11:44 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('actividades', '0003_rename_documentacion_discapacidades_motoras_documentaciones'), + ] + + operations = [ + migrations.AddField( + model_name='discapacidades_motoras', + name='que_deve_im', + field=models.ImageField(blank=True, null=True, upload_to='perfiles', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['png', 'jpg'], message='Sólo se permiten imágenes PNG')], verbose_name=''), + ), + migrations.AddField( + model_name='discapacidades_motoras', + name='que_es_im', + field=models.ImageField(blank=True, null=True, upload_to='perfiles', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['png', 'jpg'], message='Sólo se permiten imágenes PNG')], verbose_name=''), + ), + migrations.AddField( + model_name='discapacidades_motoras', + name='recomendaciones_im', + field=models.ImageField(blank=True, null=True, upload_to='perfiles', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['png', 'jpg'], message='Sólo se permiten imágenes PNG')], verbose_name=''), + ), + migrations.AlterField( + model_name='actividad', + name='url', + field=models.URLField(blank=True, max_length=500, null=True), + ), + ] diff --git a/INCUBATE/incubate/incubate/actividades/migrations/0005_alter_discapacidades_motoras_que_deve_im_and_more.py b/INCUBATE/incubate/incubate/actividades/migrations/0005_alter_discapacidades_motoras_que_deve_im_and_more.py new file mode 100644 index 0000000000000000000000000000000000000000..0933ce1fc8a15395caed2069228dae53cfb26247 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/migrations/0005_alter_discapacidades_motoras_que_deve_im_and_more.py @@ -0,0 +1,29 @@ +# Generated by Django 4.2.1 on 2023-05-09 04:28 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('actividades', '0004_discapacidades_motoras_que_deve_im_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='discapacidades_motoras', + name='que_deve_im', + field=models.ImageField(blank=True, null=True, upload_to='Imagenes/', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['png', 'jpg'], message='Sólo se permiten imágenes PNG')], verbose_name=''), + ), + migrations.AlterField( + model_name='discapacidades_motoras', + name='que_es_im', + field=models.ImageField(blank=True, null=True, upload_to='Imagenes/', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['png', 'jpg'], message='Sólo se permiten imágenes PNG')], verbose_name=''), + ), + migrations.AlterField( + model_name='discapacidades_motoras', + name='recomendaciones_im', + field=models.ImageField(blank=True, null=True, upload_to='Imagenes/', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['png', 'jpg'], message='Sólo se permiten imágenes PNG')], verbose_name=''), + ), + ] diff --git a/INCUBATE/incubate/incubate/actividades/migrations/0006_actividad_likes.py b/INCUBATE/incubate/incubate/actividades/migrations/0006_actividad_likes.py new file mode 100644 index 0000000000000000000000000000000000000000..bac060abb9b9125a863c9c2d5968c200b9655551 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/migrations/0006_actividad_likes.py @@ -0,0 +1,20 @@ +# Generated by Django 4.2.1 on 2023-05-30 22:24 + +from django.conf import settings +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('actividades', '0005_alter_discapacidades_motoras_que_deve_im_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='actividad', + name='likes', + field=models.ManyToManyField(blank=True, null=True, to=settings.AUTH_USER_MODEL), + ), + ] diff --git a/INCUBATE/incubate/incubate/actividades/migrations/0007_alter_actividad_referencias.py b/INCUBATE/incubate/incubate/actividades/migrations/0007_alter_actividad_referencias.py new file mode 100644 index 0000000000000000000000000000000000000000..5b7ab8324c514299a139e02ab70e6e07cacc7859 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/migrations/0007_alter_actividad_referencias.py @@ -0,0 +1,19 @@ +# Generated by Django 4.2.1 on 2023-05-31 06:18 + +import django.core.validators +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('actividades', '0006_actividad_likes'), + ] + + operations = [ + migrations.AlterField( + model_name='actividad', + name='referencias', + field=models.FileField(blank=True, null=True, upload_to='Documentos/', validators=[django.core.validators.FileExtensionValidator(allowed_extensions=['pdf'], message='Sólo se permiten Documentos PDF')]), + ), + ] diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__init__.py b/INCUBATE/incubate/incubate/actividades/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0001_initial.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0001_initial.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3d27fefde387d95de40c797d99b40bde07c7b53f Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0001_initial.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0002_actividad.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0002_actividad.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..256f46e38aaa007f5455e6115851682cec700a09 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0002_actividad.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0002_alter_actividad_recursos_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0002_alter_actividad_recursos_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e9e5429ce3dd28876bdbeda86a667fa6d41432f3 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0002_alter_actividad_recursos_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0002_alter_discapacidades_motoras_documentacion.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0002_alter_discapacidades_motoras_documentacion.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1cff69ab0de6c6fd28081a022b6f8192ad91eb6a Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0002_alter_discapacidades_motoras_documentacion.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0003_alter_discapacidades_motoras_documentacion.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0003_alter_discapacidades_motoras_documentacion.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c8be58205a9b595f16cc37fb11588a941f621f77 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0003_alter_discapacidades_motoras_documentacion.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0003_remove_actividad_descripcion_actividad_recursos_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0003_remove_actividad_descripcion_actividad_recursos_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..15b2899fab41843963b1c04ae646e6cece5496f3 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0003_remove_actividad_descripcion_actividad_recursos_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0003_rename_documentacion_discapacidades_motoras_documentaciones.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0003_rename_documentacion_discapacidades_motoras_documentaciones.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7c728268fbe58b3ca1dedbd38aa95d356cb73dad Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0003_rename_documentacion_discapacidades_motoras_documentaciones.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0004_alter_actividad_competencias_desarrollar_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0004_alter_actividad_competencias_desarrollar_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e61a4f481923b1659fa088d4f8d4c92c9cd63330 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0004_alter_actividad_competencias_desarrollar_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0004_discapacidades_motoras_que_deve_im_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0004_discapacidades_motoras_que_deve_im_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ffb15877d7a3e4853db350fb42c431d2f1661945 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0004_discapacidades_motoras_que_deve_im_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0005_alter_discapacidades_motoras_documentacion.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0005_alter_discapacidades_motoras_documentacion.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2e3be42dba0d4c35ec97a48ac90c3e0e60e03461 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0005_alter_discapacidades_motoras_documentacion.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0005_alter_discapacidades_motoras_que_deve_im_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0005_alter_discapacidades_motoras_que_deve_im_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..db40b972715142ab7918efbb7886a2ddd7d7f047 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0005_alter_discapacidades_motoras_que_deve_im_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0006_actividad_likes.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0006_actividad_likes.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb80666ad9faaff00c0d765167c45aa963310a9e Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0006_actividad_likes.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0006_remove_actividad_tempo.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0006_remove_actividad_tempo.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e9bdbf3c1815d7f04487d100f2950564b171756b Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0006_remove_actividad_tempo.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0007_actividad_tempo.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0007_actividad_tempo.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7b9a82432f3b632099ce3adc6001eaa05fa9fbca Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0007_actividad_tempo.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0007_alter_actividad_referencias.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0007_alter_actividad_referencias.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f0d90c3b68b61054e376b13ea32c2dbfd4a8b44 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0007_alter_actividad_referencias.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0008_remove_discapacidades_motoras_descripcion.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0008_remove_discapacidades_motoras_descripcion.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..25e725b4d1c7cd99608769ea3bbe4d5438270277 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0008_remove_discapacidades_motoras_descripcion.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0009_alter_discapacidades_motoras_nombredisapacidad_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0009_alter_discapacidades_motoras_nombredisapacidad_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fcf461905560db4f10e781c293ca04e494db8d11 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0009_alter_discapacidades_motoras_nombredisapacidad_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0010_alter_actividad_recursos_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0010_alter_actividad_recursos_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..096b2b36da8113170561b6fe2984e3112f34ef66 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0010_alter_actividad_recursos_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0011_alter_actividad_recursos_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0011_alter_actividad_recursos_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97f938ecf8ef0cbda641b8e3d8e72ad967008788 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0011_alter_actividad_recursos_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0012_remove_actividad_desarrollo_atividad_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0012_remove_actividad_desarrollo_atividad_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e8a2060b05fbc0044d2ed4f637db4a12ca7aa49d Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/0012_remove_actividad_desarrollo_atividad_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/__init__.cpython-39.pyc b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b91bd8adceead85569fb8001014b39e50cc84314 Binary files /dev/null and b/INCUBATE/incubate/incubate/actividades/migrations/__pycache__/__init__.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/actividades/models.py b/INCUBATE/incubate/incubate/actividades/models.py new file mode 100644 index 0000000000000000000000000000000000000000..d50a76c79ffa287040866910b6930b99df28b529 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/models.py @@ -0,0 +1,33 @@ +from django.db import models +from django.contrib.auth.models import User +from .validadores import documentos_validador,imagen_validador + + +class Discapacidades_motoras(models.Model): + nombreDisapacidad = models.CharField("Nombre del la discapacidad", max_length=200,unique=True) + que_es=models.TextField("¿Que es?") + que_es_im = models.ImageField('', upload_to='Imagenes/',validators=[imagen_validador],null=True,blank=True) + que_deve_conocer_familia=models.TextField("¿Que se debe conocer en el entorno familiar?") + que_deve_im = models.ImageField('', upload_to='Imagenes/',validators=[imagen_validador],null=True,blank=True) + recomendaciones=models.TextField("Recomendaciones") + recomendaciones_im = models.ImageField('', upload_to='Imagenes/',validators=[imagen_validador],null=True,blank=True) + documentaciones= models.FileField(upload_to = 'Documentos/', null=True,blank=True,validators=[documentos_validador]) + referencias=models.TextField("Referencias") + def __str__(self): + return f"{self.nombreDisapacidad}" + +class Actividad(models.Model): + nombreActividad = models.CharField("Nombre de la actividad", max_length=200) + tempo= models.IntegerField(default=0) + aprendizajes_esperados = models.TextField("Aprendizajes esperados ") + aspectos_a_favorecer= models.TextField("Aspectos a favorecer") + Recursos= models.TextField("Recursos") + competencias_desarrollar=models.TextField("Competencias a desarrollar",null=True,blank=True) + descripción_actividad=models.TextField("Descripción de la actividad") + url = models.URLField(max_length = 500,null=True,blank=True) + referencias=models.FileField(upload_to = 'Documentos/', null=True,blank=True,validators=[documentos_validador]) + likes= models.ManyToManyField(User, null=True,blank=True) + def __str__(self): + return f"{self.nombreActividad}" + def cantidad_likes(self): + return self.likes.count() diff --git a/INCUBATE/incubate/incubate/actividades/templates/404/404.html b/INCUBATE/incubate/incubate/actividades/templates/404/404.html new file mode 100644 index 0000000000000000000000000000000000000000..6e7ab34ed3d04045cb9249c4ff252b8e3ccdc937 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/templates/404/404.html @@ -0,0 +1,64 @@ + + + + + + + Stellar Admin + + + + + + + + + + + + + + +
+
+
+
+
+
+
+

404

+
+
+

SORRY!

+

The page you’re looking for was not found.

+
+
+
+ +
+
+
+

Copyright © 2020 All rights reserved.

+
+
+
+
+
+ +
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/templates/actividad_template.html b/INCUBATE/incubate/incubate/actividades/templates/actividad_template.html new file mode 100644 index 0000000000000000000000000000000000000000..ededd7c5f80054deffc86968d4d27efa1e48844c --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/templates/actividad_template.html @@ -0,0 +1,79 @@ +{% extends 'base.html' %} +{% load static %} + +{% block encabezado %} +

Actividad {{nom_activ}}

+{% endblock encabezado %} + + +{% block titulo %} + Actividad {{nom_activ}} +{% endblock titulo %} + +{% block contenido %} +
+

+ Tiempo esperado para esta actividad:
+

+ + Esta actividad puede dura {{ actividad.tempo}} minuto.

+ +

+ Aprendizajes Esperados:
+

+ {{ actividad.aprendizajes_esperados}}

+ +

+ Aspectos para favorecer: +
+

+ {{ actividad.aspectos_a_favorecer|linebreaksbr}}

+ +

+ Recursos:
+

+ {{ actividad.Recursos|linebreaksbr}}

+ +

+ Competencias a desarrollar:
+

+ {{ actividad.competencias_desarrollar|linebreaksbr}}

+ +

+ Descripción de la actividad:
+

+ {{ actividad.descripción_actividad|linebreaksbr}}

+ +

+ Video de la actividad:
+

+
+ +
+ {{actividad.url}}

+ +

+ Referencias:
+

+ +

+ {{actividad.referencias}}

+ Esta actividad cuenta con {{likes}} likes
+ + + {% if tieneL %} + + Dislike + + + {% else %} + + Like + + + {% endif %} + + +
+ <- Volver a la lista de Actividades
+{% endblock contenido %} diff --git a/INCUBATE/incubate/incubate/actividades/templates/actividades/actividad_form.html b/INCUBATE/incubate/incubate/actividades/templates/actividades/actividad_form.html new file mode 100644 index 0000000000000000000000000000000000000000..0c5d6e4fbc98d492ad93e15446a37365525f9bc6 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/templates/actividades/actividad_form.html @@ -0,0 +1,35 @@ +{% extends 'base.html' %} +{% load static %} + +{% block encabezado2 %} + +{% endblock encabezado2 %} + +{% block contenido10 %} +Se utilizaron estas actividades para los familiares,fomentando a un sano vinculo en entre dichos anteriormente. +{% endblock contenido10 %} + +{% block encabezado %} + Actividades +{% endblock encabezado %} + + +{% block titulo %} + Activiedaes +{% endblock titulo %} + +{% block contenido %} +
+ {% csrf_token %} + {{form.as_p}} + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + Regresar + +
+ + +{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/templates/actividades/actividad_list.html b/INCUBATE/incubate/incubate/actividades/templates/actividades/actividad_list.html new file mode 100644 index 0000000000000000000000000000000000000000..bf3b5e293fa96b64ce998d78dd8b5ae62c58cfa2 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/templates/actividades/actividad_list.html @@ -0,0 +1,72 @@ +{% extends 'base.html' %} + + +{% block encabe %} +
+
+
+
+

+ ¿Para qué son las actividades? +

+
+
+
+
+ Estas actividades son para trabajar en familia, con ellas se intentará crear o fortalecer el vínculo familiar. +
+{% endblock encabe %} + +{% block encabezado %} + Lista de Actividades +{% endblock encabezado %} + +{% block titulo %} +Actividades +{% endblock titulo %} + +{% block contenido %} + + + + {% for grupo in request.user.groups.all %} + + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + + + + {% for actividad in object_list %} + + + + + {% empty %} + + + + {% endfor %} + +
Nombre de la ActividadesOpciones
+ {{actividad.nombreActividad}} + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + Eliminar + + + Editar + + {% endif %} + {% endfor %} + +
+

No existen Actividades registradas

+
<- Regresar a la bienvenida
+ +{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/templates/actividades/discapacidades_motoras_form.html b/INCUBATE/incubate/incubate/actividades/templates/actividades/discapacidades_motoras_form.html new file mode 100644 index 0000000000000000000000000000000000000000..c47587e9b9f3c82fc7a900e2eecd985bb9806458 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/templates/actividades/discapacidades_motoras_form.html @@ -0,0 +1,27 @@ +{% extends 'base.html' %} +{% load static %} + +{% block encabezado %} + Discapacidad +{% endblock encabezado %} + + +{% block titulo %} + Discapacidad +{% endblock titulo %} + +{% block contenido %} +
+ {% csrf_token %} + {{form.as_p}} + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + Regresar + +
+ + +{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/templates/actividades/discapacidades_motoras_list.html b/INCUBATE/incubate/incubate/actividades/templates/actividades/discapacidades_motoras_list.html new file mode 100644 index 0000000000000000000000000000000000000000..da1365a083ea5a1d59107c249653303765889c60 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/templates/actividades/discapacidades_motoras_list.html @@ -0,0 +1,73 @@ +{% extends 'base.html' %} + +{% block encabe %} +
+
+
+
+

+ ¿Definición sobre que es una discapacidad? +

+
+
+
+
+ La OMS define a la discapacidad como alguna limitación o impedimento de la capacidad de llevar a cabo una actividad en la forma o dentro del margen que se considera normal para el ser humano. +
+{% endblock encabe %} + +{% block encabezado %} + Lista de Discapacidades +{% endblock encabezado %} + +{% block titulo %} + Lista de las Discapacidades +{% endblock titulo %} + +{% block contenido %} + + + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + + {% endif %} + {% endfor %} + + + + {% for discapacidad in object_list %} + + + + + {% empty %} + + + + {% endfor %} + +
Nombre de la discapacidadOpciones
+ Discapacidad {{discapacidad.nombreDisapacidad}} + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + Editar + + + Eliminar + + {% endif %} + {% endfor %} +
+

No existen discapacidad registradas

+
+ +{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/templates/bienvenida.html b/INCUBATE/incubate/incubate/actividades/templates/bienvenida.html new file mode 100644 index 0000000000000000000000000000000000000000..bc317365ba678f7325047b45b1e282748348cf1b --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/templates/bienvenida.html @@ -0,0 +1,78 @@ + + + + + + + +{% extends 'base.html' %} +{% load static %} + + +{% block encabezado %} +

CONSEJO ZACATECANO DE CIENCIA, TECNOLOGÍA E INNOVACIÓN DIRECCIÓN DE INNOVACIÓN Y DESARROLLO REGIONAL

+{% endblock encabezado %} + +{% block titulo %} + INCUBATEC +{% endblock titulo %} + +{% block contenido %} +
+
+

PROGRAMA DE APOYO PARA LA INCUBACIÓN DE EMPRESAS DE ALTO IMPACTO TECNOLÓGICO,
DEL ESTADO DE ZACATECAS (INCUBATE)

+ Imagen INCUBATE +
+
+

INCUBATEC es una empresa de alto impacto tecnológico, escalable y que genera beneficios a la sociedad Zacatecana.

+

Si quieres saber más información sobre INCUBATEC, visita el siguiente enlace:

+ Más información sobre INCUBATEC +
+
+ + +{% endblock contenido %} + +{% block contenido2 %} + + +{% endblock contenido2 %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/templates/discapacidad_template.html b/INCUBATE/incubate/incubate/actividades/templates/discapacidad_template.html new file mode 100644 index 0000000000000000000000000000000000000000..c0f770059500c9f7baaf80882edd9318b3adfa59 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/templates/discapacidad_template.html @@ -0,0 +1,49 @@ +{% extends 'base.html' %} +{% load static %} + +{% block encabezado %} + Discapacidad {{nom_dis}} +{% endblock encabezado %} + + +{% block titulo %} +Discapacidad {{nom_dis}} +{% endblock titulo %} + +{% block contenido %} +
+

+ ¿Qué es la discapacidad {{nom_dis}}?
+

+ + {{discapacidad.que_es}}

+ Image

+ +

+ ¿Qué se debe conocer sobre la discapacidad motora?
+

+ {{discapacidad.que_deve_conocer_familia|linebreaksbr}}

+ Image

+ +

+ Recomendaciones:
+

+ {{ discapacidad.recomendaciones|linebreaksbr }}

+ Image

+ +

+ Documentacion:
+

+ + {{discapacidad.documentaciones}}

+

+ Referencias:
+

+ {{discapacidad.referencias|linebreaksbr}}

+ + <- Volver a la lista de discapacidades
+ Ver la lista de actividades -> + + + +{% endblock contenido %} diff --git a/INCUBATE/incubate/incubate/actividades/templates/grafica.html b/INCUBATE/incubate/incubate/actividades/templates/grafica.html new file mode 100644 index 0000000000000000000000000000000000000000..234848c72f998d1aa4e8645c017300460283256c --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/templates/grafica.html @@ -0,0 +1,52 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Grafica +{% endblock titulo %} + +{% block contenido %} +
+ + + + + + +{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/tests.py b/INCUBATE/incubate/incubate/actividades/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/INCUBATE/incubate/incubate/actividades/urls.py b/INCUBATE/incubate/incubate/actividades/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..d8f7540a7385e66862146c441c99c2d895cd5675 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/urls.py @@ -0,0 +1,19 @@ +from django.urls import path, include +from actividades import views +from django.contrib.auth.decorators import login_required + +urlpatterns = [ + path('', login_required(views.BienvenidaView.as_view()), name='bienvenida'), + #path('lista_Discapacidades', login_required(views.ListaDiscapacidades.as_view()), name='lista_Discapacidades'), + #path('nueva_discapacidad', login_required(views.CrearDiscapacidadView.as_view()), name='nueva_discapacidad'), + #path('eliminar_discapacidad/', views.eliminarMateriaDiscapacidad, name='eliminar_Discapacidad'), + #path('editar_discapacidad/', login_required(views.EditarDiscapacidadView.as_view()), name='editar_discapacidad'), + #path('actividad_discapacidad', login_required(views.ListaActividades.as_view()), name='actividad_Lista'), + #path('nueva_actividad', login_required(views.CrearActividadView.as_view()), name='nueva_actividad'), + #path('editar_actividad/', login_required(views.EditarActividadView.as_view()), name='editar_actividad'), + #path('eliminar_actividad/', views.eliminarMateriaActividad, name='eliminar_actividad'), + #path('actividad/', views.actividad_view, name='atividadVista'), + #path('Discapacidad/', views.discapacidad_view, name='discapacidadVista'), + #path('pdf//', views.pdf_view, name='pdf_view'), + #path('like/', views.dar_like, name='dar_like'), +] diff --git a/INCUBATE/incubate/incubate/actividades/validadores.py b/INCUBATE/incubate/incubate/actividades/validadores.py new file mode 100644 index 0000000000000000000000000000000000000000..fbb6e0db0e4372e9f1452a91a7e5a3d383146962 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/validadores.py @@ -0,0 +1,11 @@ +from django.core.validators import FileExtensionValidator, RegexValidator + +documentos_validador = FileExtensionValidator( + allowed_extensions=['pdf'], + message="Sólo se permiten Documentos PDF" +) + +imagen_validador = FileExtensionValidator( + allowed_extensions=['png','jpg'], + message="Sólo se permiten imágenes PNG" +) \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/actividades/views.py b/INCUBATE/incubate/incubate/actividades/views.py new file mode 100644 index 0000000000000000000000000000000000000000..7718826a73862918bf352cdf0809f4a1bfd904a9 --- /dev/null +++ b/INCUBATE/incubate/incubate/actividades/views.py @@ -0,0 +1,130 @@ +from collections import Counter +from django.shortcuts import render, redirect +from django.contrib.auth.models import User +from django.db.models import Count +from django.urls import reverse_lazy +from django.views.generic import ListView, TemplateView +from django.views.generic.edit import CreateView, UpdateView, DeleteView +from Formulario.models import Grafica +from convocatoria.models import Convocatoria +from .models import Discapacidades_motoras,Actividad +from .forms import FormActividad, FormActividadEditar, FormDiscapacidades_motoras,FormDiscapacidadEditar,FormdiscapacidadActividad +from django.contrib.auth.decorators import login_required,permission_required +from django.http import FileResponse +from django.shortcuts import get_object_or_404 +from django.template import loader + +class BienvenidaView(TemplateView): + template_name = 'bienvenida.html' + + def get_context_data(self, **kwargs): + context = super().get_context_data(**kwargs) + ultima_convocatoria=Convocatoria.objects.all().last() + graficas = Grafica.objects.all() + graficas = Grafica.objects.filter(contesta_formularios__convocatoria=ultima_convocatoria) + if graficas.exists(): + nombres_graficas = [grafica.usuario.username for grafica in graficas] + valores_numericos = [float(grafica.valor_numerico) for grafica in graficas] + max_valor_numerico = max(valores_numericos) + else: + + # Si graficas está vacío, asignar listas vacías + nombres_graficas = "no hay nada" + valores_numericos = 0 + max_valor_numerico = 0 # Otra opción es asignar un valor predeterminado + + + context['nombres_graficas'] = nombres_graficas + context['valores_numericos'] = valores_numericos + context['max_valor_numerico'] = max_valor_numerico + return context + +class ListaDiscapacidades(ListView): + model = Discapacidades_motoras + +class CrearDiscapacidadView(CreateView): + model = Discapacidades_motoras + form_class = FormDiscapacidades_motoras + success_url = reverse_lazy('lista_Discapacidades') + success_message = "Datos guardados de manera exitosa" + +class EditarDiscapacidadView(UpdateView): + model = Discapacidades_motoras + form_class = FormDiscapacidadEditar + extra_context = {'accion': 'Editar'} + success_url = reverse_lazy('lista_Discapacidades') + +@login_required +def eliminarMateriaDiscapacidad(request, id): + Discapacidades_motoras.objects.get(id=id).delete() + return redirect('lista_Discapacidades') + +class ListaActividades(ListView): + model = Actividad + +class CrearActividadView(CreateView): + model = Actividad + form_class = FormActividad + success_url = reverse_lazy('actividad_Lista') + success_message = "Datos guardados de manera exitosa" + +class EditarActividadView(UpdateView): + model = Actividad + form_class = FormActividadEditar + extra_context = {'accion': 'Editar'} + success_url = reverse_lazy('actividad_Lista') + success_message = "Datos guardados de manera exitosa" + +@login_required +def eliminarMateriaActividad(request, id): + actividad=Actividad.objects.get(id=id) + id_r = actividad.discapacidad.id + Actividad.objects.get(id=id).delete() + return redirect('actividad_Lista') + +@login_required +def actividad_view(request, id): + actividad=Actividad.objects.get(id=id) + nom=actividad.nombreActividad + tieneL= request.user in actividad.likes.all() + context = { + 'actividad': actividad, + 'nom_activ':nom, + 'likes': actividad.cantidad_likes(), + 'tieneL': tieneL + } + return render(request, 'actividad_template.html', context) + +@login_required +def discapacidad_view(request, id): + discapacidad=Discapacidades_motoras.objects.get(id=id) + nom=discapacidad.nombreDisapacidad + context = { + 'discapacidad': discapacidad, + 'nom_dis':nom + } + return render(request, 'discapacidad_template.html', context) + +@login_required +def pdf_view(request, model_id): + obj = get_object_or_404(Discapacidades_motoras, pk=model_id) + + # Assuming your model has a 'pdf_file' field representing the PDF file + pdf_file = obj.documentaciones + + response = FileResponse(open(pdf_file.path, 'rb'), content_type='application/pdf') + return response + +@login_required +def dar_like(request, pk): + post = get_object_or_404(Actividad, id=pk) + if request.user in post.likes.all(): + post.likes.remove(request.user) + else: + post.likes.add(request.user.id) + + return redirect('/actividad/'+str(pk)) + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/__init__.py b/INCUBATE/incubate/incubate/asignacion_tareas/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/__init__.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..10bc29a3aed2b0dfebe3d776df67c9f8d0391c5f Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/__init__.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/admin.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/admin.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..892628f6a98b49c3b725f18c3c288a8da0640bca Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/admin.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/apps.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/apps.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..37186d063af1f6759b7bb31acdbbfd3aa88ef902 Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/apps.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/forms.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/forms.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..881c0cba97f21fa4270fe56a084cd0247a48626d Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/forms.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/models.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/models.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..48887fc3fd4714fe5d294d7d6736417defae8ad6 Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/models.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/urls.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/urls.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..83ca2526bda06d737b8ebfe37c2495150720bf20 Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/urls.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/views.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/views.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b9adbf419ea7cd4c4c9d0af963da7db38b79c30e Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/__pycache__/views.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/admin.py b/INCUBATE/incubate/incubate/asignacion_tareas/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..25a497a9af4c7e5cf23fc516a616e2f67b2d14ed --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/admin.py @@ -0,0 +1,11 @@ +from django.contrib import admin + +from . import models + +admin.site.register(models.Categoria) +admin.site.register(models.Tareas) +admin.site.register(models.Campo) +admin.site.register(models.ContestaTareas) +admin.site.register(models.DetalleContestaTareas) +admin.site.register(models.OpcionesCampo) + diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/apps.py b/INCUBATE/incubate/incubate/asignacion_tareas/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..e18f97996f6bf79197a6f73304cbd81b67c2f1aa --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class AsignacionTareasConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'asignacion_tareas' diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/forms.py b/INCUBATE/incubate/incubate/asignacion_tareas/forms.py new file mode 100644 index 0000000000000000000000000000000000000000..97c315308872fc001088a688cd5f167900836bde --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/forms.py @@ -0,0 +1,109 @@ +from django import forms +from django.db import models + +from convocatoria.models import Convocatoria +from .models import Campo, OpcionesCampo, Tareas +from django.contrib.auth.decorators import login_required,permission_required + +class AplicaTarea(forms.Form): + def __init__(self, *args, **kwargs): + campos = kwargs.pop('campos') + + super(AplicaTarea, self).__init__(*args, **kwargs) + + TIPO_DATO = { + '1': forms.CharField(max_length=100,widget=forms.TextInput(attrs={'class':'form-control'})), + '2': forms.IntegerField(widget=forms.NumberInput(attrs={'class':'form-control'})), + '3': forms.DecimalField(widget=forms.NumberInput(attrs={'class':'form-control'})), + '4': forms.DateField(widget=forms.DateInput(attrs={'type':'date'})), + '5': forms.DateTimeField(widget=forms.widgets.DateTimeInput(attrs={'type':'date'})), + '6': forms.EmailField(widget=forms.TextInput(attrs={'class':'form-control'})), + '7': forms.ModelChoiceField(queryset=None,widget=forms.Select(attrs={'class':'form-control'})), + '8': forms.ModelChoiceField(queryset=None, widget=forms.RadioSelect()), + '9': forms.FileField(widget=forms.ClearableFileInput(attrs={'class': 'form-control'})) + } + + for campo in campos: + if campo.tipo_dato not in ['7','8']: + self.fields[f"{str(campo.campo)}"] = TIPO_DATO[campo.tipo_dato] + else: + opciones = [(op.opcion,op.opcion) for op in campo.opciones_campo.all()] + if campo.tipo_dato == '7': + self.fields[f"{str(campo.campo)}"] = forms.CharField( + widget = forms.Select(attrs={'class':'form-control'}, choices=opciones)) + else: + self.fields[f"{str(campo.campo)}"] = forms.CharField( + widget = forms.RadioSelect(choices=opciones)) + + if campo.requerida == '0': + self.fields[f"{str(campo.campo)}"].required = False + if campo.tipo_dato == '1': + self.fields[f"{str(campo.campo)}"].max_length = campo.size_texto + + + class Meta: + model = Campo + fields = '__all__' + +class FormCampos2(forms.ModelForm): + class Meta: + model = Campo + exclude = ['tareas'] + widgets = { + 'campo': forms.TextInput(attrs={'class': 'form-control'}), + 'requerida': forms.Select(attrs={'class': 'form-control'}), + 'tipo_dato': forms.Select(attrs={'class': 'form-control'}), + 'size_texto': forms.NumberInput(attrs={'class': 'form-control'}), + } + +class FormTareas(forms.ModelForm): + class Meta: + model = Tareas + fields = '__all__' + widgets = { + 'nombre': forms.TextInput(attrs={'class': 'form-control'}), + 'descripcion': forms.Textarea(attrs={'class': 'form-control'}), + 'activado': forms.Select(attrs={'class': 'form-control'}), + } + +class FormFiltroSolicitud(forms.Form): + tareas = forms.CharField( + widget=forms.TextInput(attrs={'class':'form-control','placeholder':'Modalidad'}), + required=False + ) + usuario = forms.CharField( + widget=forms.TextInput(attrs={'class':'form-control','placeholder':'Usuario'}), + required=False + ) + +class FormFiltroCampos(forms.Form): + requerida = forms.CharField( + widget=forms.TextInput(attrs={'class':'form-control','placeholder':'requerida'}), + required=False + ) + tipo_dato = forms.CharField( + widget=forms.TextInput(attrs={'class':'form-control','placeholder':'tipo_dato'}), + required=False + ) + + +class FormOpcionesCampo1(forms.ModelForm): + class Meta: + model = OpcionesCampo + exclude = ['campo'] + widgets = { + 'opcion': forms.TextInput(attrs={'class': 'form-control'}), + 'valor': forms.TextInput(attrs={'class': 'form-control'}), + } + +def handle_uploaded_file(f): + with open('Documentos/Usuario/'+f, 'wb+') as destination: + for chunk in f.chunks(): + destination.write(chunk) + +class FiltrosSolicitud(forms.Form): + comb=Convocatoria.objects.all() + convocatoria = forms.CharField( + widget=forms.TextInput(attrs={'placeholder':'Combocatoria','class':'form-control'}), + required=False, + ) diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0001_initial.py b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0001_initial.py new file mode 100644 index 0000000000000000000000000000000000000000..7827ecedbf85c860dbdc2e9a2724a6c8e99a119a --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0001_initial.py @@ -0,0 +1,30 @@ +# Generated by Django 4.2.5 on 2023-09-27 19:28 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Categoria', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('nombre', models.CharField(max_length=50)), + ], + ), + migrations.CreateModel( + name='Tareas', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('nombre', models.CharField(max_length=50, unique=True)), + ('descripcion', models.TextField(max_length=250, verbose_name='Descripción')), + ('activado', models.CharField(choices=[('1', 'Activado'), ('0', 'Desactivado')], default='1', max_length=1)), + ], + ), + ] diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0002_campo.py b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0002_campo.py new file mode 100644 index 0000000000000000000000000000000000000000..1bb9b6ad90d0181b512a63a25b141b782a02a0aa --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0002_campo.py @@ -0,0 +1,25 @@ +# Generated by Django 4.2.5 on 2023-09-27 19:31 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('asignacion_tareas', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='Campo', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('campo', models.CharField(max_length=500)), + ('requerida', models.CharField(choices=[('1', 'Si'), ('0', 'No')], default='1', max_length=1)), + ('tipo_dato', models.CharField(choices=[('1', 'Texto'), ('2', 'Númerico'), ('3', 'Decimal'), ('4', 'Fecha'), ('5', 'Fecha y hora'), ('6', 'Correo electrónico'), ('7', 'Selección (Combo)'), ('8', 'Selección (Opciones)'), ('9', 'Archivo PDF')], max_length=2, verbose_name='Tipo de respuesta')), + ('size_texto', models.SmallIntegerField(blank=True, choices=[(25, '25'), (50, '50'), (100, '100'), (150, '150'), (200, '200'), (300, '300'), (500, '500'), (1000, '1000'), (1500, '1500')], null=True, verbose_name='Máximo de palabras apróximadamente')), + ('tareas', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='campos', to='asignacion_tareas.tareas', verbose_name='Modalidad')), + ], + ), + ] diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0003_opcionescampo.py b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0003_opcionescampo.py new file mode 100644 index 0000000000000000000000000000000000000000..6d30945ecd26f9c93155a58ac5075b42942760bb --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0003_opcionescampo.py @@ -0,0 +1,23 @@ +# Generated by Django 4.2.5 on 2023-09-27 19:33 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('asignacion_tareas', '0002_campo'), + ] + + operations = [ + migrations.CreateModel( + name='OpcionesCampo', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('opcion', models.CharField(max_length=150, verbose_name='Opción')), + ('valor', models.CharField(max_length=2)), + ('campo', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='opciones_campo', to='asignacion_tareas.campo', verbose_name='Opciones')), + ], + ), + ] diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0004_contestatareas_detallecontestatareas.py b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0004_contestatareas_detallecontestatareas.py new file mode 100644 index 0000000000000000000000000000000000000000..65aa91422e564d5757e8fe490fa41b2b2366a134 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0004_contestatareas_detallecontestatareas.py @@ -0,0 +1,38 @@ +# Generated by Django 4.2.5 on 2023-09-27 19:36 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ('convocatoria', '0001_initial'), + ('asignacion_tareas', '0003_opcionescampo'), + ] + + operations = [ + migrations.CreateModel( + name='ContestaTareas', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('fecha', models.DateTimeField(auto_now=True, verbose_name='Fecha')), + ('validacion', models.CharField(choices=[('2', 'Rechazado'), ('1', 'Aceptado'), ('0', 'Pendiente')], default=0, max_length=1)), + ('convocatoria', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='convocatoria.convocatoria', verbose_name='Convocatoria')), + ('tareas', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='asignacion_tareas.tareas', verbose_name='Tareas')), + ('usuario', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='Usuario')), + ], + ), + migrations.CreateModel( + name='DetalleContestaTareas', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('respuesta', models.CharField(max_length=1500)), + ('uploadedFile', models.FileField(blank=True, null=True, upload_to='Documentos')), + ('campo', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='asignacion_tareas.campo', verbose_name='Campo')), + ('contesta_Tareas', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='asignacion_tareas.contestatareas', verbose_name='Contesta')), + ], + ), + ] diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0005_contestatareas_contesta_formularios.py b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0005_contestatareas_contesta_formularios.py new file mode 100644 index 0000000000000000000000000000000000000000..958cd6d5f2d6f564e379e6fe63af2c8549032ed0 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0005_contestatareas_contesta_formularios.py @@ -0,0 +1,20 @@ +# Generated by Django 4.2.5 on 2023-09-28 16:38 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('Formulario', '0019_alter_grafica_valor_numerico'), + ('asignacion_tareas', '0004_contestatareas_detallecontestatareas'), + ] + + operations = [ + migrations.AddField( + model_name='contestatareas', + name='contesta_formularios', + field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='Formulario.contestaformularios', verbose_name='Contesta'), + ), + ] diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0006_remove_contestatareas_validacion.py b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0006_remove_contestatareas_validacion.py new file mode 100644 index 0000000000000000000000000000000000000000..ba2eb3915f8ce89c3db6f1434445e55ab5409b2d --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/0006_remove_contestatareas_validacion.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.5 on 2023-09-28 16:42 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('asignacion_tareas', '0005_contestatareas_contesta_formularios'), + ] + + operations = [ + migrations.RemoveField( + model_name='contestatareas', + name='validacion', + ), + ] diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__init__.py b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0001_initial.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0001_initial.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..95af91ad0453754048ca72468d19f8526b875147 Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0001_initial.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0002_campo.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0002_campo.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e2095d2742b45108dfcf55bfbae237ed383bfd1 Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0002_campo.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0003_opcionescampo.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0003_opcionescampo.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f1ea4f401f194294edc74de4543690d2688ccaf Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0003_opcionescampo.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0004_contestatareas_detallecontestatareas.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0004_contestatareas_detallecontestatareas.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ddd825545b9bd7668c4c1b0b5fc5daaadacf823b Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0004_contestatareas_detallecontestatareas.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0005_contestatareas_contesta_formularios.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0005_contestatareas_contesta_formularios.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2309568693443515f08aa5463e20abadd574fd0 Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0005_contestatareas_contesta_formularios.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0006_remove_contestatareas_validacion.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0006_remove_contestatareas_validacion.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..544ec01413bcfe9e0e66aaaf9a5a47e494d6321b Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/0006_remove_contestatareas_validacion.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/__init__.cpython-39.pyc b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2d89c9752b75d6f37d6a0e9c91d5a79f3f7a0feb Binary files /dev/null and b/INCUBATE/incubate/incubate/asignacion_tareas/migrations/__pycache__/__init__.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/models.py b/INCUBATE/incubate/incubate/asignacion_tareas/models.py new file mode 100644 index 0000000000000000000000000000000000000000..388e9b742a2bc9f373eda36997e6317321f4c0ab --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/models.py @@ -0,0 +1,93 @@ +from django.db import models +from django.contrib.auth.models import User +from convocatoria.models import Convocatoria + +class Categoria(models.Model): + nombre = models.CharField(max_length=50) + + def __str__(self): + return self.nombre + +ACTIVACION=[ + ('1','Activado'), + ('0','Desactivado'), +] + +#,unique=True +class Tareas(models.Model): + nombre = models.CharField(max_length=50,unique=True) + descripcion = models.TextField("Descripción", max_length=250) + activado = models.CharField(choices=ACTIVACION, max_length=1, default='1') + + def __str__(self): + return self.nombre + +SI_NO=[ + ('1','Si'), + ('0','No'), +] + + +SIZE_TEXTO = [ + (25,'25'), + (50,'50'), + (100,'100'), + (150,'150'), + (200,'200'), + (300,'300'), + (500,'500'), + (1000,'1000'), + (1500,'1500'), + +] +TIPO_DATO=[ + ('1','Texto'), + ('2','Númerico'), + ('3','Decimal'), + ('4','Fecha'), + ('5','Fecha y hora'), + ('6','Correo electrónico'), + ('7','Selección (Combo)'), + ('8','Selección (Opciones)'), + ('9','Archivo PDF'), +] + +class Campo(models.Model): + campo = models.CharField(max_length=500) + requerida = models.CharField(choices=SI_NO, max_length=1, default='1') + tipo_dato = models.CharField("Tipo de respuesta", max_length=2, choices=TIPO_DATO) + size_texto = models.SmallIntegerField("Máximo de palabras apróximadamente", null=True, + blank=True, choices=SIZE_TEXTO) + tareas = models.ForeignKey("asignacion_tareas.Tareas", verbose_name="Modalidad", + on_delete=models.CASCADE, related_name='campos', null=True) + + def __str__(self): + return self.campo + +class OpcionesCampo(models.Model): + opcion = models.CharField("Opción", max_length=150) + valor = models.CharField(max_length=2) + campo = models.ForeignKey("asignacion_tareas.Campo", verbose_name="Opciones", + on_delete=models.CASCADE, related_name='opciones_campo') + + def __str__(self): + return self.opcion + +class ContestaTareas(models.Model): + fecha = models.DateTimeField("Fecha", auto_now=True) + tareas = models.ForeignKey("asignacion_tareas.Tareas", verbose_name="Tareas", on_delete=models.CASCADE) + usuario = models.ForeignKey(User, verbose_name="Usuario", on_delete=models.CASCADE) + convocatoria = models.ForeignKey(Convocatoria, verbose_name="Convocatoria", on_delete=models.CASCADE, null=True) + contesta_formularios = models.ForeignKey("Formulario.ContestaFormularios", verbose_name="Contesta", on_delete=models.CASCADE, default=1) + + def __str__(self): + return self.tareas.nombre +" realizada por: "+ self.usuario.username + +class DetalleContestaTareas(models.Model): + campo = models.ForeignKey("asignacion_tareas.Campo", verbose_name="Campo", on_delete=models.CASCADE) + respuesta = models.CharField(max_length=1500) + uploadedFile = models.FileField(upload_to = "Documentos", null=True,blank=True) + contesta_Tareas = models.ForeignKey("asignacion_tareas.ContestaTareas", verbose_name="Contesta", on_delete=models.CASCADE) + + def __str__(self): + return self.campo.campo + self.respuesta \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/templates/Tarea.html b/INCUBATE/incubate/incubate/asignacion_tareas/templates/Tarea.html new file mode 100644 index 0000000000000000000000000000000000000000..c27d262453186df5614dfaf683f94a324026dfd6 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/templates/Tarea.html @@ -0,0 +1,38 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Registro de campos +{% endblock titulo %} + +{% block encabezado %} +

Tarea: {{ nom_Tarea }}

+{% endblock encabezado %} + +{% block contenido %} +
+
+ {% csrf_token %} + {{ form.non_field_errors }} +
+
+ {% for field in form %} +
+ + {{ field }} + {{ field.errors }} +
+ {% endfor %} +
+ + Regresar +
+
+
+
+
+{% endblock contenido %} + +{% block scripts %} + +{% endblock scripts %} diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/templates/asignacion_tareas/campo_form.html b/INCUBATE/incubate/incubate/asignacion_tareas/templates/asignacion_tareas/campo_form.html new file mode 100644 index 0000000000000000000000000000000000000000..24a18342f2848dfaaf94dd94bdcce8ba08c37d39 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/templates/asignacion_tareas/campo_form.html @@ -0,0 +1,44 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Nuevo Campo +{% endblock titulo %} + +{% block encabezado %} +
+
+
+

Agregar un nuevo campo

+
+
+
+{% endblock encabezado %} + +{% block contenido %} +
+
+
+ {% if messages %} + {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} + {% endif %} +
+ {% csrf_token %} + {{ form.as_p }} +
+
+ +
+
+ Regresar +
+
+
+
+
+
+{% endblock contenido %} diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/templates/asignacion_tareas/opcionescampo_form.html b/INCUBATE/incubate/incubate/asignacion_tareas/templates/asignacion_tareas/opcionescampo_form.html new file mode 100644 index 0000000000000000000000000000000000000000..0b198a362c02f89682060e8f5a49ef34045134b8 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/templates/asignacion_tareas/opcionescampo_form.html @@ -0,0 +1,40 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Nueva Opción de Campo +{% endblock titulo %} + +{% block encabezado %} +
+
+
+

Agregar Opción de Campo

+
+
+
+{% endblock encabezado %} + +{% block contenido %} +
+
+
+ {% if messages %} + {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} + {% endif %} +
+ {% csrf_token %} + {{ form.as_p }} +
+ + Regresar +
+
+
+
+
+{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/templates/asignacion_tareas/tareas_form.html b/INCUBATE/incubate/incubate/asignacion_tareas/templates/asignacion_tareas/tareas_form.html new file mode 100644 index 0000000000000000000000000000000000000000..f3a26a422449f499cc460b1cd65e165d0da164ac --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/templates/asignacion_tareas/tareas_form.html @@ -0,0 +1,33 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Nueva Tarea +{% endblock titulo %} + +{% block encabezado %} +
+
+
+

Agregar una nueva Tarea

+
+
+
+{% endblock encabezado %} + +{% block contenido %} +
+
+
+
+ {% csrf_token %} + {{form.as_p}} +
+ + Regresar +
+
+
+
+
+{% endblock contenido %} diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/templates/campo_form_tarea.html b/INCUBATE/incubate/incubate/asignacion_tareas/templates/campo_form_tarea.html new file mode 100644 index 0000000000000000000000000000000000000000..2de5942664078cfe5fe4aa06c0b6a614e232c788 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/templates/campo_form_tarea.html @@ -0,0 +1,34 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Nuevo Campo +{% endblock titulo %} + +{% block encabezado %} +

Agregar un nuevo campo para la tarea

+{% endblock encabezado %} + +{% block contenido %} +
+
+ {% if messages %} + {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} + {% endif %} +
+
+ {% csrf_token %} +
+ {{ form.as_p }} +
+
+ + Regresar +
+
+
+{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/templates/camposTareas.html b/INCUBATE/incubate/incubate/asignacion_tareas/templates/camposTareas.html new file mode 100644 index 0000000000000000000000000000000000000000..166ac1f44e5e1f4354d2dc5f6869623f55fc0ef4 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/templates/camposTareas.html @@ -0,0 +1,73 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Lista de los campos de la tarea +{% endblock titulo %} + +{% block encabezado %} +

Campos de la tarea: {{ nom_tarea }}

+{% endblock encabezado %} + +{% block contenido %} +
+
+ +
+
+
+
+ + + + + + + + + + {% for camposFormulario in camposTareas %} + + + + + + {% empty %} + + + + {% endfor %} + +
CampoTipo del campoOpciones
{{ camposFormulario.campo }} + {% if camposFormulario.tipo_dato == "1" %} + Texto + {% elif camposFormulario.tipo_dato == "2" %} + Numérico + {% elif camposFormulario.tipo_dato == "3" %} + Decimal + {% elif camposFormulario.tipo_dato == "4" %} + Fecha + {% elif camposFormulario.tipo_dato == "5" %} + Fecha y hora + {% elif camposFormulario.tipo_dato == "6" %} + Correo electrónico + {% elif camposFormulario.tipo_dato|stringformat:"s" in "7 8" %} + Selección + {% else %} + Archivo PDF + {% endif %} + + {% if camposFormulario.tipo_dato|stringformat:"s" in "7 8" %} + Agregar opción + {% endif %} + Editar + Eliminar +
+

No hay campos registrados

+
+
+
+
+{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/templates/lista_tareas.html b/INCUBATE/incubate/incubate/asignacion_tareas/templates/lista_tareas.html new file mode 100644 index 0000000000000000000000000000000000000000..176a24f87f8fab3cb8930e7b5853f5fd67308b33 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/templates/lista_tareas.html @@ -0,0 +1,186 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Tareas +{% endblock titulo %} + +{% block encabezado %} +

Tareas Pendientes

+{% endblock encabezado %} + +{% block contenido %} +{% for grupo in request.user.groups.all %} +{% if 'Administrador' in grupo.name %} +  AgregarTarea  +{% endif %} +{% endfor %} + + + {% if messages %} +
+ {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} +
+ {% endif %} + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} +
+ + {% if tareas == "0" %} + + + + {% else %} + + + + + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + + + + {% for formulario in tareas %} + + {% if request.user.groups.all.count == 0 %} + + {% endif %} + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + + {% empty %} + + + + {% endfor %} + + {% endif %} +
+ {{ mensajes }} +
TreasDescripción de las tareasEstado de la tareaOpciones
{{ formulario.nombre }}{{ formulario.nombre }} + {% if formulario.descripcion %} + {{ formulario.descripcion }} + {% else %} + No cuenta con descripción + {% endif %} + + {% if formulario.activado == "0" %} + Desactivado + {% else %} + Activado + {% endif %} + + Ver + Editar + Eliminar +
+

No existen tareas para realizar

+
+
+ {% endif %} + {% endfor %} + + {% if request.user.groups.all.count == 0 %} +
+ + {% if tareas == "0" %} + + + + {% else %} + + + + + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + + + + {% if valida == "1" %} + {% for formulario in tareas %} + + {% if request.user.groups.all.count == 0 %} + {% if formulario.activado == "1" %} + + {% else %} + + {% endif %} + + {% endif %} + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + + {% empty %} + + + + {% endfor %} + {% else %} + + + + {% endif %} + + +
+ {{ mensajes }} +
TreasDescripción de las tareasEstado de la tareaOpciones
{{ formulario.nombre }}{{ formulario.nombre }}{{ formulario.nombre }} + {% if formulario.descripcion %} + {{ formulario.descripcion }} + {% else %} + No cuenta con descripción + {% endif %} + + {% if formulario.activado == "0" %} + Desactivado + {% else %} + Activado + {% endif %} + + Ver + Editar + Eliminar +
+

No existen tareas para realizar

+
+

No existen tareas para realizar

+
+
+ {% endif %} + {% endif %} + +{% endblock contenido %} diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/tests.py b/INCUBATE/incubate/incubate/asignacion_tareas/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/urls.py b/INCUBATE/incubate/incubate/asignacion_tareas/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..3521e6d9e707996ff7caa33a100b4d260c034ab5 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/urls.py @@ -0,0 +1,27 @@ +from django.urls import path +from . import views +from django.contrib.auth.decorators import login_required + + +urlpatterns = [ + path('Lista_de_tareas', views.lista_Tareas, name='tareas_lista'), + + path('Nueva_tarea', login_required(views.CrearTareaView.as_view()), name='nuevoTarea'), + + path('Editar_tarea/', login_required(views.EditarTareaView.as_view()), name='editarTarea'), + + path('eliminar_Tarea/', views.eliminar_Tarea, name='eliminar_Tarea'), + + path('responder/', views.Tarea, name='Tarea'), + + path('campos_tarea/', views.modalidadesCamposTareaLista, name='campos_ListaTarea'), + + path('eliminar/campoTarea/', views.eliminar_campo_tarea, name='eliminar_campoTarea'), + + path('editar/campoTarea/', views.editar_campo_tarea, name='editar_campoTarea'), + + path('Nuevo/campoTarea/', views.nuevo_campo1Tarea, name='nuevo_campoTarea'), + + path('opcion_campoTarea/Nuevo/', views.opcionCampoNuevoTarea, name='opcion_campo_NuevoTarea'), + +] diff --git a/INCUBATE/incubate/incubate/asignacion_tareas/views.py b/INCUBATE/incubate/incubate/asignacion_tareas/views.py new file mode 100644 index 0000000000000000000000000000000000000000..9b1fdf580c1a51f7aeb80eae1e9f6ac4ee6ae347 --- /dev/null +++ b/INCUBATE/incubate/incubate/asignacion_tareas/views.py @@ -0,0 +1,203 @@ +from django.shortcuts import render, redirect + +from Formulario.models import ContestaFormularios +from .models import Tareas, ContestaTareas, DetalleContestaTareas, Campo, OpcionesCampo +from convocatoria.models import Convocatoria +from .forms import AplicaTarea,FormCampos2, FormFiltroCampos, FormOpcionesCampo1, FormTareas +from django.views.generic.edit import CreateView,UpdateView +from django.urls import reverse_lazy +from django.contrib.auth.decorators import login_required +# Create your views here. + +@login_required +def lista_Tareas(request): + tarea = "0" + convocatoria = Convocatoria.objects.all().last() + mensaje = "Lo siento, No tienes tareas asignadas" + contestaFormularios = ContestaFormularios.objects.filter(usuario=request.user) + ultima_contestaFormulario = ContestaFormularios.objects.filter(usuario=request.user).last() + tareas = Tareas.objects.all() + + # Obtener la última convocatoria válida del usuario si existe + ultima_convocatoria_valida = ContestaFormularios.objects.filter( + usuario=request.user, + validacion='1' + ).last() + + # Establecer el valor de 'valida' en función de la comparación + if ultima_convocatoria_valida and ultima_contestaFormulario: + if ultima_contestaFormulario.convocatoria == ultima_convocatoria_valida.convocatoria: + valida = '1' + else: + valida = '0' + else: + valida = '0' # Si el usuario no ha contestado ningún formulario, establecer en '0' + + context = { + 'mensajes': mensaje, + 'convocatorias': convocatoria, + 'tareas': tareas, + 'valida': valida, + } + return render(request, 'lista_tareas.html', context) + +class CrearTareaView(CreateView): + model = Tareas + form_class = FormTareas + success_url = reverse_lazy('tareas_lista') + extra_context = {'accion':'Nuevo tarea'} + +class EditarTareaView(UpdateView): + model = Tareas + form_class = FormTareas + extra_context = {'accion':'Modificar'} + success_url = reverse_lazy('tareas_lista') + success_message = "Modalidad editada" + +@login_required +def eliminar_Tarea(request, id): + Tareas.objects.get(id=id).delete() + return redirect('tareas_lista') + +@login_required +def Tarea(request, id): + nom_Tarea = "" + Tarea = Tareas.objects.filter(id=id) + convocatoriaF = Convocatoria.objects.all().last() + contestaFormularios = ContestaFormularios.objects.filter(usuario=request.user).last() + + for formu in Tarea: + nom_Tarea = formu.nombre + + quiz = Tareas.objects.get(id=id) + form = AplicaTarea(request.FILES, campos=quiz.campos.all()) + + if request.method == 'POST': + form = AplicaTarea(request.POST, request.FILES, campos=quiz.campos.all()) + if form.is_valid(): + data = form.cleaned_data + contesta_Tarea = ContestaTareas.objects.create( + tareas=quiz, + usuario=request.user, + convocatoria=convocatoriaF, + contesta_formularios=contestaFormularios + ) + + for campo in quiz.campos.all(): + if campo.tipo_dato == '9': + DetalleContestaTareas.objects.create( + campo=campo, + respuesta=data[f"{campo.campo}"], + uploadedFile=data[f"{campo.campo}"], + contesta_Tareas=contesta_Tarea, + ) + else: + DetalleContestaTareas.objects.create( + campo=campo, + respuesta=data[f"{campo.campo}"], + contesta_Tareas=contesta_Tarea + ) + + # Después de procesar los datos, redirige a la vista 'tareas_lista' + return redirect('tareas_lista') + + context = { + 'form': form, + 'nom_Tarea': nom_Tarea + } + + return render(request, 'Tarea.html', context) + +@login_required +def modalidadesCamposTareaLista(request, id): + nom_tarea="" + form = FormFiltroCampos() + camposTareas = Campo.objects.filter(tareas_id=id) + print(camposTareas) + tarea=Tareas.objects.filter(id=id) + for formu in tarea: + nom_tarea=formu.nombre + + if request.method == 'POST': + form = FormFiltroCampos(request.POST) + requerida = request.POST.get('requerida', None) + tipo_dato = request.POST.get('tipo_dato', None) + if requerida: + camposTareas = camposTareas.filter(requerida__contains=requerida) + if tipo_dato: + tipo_dato = camposTareas.filter(tipo_dato__contains=tipo_dato) + + context={ + 'camposTareas': camposTareas, + 'form':form, + 'id_form':id, + 'nom_tarea':nom_tarea + } + return render(request, 'camposTareas.html', context) + +@login_required +def eliminar_campo_tarea(request, id): + campo_id=Campo.objects.get(id=id) + campo_id=campo_id.tareas_id + Campo.objects.get(id=id).delete() + return redirect('campos_ListaTarea',campo_id) + +@login_required +def editar_campo_tarea(request, id): + campo = Campo.objects.get(id=id) + id=campo.tareas_id + if request.method == 'POST': + form = FormCampos2(request.POST, instance=campo) + if form.is_valid(): + form.save() + return redirect('campos_ListaTarea',id) + else: + form = FormCampos2(instance=campo) + + context={ + 'form':form, + 'id':id, + } + return render(request, 'campo_form_tarea.html', context) + +@login_required +def nuevo_campo1Tarea(request, id): + if request.method == 'POST': + form = FormCampos2(request.POST) + if form.is_valid(): + form = Campo.objects.create( + campo = request.POST.get('campo', None), + requerida = request.POST.get('requerida', None), + tipo_dato = request.POST.get('tipo_dato', None), + size_texto = request.POST.get('size_texto', None), + tareas_id = id + ) + return redirect('campos_ListaTarea',id) + else: + form = FormCampos2() + context={ + 'form':form, + 'id':id, + } + return render(request, 'campo_form_tarea.html', context) + +@login_required +def opcionCampoNuevoTarea(request, id): + campo = Campo.objects.get(id=id) + id_p=campo.tareas_id + if request.method == 'POST': + form = FormOpcionesCampo1(request.POST) + if form.is_valid(): + form = OpcionesCampo.objects.create( + opcion = request.POST.get('opcion', None), + valor = request.POST.get('valor', None), + campo_id = id + ) + return redirect('campos_ListaTarea',id_p) + else: + form = FormOpcionesCampo1() + context={ + 'form':form, + 'id':id_p, + } + return render(request, 'campo_form_tarea.html', context) \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/convocatoria/__init__.py b/INCUBATE/incubate/incubate/convocatoria/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/INCUBATE/incubate/incubate/convocatoria/__pycache__/__init__.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd803d79d5e40a76db7201d336b6453806beb0f9 Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/__pycache__/__init__.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/__pycache__/admin.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/__pycache__/admin.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f099542aef6e63c8c50b25775e8c3261aa87da78 Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/__pycache__/admin.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/__pycache__/apps.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/__pycache__/apps.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd682b13ea127add888dddddedc9c9868057fb4e Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/__pycache__/apps.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/__pycache__/forms.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/__pycache__/forms.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a93291ef176444d5116c2e340d4be7ba544baed Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/__pycache__/forms.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/__pycache__/models.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/__pycache__/models.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19d3e07692362df1928011c222d43f4d2fb3925c Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/__pycache__/models.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/__pycache__/urls.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/__pycache__/urls.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f4aac87f32d2572ec6927fd891f5bcf2e61f4a3 Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/__pycache__/urls.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/__pycache__/views.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/__pycache__/views.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..faa6aaf8a8ce6476df14341c0d6fab76f3d33cb0 Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/__pycache__/views.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/admin.py b/INCUBATE/incubate/incubate/convocatoria/admin.py new file mode 100644 index 0000000000000000000000000000000000000000..c6ad52e14b577c3f09eba3bfebc15105a139b7bc --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/admin.py @@ -0,0 +1,4 @@ +from django.contrib import admin +from convocatoria.models import Convocatoria + +admin.site.register(Convocatoria) \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/convocatoria/apps.py b/INCUBATE/incubate/incubate/convocatoria/apps.py new file mode 100644 index 0000000000000000000000000000000000000000..6bee6a40c15de87aabcb5c257babcead69c99dbe --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ConvocatoriaConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'convocatoria' diff --git a/INCUBATE/incubate/incubate/convocatoria/forms.py b/INCUBATE/incubate/incubate/convocatoria/forms.py new file mode 100644 index 0000000000000000000000000000000000000000..a01ed48cabbee7a97bc7c8f316951e59f53895ce --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/forms.py @@ -0,0 +1,26 @@ +from django import forms +from django.forms import DateTimeInput +from django.utils import timezone # Agrega esta línea +from convocatoria.models import Convocatoria + +class FormConvocatoria(forms.ModelForm): + fecha_inicio = forms.DateTimeField( + widget=DateTimeInput(attrs={'type': 'datetime-local', 'class': 'form-control'}), + ) + fecha_cierre = forms.DateTimeField( + widget=DateTimeInput(attrs={'type': 'datetime-local', 'class': 'form-control'}), + ) + activado = forms.ChoiceField( + choices=[('1', 'Activado'), ('0', 'Desactivado')], + widget=forms.Select(attrs={'class': 'form-control'}), + ) + + class Meta: + model = Convocatoria + fields = '__all__' + + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + # Agregar atributo min a los campos de fecha y hora + self.fields['fecha_inicio'].widget.attrs['min'] = timezone.now().strftime('%Y-%m-%dT%H:%M') + self.fields['fecha_cierre'].widget.attrs['min'] = timezone.now().strftime('%Y-%m-%dT%H:%M') \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/convocatoria/migrations/0001_initial.py b/INCUBATE/incubate/incubate/convocatoria/migrations/0001_initial.py new file mode 100644 index 0000000000000000000000000000000000000000..109c0207547b6f8caf0db4688281222c448f4dc2 --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/migrations/0001_initial.py @@ -0,0 +1,23 @@ +# Generated by Django 4.2.4 on 2023-08-21 19:33 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Convocatoria', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('fecha_inicio', models.DateTimeField(verbose_name='Fecha_inicio')), + ('fecha_cierre', models.DateTimeField(verbose_name='Fecha_cierre')), + ('activado', models.CharField(choices=[('1', 'Activado'), ('0', 'Desactivado')], default='1', max_length=1)), + ], + ), + ] diff --git a/INCUBATE/incubate/incubate/convocatoria/migrations/0002_alter_convocatoria_fecha_cierre_and_more.py b/INCUBATE/incubate/incubate/convocatoria/migrations/0002_alter_convocatoria_fecha_cierre_and_more.py new file mode 100644 index 0000000000000000000000000000000000000000..725a10d47648b8c7348b47cf81db0d63daaf6114 --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/migrations/0002_alter_convocatoria_fecha_cierre_and_more.py @@ -0,0 +1,23 @@ +# Generated by Django 4.2.7 on 2023-11-06 21:59 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('convocatoria', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='convocatoria', + name='fecha_cierre', + field=models.DateField(verbose_name='Fecha_cierre'), + ), + migrations.AlterField( + model_name='convocatoria', + name='fecha_inicio', + field=models.DateField(verbose_name='Fecha_inicio'), + ), + ] diff --git a/INCUBATE/incubate/incubate/convocatoria/migrations/0003_alter_convocatoria_fecha_cierre_and_more.py b/INCUBATE/incubate/incubate/convocatoria/migrations/0003_alter_convocatoria_fecha_cierre_and_more.py new file mode 100644 index 0000000000000000000000000000000000000000..ba2968455df94a31821e2fc6a5bbd4ea4bbe1b95 --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/migrations/0003_alter_convocatoria_fecha_cierre_and_more.py @@ -0,0 +1,23 @@ +# Generated by Django 4.2.7 on 2023-11-06 23:16 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('convocatoria', '0002_alter_convocatoria_fecha_cierre_and_more'), + ] + + operations = [ + migrations.AlterField( + model_name='convocatoria', + name='fecha_cierre', + field=models.DateTimeField(verbose_name='Fecha_cierre'), + ), + migrations.AlterField( + model_name='convocatoria', + name='fecha_inicio', + field=models.DateTimeField(verbose_name='Fecha_inicio'), + ), + ] diff --git a/INCUBATE/incubate/incubate/convocatoria/migrations/__init__.py b/INCUBATE/incubate/incubate/convocatoria/migrations/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/0001_initial.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/0001_initial.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e7519f1b8ce97cbb6403fb0b1cac73098fb5acc Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/0001_initial.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/0002_alter_convocatoria_fecha_cierre_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/0002_alter_convocatoria_fecha_cierre_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..57045067ffd49e7c1c0678fab741793b1365d64d Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/0002_alter_convocatoria_fecha_cierre_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/0003_alter_convocatoria_fecha_cierre_and_more.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/0003_alter_convocatoria_fecha_cierre_and_more.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..780812dc47229f93c7ad31cdafbf56d719655802 Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/0003_alter_convocatoria_fecha_cierre_and_more.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/__init__.cpython-39.pyc b/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a8d128b285639c4771fae0a8a58aa9846658ac84 Binary files /dev/null and b/INCUBATE/incubate/incubate/convocatoria/migrations/__pycache__/__init__.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/convocatoria/models.py b/INCUBATE/incubate/incubate/convocatoria/models.py new file mode 100644 index 0000000000000000000000000000000000000000..957c2748dfd64fa4bac6a3a0ba9e77f4d9f72aac --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/models.py @@ -0,0 +1,14 @@ +from django.db import models + +ACTIVACION=[ + ('1','Activado'), + ('0','Desactivado'), +] + +class Convocatoria(models.Model): + fecha_inicio = models.DateTimeField("Fecha_inicio", null=False) + fecha_cierre = models.DateTimeField("Fecha_cierre", null=False) + activado = models.CharField(choices=ACTIVACION, max_length=1, default='1') + + def __str__(self): + return str(self.fecha_inicio) +" "+str(self.fecha_cierre)+ " "+ self.activado diff --git a/INCUBATE/incubate/incubate/convocatoria/templates/convocatoria/convocatoria_form.html b/INCUBATE/incubate/incubate/convocatoria/templates/convocatoria/convocatoria_form.html new file mode 100644 index 0000000000000000000000000000000000000000..2b8ca2cee7a126c44e018da6b19f78b19b53f321 --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/templates/convocatoria/convocatoria_form.html @@ -0,0 +1,33 @@ +{% extends 'base.html' %} +{% load static %} + +{% block encabezado %} +

Crear Convocatoria

+{% endblock encabezado %} + +{% block titulo %} + Activar Convocatoria +{% endblock titulo %} + +{% block contenido %} +
+ {% if messages %} +
+ {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} +
+ {% endif %} +

Activar Convocatoria

+
+ {% csrf_token %} + {{ form.as_p }} +
+ + Regresar +
+
+
+{% endblock contenido %} diff --git a/INCUBATE/incubate/incubate/convocatoria/templates/convocatoria/convocatoria_list.html b/INCUBATE/incubate/incubate/convocatoria/templates/convocatoria/convocatoria_list.html new file mode 100644 index 0000000000000000000000000000000000000000..b5d7ce13712efbaaf4476525a6532db9a0205b15 --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/templates/convocatoria/convocatoria_list.html @@ -0,0 +1,84 @@ +{% extends 'base.html' %} +{% load static %} + +{% block encabezado %} +

Convocatorias

+{% endblock encabezado %} + +{% block titulo %} + Lista de Convocatorias +{% endblock titulo %} + +{% block contenido %} +
+
+ + + + + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + + + + {% for convocatoria in object_list %} + + + + {% for grupo in request.user.groups.all %} + {% if 'Administrador' in grupo.name %} + + {% endif %} + {% endfor %} + + {% empty %} + + + + {% endfor %} + +
Fecha InicioFecha CierreOpciones
{{ convocatoria.fecha_inicio }}{{ convocatoria.fecha_cierre }} +
+ + +
+
+ + +
+
+
+
+

No existe convocatoria registrada

+
+
+
+{% endblock contenido %} + +{% block scripts %} + + +{% endblock scripts %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/convocatoria/templates/editar_convocatoria.html b/INCUBATE/incubate/incubate/convocatoria/templates/editar_convocatoria.html new file mode 100644 index 0000000000000000000000000000000000000000..6cf51e7aa5a59a82b3128d2a490e5ddae415cd0e --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/templates/editar_convocatoria.html @@ -0,0 +1,37 @@ +{% extends 'base.html' %} +{% load static %} + +{% block encabezado %} +

Editar convocatoria

+{% endblock encabezado %} + +{% block titulo %} + Modificar Convocatoria +{% endblock titulo %} + +{% block contenido %} + {% if messages %} +
+ {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} +
+ {% endif %} + +
+
+ {% csrf_token %} + + {{ form.non_field_errors }} + + {{ form.as_p }} {# Esto renderizará todos los campos como párrafos #} + +
+ + Regresar +
+
+
+{% endblock contenido %} diff --git a/INCUBATE/incubate/incubate/convocatoria/templates/nueva_convocatoria.html b/INCUBATE/incubate/incubate/convocatoria/templates/nueva_convocatoria.html new file mode 100644 index 0000000000000000000000000000000000000000..b681e176ba4987e34c3ac9d5eeb379d61d303ae9 --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/templates/nueva_convocatoria.html @@ -0,0 +1,43 @@ +{% extends 'base.html' %} +{% load static %} + +{% block titulo %} + Actividad {{ nom_activ }} +{% endblock titulo %} + +{% block encabezado %} +

Agregar una nueva convocatoria

+{% endblock encabezado %} + +{% block contenido %} + {% if messages %} +
+ {% for message in messages %} +
+ {{ message }} +
+ {% endfor %} +
+ {% endif %} + +
+
+ {% csrf_token %} + {{ form.non_field_errors }} + + {% for field in form %} +
+ + {{ field }} + {{ field.errors }} +
+ {% endfor %} + +
+ + Regresar +
+
+
+
+{% endblock contenido %} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/convocatoria/tests.py b/INCUBATE/incubate/incubate/convocatoria/tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6 --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/INCUBATE/incubate/incubate/convocatoria/urls.py b/INCUBATE/incubate/incubate/convocatoria/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..9d4ed4a6e931e2ac80e55875cb04bece9e2a179a --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/urls.py @@ -0,0 +1,11 @@ +from django.urls import path +from convocatoria import views +from django.contrib.auth.decorators import login_required + + +urlpatterns = [ + path('convocatoria/', login_required(views.ListaConvocatoria.as_view()), name='convocatoria_lista'), + path('convocatoria/nueva', views.nuevo_convocatoria, name='nueva_convocatoria'), + path('convocatoria/eliminar/', views.eliminar_convocatoria, name='eliminar_convocatoria'), + path('convocatoria/editar/', views.editar_convocatoria, name='editar_convocatoria'), +] \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/convocatoria/views.py b/INCUBATE/incubate/incubate/convocatoria/views.py new file mode 100644 index 0000000000000000000000000000000000000000..cbdf534e8ab2468e465e1a4b0e8895d8fa746343 --- /dev/null +++ b/INCUBATE/incubate/incubate/convocatoria/views.py @@ -0,0 +1,64 @@ +from logging import warning +from datetime import date +from pprint import pprint +from django.contrib import messages +from xml.dom import ValidationErr +from django.shortcuts import render, redirect, get_object_or_404 +from convocatoria.models import Convocatoria +from django.views.generic import ListView, TemplateView +from .forms import FormConvocatoria +from django.contrib.auth.decorators import login_required, permission_required +from django.core.exceptions import ValidationError +from django.contrib.messages.views import SuccessMessageMixin +from django.contrib.auth.decorators import login_required,permission_required +from django.views.generic.edit import CreateView,UpdateView,DeleteView +from django.urls import reverse_lazy + + +class ListaConvocatoria(ListView): + model = Convocatoria + +@login_required +def eliminar_convocatoria(request, id): + Convocatoria.objects.get(id=id).delete() + return redirect('modalidades_lista') + +@login_required +def nuevo_convocatoria(request): + if request.method == 'POST': + form = FormConvocatoria(request.POST) + if form.is_valid(): + cierre =request.POST.get("fecha_cierre") + inicio =request.POST.get("fecha_inicio") + if cierre < inicio: + messages.error(request, 'La fecha de cierre no puede ser menor a la fecha de inicio ') + else: + form.save() + return redirect('convocatoria_lista') + + else: + form = FormConvocatoria() + return render(request, 'nueva_convocatoria.html', {'form':form}) + +@login_required +def editar_convocatoria(request, id): + convocatoria = Convocatoria.objects.get(id=id) + + if request.method == 'POST': + form = FormConvocatoria(request.POST, instance=convocatoria) + if form.is_valid(): + cierre = form.cleaned_data.get("fecha_cierre") + inicio = form.cleaned_data.get("fecha_inicio") + if cierre < inicio: + messages.error(request, 'La fecha de cierre no puede ser menor a la fecha de inicio') + else: + form.save() + return redirect('convocatoria_lista') + else: + form = FormConvocatoria(instance=convocatoria) + + context = { + 'form': form, + 'convocatoria': convocatoria, + } + return render(request, 'editar_convocatoria.html', context) diff --git a/INCUBATE/incubate/incubate/db.sqlite3 b/INCUBATE/incubate/incubate/db.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..9eaa9276fea7647877537283e586803ad1676f71 Binary files /dev/null and b/INCUBATE/incubate/incubate/db.sqlite3 differ diff --git a/INCUBATE/incubate/incubate/incubate/__init__.py b/INCUBATE/incubate/incubate/incubate/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/INCUBATE/incubate/incubate/incubate/__pycache__/__init__.cpython-39.pyc b/INCUBATE/incubate/incubate/incubate/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e2b11fd2f318eb881e2fb7523c40668fb8891b48 Binary files /dev/null and b/INCUBATE/incubate/incubate/incubate/__pycache__/__init__.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/incubate/__pycache__/settings.cpython-39.pyc b/INCUBATE/incubate/incubate/incubate/__pycache__/settings.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e07407b6adb9ab90a18c6b60fe019bc21a139ed Binary files /dev/null and b/INCUBATE/incubate/incubate/incubate/__pycache__/settings.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/incubate/__pycache__/urls.cpython-39.pyc b/INCUBATE/incubate/incubate/incubate/__pycache__/urls.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3fd4b4e9f75dcf2c4a27afd4b15516d0720ddd30 Binary files /dev/null and b/INCUBATE/incubate/incubate/incubate/__pycache__/urls.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/incubate/__pycache__/wsgi.cpython-39.pyc b/INCUBATE/incubate/incubate/incubate/__pycache__/wsgi.cpython-39.pyc new file mode 100644 index 0000000000000000000000000000000000000000..08e849396f08b359bf0c227750324f78052e6645 Binary files /dev/null and b/INCUBATE/incubate/incubate/incubate/__pycache__/wsgi.cpython-39.pyc differ diff --git a/INCUBATE/incubate/incubate/incubate/asgi.py b/INCUBATE/incubate/incubate/incubate/asgi.py new file mode 100644 index 0000000000000000000000000000000000000000..d5c15db5450c339295abb40ad6ea02be7a57f039 --- /dev/null +++ b/INCUBATE/incubate/incubate/incubate/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for incubate project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/4.2/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'incubate.settings') + +application = get_asgi_application() diff --git a/INCUBATE/incubate/incubate/incubate/settings.py b/INCUBATE/incubate/incubate/incubate/settings.py new file mode 100644 index 0000000000000000000000000000000000000000..98c83d5e3abbc14fc2df20f67d2d79d5475c2f89 --- /dev/null +++ b/INCUBATE/incubate/incubate/incubate/settings.py @@ -0,0 +1,164 @@ +from pathlib import Path +import os +from django.urls import reverse_lazy +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/4.2/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-4sm=2^vvajxmcfezp5rni+c4^(2^b1vakhrh&^$nbmw0m5!qi+' +X_FRAME_OPTIONS = 'SAMEORIGIN' +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = ['*'] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'usuarios', + 'actividades', + 'Formulario', + 'convocatoria', + 'asignacion_tareas', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'incubate.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'incubate.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/4.2/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/4.2/topics/i18n/ + +LANGUAGE_CODE = 'es-mx' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/4.2/howto/static-files/ + +STATIC_URL = 'static/' +STATICFILES_DIRS = ( + os.path.join(BASE_DIR, 'static/'), +) + +# Default primary key field type +# https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' + + +# Servicio de correo +EMAIL_USE_TLS = True +EMAIL_HOST = 'smtp.gmail.com' +EMAIL_PORT = 587 +# Se necesita una cuanta google con contraseña de aplicasion +EMAIL_HOST_USER = 'caphdfa@gmail.com' +EMAIL_HOST_PASSWORD = 'ivlyfomyekzovmpx' +#EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' + +#Es donde se almacenaran los documentos de usuarios +MEDIA_URL = 'media/' +MEDIA_ROOT = os.path.join(BASE_DIR, 'media') + +LOGIN_URL = reverse_lazy('login') +LOGIN_REDIRECT_URL = reverse_lazy('bienvenida') +LOGOUT_REDIRECT_URL = reverse_lazy('login') +# Default primary key field type +# https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field + +# Servicio de correo +EMAIL_USE_TLS = True +EMAIL_HOST = 'smtp.gmail.com' +EMAIL_PORT = 587 +# Se necesita una cuanta google con contraseña de aplicasion +EMAIL_HOST_USER = 'caphdfa@gmail.com' +EMAIL_HOST_PASSWORD = 'ivlyfomyekzovmpx' +#EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' + +EMAIL_SUBJECT_PREFIX = '[My Website]' +EMAIL_HOST = 'smtp.gmail.com' +EMAIL_PORT = 587 +EMAIL_HOST_USER = 'caphdfa@gmail.com' +EMAIL_HOST_PASSWORD = 'ivlyfomyekzovmpx' +DEFAULT_FROM_EMAIL = 'caphdfa@gmail.com' +ACCOUNT_EMAIL_SUBJECT_PREFIX = 'Reset password' +ACCOUNT_EMAIL_CONFIRMATION_EXPIRE_DAYS = 2 +ACCOUNT_EMAIL_CONFIRMATION_COOLDOWN_SECONDS = 60 +ACCOUNT_EMAIL_CONFIRMATION_AUTHENTICATED_REDIRECT_URL = '/profile/' +ACCOUNT_EMAIL_CONFIRMATION_ANONYMOUS_REDIRECT_URL = '/login/' + +EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' # O la configuración que uses +EMAIL_USE_SSL = False \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/incubate/urls.py b/INCUBATE/incubate/incubate/incubate/urls.py new file mode 100644 index 0000000000000000000000000000000000000000..b875f23a239d882fb49b400fc127143288a2e0fb --- /dev/null +++ b/INCUBATE/incubate/incubate/incubate/urls.py @@ -0,0 +1,17 @@ +from django.contrib import admin +from django.urls import path, include +from usuarios import views +#agregamos settings y static para lo la subida de archivos +from django.conf import settings +from django.conf.urls.static import static +urlpatterns = [ + path('admin/', admin.site.urls), + path('usuario/', include('usuarios.urls'),name='bienvenida'), + path('', include('actividades.urls'),name='bienvenida'), + path('convocatorias/', include('convocatoria.urls')), + path('modalidades/', include('Formulario.urls')), + path('tareas/', include('asignacion_tareas.urls')), +] +if settings.DEBUG: + urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) +#agregamos esta linea para dirigirnos los documentos a media diff --git a/INCUBATE/incubate/incubate/incubate/wsgi.py b/INCUBATE/incubate/incubate/incubate/wsgi.py new file mode 100644 index 0000000000000000000000000000000000000000..0677f98f6d39c30f034e72f21e30bae334eee317 --- /dev/null +++ b/INCUBATE/incubate/incubate/incubate/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for incubate project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/4.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'incubate.settings') + +application = get_wsgi_application() diff --git a/INCUBATE/incubate/incubate/manage.py b/INCUBATE/incubate/incubate/manage.py new file mode 100644 index 0000000000000000000000000000000000000000..754d7c006aed0cf559f729187102aa53246b260e --- /dev/null +++ b/INCUBATE/incubate/incubate/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'incubate.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/INCUBATE/incubate/incubate/media/Documentos/35165885_2.pdf b/INCUBATE/incubate/incubate/media/Documentos/35165885_2.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4876bea9ef64207fa9695eb0b92a2434c73a82c5 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/35165885_2.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/4_Discapacidad-Auditiva.pdf b/INCUBATE/incubate/incubate/media/Documentos/4_Discapacidad-Auditiva.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5b5b8b840e2626e44f51ca6f8799863ff9daaacd Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/4_Discapacidad-Auditiva.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/ActaN/Antecedentes.pdf b/INCUBATE/incubate/incubate/media/Documentos/ActaN/Antecedentes.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dec91799500981509fd83e822da290f2f47258a5 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/ActaN/Antecedentes.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/ActaN/Antecedentes_VHuYfaa.pdf b/INCUBATE/incubate/incubate/media/Documentos/ActaN/Antecedentes_VHuYfaa.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dec91799500981509fd83e822da290f2f47258a5 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/ActaN/Antecedentes_VHuYfaa.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/ActaN/Objetivos.pdf b/INCUBATE/incubate/incubate/media/Documentos/ActaN/Objetivos.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed45a5fc794c03ec1ce9c952384b7ad042a3ac97 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/ActaN/Objetivos.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/ActaN/Objetivos_nRTbEWP.pdf b/INCUBATE/incubate/incubate/media/Documentos/ActaN/Objetivos_nRTbEWP.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed45a5fc794c03ec1ce9c952384b7ad042a3ac97 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/ActaN/Objetivos_nRTbEWP.pdf differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/ActaN/Presentaci\303\263n_de_exposici\303\263n.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/ActaN/Presentaci\303\263n_de_exposici\303\263n.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..4be3d1005624d464a9bcb111ef207cf3e67e6f1f Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/ActaN/Presentaci\303\263n_de_exposici\303\263n.pdf" differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/ActaN/identificacion.pdf b/INCUBATE/incubate/incubate/media/Documentos/ActaN/identificacion.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3725d20b68ea5cb9daf87d4e619ba171c3baf78a Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/ActaN/identificacion.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Actividad8.pdf b/INCUBATE/incubate/incubate/media/Documentos/Actividad8.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b40106ccf4a0c2fa53fd05818daed2f0e65cf22f Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Actividad8.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Actividad8_Hx84PO7.pdf b/INCUBATE/incubate/incubate/media/Documentos/Actividad8_Hx84PO7.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b40106ccf4a0c2fa53fd05818daed2f0e65cf22f Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Actividad8_Hx84PO7.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Actividad8_YyUo0Ds.pdf b/INCUBATE/incubate/incubate/media/Documentos/Actividad8_YyUo0Ds.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b40106ccf4a0c2fa53fd05818daed2f0e65cf22f Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Actividad8_YyUo0Ds.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Actividad_2_Calidad.pdf b/INCUBATE/incubate/incubate/media/Documentos/Actividad_2_Calidad.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fa66030d9b95191b9bcf36baa6dc175b12f945c6 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Actividad_2_Calidad.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Antecedentes.pdf b/INCUBATE/incubate/incubate/media/Documentos/Antecedentes.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dec91799500981509fd83e822da290f2f47258a5 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Antecedentes.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Antecedentes_0kG1tgW.pdf b/INCUBATE/incubate/incubate/media/Documentos/Antecedentes_0kG1tgW.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dec91799500981509fd83e822da290f2f47258a5 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Antecedentes_0kG1tgW.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Antecedentes_BL6DlML.pdf b/INCUBATE/incubate/incubate/media/Documentos/Antecedentes_BL6DlML.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dec91799500981509fd83e822da290f2f47258a5 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Antecedentes_BL6DlML.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/CURP_GAMH000518HZSRRRA0.pdf b/INCUBATE/incubate/incubate/media/Documentos/CURP_GAMH000518HZSRRRA0.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f446cfdefecaa0178cbd0e60d1125b43226f3d0b Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/CURP_GAMH000518HZSRRRA0.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Convenio_Omar_Alejandro_052.pdf b/INCUBATE/incubate/incubate/media/Documentos/Convenio_Omar_Alejandro_052.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af7d833f9278a434f131de7e7cf601f2d62100a6 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Convenio_Omar_Alejandro_052.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Convenio_Omar_Alejandro_052_VpxUuRb.pdf b/INCUBATE/incubate/incubate/media/Documentos/Convenio_Omar_Alejandro_052_VpxUuRb.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af7d833f9278a434f131de7e7cf601f2d62100a6 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Convenio_Omar_Alejandro_052_VpxUuRb.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Curp/Antecedentes.pdf b/INCUBATE/incubate/incubate/media/Documentos/Curp/Antecedentes.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dec91799500981509fd83e822da290f2f47258a5 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Curp/Antecedentes.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Curp/Radar.pdf b/INCUBATE/incubate/incubate/media/Documentos/Curp/Radar.pdf new file mode 100644 index 0000000000000000000000000000000000000000..decb1c333e8746c0f1958ee7fbbb6e2be8fd3c7e Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Curp/Radar.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Curp/Radar_0VZmq9N.pdf b/INCUBATE/incubate/incubate/media/Documentos/Curp/Radar_0VZmq9N.pdf new file mode 100644 index 0000000000000000000000000000000000000000..decb1c333e8746c0f1958ee7fbbb6e2be8fd3c7e Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Curp/Radar_0VZmq9N.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Curp/Radar_KQWnzgs.pdf b/INCUBATE/incubate/incubate/media/Documentos/Curp/Radar_KQWnzgs.pdf new file mode 100644 index 0000000000000000000000000000000000000000..decb1c333e8746c0f1958ee7fbbb6e2be8fd3c7e Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Curp/Radar_KQWnzgs.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Curp/identificacion.pdf b/INCUBATE/incubate/incubate/media/Documentos/Curp/identificacion.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3725d20b68ea5cb9daf87d4e619ba171c3baf78a Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Curp/identificacion.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Curp/reqts_checklist.pdf b/INCUBATE/incubate/incubate/media/Documentos/Curp/reqts_checklist.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38c4160447caf55e478a568c1393d8395c2734e9 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Curp/reqts_checklist.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Actividad8.pdf b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Actividad8.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b40106ccf4a0c2fa53fd05818daed2f0e65cf22f Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Actividad8.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Objetivos.pdf b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Objetivos.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed45a5fc794c03ec1ce9c952384b7ad042a3ac97 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Objetivos.pdf differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..4be3d1005624d464a9bcb111ef207cf3e67e6f1f Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n_3mWxmPq.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n_3mWxmPq.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..4be3d1005624d464a9bcb111ef207cf3e67e6f1f Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n_3mWxmPq.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n_OZuBs7T.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n_OZuBs7T.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..4be3d1005624d464a9bcb111ef207cf3e67e6f1f Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n_OZuBs7T.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n_UUC7ipS.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n_UUC7ipS.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..4be3d1005624d464a9bcb111ef207cf3e67e6f1f Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Curriculum/Presentaci\303\263n_de_exposici\303\263n_UUC7ipS.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/Convenio_Omar_Alejandro_052.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/Convenio_Omar_Alejandro_052.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..af7d833f9278a434f131de7e7cf601f2d62100a6 Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/Convenio_Omar_Alejandro_052.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/Objetivos.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/Objetivos.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..ed45a5fc794c03ec1ce9c952384b7ad042a3ac97 Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/Objetivos.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/Radar.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/Radar.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..decb1c333e8746c0f1958ee7fbbb6e2be8fd3c7e Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/Radar.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/SRS_Axoshop.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/SRS_Axoshop.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..c59c7837fba9ccb23ff2c286cb3b32d0533c02fa Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/SRS_Axoshop.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/reqts_checklist.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/reqts_checklist.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..38c4160447caf55e478a568c1393d8395c2734e9 Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/reqts_checklist.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/reqts_checklist_Jj9uCcu.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/reqts_checklist_Jj9uCcu.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..38c4160447caf55e478a568c1393d8395c2734e9 Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Escrito_Opini\303\263n_Contribuyente1/reqts_checklist_Jj9uCcu.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/F.C\303\251sar_Orlando.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/F.C\303\251sar_Orlando.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..70cfc0e6acf423ed88fdcee4afa6fa4b2aad7726 Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/F.C\303\251sar_Orlando.pdf" differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/F.Herminio.pdf b/INCUBATE/incubate/incubate/media/Documentos/F.Herminio.pdf new file mode 100644 index 0000000000000000000000000000000000000000..55262cd07f4a38fb2b4926708220844b3764681b Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/F.Herminio.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Formato-Servicio-colaborativo.pdf b/INCUBATE/incubate/incubate/media/Documentos/Formato-Servicio-colaborativo.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bdb939e8aaed6a7cc816b54c29f91cfa6ce4e3b2 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Formato-Servicio-colaborativo.pdf differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Formato_de_revisi\303\263n_de_escritorio.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Formato_de_revisi\303\263n_de_escritorio.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..38feac832276cf369abe661ec45da20a3f2fa38b Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Formato_de_revisi\303\263n_de_escritorio.pdf" differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/GAMH000518783_CIF-5540023.pdf b/INCUBATE/incubate/incubate/media/Documentos/GAMH000518783_CIF-5540023.pdf new file mode 100644 index 0000000000000000000000000000000000000000..66908c8118ab2315664e75c2b8ceb91af639a6cb Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/GAMH000518783_CIF-5540023.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/IMG-20231129-WA0071_2.pdf b/INCUBATE/incubate/incubate/media/Documentos/IMG-20231129-WA0071_2.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bf7a4a2e0bfad5990e94387f0b4c6a0a0e88b85b Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/IMG-20231129-WA0071_2.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Objetivos.pdf b/INCUBATE/incubate/incubate/media/Documentos/Objetivos.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed45a5fc794c03ec1ce9c952384b7ad042a3ac97 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Objetivos.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Objetivos_gJ3tSdp.pdf b/INCUBATE/incubate/incubate/media/Documentos/Objetivos_gJ3tSdp.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed45a5fc794c03ec1ce9c952384b7ad042a3ac97 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Objetivos_gJ3tSdp.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Patron_ETL.pdf b/INCUBATE/incubate/incubate/media/Documentos/Patron_ETL.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2bd3f56a0d36006a3d22d13e69bf5f021015755d Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Patron_ETL.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Patron_ETL_OlKNCi3.pdf b/INCUBATE/incubate/incubate/media/Documentos/Patron_ETL_OlKNCi3.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2bd3f56a0d36006a3d22d13e69bf5f021015755d Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Patron_ETL_OlKNCi3.pdf differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/Presentaci\303\263n_de_exposici\303\263n.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/Presentaci\303\263n_de_exposici\303\263n.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..4be3d1005624d464a9bcb111ef207cf3e67e6f1f Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/Presentaci\303\263n_de_exposici\303\263n.pdf" differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Radar.pdf b/INCUBATE/incubate/incubate/media/Documentos/Radar.pdf new file mode 100644 index 0000000000000000000000000000000000000000..decb1c333e8746c0f1958ee7fbbb6e2be8fd3c7e Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Radar.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/Radar_3LPq10A.pdf b/INCUBATE/incubate/incubate/media/Documentos/Radar_3LPq10A.pdf new file mode 100644 index 0000000000000000000000000000000000000000..decb1c333e8746c0f1958ee7fbbb6e2be8fd3c7e Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/Radar_3LPq10A.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/SRS_Sistema_de_Apoyos_COZCYT1.pdf b/INCUBATE/incubate/incubate/media/Documentos/SRS_Sistema_de_Apoyos_COZCYT1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5915c658a1054d63fc774a6a62c500ac27138337 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/SRS_Sistema_de_Apoyos_COZCYT1.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Equipo3.pdf b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Equipo3.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c93a4f8dc191ede93fd0403bb75e85dc1375b47a Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Equipo3.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Objetivos.pdf b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Objetivos.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed45a5fc794c03ec1ce9c952384b7ad042a3ac97 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Objetivos.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Objetivos_OFmvew7.pdf b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Objetivos_OFmvew7.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed45a5fc794c03ec1ce9c952384b7ad042a3ac97 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Objetivos_OFmvew7.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Radar_1.pdf b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Radar_1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..decb1c333e8746c0f1958ee7fbbb6e2be8fd3c7e Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/Radar_1.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/reqts_checklist.pdf b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/reqts_checklist.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38c4160447caf55e478a568c1393d8395c2734e9 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/reqts_checklist.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/reqts_checklist_Gt6uPBL.pdf b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/reqts_checklist_Gt6uPBL.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38c4160447caf55e478a568c1393d8395c2734e9 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/comprobanteGado_pasante/reqts_checklist_Gt6uPBL.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/domicilio/Aprendizaje_de_la_semana.pdf b/INCUBATE/incubate/incubate/media/Documentos/domicilio/Aprendizaje_de_la_semana.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2bacd58abfbb70d9ee612d2d5d05f75e74238987 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/domicilio/Aprendizaje_de_la_semana.pdf differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/domicilio/Presentaci\303\263n_de_exposici\303\263n.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/domicilio/Presentaci\303\263n_de_exposici\303\263n.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..4be3d1005624d464a9bcb111ef207cf3e67e6f1f Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/domicilio/Presentaci\303\263n_de_exposici\303\263n.pdf" differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/domicilio/Radar.pdf b/INCUBATE/incubate/incubate/media/Documentos/domicilio/Radar.pdf new file mode 100644 index 0000000000000000000000000000000000000000..decb1c333e8746c0f1958ee7fbbb6e2be8fd3c7e Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/domicilio/Radar.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/domicilio/Radar_AMInAl0.pdf b/INCUBATE/incubate/incubate/media/Documentos/domicilio/Radar_AMInAl0.pdf new file mode 100644 index 0000000000000000000000000000000000000000..decb1c333e8746c0f1958ee7fbbb6e2be8fd3c7e Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/domicilio/Radar_AMInAl0.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/domicilio/reqts_checklist.pdf b/INCUBATE/incubate/incubate/media/Documentos/domicilio/reqts_checklist.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38c4160447caf55e478a568c1393d8395c2734e9 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/domicilio/reqts_checklist.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/domicilio/reqts_checklist_7Ef8FHo.pdf b/INCUBATE/incubate/incubate/media/Documentos/domicilio/reqts_checklist_7Ef8FHo.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38c4160447caf55e478a568c1393d8395c2734e9 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/domicilio/reqts_checklist_7Ef8FHo.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/identificacion/Actividad_2_Calidad.pdf b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Actividad_2_Calidad.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fa66030d9b95191b9bcf36baa6dc175b12f945c6 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Actividad_2_Calidad.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/identificacion/Aprendizaje_de_la_semana.pdf b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Aprendizaje_de_la_semana.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2bacd58abfbb70d9ee612d2d5d05f75e74238987 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Aprendizaje_de_la_semana.pdf differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/identificacion/Formato_de_revisi\303\263n_de_escritorio.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Formato_de_revisi\303\263n_de_escritorio.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..38feac832276cf369abe661ec45da20a3f2fa38b Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Formato_de_revisi\303\263n_de_escritorio.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/identificacion/Formato_de_revisi\303\263n_de_escritorio_W7fZygh.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Formato_de_revisi\303\263n_de_escritorio_W7fZygh.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..38feac832276cf369abe661ec45da20a3f2fa38b Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Formato_de_revisi\303\263n_de_escritorio_W7fZygh.pdf" differ diff --git "a/INCUBATE/incubate/incubate/media/Documentos/identificacion/Presentaci\303\263n_de_exposici\303\263n.pdf" "b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Presentaci\303\263n_de_exposici\303\263n.pdf" new file mode 100644 index 0000000000000000000000000000000000000000..4be3d1005624d464a9bcb111ef207cf3e67e6f1f Binary files /dev/null and "b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Presentaci\303\263n_de_exposici\303\263n.pdf" differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/identificacion/Radar.pdf b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Radar.pdf new file mode 100644 index 0000000000000000000000000000000000000000..decb1c333e8746c0f1958ee7fbbb6e2be8fd3c7e Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/identificacion/Radar.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/liberacion.pdf b/INCUBATE/incubate/incubate/media/Documentos/liberacion.pdf new file mode 100644 index 0000000000000000000000000000000000000000..364b9ef46f8809078bd5d168f7b7db3088d8961d Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/liberacion.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/rfc/Actividad8.pdf b/INCUBATE/incubate/incubate/media/Documentos/rfc/Actividad8.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b40106ccf4a0c2fa53fd05818daed2f0e65cf22f Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/rfc/Actividad8.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/rfc/Antecedentes.pdf b/INCUBATE/incubate/incubate/media/Documentos/rfc/Antecedentes.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dec91799500981509fd83e822da290f2f47258a5 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/rfc/Antecedentes.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/rfc/Objetivos.pdf b/INCUBATE/incubate/incubate/media/Documentos/rfc/Objetivos.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed45a5fc794c03ec1ce9c952384b7ad042a3ac97 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/rfc/Objetivos.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/rfc/reqts_checklist.pdf b/INCUBATE/incubate/incubate/media/Documentos/rfc/reqts_checklist.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38c4160447caf55e478a568c1393d8395c2734e9 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/rfc/reqts_checklist.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/rfc/reqts_checklist_izEdmyx.pdf b/INCUBATE/incubate/incubate/media/Documentos/rfc/reqts_checklist_izEdmyx.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38c4160447caf55e478a568c1393d8395c2734e9 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/rfc/reqts_checklist_izEdmyx.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Documentos/rfc/reqts_checklist_whfqHq6.pdf b/INCUBATE/incubate/incubate/media/Documentos/rfc/reqts_checklist_whfqHq6.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38c4160447caf55e478a568c1393d8395c2734e9 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Documentos/rfc/reqts_checklist_whfqHq6.pdf differ diff --git a/INCUBATE/incubate/incubate/media/Imagenes/foto/Blank_diagram.png b/INCUBATE/incubate/incubate/media/Imagenes/foto/Blank_diagram.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b6af9f4d7a67edec44f9b1f55ddb3cd79a6d7f Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Imagenes/foto/Blank_diagram.png differ diff --git a/INCUBATE/incubate/incubate/media/Imagenes/foto/Blank_diagram_o0GjCkR.png b/INCUBATE/incubate/incubate/media/Imagenes/foto/Blank_diagram_o0GjCkR.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b6af9f4d7a67edec44f9b1f55ddb3cd79a6d7f Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Imagenes/foto/Blank_diagram_o0GjCkR.png differ diff --git a/INCUBATE/incubate/incubate/media/Imagenes/foto/Blank_diagram_ow7NVEW.png b/INCUBATE/incubate/incubate/media/Imagenes/foto/Blank_diagram_ow7NVEW.png new file mode 100644 index 0000000000000000000000000000000000000000..f6b6af9f4d7a67edec44f9b1f55ddb3cd79a6d7f Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Imagenes/foto/Blank_diagram_ow7NVEW.png differ diff --git a/INCUBATE/incubate/incubate/media/Imagenes/foto/imag2Juanjo.PNG b/INCUBATE/incubate/incubate/media/Imagenes/foto/imag2Juanjo.PNG new file mode 100644 index 0000000000000000000000000000000000000000..866217ad379bdf40401fa4e11e6a0b01654b383c Binary files /dev/null and b/INCUBATE/incubate/incubate/media/Imagenes/foto/imag2Juanjo.PNG differ diff --git a/INCUBATE/incubate/incubate/media/formulariosImg/IncubateCard.jpg b/INCUBATE/incubate/incubate/media/formulariosImg/IncubateCard.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1643127e2f7875a1da52b8898a31c6e20383c084 Binary files /dev/null and b/INCUBATE/incubate/incubate/media/formulariosImg/IncubateCard.jpg differ diff --git a/INCUBATE/incubate/incubate/media/formulariosImg/imag2Juanjo.PNG b/INCUBATE/incubate/incubate/media/formulariosImg/imag2Juanjo.PNG new file mode 100644 index 0000000000000000000000000000000000000000..866217ad379bdf40401fa4e11e6a0b01654b383c Binary files /dev/null and b/INCUBATE/incubate/incubate/media/formulariosImg/imag2Juanjo.PNG differ diff --git a/INCUBATE/incubate/incubate/media/formulariosImg/imagJuanjo.PNG b/INCUBATE/incubate/incubate/media/formulariosImg/imagJuanjo.PNG new file mode 100644 index 0000000000000000000000000000000000000000..05dabef83d34bee998ab3569669403217eb01dbd Binary files /dev/null and b/INCUBATE/incubate/incubate/media/formulariosImg/imagJuanjo.PNG differ diff --git a/INCUBATE/incubate/incubate/media/formulariosImg/motora2.jpg b/INCUBATE/incubate/incubate/media/formulariosImg/motora2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d15ccbbdfdd6b201966aa51a387a198f751c14f Binary files /dev/null and b/INCUBATE/incubate/incubate/media/formulariosImg/motora2.jpg differ diff --git a/INCUBATE/incubate/incubate/media/formulariosImg/motora2_mUC2m3H.jpg b/INCUBATE/incubate/incubate/media/formulariosImg/motora2_mUC2m3H.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d15ccbbdfdd6b201966aa51a387a198f751c14f Binary files /dev/null and b/INCUBATE/incubate/incubate/media/formulariosImg/motora2_mUC2m3H.jpg differ diff --git a/INCUBATE/incubate/incubate/static/.gitignore b/INCUBATE/incubate/incubate/static/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..3e0ee2f0192d2f7e3ed83a5ae1297459ee00a3f4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/.gitignore @@ -0,0 +1,4 @@ +/node_modules +/bower_components +package-lock.json +**/.DS_Store diff --git a/INCUBATE/incubate/incubate/static/CHANGELOG.md b/INCUBATE/incubate/incubate/static/CHANGELOG.md new file mode 100644 index 0000000000000000000000000000000000000000..88a89fd1b5b715ef31eb2f76d972e2bcf4911ece --- /dev/null +++ b/INCUBATE/incubate/incubate/static/CHANGELOG.md @@ -0,0 +1,10 @@ +# CHANGELOG + +## V 2.0.0 +- Improved design +- New folder structure +- Updated plugins to newer version +- Other bug fixes + +## V 1.0.0 +- Initial release diff --git a/INCUBATE/incubate/incubate/static/Design/Open_Sans_font.zip b/INCUBATE/incubate/incubate/static/Design/Open_Sans_font.zip new file mode 100644 index 0000000000000000000000000000000000000000..1cd7163ea1d632415b76a3dffdc60a6ed545367d Binary files /dev/null and b/INCUBATE/incubate/incubate/static/Design/Open_Sans_font.zip differ diff --git a/INCUBATE/incubate/incubate/static/Design/Stellar free_Dashboard.sketch b/INCUBATE/incubate/incubate/static/Design/Stellar free_Dashboard.sketch new file mode 100644 index 0000000000000000000000000000000000000000..3a003ed3ee79ea2bf01bdd2a66565c8b59e87780 Binary files /dev/null and b/INCUBATE/incubate/incubate/static/Design/Stellar free_Dashboard.sketch differ diff --git a/INCUBATE/incubate/incubate/static/LICENSE b/INCUBATE/incubate/incubate/static/LICENSE new file mode 100644 index 0000000000000000000000000000000000000000..2e633ae3a813751f8060e2dee86b87957b443ec8 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 BootstrapDash + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/INCUBATE/incubate/incubate/static/README.md b/INCUBATE/incubate/incubate/static/README.md new file mode 100644 index 0000000000000000000000000000000000000000..7fb049f6e5c56641c4038cab65475fccba66ad49 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/README.md @@ -0,0 +1,68 @@ + + +

Stellar

+Stellar admin template is completely based on the latest version of Bootstrap 4. Stellar Admin is designed to reflect the simplicity and svelte of the components and UI elements and coded to perfection with well-organized code. This makes it easy to change its looks to anything that you desire on your admin panel. Stellar Admin is a perfect pick to create any kind of simple or complex backend applications or any other web applications. +

+The template is always kept up to date and kept up with the latest technologies. Stellar is a completely responsive admin template that gives you an effortless viewing experience on mobile devices as well as small and large desktops. + + +

Credits:

+ +- Bootstrap 4 +- Font Awesome +- jQuery +- Gulp +- Chart.js + +

Browser Support:

+ +Stellar is designed to work flawlessly with all the latest and modern web browsers. + +- Chrome (latest) +- FireFox (latest) +- Safari (latest) +- Opera (latest) +- IE10+ + +

License Information:

+ + +Stellar is released under MIT license. Stellar is a free Bootstrap 4 admin template developed from BootstrapDash. Feel free to download it, use it, share it, get creative with it. + +

How to use Stellar ?

+ + +1 - Click the Clone or Download button in GitHub and download as a ZIP file or you can enter the command git clone https://github.com/BootstrapDash/Stellar.git in you terminal to get a copy of this template. + +2 - After the files have been downloaded you will get a folder with all the required files + +3 - You can install all the dependencies in the template by running the command npm install. All the required files are in the node modules. + +4 - Find the file named index.html, check what all components you need. Open the file in a text editor and you can start editing. + +5 - Now that your project has now kick-started, all you need to do now is to code, code, and code to your heart's content. + +

How to Contribute?:

+ + +We love your contributions and we welcome them wholeheartedly. We believe the more the merrier. +To contribute make sure you have a Node.js and npm installed. Now run the command gulp --version. If the command returns with the Gulp version number, it means you have Gulp installed. If not you need to run the command npm install --global gulp-cli to install Gulp. + +

Next

+ +After Gulp has been installed, follow the steps below to contribute. +
+ 1 - Fork and clone the repo of Stellar. +
+ 2 - Run the command npm install to install all the dependencies. +
+ 3 - Enter the command gulp serve. This will open Stellar in your default browser. +
+ 4 - Make your valuable contribution +
+ 5 - Submit a pull request. + + +Do you need a template with more features and functionalities? Get more with our collection of the premium template with more plugins, eye catching animations, UI components, and sample pages all fitting together with a high-quality design. +Visit + https://www.bootstrapdash.com for more admin templates. diff --git a/INCUBATE/incubate/incubate/static/css/chartist.min.css b/INCUBATE/incubate/incubate/static/css/chartist.min.css new file mode 100644 index 0000000000000000000000000000000000000000..6a23d47015e6ab43add6bbb7684a2eb10bbdc42f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/css/chartist.min.css @@ -0,0 +1 @@ +.ct-double-octave:after,.ct-major-eleventh:after,.ct-major-second:after,.ct-major-seventh:after,.ct-major-sixth:after,.ct-major-tenth:after,.ct-major-third:after,.ct-major-twelfth:after,.ct-minor-second:after,.ct-minor-seventh:after,.ct-minor-sixth:after,.ct-minor-third:after,.ct-octave:after,.ct-perfect-fifth:after,.ct-perfect-fourth:after,.ct-square:after{content:"";clear:both}.ct-label{fill:rgba(0,0,0,.4);color:rgba(0,0,0,.4);font-size:.75rem;line-height:1}.ct-grid-background,.ct-line{fill:none}.ct-chart-bar .ct-label,.ct-chart-line .ct-label{display:block;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.ct-chart-donut .ct-label,.ct-chart-pie .ct-label{dominant-baseline:central}.ct-label.ct-horizontal.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-label.ct-horizontal.ct-end{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-label.ct-vertical.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-end;-webkit-justify-content:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end;text-align:right;text-anchor:end}.ct-label.ct-vertical.ct-end{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-chart-bar .ct-label.ct-horizontal.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;text-anchor:start}.ct-chart-bar .ct-label.ct-horizontal.ct-end{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;text-anchor:start}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:flex-end;-webkit-justify-content:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end;text-align:right;text-anchor:end}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:end}.ct-grid{stroke:rgba(0,0,0,.2);stroke-width:1px;stroke-dasharray:2px}.ct-point{stroke-width:10px;stroke-linecap:round}.ct-line{stroke-width:4px}.ct-area{stroke:none;fill-opacity:.1}.ct-bar{fill:none;stroke-width:10px}.ct-slice-donut{fill:none;stroke-width:60px}.ct-series-a .ct-bar,.ct-series-a .ct-line,.ct-series-a .ct-point,.ct-series-a .ct-slice-donut{stroke:#d70206}.ct-series-a .ct-area,.ct-series-a .ct-slice-donut-solid,.ct-series-a .ct-slice-pie{fill:#d70206}.ct-series-b .ct-bar,.ct-series-b .ct-line,.ct-series-b .ct-point,.ct-series-b .ct-slice-donut{stroke:#f05b4f}.ct-series-b .ct-area,.ct-series-b .ct-slice-donut-solid,.ct-series-b .ct-slice-pie{fill:#f05b4f}.ct-series-c .ct-bar,.ct-series-c .ct-line,.ct-series-c .ct-point,.ct-series-c .ct-slice-donut{stroke:#f4c63d}.ct-series-c .ct-area,.ct-series-c .ct-slice-donut-solid,.ct-series-c .ct-slice-pie{fill:#f4c63d}.ct-series-d .ct-bar,.ct-series-d .ct-line,.ct-series-d .ct-point,.ct-series-d .ct-slice-donut{stroke:#d17905}.ct-series-d .ct-area,.ct-series-d .ct-slice-donut-solid,.ct-series-d .ct-slice-pie{fill:#d17905}.ct-series-e .ct-bar,.ct-series-e .ct-line,.ct-series-e .ct-point,.ct-series-e .ct-slice-donut{stroke:#453d3f}.ct-series-e .ct-area,.ct-series-e .ct-slice-donut-solid,.ct-series-e .ct-slice-pie{fill:#453d3f}.ct-series-f .ct-bar,.ct-series-f .ct-line,.ct-series-f .ct-point,.ct-series-f .ct-slice-donut{stroke:#59922b}.ct-series-f .ct-area,.ct-series-f .ct-slice-donut-solid,.ct-series-f .ct-slice-pie{fill:#59922b}.ct-series-g .ct-bar,.ct-series-g .ct-line,.ct-series-g .ct-point,.ct-series-g .ct-slice-donut{stroke:#0544d3}.ct-series-g .ct-area,.ct-series-g .ct-slice-donut-solid,.ct-series-g .ct-slice-pie{fill:#0544d3}.ct-series-h .ct-bar,.ct-series-h .ct-line,.ct-series-h .ct-point,.ct-series-h .ct-slice-donut{stroke:#6b0392}.ct-series-h .ct-area,.ct-series-h .ct-slice-donut-solid,.ct-series-h .ct-slice-pie{fill:#6b0392}.ct-series-i .ct-bar,.ct-series-i .ct-line,.ct-series-i .ct-point,.ct-series-i .ct-slice-donut{stroke:#f05b4f}.ct-series-i .ct-area,.ct-series-i .ct-slice-donut-solid,.ct-series-i .ct-slice-pie{fill:#f05b4f}.ct-series-j .ct-bar,.ct-series-j .ct-line,.ct-series-j .ct-point,.ct-series-j .ct-slice-donut{stroke:#dda458}.ct-series-j .ct-area,.ct-series-j .ct-slice-donut-solid,.ct-series-j .ct-slice-pie{fill:#dda458}.ct-series-k .ct-bar,.ct-series-k .ct-line,.ct-series-k .ct-point,.ct-series-k .ct-slice-donut{stroke:#eacf7d}.ct-series-k .ct-area,.ct-series-k .ct-slice-donut-solid,.ct-series-k .ct-slice-pie{fill:#eacf7d}.ct-series-l .ct-bar,.ct-series-l .ct-line,.ct-series-l .ct-point,.ct-series-l .ct-slice-donut{stroke:#86797d}.ct-series-l .ct-area,.ct-series-l .ct-slice-donut-solid,.ct-series-l .ct-slice-pie{fill:#86797d}.ct-series-m .ct-bar,.ct-series-m .ct-line,.ct-series-m .ct-point,.ct-series-m .ct-slice-donut{stroke:#b2c326}.ct-series-m .ct-area,.ct-series-m .ct-slice-donut-solid,.ct-series-m .ct-slice-pie{fill:#b2c326}.ct-series-n .ct-bar,.ct-series-n .ct-line,.ct-series-n .ct-point,.ct-series-n .ct-slice-donut{stroke:#6188e2}.ct-series-n .ct-area,.ct-series-n .ct-slice-donut-solid,.ct-series-n .ct-slice-pie{fill:#6188e2}.ct-series-o .ct-bar,.ct-series-o .ct-line,.ct-series-o .ct-point,.ct-series-o .ct-slice-donut{stroke:#a748ca}.ct-series-o .ct-area,.ct-series-o .ct-slice-donut-solid,.ct-series-o .ct-slice-pie{fill:#a748ca}.ct-square{display:block;position:relative;width:100%}.ct-square:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:100%}.ct-square:after{display:table}.ct-square>svg{display:block;position:absolute;top:0;left:0}.ct-minor-second{display:block;position:relative;width:100%}.ct-minor-second:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:93.75%}.ct-minor-second:after{display:table}.ct-minor-second>svg{display:block;position:absolute;top:0;left:0}.ct-major-second{display:block;position:relative;width:100%}.ct-major-second:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:88.8888888889%}.ct-major-second:after{display:table}.ct-major-second>svg{display:block;position:absolute;top:0;left:0}.ct-minor-third{display:block;position:relative;width:100%}.ct-minor-third:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:83.3333333333%}.ct-minor-third:after{display:table}.ct-minor-third>svg{display:block;position:absolute;top:0;left:0}.ct-major-third{display:block;position:relative;width:100%}.ct-major-third:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:80%}.ct-major-third:after{display:table}.ct-major-third>svg{display:block;position:absolute;top:0;left:0}.ct-perfect-fourth{display:block;position:relative;width:100%}.ct-perfect-fourth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:75%}.ct-perfect-fourth:after{display:table}.ct-perfect-fourth>svg{display:block;position:absolute;top:0;left:0}.ct-perfect-fifth{display:block;position:relative;width:100%}.ct-perfect-fifth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:66.6666666667%}.ct-perfect-fifth:after{display:table}.ct-perfect-fifth>svg{display:block;position:absolute;top:0;left:0}.ct-minor-sixth{display:block;position:relative;width:100%}.ct-minor-sixth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:62.5%}.ct-minor-sixth:after{display:table}.ct-minor-sixth>svg{display:block;position:absolute;top:0;left:0}.ct-golden-section{display:block;position:relative;width:100%}.ct-golden-section:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:61.804697157%}.ct-golden-section:after{content:"";display:table;clear:both}.ct-golden-section>svg{display:block;position:absolute;top:0;left:0}.ct-major-sixth{display:block;position:relative;width:100%}.ct-major-sixth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:60%}.ct-major-sixth:after{display:table}.ct-major-sixth>svg{display:block;position:absolute;top:0;left:0}.ct-minor-seventh{display:block;position:relative;width:100%}.ct-minor-seventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:56.25%}.ct-minor-seventh:after{display:table}.ct-minor-seventh>svg{display:block;position:absolute;top:0;left:0}.ct-major-seventh{display:block;position:relative;width:100%}.ct-major-seventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:53.3333333333%}.ct-major-seventh:after{display:table}.ct-major-seventh>svg{display:block;position:absolute;top:0;left:0}.ct-octave{display:block;position:relative;width:100%}.ct-octave:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:50%}.ct-octave:after{display:table}.ct-octave>svg{display:block;position:absolute;top:0;left:0}.ct-major-tenth{display:block;position:relative;width:100%}.ct-major-tenth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:40%}.ct-major-tenth:after{display:table}.ct-major-tenth>svg{display:block;position:absolute;top:0;left:0}.ct-major-eleventh{display:block;position:relative;width:100%}.ct-major-eleventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:37.5%}.ct-major-eleventh:after{display:table}.ct-major-eleventh>svg{display:block;position:absolute;top:0;left:0}.ct-major-twelfth{display:block;position:relative;width:100%}.ct-major-twelfth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:33.3333333333%}.ct-major-twelfth:after{display:table}.ct-major-twelfth>svg{display:block;position:absolute;top:0;left:0}.ct-double-octave{display:block;position:relative;width:100%}.ct-double-octave:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:25%}.ct-double-octave:after{display:table}.ct-double-octave>svg{display:block;position:absolute;top:0;left:0} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/css/chartist.min.js b/INCUBATE/incubate/incubate/static/css/chartist.min.js new file mode 100644 index 0000000000000000000000000000000000000000..634fb0e9b130940e33bac9aea3c694a43e575a4e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/css/chartist.min.js @@ -0,0 +1,10 @@ +/* Chartist.js 0.11.3 + * Copyright © 2019 Gion Kunz + * Free to use under either the WTFPL license or the MIT license. + * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-WTFPL + * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-MIT + */ + +!function(a,b){"function"==typeof define&&define.amd?define("Chartist",[],function(){return a.Chartist=b()}):"object"==typeof module&&module.exports?module.exports=b():a.Chartist=b()}(this,function(){var a={version:"0.11.3"};return function(a,b){"use strict";var c=a.window,d=a.document;b.namespaces={svg:"http://www.w3.org/2000/svg",xmlns:"http://www.w3.org/2000/xmlns/",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",ct:"http://gionkunz.github.com/chartist-js/ct"},b.noop=function(a){return a},b.alphaNumerate=function(a){return String.fromCharCode(97+a%26)},b.extend=function(a){var c,d,e;for(a=a||{},c=1;c":">",'"':""","'":"'"},b.serialize=function(a){return null===a||void 0===a?a:("number"==typeof a?a=""+a:"object"==typeof a&&(a=JSON.stringify({data:a})),Object.keys(b.escapingMap).reduce(function(a,c){return b.replaceAll(a,c,b.escapingMap[c])},a))},b.deserialize=function(a){if("string"!=typeof a)return a;a=Object.keys(b.escapingMap).reduce(function(a,c){return b.replaceAll(a,b.escapingMap[c],c)},a);try{a=JSON.parse(a),a=void 0!==a.data?a.data:a}catch(c){}return a},b.createSvg=function(a,c,d,e){var f;return c=c||"100%",d=d||"100%",Array.prototype.slice.call(a.querySelectorAll("svg")).filter(function(a){return a.getAttributeNS(b.namespaces.xmlns,"ct")}).forEach(function(b){a.removeChild(b)}),f=new b.Svg("svg").attr({width:c,height:d}).addClass(e),f._node.style.width=c,f._node.style.height=d,a.appendChild(f._node),f},b.normalizeData=function(a,c,d){var e,f={raw:a,normalized:{}};return f.normalized.series=b.getDataArray({series:a.series||[]},c,d),e=f.normalized.series.every(function(a){return a instanceof Array})?Math.max.apply(null,f.normalized.series.map(function(a){return a.length})):f.normalized.series.length,f.normalized.labels=(a.labels||[]).slice(),Array.prototype.push.apply(f.normalized.labels,b.times(Math.max(0,e-f.normalized.labels.length)).map(function(){return""})),c&&b.reverseData(f.normalized),f},b.safeHasProperty=function(a,b){return null!==a&&"object"==typeof a&&a.hasOwnProperty(b)},b.isDataHoleValue=function(a){return null===a||void 0===a||"number"==typeof a&&isNaN(a)},b.reverseData=function(a){a.labels.reverse(),a.series.reverse();for(var b=0;bf.high&&(f.high=c),h&&c0?f.low=0:(f.high=1,f.low=0)),f},b.isNumeric=function(a){return null!==a&&isFinite(a)},b.isFalseyButZero=function(a){return!a&&0!==a},b.getNumberOrUndefined=function(a){return b.isNumeric(a)?+a:void 0},b.isMultiValue=function(a){return"object"==typeof a&&("x"in a||"y"in a)},b.getMultiValue=function(a,c){return b.isMultiValue(a)?b.getNumberOrUndefined(a[c||"y"]):b.getNumberOrUndefined(a)},b.rho=function(a){function b(a,c){return a%c===0?c:b(c,a%c)}function c(a){return a*a+1}if(1===a)return a;var d,e=2,f=2;if(a%2===0)return 2;do e=c(e)%a,f=c(c(f))%a,d=b(Math.abs(e-f),a);while(1===d);return d},b.getBounds=function(a,c,d,e){function f(a,b){return a===(a+=b)&&(a*=1+(b>0?o:-o)),a}var g,h,i,j=0,k={high:c.high,low:c.low};k.valueRange=k.high-k.low,k.oom=b.orderOfMagnitude(k.valueRange),k.step=Math.pow(10,k.oom),k.min=Math.floor(k.low/k.step)*k.step,k.max=Math.ceil(k.high/k.step)*k.step,k.range=k.max-k.min,k.numberOfSteps=Math.round(k.range/k.step);var l=b.projectLength(a,k.step,k),m=l=d)k.step=1;else if(e&&n=d)k.step=n;else for(;;){if(m&&b.projectLength(a,k.step,k)<=d)k.step*=2;else{if(m||!(b.projectLength(a,k.step/2,k)>=d))break;if(k.step/=2,e&&k.step%1!==0){k.step*=2;break}}if(j++>1e3)throw new Error("Exceeded maximum number of iterations while optimizing scale step!")}var o=2.221e-16;for(k.step=Math.max(k.step,o),h=k.min,i=k.max;h+k.step<=k.low;)h=f(h,k.step);for(;i-k.step>=k.high;)i=f(i,-k.step);k.min=h,k.max=i,k.range=k.max-k.min;var p=[];for(g=k.min;g<=k.max;g=f(g,k.step)){var q=b.roundWithPrecision(g);q!==p[p.length-1]&&p.push(q)}return k.values=p,k},b.polarToCartesian=function(a,b,c,d){var e=(d-90)*Math.PI/180;return{x:a+c*Math.cos(e),y:b+c*Math.sin(e)}},b.createChartRect=function(a,c,d){var e=!(!c.axisX&&!c.axisY),f=e?c.axisY.offset:0,g=e?c.axisX.offset:0,h=a.width()||b.quantity(c.width).value||0,i=a.height()||b.quantity(c.height).value||0,j=b.normalizePadding(c.chartPadding,d);h=Math.max(h,f+j.left+j.right),i=Math.max(i,g+j.top+j.bottom);var k={padding:j,width:function(){return this.x2-this.x1},height:function(){return this.y1-this.y2}};return e?("start"===c.axisX.position?(k.y2=j.top+g,k.y1=Math.max(i-j.bottom,k.y2+1)):(k.y2=j.top,k.y1=Math.max(i-j.bottom-g,k.y2+1)),"start"===c.axisY.position?(k.x1=j.left+f,k.x2=Math.max(h-j.right,k.x1+1)):(k.x1=j.left,k.x2=Math.max(h-j.right-f,k.x1+1))):(k.x1=j.left,k.x2=Math.max(h-j.right,k.x1+1),k.y2=j.top,k.y1=Math.max(i-j.bottom,k.y2+1)),k},b.createGrid=function(a,c,d,e,f,g,h,i){var j={};j[d.units.pos+"1"]=a,j[d.units.pos+"2"]=a,j[d.counterUnits.pos+"1"]=e,j[d.counterUnits.pos+"2"]=e+f;var k=g.elem("line",j,h.join(" "));i.emit("draw",b.extend({type:"grid",axis:d,index:c,group:g,element:k},j))},b.createGridBackground=function(a,b,c,d){var e=a.elem("rect",{x:b.x1,y:b.y2,width:b.width(),height:b.height()},c,!0);d.emit("draw",{type:"gridBackground",group:a,element:e})},b.createLabel=function(a,c,e,f,g,h,i,j,k,l,m){var n,o={};if(o[g.units.pos]=a+i[g.units.pos],o[g.counterUnits.pos]=i[g.counterUnits.pos],o[g.units.len]=c,o[g.counterUnits.len]=Math.max(0,h-10),l){var p=d.createElement("span");p.className=k.join(" "),p.setAttribute("xmlns",b.namespaces.xhtml),p.innerText=f[e],p.style[g.units.len]=Math.round(o[g.units.len])+"px",p.style[g.counterUnits.len]=Math.round(o[g.counterUnits.len])+"px",n=j.foreignObject(p,b.extend({style:"overflow: visible;"},o))}else n=j.elem("text",o,k.join(" ")).text(f[e]);m.emit("draw",b.extend({type:"label",axis:g,index:e,group:j,element:n,text:f[e]},o))},b.getSeriesOption=function(a,b,c){if(a.name&&b.series&&b.series[a.name]){var d=b.series[a.name];return d.hasOwnProperty(c)?d[c]:b[c]}return b[c]},b.optionsProvider=function(a,d,e){function f(a){var f=h;if(h=b.extend({},j),d)for(i=0;i=2&&a[h]<=a[h-2]&&(g=!0),g&&(f.push({pathCoordinates:[],valueData:[]}),g=!1),f[f.length-1].pathCoordinates.push(a[h],a[h+1]),f[f.length-1].valueData.push(c[h/2]));return f}}(this,a),function(a,b){"use strict";b.Interpolation={},b.Interpolation.none=function(a){var c={fillHoles:!1};return a=b.extend({},c,a),function(c,d){for(var e=new b.Svg.Path,f=!0,g=0;g1){var i=[];return h.forEach(function(a){i.push(f(a.pathCoordinates,a.valueData))}),b.Svg.Path.join(i)}if(c=h[0].pathCoordinates,g=h[0].valueData,c.length<=4)return b.Interpolation.none()(c,g);for(var j,k=(new b.Svg.Path).move(c[0],c[1],!1,g[0]),l=0,m=c.length;m-2*!j>l;l+=2){var n=[{x:+c[l-2],y:+c[l-1]},{x:+c[l],y:+c[l+1]},{x:+c[l+2],y:+c[l+3]},{x:+c[l+4],y:+c[l+5]}];j?l?m-4===l?n[3]={x:+c[0],y:+c[1]}:m-2===l&&(n[2]={x:+c[0],y:+c[1]},n[3]={x:+c[2],y:+c[3]}):n[0]={x:+c[m-2],y:+c[m-1]}:m-4===l?n[3]=n[2]:l||(n[0]={x:+c[l],y:+c[l+1]}),k.curve(d*(-n[0].x+6*n[1].x+n[2].x)/6+e*n[2].x,d*(-n[0].y+6*n[1].y+n[2].y)/6+e*n[2].y,d*(n[1].x+6*n[2].x-n[3].x)/6+e*n[2].x,d*(n[1].y+6*n[2].y-n[3].y)/6+e*n[2].y,n[2].x,n[2].y,!1,g[(l+2)/2])}return k}return b.Interpolation.none()([])}},b.Interpolation.monotoneCubic=function(a){var c={fillHoles:!1};return a=b.extend({},c,a),function d(c,e){var f=b.splitIntoSegments(c,e,{fillHoles:a.fillHoles,increasingX:!0});if(f.length){if(f.length>1){var g=[];return f.forEach(function(a){g.push(d(a.pathCoordinates,a.valueData))}),b.Svg.Path.join(g)}if(c=f[0].pathCoordinates,e=f[0].valueData,c.length<=4)return b.Interpolation.none()(c,e);var h,i,j=[],k=[],l=c.length/2,m=[],n=[],o=[],p=[];for(h=0;h0!=n[h]>0?m[h]=0:(m[h]=3*(p[h-1]+p[h])/((2*p[h]+p[h-1])/n[h-1]+(p[h]+2*p[h-1])/n[h]),isFinite(m[h])||(m[h]=0));for(i=(new b.Svg.Path).move(j[0],k[0],!1,e[0]),h=0;h1}).map(function(a){var b=a.pathElements[0],c=a.pathElements[a.pathElements.length-1];return a.clone(!0).position(0).remove(1).move(b.x,r).line(b.x,b.y).position(a.pathElements.length+1).line(c.x,r)}).forEach(function(b){var h=i.elem("path",{d:b.stringify()},a.classNames.area,!0);this.eventEmitter.emit("draw",{type:"area",values:c.normalized.series[g],path:b.clone(),series:e,seriesIndex:g,axisX:d,axisY:f,chartRect:j,index:g,group:i,element:h})}.bind(this))}}.bind(this)),this.eventEmitter.emit("created",{bounds:f.bounds,chartRect:j,axisX:d,axisY:f,svg:this.svg,options:a})}function d(a,c,d,f){b.Line["super"].constructor.call(this,a,c,e,b.extend({},e,d),f)}var e=(a.window,a.document,{axisX:{offset:30,position:"end",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:b.noop,type:void 0},axisY:{offset:40,position:"start",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:b.noop,type:void 0,scaleMinSpace:20,onlyInteger:!1},width:void 0,height:void 0,showLine:!0,showPoint:!0,showArea:!1,areaBase:0,lineSmooth:!0,showGridBackground:!1,low:void 0,high:void 0,chartPadding:{top:15,right:15,bottom:5,left:10},fullWidth:!1,reverseData:!1,classNames:{chart:"ct-chart-line",label:"ct-label",labelGroup:"ct-labels",series:"ct-series",line:"ct-line",point:"ct-point",area:"ct-area",grid:"ct-grid",gridGroup:"ct-grids",gridBackground:"ct-grid-background",vertical:"ct-vertical",horizontal:"ct-horizontal",start:"ct-start",end:"ct-end"}});b.Line=b.Base.extend({constructor:d,createChart:c})}(this,a),function(a,b){"use strict";function c(a){var c,d;a.distributeSeries?(c=b.normalizeData(this.data,a.reverseData,a.horizontalBars?"x":"y"),c.normalized.series=c.normalized.series.map(function(a){return[a]})):c=b.normalizeData(this.data,a.reverseData,a.horizontalBars?"x":"y"),this.svg=b.createSvg(this.container,a.width,a.height,a.classNames.chart+(a.horizontalBars?" "+a.classNames.horizontalBars:""));var f=this.svg.elem("g").addClass(a.classNames.gridGroup),g=this.svg.elem("g"),h=this.svg.elem("g").addClass(a.classNames.labelGroup);if(a.stackBars&&0!==c.normalized.series.length){var i=b.serialMap(c.normalized.series,function(){ +return Array.prototype.slice.call(arguments).map(function(a){return a}).reduce(function(a,b){return{x:a.x+(b&&b.x)||0,y:a.y+(b&&b.y)||0}},{x:0,y:0})});d=b.getHighLow([i],a,a.horizontalBars?"x":"y")}else d=b.getHighLow(c.normalized.series,a,a.horizontalBars?"x":"y");d.high=+a.high||(0===a.high?0:d.high),d.low=+a.low||(0===a.low?0:d.low);var j,k,l,m,n,o=b.createChartRect(this.svg,a,e.padding);k=a.distributeSeries&&a.stackBars?c.normalized.labels.slice(0,1):c.normalized.labels,a.horizontalBars?(j=m=void 0===a.axisX.type?new b.AutoScaleAxis(b.Axis.units.x,c.normalized.series,o,b.extend({},a.axisX,{highLow:d,referenceValue:0})):a.axisX.type.call(b,b.Axis.units.x,c.normalized.series,o,b.extend({},a.axisX,{highLow:d,referenceValue:0})),l=n=void 0===a.axisY.type?new b.StepAxis(b.Axis.units.y,c.normalized.series,o,{ticks:k}):a.axisY.type.call(b,b.Axis.units.y,c.normalized.series,o,a.axisY)):(l=m=void 0===a.axisX.type?new b.StepAxis(b.Axis.units.x,c.normalized.series,o,{ticks:k}):a.axisX.type.call(b,b.Axis.units.x,c.normalized.series,o,a.axisX),j=n=void 0===a.axisY.type?new b.AutoScaleAxis(b.Axis.units.y,c.normalized.series,o,b.extend({},a.axisY,{highLow:d,referenceValue:0})):a.axisY.type.call(b,b.Axis.units.y,c.normalized.series,o,b.extend({},a.axisY,{highLow:d,referenceValue:0})));var p=a.horizontalBars?o.x1+j.projectValue(0):o.y1-j.projectValue(0),q=[];l.createGridAndLabels(f,h,this.supportsForeignObject,a,this.eventEmitter),j.createGridAndLabels(f,h,this.supportsForeignObject,a,this.eventEmitter),a.showGridBackground&&b.createGridBackground(f,o,a.classNames.gridBackground,this.eventEmitter),c.raw.series.forEach(function(d,e){var f,h,i=e-(c.raw.series.length-1)/2;f=a.distributeSeries&&!a.stackBars?l.axisLength/c.normalized.series.length/2:a.distributeSeries&&a.stackBars?l.axisLength/2:l.axisLength/c.normalized.series[e].length/2,h=g.elem("g"),h.attr({"ct:series-name":d.name,"ct:meta":b.serialize(d.meta)}),h.addClass([a.classNames.series,d.className||a.classNames.series+"-"+b.alphaNumerate(e)].join(" ")),c.normalized.series[e].forEach(function(g,k){var r,s,t,u;if(u=a.distributeSeries&&!a.stackBars?e:a.distributeSeries&&a.stackBars?0:k,r=a.horizontalBars?{x:o.x1+j.projectValue(g&&g.x?g.x:0,k,c.normalized.series[e]),y:o.y1-l.projectValue(g&&g.y?g.y:0,u,c.normalized.series[e])}:{x:o.x1+l.projectValue(g&&g.x?g.x:0,u,c.normalized.series[e]),y:o.y1-j.projectValue(g&&g.y?g.y:0,k,c.normalized.series[e])},l instanceof b.StepAxis&&(l.options.stretch||(r[l.units.pos]+=f*(a.horizontalBars?-1:1)),r[l.units.pos]+=a.stackBars||a.distributeSeries?0:i*a.seriesBarDistance*(a.horizontalBars?-1:1)),t=q[k]||p,q[k]=t-(p-r[l.counterUnits.pos]),void 0!==g){var v={};v[l.units.pos+"1"]=r[l.units.pos],v[l.units.pos+"2"]=r[l.units.pos],!a.stackBars||"accumulate"!==a.stackMode&&a.stackMode?(v[l.counterUnits.pos+"1"]=p,v[l.counterUnits.pos+"2"]=r[l.counterUnits.pos]):(v[l.counterUnits.pos+"1"]=t,v[l.counterUnits.pos+"2"]=q[k]),v.x1=Math.min(Math.max(v.x1,o.x1),o.x2),v.x2=Math.min(Math.max(v.x2,o.x1),o.x2),v.y1=Math.min(Math.max(v.y1,o.y2),o.y1),v.y2=Math.min(Math.max(v.y2,o.y2),o.y1);var w=b.getMetaData(d,k);s=h.elem("line",v,a.classNames.bar).attr({"ct:value":[g.x,g.y].filter(b.isNumeric).join(","),"ct:meta":b.serialize(w)}),this.eventEmitter.emit("draw",b.extend({type:"bar",value:g,index:k,meta:w,series:d,seriesIndex:e,axisX:m,axisY:n,chartRect:o,group:h,element:s},v))}}.bind(this))}.bind(this)),this.eventEmitter.emit("created",{bounds:j.bounds,chartRect:o,axisX:m,axisY:n,svg:this.svg,options:a})}function d(a,c,d,f){b.Bar["super"].constructor.call(this,a,c,e,b.extend({},e,d),f)}var e=(a.window,a.document,{axisX:{offset:30,position:"end",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:b.noop,scaleMinSpace:30,onlyInteger:!1},axisY:{offset:40,position:"start",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:b.noop,scaleMinSpace:20,onlyInteger:!1},width:void 0,height:void 0,high:void 0,low:void 0,referenceValue:0,chartPadding:{top:15,right:15,bottom:5,left:10},seriesBarDistance:15,stackBars:!1,stackMode:"accumulate",horizontalBars:!1,distributeSeries:!1,reverseData:!1,showGridBackground:!1,classNames:{chart:"ct-chart-bar",horizontalBars:"ct-horizontal-bars",label:"ct-label",labelGroup:"ct-labels",series:"ct-series",bar:"ct-bar",grid:"ct-grid",gridGroup:"ct-grids",gridBackground:"ct-grid-background",vertical:"ct-vertical",horizontal:"ct-horizontal",start:"ct-start",end:"ct-end"}});b.Bar=b.Base.extend({constructor:d,createChart:c})}(this,a),function(a,b){"use strict";function c(a,b,c){var d=b.x>a.x;return d&&"explode"===c||!d&&"implode"===c?"start":d&&"implode"===c||!d&&"explode"===c?"end":"middle"}function d(a){var d,e,g,h,i,j=b.normalizeData(this.data),k=[],l=a.startAngle;this.svg=b.createSvg(this.container,a.width,a.height,a.donut?a.classNames.chartDonut:a.classNames.chartPie),e=b.createChartRect(this.svg,a,f.padding),g=Math.min(e.width()/2,e.height()/2),i=a.total||j.normalized.series.reduce(function(a,b){return a+b},0);var m=b.quantity(a.donutWidth);"%"===m.unit&&(m.value*=g/100),g-=a.donut&&!a.donutSolid?m.value/2:0,h="outside"===a.labelPosition||a.donut&&!a.donutSolid?g:"center"===a.labelPosition?0:a.donutSolid?g-m.value/2:g/2,h+=a.labelOffset;var n={x:e.x1+e.width()/2,y:e.y2+e.height()/2},o=1===j.raw.series.filter(function(a){return a.hasOwnProperty("value")?0!==a.value:0!==a}).length;j.raw.series.forEach(function(a,b){k[b]=this.svg.elem("g",null,null)}.bind(this)),a.showLabel&&(d=this.svg.elem("g",null,null)),j.raw.series.forEach(function(e,f){if(0!==j.normalized.series[f]||!a.ignoreEmptyValues){k[f].attr({"ct:series-name":e.name}),k[f].addClass([a.classNames.series,e.className||a.classNames.series+"-"+b.alphaNumerate(f)].join(" "));var p=i>0?l+j.normalized.series[f]/i*360:0,q=Math.max(0,l-(0===f||o?0:.2));p-q>=359.99&&(p=q+359.99);var r,s,t,u=b.polarToCartesian(n.x,n.y,g,q),v=b.polarToCartesian(n.x,n.y,g,p),w=new b.Svg.Path(!a.donut||a.donutSolid).move(v.x,v.y).arc(g,g,0,p-l>180,0,u.x,u.y);a.donut?a.donutSolid&&(t=g-m.value,r=b.polarToCartesian(n.x,n.y,t,l-(0===f||o?0:.2)),s=b.polarToCartesian(n.x,n.y,t,p),w.line(r.x,r.y),w.arc(t,t,0,p-l>180,1,s.x,s.y)):w.line(n.x,n.y);var x=a.classNames.slicePie;a.donut&&(x=a.classNames.sliceDonut,a.donutSolid&&(x=a.classNames.sliceDonutSolid));var y=k[f].elem("path",{d:w.stringify()},x);if(y.attr({"ct:value":j.normalized.series[f],"ct:meta":b.serialize(e.meta)}),a.donut&&!a.donutSolid&&(y._node.style.strokeWidth=m.value+"px"),this.eventEmitter.emit("draw",{type:"slice",value:j.normalized.series[f],totalDataSum:i,index:f,meta:e.meta,series:e,group:k[f],element:y,path:w.clone(),center:n,radius:g,startAngle:l,endAngle:p}),a.showLabel){var z;z=1===j.raw.series.length?{x:n.x,y:n.y}:b.polarToCartesian(n.x,n.y,h,l+(p-l)/2);var A;A=j.normalized.labels&&!b.isFalseyButZero(j.normalized.labels[f])?j.normalized.labels[f]:j.normalized.series[f];var B=a.labelInterpolationFnc(A,f);if(B||0===B){var C=d.elem("text",{dx:z.x,dy:z.y,"text-anchor":c(n,z,a.labelDirection)},a.classNames.label).text(""+B);this.eventEmitter.emit("draw",{type:"label",index:f,group:d,element:C,text:""+B,x:z.x,y:z.y})}}l=p}}.bind(this)),this.eventEmitter.emit("created",{chartRect:e,svg:this.svg,options:a})}function e(a,c,d,e){b.Pie["super"].constructor.call(this,a,c,f,b.extend({},f,d),e)}var f=(a.window,a.document,{width:void 0,height:void 0,chartPadding:5,classNames:{chartPie:"ct-chart-pie",chartDonut:"ct-chart-donut",series:"ct-series",slicePie:"ct-slice-pie",sliceDonut:"ct-slice-donut",sliceDonutSolid:"ct-slice-donut-solid",label:"ct-label"},startAngle:0,total:void 0,donut:!1,donutSolid:!1,donutWidth:60,showLabel:!0,labelOffset:0,labelPosition:"inside",labelInterpolationFnc:b.noop,labelDirection:"neutral",reverseData:!1,ignoreEmptyValues:!1});b.Pie=b.Base.extend({constructor:e,createChart:d,determineAnchorPosition:c})}(this,a),a}); +//# sourceMappingURL=chartist.min.js.map \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/css/chartist.min.js.map b/INCUBATE/incubate/incubate/static/css/chartist.min.js.map new file mode 100644 index 0000000000000000000000000000000000000000..bb606dcf114467d6ab198db324bd4664a08837b5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/css/chartist.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["chartist.js"],"names":["root","factory","define","amd","module","exports","this","Chartist","version","globalRoot","window","document","namespaces","svg","xmlns","xhtml","xlink","ct","noop","n","alphaNumerate","String","fromCharCode","extend","target","i","source","sourceProp","arguments","length","prop","Array","replaceAll","str","subStr","newSubStr","replace","RegExp","ensureUnit","value","unit","quantity","input","match","exec","undefined","querySelector","query","Node","times","apply","sum","previous","current","mapMultiply","factor","num","mapAdd","addend","serialMap","arr","cb","result","Math","max","map","e","forEach","index","args","roundWithPrecision","digits","precision","pow","round","escapingMap","&","<",">","\"","'","serialize","data","JSON","stringify","Object","keys","reduce","key","deserialize","parse","createSvg","container","width","height","className","prototype","slice","call","querySelectorAll","filter","getAttributeNS","removeChild","Svg","attr","addClass","_node","style","appendChild","normalizeData","reverse","multi","labelCount","output","raw","normalized","series","getDataArray","every","labels","push","reverseData","safeHasProperty","object","property","hasOwnProperty","isDataHoleValue","isNaN","recursiveConvert","multiValue","getNumberOrUndefined","y","x","normalizePadding","padding","fallback","top","right","bottom","left","getMetaData","meta","orderOfMagnitude","floor","log","abs","LN10","projectLength","axisLength","bounds","range","getAvailableHeight","options","chartPadding","axisX","offset","getHighLow","dimension","recursiveHighLow","findHigh","highLow","high","findLow","low","toUpperCase","Number","MAX_VALUE","referenceValue","min","isNumeric","isFinite","isFalseyButZero","isMultiValue","getMultiValue","rho","gcd","p","q","f","divisor","x1","x2","getBounds","scaleMinSpace","onlyInteger","safeIncrement","increment","EPSILON","newMin","newMax","optimizationCounter","valueRange","oom","step","ceil","numberOfSteps","scaleUp","smallestFactor","Error","values","polarToCartesian","centerX","centerY","radius","angleInDegrees","angleInRadians","PI","cos","sin","createChartRect","fallbackPadding","hasAxis","axisY","yAxisOffset","xAxisOffset","normalizedPadding","chartRect","y1","y2","position","createGrid","axis","group","classes","eventEmitter","positionalData","units","pos","counterUnits","gridElement","elem","join","emit","type","element","createGridBackground","gridGroup","gridBackground","createLabel","axisOffset","labelOffset","useForeignObject","labelElement","len","content","createElement","setAttribute","innerText","foreignObject","text","getSeriesOption","name","seriesOptions","optionsProvider","responsiveOptions","updateCurrentOptions","mediaEvent","previousOptions","currentOptions","baseOptions","mql","matchMedia","matches","removeMediaQueryListeners","mediaQueryListeners","removeListener","addListener","getCurrentOptions","splitIntoSegments","pathCoordinates","valueData","defaultOptions","increasingX","fillHoles","segments","hole","Interpolation","none","path","Path","currX","currY","currData","move","line","simple","d","prevX","prevY","prevData","curve","cardinal","tension","t","c","paths","segment","z","iLen","monotoneCubic","xs","ys","ms","ds","dys","dxs","postpone","EventEmitter","addEventHandler","event","handler","handlers","removeEventHandler","splice","indexOf","starHandler","listToArray","list","properties","superProtoOverride","superProto","Class","proto","create","cloneDefinitions","constr","instance","fn","constructor","getOwnPropertyNames","propName","defineProperty","getOwnPropertyDescriptor","update","override","initializeTimeoutId","createChart","detach","clearTimeout","removeEventListener","resizeListener","on","off","initialize","addEventListener","bind","plugins","plugin","Base","supportsForeignObject","isSupported","supportsAnimations","__chartist__","setTimeout","attributes","parent","insertFirst","Element","createElementNS","xmlns:ct","firstChild","insertBefore","ns","getAttribute","namespacedAttribute","split","setAttributeNS","parentNode","SVGElement","node","nodeName","selector","foundNode","foundNodes","List","getNode","innerHTML","fnObj","createTextNode","empty","remove","newElement","replaceChild","append","trim","names","concat","self","removeClass","removedClasses","removeAllClasses","getBoundingClientRect","animate","animations","guided","attribute","createAnimate","animationDefinition","timeout","easing","attributeProperties","Easing","begin","dur","calcMode","keySplines","keyTimes","fill","from","attributeName","beginElement","err","to","params","SvgList","nodeList","svgElements","prototypeProperty","feature","implementation","hasFeature","easingCubicBeziers","easeInSine","easeOutSine","easeInOutSine","easeInQuad","easeOutQuad","easeInOutQuad","easeInCubic","easeOutCubic","easeInOutCubic","easeInQuart","easeOutQuart","easeInOutQuart","easeInQuint","easeOutQuint","easeInOutQuint","easeInExpo","easeOutExpo","easeInOutExpo","easeInCirc","easeOutCirc","easeInOutCirc","easeInBack","easeOutBack","easeInOutBack","command","pathElements","relative","pathElement","toLowerCase","forEachParam","pathElementIndex","elementDescriptions","paramName","paramIndex","SvgPath","close","count","arc","rx","ry","xAr","lAf","sf","chunks","pop","elements","chunk","shift","description","spliceArgs","accuracyMultiplier","accuracy","scale","translate","transform","transformFnc","transformed","clone","splitByCommand","joinedPath","j","m","l","a","Axis","ticks","axisUnits","rectEnd","rectStart","gridOffset","rectOffset","createGridAndLabels","labelGroup","chartOptions","axisOptions","projectedValues","projectValue","labelValues","labelInterpolationFnc","projectedValue","labelLength","showGrid","classNames","grid","dir","showLabel","label","AutoScaleAxis","axisUnit","FixedScaleAxis","sort","b","stepLength","StepAxis","calc","stretch","chart","seriesGroup","fullWidth","showGridBackground","seriesIndex","seriesElement","ct:series-name","ct:meta","pathData","valueIndex","lineSmooth","showPoint","showLine","showArea","areaBase","smoothing","point","ct:value","seriesMeta","areaBaseProjected","pathSegment","solidPathSegments","firstElement","lastElement","areaPath","area","Line","vertical","horizontal","start","end","distributeSeries","horizontalBars","stackBars","serialSums","prev","curr","valueAxis","labelAxisTicks","labelAxis","zeroPoint","stackedBarValues","periodHalfLength","biPol","projected","bar","previousStack","labelAxisValueIndex","seriesBarDistance","positions","stackMode","metaData","Bar","determineAnchorPosition","center","direction","toTheRight","labelsGroup","labelRadius","totalDataSum","seriesGroups","startAngle","donut","chartDonut","chartPie","total","previousValue","currentValue","donutWidth","donutSolid","labelPosition","hasSingleValInSeries","val","ignoreEmptyValues","endAngle","overlappigStartAngle","innerStart","innerEnd","donutSolidRadius","pathClassName","slicePie","sliceDonut","sliceDonutSolid","strokeWidth","rawValue","interpolatedValue","dx","dy","text-anchor","labelDirection","Pie"],"mappings":"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","file":"chartist.min.js","sourcesContent":["(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module unless amdModuleId is set\n define('Chartist', [], function () {\n return (root['Chartist'] = factory());\n });\n } else if (typeof module === 'object' && module.exports) {\n // Node. Does not work with strict CommonJS, but\n // only CommonJS-like environments that support module.exports,\n // like Node.\n module.exports = factory();\n } else {\n root['Chartist'] = factory();\n }\n}(this, function () {\n\n/* Chartist.js 0.11.3\n * Copyright © 2019 Gion Kunz\n * Free to use under either the WTFPL license or the MIT license.\n * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-WTFPL\n * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-MIT\n */\n/**\n * The core module of Chartist that is mainly providing static functions and higher level functions for chart modules.\n *\n * @module Chartist.Core\n */\nvar Chartist = {\n version: '0.11.3'\n};\n\n(function (globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n /**\n * This object contains all namespaces used within Chartist.\n *\n * @memberof Chartist.Core\n * @type {{svg: string, xmlns: string, xhtml: string, xlink: string, ct: string}}\n */\n Chartist.namespaces = {\n svg: 'http://www.w3.org/2000/svg',\n xmlns: 'http://www.w3.org/2000/xmlns/',\n xhtml: 'http://www.w3.org/1999/xhtml',\n xlink: 'http://www.w3.org/1999/xlink',\n ct: 'http://gionkunz.github.com/chartist-js/ct'\n };\n\n /**\n * Helps to simplify functional style code\n *\n * @memberof Chartist.Core\n * @param {*} n This exact value will be returned by the noop function\n * @return {*} The same value that was provided to the n parameter\n */\n Chartist.noop = function (n) {\n return n;\n };\n\n /**\n * Generates a-z from a number 0 to 26\n *\n * @memberof Chartist.Core\n * @param {Number} n A number from 0 to 26 that will result in a letter a-z\n * @return {String} A character from a-z based on the input number n\n */\n Chartist.alphaNumerate = function (n) {\n // Limit to a-z\n return String.fromCharCode(97 + n % 26);\n };\n\n /**\n * Simple recursive object extend\n *\n * @memberof Chartist.Core\n * @param {Object} target Target object where the source will be merged into\n * @param {Object...} sources This object (objects) will be merged into target and then target is returned\n * @return {Object} An object that has the same reference as target but is extended and merged with the properties of source\n */\n Chartist.extend = function (target) {\n var i, source, sourceProp;\n target = target || {};\n\n for (i = 1; i < arguments.length; i++) {\n source = arguments[i];\n for (var prop in source) {\n sourceProp = source[prop];\n if (typeof sourceProp === 'object' && sourceProp !== null && !(sourceProp instanceof Array)) {\n target[prop] = Chartist.extend(target[prop], sourceProp);\n } else {\n target[prop] = sourceProp;\n }\n }\n }\n\n return target;\n };\n\n /**\n * Replaces all occurrences of subStr in str with newSubStr and returns a new string.\n *\n * @memberof Chartist.Core\n * @param {String} str\n * @param {String} subStr\n * @param {String} newSubStr\n * @return {String}\n */\n Chartist.replaceAll = function(str, subStr, newSubStr) {\n return str.replace(new RegExp(subStr, 'g'), newSubStr);\n };\n\n /**\n * Converts a number to a string with a unit. If a string is passed then this will be returned unmodified.\n *\n * @memberof Chartist.Core\n * @param {Number} value\n * @param {String} unit\n * @return {String} Returns the passed number value with unit.\n */\n Chartist.ensureUnit = function(value, unit) {\n if(typeof value === 'number') {\n value = value + unit;\n }\n\n return value;\n };\n\n /**\n * Converts a number or string to a quantity object.\n *\n * @memberof Chartist.Core\n * @param {String|Number} input\n * @return {Object} Returns an object containing the value as number and the unit as string.\n */\n Chartist.quantity = function(input) {\n if (typeof input === 'string') {\n var match = (/^(\\d+)\\s*(.*)$/g).exec(input);\n return {\n value : +match[1],\n unit: match[2] || undefined\n };\n }\n return { value: input };\n };\n\n /**\n * This is a wrapper around document.querySelector that will return the query if it's already of type Node\n *\n * @memberof Chartist.Core\n * @param {String|Node} query The query to use for selecting a Node or a DOM node that will be returned directly\n * @return {Node}\n */\n Chartist.querySelector = function(query) {\n return query instanceof Node ? query : document.querySelector(query);\n };\n\n /**\n * Functional style helper to produce array with given length initialized with undefined values\n *\n * @memberof Chartist.Core\n * @param length\n * @return {Array}\n */\n Chartist.times = function(length) {\n return Array.apply(null, new Array(length));\n };\n\n /**\n * Sum helper to be used in reduce functions\n *\n * @memberof Chartist.Core\n * @param previous\n * @param current\n * @return {*}\n */\n Chartist.sum = function(previous, current) {\n return previous + (current ? current : 0);\n };\n\n /**\n * Multiply helper to be used in `Array.map` for multiplying each value of an array with a factor.\n *\n * @memberof Chartist.Core\n * @param {Number} factor\n * @returns {Function} Function that can be used in `Array.map` to multiply each value in an array\n */\n Chartist.mapMultiply = function(factor) {\n return function(num) {\n return num * factor;\n };\n };\n\n /**\n * Add helper to be used in `Array.map` for adding a addend to each value of an array.\n *\n * @memberof Chartist.Core\n * @param {Number} addend\n * @returns {Function} Function that can be used in `Array.map` to add a addend to each value in an array\n */\n Chartist.mapAdd = function(addend) {\n return function(num) {\n return num + addend;\n };\n };\n\n /**\n * Map for multi dimensional arrays where their nested arrays will be mapped in serial. The output array will have the length of the largest nested array. The callback function is called with variable arguments where each argument is the nested array value (or undefined if there are no more values).\n *\n * @memberof Chartist.Core\n * @param arr\n * @param cb\n * @return {Array}\n */\n Chartist.serialMap = function(arr, cb) {\n var result = [],\n length = Math.max.apply(null, arr.map(function(e) {\n return e.length;\n }));\n\n Chartist.times(length).forEach(function(e, index) {\n var args = arr.map(function(e) {\n return e[index];\n });\n\n result[index] = cb.apply(null, args);\n });\n\n return result;\n };\n\n /**\n * This helper function can be used to round values with certain precision level after decimal. This is used to prevent rounding errors near float point precision limit.\n *\n * @memberof Chartist.Core\n * @param {Number} value The value that should be rounded with precision\n * @param {Number} [digits] The number of digits after decimal used to do the rounding\n * @returns {number} Rounded value\n */\n Chartist.roundWithPrecision = function(value, digits) {\n var precision = Math.pow(10, digits || Chartist.precision);\n return Math.round(value * precision) / precision;\n };\n\n /**\n * Precision level used internally in Chartist for rounding. If you require more decimal places you can increase this number.\n *\n * @memberof Chartist.Core\n * @type {number}\n */\n Chartist.precision = 8;\n\n /**\n * A map with characters to escape for strings to be safely used as attribute values.\n *\n * @memberof Chartist.Core\n * @type {Object}\n */\n Chartist.escapingMap = {\n '&': '&',\n '<': '<',\n '>': '>',\n '\"': '"',\n '\\'': '''\n };\n\n /**\n * This function serializes arbitrary data to a string. In case of data that can't be easily converted to a string, this function will create a wrapper object and serialize the data using JSON.stringify. The outcoming string will always be escaped using Chartist.escapingMap.\n * If called with null or undefined the function will return immediately with null or undefined.\n *\n * @memberof Chartist.Core\n * @param {Number|String|Object} data\n * @return {String}\n */\n Chartist.serialize = function(data) {\n if(data === null || data === undefined) {\n return data;\n } else if(typeof data === 'number') {\n data = ''+data;\n } else if(typeof data === 'object') {\n data = JSON.stringify({data: data});\n }\n\n return Object.keys(Chartist.escapingMap).reduce(function(result, key) {\n return Chartist.replaceAll(result, key, Chartist.escapingMap[key]);\n }, data);\n };\n\n /**\n * This function de-serializes a string previously serialized with Chartist.serialize. The string will always be unescaped using Chartist.escapingMap before it's returned. Based on the input value the return type can be Number, String or Object. JSON.parse is used with try / catch to see if the unescaped string can be parsed into an Object and this Object will be returned on success.\n *\n * @memberof Chartist.Core\n * @param {String} data\n * @return {String|Number|Object}\n */\n Chartist.deserialize = function(data) {\n if(typeof data !== 'string') {\n return data;\n }\n\n data = Object.keys(Chartist.escapingMap).reduce(function(result, key) {\n return Chartist.replaceAll(result, Chartist.escapingMap[key], key);\n }, data);\n\n try {\n data = JSON.parse(data);\n data = data.data !== undefined ? data.data : data;\n } catch(e) {}\n\n return data;\n };\n\n /**\n * Create or reinitialize the SVG element for the chart\n *\n * @memberof Chartist.Core\n * @param {Node} container The containing DOM Node object that will be used to plant the SVG element\n * @param {String} width Set the width of the SVG element. Default is 100%\n * @param {String} height Set the height of the SVG element. Default is 100%\n * @param {String} className Specify a class to be added to the SVG element\n * @return {Object} The created/reinitialized SVG element\n */\n Chartist.createSvg = function (container, width, height, className) {\n var svg;\n\n width = width || '100%';\n height = height || '100%';\n\n // Check if there is a previous SVG element in the container that contains the Chartist XML namespace and remove it\n // Since the DOM API does not support namespaces we need to manually search the returned list http://www.w3.org/TR/selectors-api/\n Array.prototype.slice.call(container.querySelectorAll('svg')).filter(function filterChartistSvgObjects(svg) {\n return svg.getAttributeNS(Chartist.namespaces.xmlns, 'ct');\n }).forEach(function removePreviousElement(svg) {\n container.removeChild(svg);\n });\n\n // Create svg object with width and height or use 100% as default\n svg = new Chartist.Svg('svg').attr({\n width: width,\n height: height\n }).addClass(className);\n\n svg._node.style.width = width;\n svg._node.style.height = height;\n\n // Add the DOM node to our container\n container.appendChild(svg._node);\n\n return svg;\n };\n\n /**\n * Ensures that the data object passed as second argument to the charts is present and correctly initialized.\n *\n * @param {Object} data The data object that is passed as second argument to the charts\n * @return {Object} The normalized data object\n */\n Chartist.normalizeData = function(data, reverse, multi) {\n var labelCount;\n var output = {\n raw: data,\n normalized: {}\n };\n\n // Check if we should generate some labels based on existing series data\n output.normalized.series = Chartist.getDataArray({\n series: data.series || []\n }, reverse, multi);\n\n // If all elements of the normalized data array are arrays we're dealing with\n // multi series data and we need to find the largest series if they are un-even\n if (output.normalized.series.every(function(value) {\n return value instanceof Array;\n })) {\n // Getting the series with the the most elements\n labelCount = Math.max.apply(null, output.normalized.series.map(function(series) {\n return series.length;\n }));\n } else {\n // We're dealing with Pie data so we just take the normalized array length\n labelCount = output.normalized.series.length;\n }\n\n output.normalized.labels = (data.labels || []).slice();\n // Padding the labels to labelCount with empty strings\n Array.prototype.push.apply(\n output.normalized.labels,\n Chartist.times(Math.max(0, labelCount - output.normalized.labels.length)).map(function() {\n return '';\n })\n );\n\n if(reverse) {\n Chartist.reverseData(output.normalized);\n }\n\n return output;\n };\n\n /**\n * This function safely checks if an objects has an owned property.\n *\n * @param {Object} object The object where to check for a property\n * @param {string} property The property name\n * @returns {boolean} Returns true if the object owns the specified property\n */\n Chartist.safeHasProperty = function(object, property) {\n return object !== null &&\n typeof object === 'object' &&\n object.hasOwnProperty(property);\n };\n\n /**\n * Checks if a value is considered a hole in the data series.\n *\n * @param {*} value\n * @returns {boolean} True if the value is considered a data hole\n */\n Chartist.isDataHoleValue = function(value) {\n return value === null ||\n value === undefined ||\n (typeof value === 'number' && isNaN(value));\n };\n\n /**\n * Reverses the series, labels and series data arrays.\n *\n * @memberof Chartist.Core\n * @param data\n */\n Chartist.reverseData = function(data) {\n data.labels.reverse();\n data.series.reverse();\n for (var i = 0; i < data.series.length; i++) {\n if(typeof(data.series[i]) === 'object' && data.series[i].data !== undefined) {\n data.series[i].data.reverse();\n } else if(data.series[i] instanceof Array) {\n data.series[i].reverse();\n }\n }\n };\n\n /**\n * Convert data series into plain array\n *\n * @memberof Chartist.Core\n * @param {Object} data The series object that contains the data to be visualized in the chart\n * @param {Boolean} [reverse] If true the whole data is reversed by the getDataArray call. This will modify the data object passed as first parameter. The labels as well as the series order is reversed. The whole series data arrays are reversed too.\n * @param {Boolean} [multi] Create a multi dimensional array from a series data array where a value object with `x` and `y` values will be created.\n * @return {Array} A plain array that contains the data to be visualized in the chart\n */\n Chartist.getDataArray = function(data, reverse, multi) {\n // Recursively walks through nested arrays and convert string values to numbers and objects with value properties\n // to values. Check the tests in data core -> data normalization for a detailed specification of expected values\n function recursiveConvert(value) {\n if(Chartist.safeHasProperty(value, 'value')) {\n // We are dealing with value object notation so we need to recurse on value property\n return recursiveConvert(value.value);\n } else if(Chartist.safeHasProperty(value, 'data')) {\n // We are dealing with series object notation so we need to recurse on data property\n return recursiveConvert(value.data);\n } else if(value instanceof Array) {\n // Data is of type array so we need to recurse on the series\n return value.map(recursiveConvert);\n } else if(Chartist.isDataHoleValue(value)) {\n // We're dealing with a hole in the data and therefore need to return undefined\n // We're also returning undefined for multi value output\n return undefined;\n } else {\n // We need to prepare multi value output (x and y data)\n if(multi) {\n var multiValue = {};\n\n // Single series value arrays are assumed to specify the Y-Axis value\n // For example: [1, 2] => [{x: undefined, y: 1}, {x: undefined, y: 2}]\n // If multi is a string then it's assumed that it specified which dimension should be filled as default\n if(typeof multi === 'string') {\n multiValue[multi] = Chartist.getNumberOrUndefined(value);\n } else {\n multiValue.y = Chartist.getNumberOrUndefined(value);\n }\n\n multiValue.x = value.hasOwnProperty('x') ? Chartist.getNumberOrUndefined(value.x) : multiValue.x;\n multiValue.y = value.hasOwnProperty('y') ? Chartist.getNumberOrUndefined(value.y) : multiValue.y;\n\n return multiValue;\n\n } else {\n // We can return simple data\n return Chartist.getNumberOrUndefined(value);\n }\n }\n }\n\n return data.series.map(recursiveConvert);\n };\n\n /**\n * Converts a number into a padding object.\n *\n * @memberof Chartist.Core\n * @param {Object|Number} padding\n * @param {Number} [fallback] This value is used to fill missing values if a incomplete padding object was passed\n * @returns {Object} Returns a padding object containing top, right, bottom, left properties filled with the padding number passed in as argument. If the argument is something else than a number (presumably already a correct padding object) then this argument is directly returned.\n */\n Chartist.normalizePadding = function(padding, fallback) {\n fallback = fallback || 0;\n\n return typeof padding === 'number' ? {\n top: padding,\n right: padding,\n bottom: padding,\n left: padding\n } : {\n top: typeof padding.top === 'number' ? padding.top : fallback,\n right: typeof padding.right === 'number' ? padding.right : fallback,\n bottom: typeof padding.bottom === 'number' ? padding.bottom : fallback,\n left: typeof padding.left === 'number' ? padding.left : fallback\n };\n };\n\n Chartist.getMetaData = function(series, index) {\n var value = series.data ? series.data[index] : series[index];\n return value ? value.meta : undefined;\n };\n\n /**\n * Calculate the order of magnitude for the chart scale\n *\n * @memberof Chartist.Core\n * @param {Number} value The value Range of the chart\n * @return {Number} The order of magnitude\n */\n Chartist.orderOfMagnitude = function (value) {\n return Math.floor(Math.log(Math.abs(value)) / Math.LN10);\n };\n\n /**\n * Project a data length into screen coordinates (pixels)\n *\n * @memberof Chartist.Core\n * @param {Object} axisLength The svg element for the chart\n * @param {Number} length Single data value from a series array\n * @param {Object} bounds All the values to set the bounds of the chart\n * @return {Number} The projected data length in pixels\n */\n Chartist.projectLength = function (axisLength, length, bounds) {\n return length / bounds.range * axisLength;\n };\n\n /**\n * Get the height of the area in the chart for the data series\n *\n * @memberof Chartist.Core\n * @param {Object} svg The svg element for the chart\n * @param {Object} options The Object that contains all the optional values for the chart\n * @return {Number} The height of the area in the chart for the data series\n */\n Chartist.getAvailableHeight = function (svg, options) {\n return Math.max((Chartist.quantity(options.height).value || svg.height()) - (options.chartPadding.top + options.chartPadding.bottom) - options.axisX.offset, 0);\n };\n\n /**\n * Get highest and lowest value of data array. This Array contains the data that will be visualized in the chart.\n *\n * @memberof Chartist.Core\n * @param {Array} data The array that contains the data to be visualized in the chart\n * @param {Object} options The Object that contains the chart options\n * @param {String} dimension Axis dimension 'x' or 'y' used to access the correct value and high / low configuration\n * @return {Object} An object that contains the highest and lowest value that will be visualized on the chart.\n */\n Chartist.getHighLow = function (data, options, dimension) {\n // TODO: Remove workaround for deprecated global high / low config. Axis high / low configuration is preferred\n options = Chartist.extend({}, options, dimension ? options['axis' + dimension.toUpperCase()] : {});\n\n var highLow = {\n high: options.high === undefined ? -Number.MAX_VALUE : +options.high,\n low: options.low === undefined ? Number.MAX_VALUE : +options.low\n };\n var findHigh = options.high === undefined;\n var findLow = options.low === undefined;\n\n // Function to recursively walk through arrays and find highest and lowest number\n function recursiveHighLow(data) {\n if(data === undefined) {\n return undefined;\n } else if(data instanceof Array) {\n for (var i = 0; i < data.length; i++) {\n recursiveHighLow(data[i]);\n }\n } else {\n var value = dimension ? +data[dimension] : +data;\n\n if (findHigh && value > highLow.high) {\n highLow.high = value;\n }\n\n if (findLow && value < highLow.low) {\n highLow.low = value;\n }\n }\n }\n\n // Start to find highest and lowest number recursively\n if(findHigh || findLow) {\n recursiveHighLow(data);\n }\n\n // Overrides of high / low based on reference value, it will make sure that the invisible reference value is\n // used to generate the chart. This is useful when the chart always needs to contain the position of the\n // invisible reference value in the view i.e. for bipolar scales.\n if (options.referenceValue || options.referenceValue === 0) {\n highLow.high = Math.max(options.referenceValue, highLow.high);\n highLow.low = Math.min(options.referenceValue, highLow.low);\n }\n\n // If high and low are the same because of misconfiguration or flat data (only the same value) we need\n // to set the high or low to 0 depending on the polarity\n if (highLow.high <= highLow.low) {\n // If both values are 0 we set high to 1\n if (highLow.low === 0) {\n highLow.high = 1;\n } else if (highLow.low < 0) {\n // If we have the same negative value for the bounds we set bounds.high to 0\n highLow.high = 0;\n } else if (highLow.high > 0) {\n // If we have the same positive value for the bounds we set bounds.low to 0\n highLow.low = 0;\n } else {\n // If data array was empty, values are Number.MAX_VALUE and -Number.MAX_VALUE. Set bounds to prevent errors\n highLow.high = 1;\n highLow.low = 0;\n }\n }\n\n return highLow;\n };\n\n /**\n * Checks if a value can be safely coerced to a number. This includes all values except null which result in finite numbers when coerced. This excludes NaN, since it's not finite.\n *\n * @memberof Chartist.Core\n * @param value\n * @returns {Boolean}\n */\n Chartist.isNumeric = function(value) {\n return value === null ? false : isFinite(value);\n };\n\n /**\n * Returns true on all falsey values except the numeric value 0.\n *\n * @memberof Chartist.Core\n * @param value\n * @returns {boolean}\n */\n Chartist.isFalseyButZero = function(value) {\n return !value && value !== 0;\n };\n\n /**\n * Returns a number if the passed parameter is a valid number or the function will return undefined. On all other values than a valid number, this function will return undefined.\n *\n * @memberof Chartist.Core\n * @param value\n * @returns {*}\n */\n Chartist.getNumberOrUndefined = function(value) {\n return Chartist.isNumeric(value) ? +value : undefined;\n };\n\n /**\n * Checks if provided value object is multi value (contains x or y properties)\n *\n * @memberof Chartist.Core\n * @param value\n */\n Chartist.isMultiValue = function(value) {\n return typeof value === 'object' && ('x' in value || 'y' in value);\n };\n\n /**\n * Gets a value from a dimension `value.x` or `value.y` while returning value directly if it's a valid numeric value. If the value is not numeric and it's falsey this function will return `defaultValue`.\n *\n * @memberof Chartist.Core\n * @param value\n * @param dimension\n * @param defaultValue\n * @returns {*}\n */\n Chartist.getMultiValue = function(value, dimension) {\n if(Chartist.isMultiValue(value)) {\n return Chartist.getNumberOrUndefined(value[dimension || 'y']);\n } else {\n return Chartist.getNumberOrUndefined(value);\n }\n };\n\n /**\n * Pollard Rho Algorithm to find smallest factor of an integer value. There are more efficient algorithms for factorization, but this one is quite efficient and not so complex.\n *\n * @memberof Chartist.Core\n * @param {Number} num An integer number where the smallest factor should be searched for\n * @returns {Number} The smallest integer factor of the parameter num.\n */\n Chartist.rho = function(num) {\n if(num === 1) {\n return num;\n }\n\n function gcd(p, q) {\n if (p % q === 0) {\n return q;\n } else {\n return gcd(q, p % q);\n }\n }\n\n function f(x) {\n return x * x + 1;\n }\n\n var x1 = 2, x2 = 2, divisor;\n if (num % 2 === 0) {\n return 2;\n }\n\n do {\n x1 = f(x1) % num;\n x2 = f(f(x2)) % num;\n divisor = gcd(Math.abs(x1 - x2), num);\n } while (divisor === 1);\n\n return divisor;\n };\n\n /**\n * Calculate and retrieve all the bounds for the chart and return them in one array\n *\n * @memberof Chartist.Core\n * @param {Number} axisLength The length of the Axis used for\n * @param {Object} highLow An object containing a high and low property indicating the value range of the chart.\n * @param {Number} scaleMinSpace The minimum projected length a step should result in\n * @param {Boolean} onlyInteger\n * @return {Object} All the values to set the bounds of the chart\n */\n Chartist.getBounds = function (axisLength, highLow, scaleMinSpace, onlyInteger) {\n var i,\n optimizationCounter = 0,\n newMin,\n newMax,\n bounds = {\n high: highLow.high,\n low: highLow.low\n };\n\n bounds.valueRange = bounds.high - bounds.low;\n bounds.oom = Chartist.orderOfMagnitude(bounds.valueRange);\n bounds.step = Math.pow(10, bounds.oom);\n bounds.min = Math.floor(bounds.low / bounds.step) * bounds.step;\n bounds.max = Math.ceil(bounds.high / bounds.step) * bounds.step;\n bounds.range = bounds.max - bounds.min;\n bounds.numberOfSteps = Math.round(bounds.range / bounds.step);\n\n // Optimize scale step by checking if subdivision is possible based on horizontalGridMinSpace\n // If we are already below the scaleMinSpace value we will scale up\n var length = Chartist.projectLength(axisLength, bounds.step, bounds);\n var scaleUp = length < scaleMinSpace;\n var smallestFactor = onlyInteger ? Chartist.rho(bounds.range) : 0;\n\n // First check if we should only use integer steps and if step 1 is still larger than scaleMinSpace so we can use 1\n if(onlyInteger && Chartist.projectLength(axisLength, 1, bounds) >= scaleMinSpace) {\n bounds.step = 1;\n } else if(onlyInteger && smallestFactor < bounds.step && Chartist.projectLength(axisLength, smallestFactor, bounds) >= scaleMinSpace) {\n // If step 1 was too small, we can try the smallest factor of range\n // If the smallest factor is smaller than the current bounds.step and the projected length of smallest factor\n // is larger than the scaleMinSpace we should go for it.\n bounds.step = smallestFactor;\n } else {\n // Trying to divide or multiply by 2 and find the best step value\n while (true) {\n if (scaleUp && Chartist.projectLength(axisLength, bounds.step, bounds) <= scaleMinSpace) {\n bounds.step *= 2;\n } else if (!scaleUp && Chartist.projectLength(axisLength, bounds.step / 2, bounds) >= scaleMinSpace) {\n bounds.step /= 2;\n if(onlyInteger && bounds.step % 1 !== 0) {\n bounds.step *= 2;\n break;\n }\n } else {\n break;\n }\n\n if(optimizationCounter++ > 1000) {\n throw new Error('Exceeded maximum number of iterations while optimizing scale step!');\n }\n }\n }\n\n var EPSILON = 2.221E-16;\n bounds.step = Math.max(bounds.step, EPSILON);\n function safeIncrement(value, increment) {\n // If increment is too small use *= (1+EPSILON) as a simple nextafter\n if (value === (value += increment)) {\n \tvalue *= (1 + (increment > 0 ? EPSILON : -EPSILON));\n }\n return value;\n }\n\n // Narrow min and max based on new step\n newMin = bounds.min;\n newMax = bounds.max;\n while (newMin + bounds.step <= bounds.low) {\n \tnewMin = safeIncrement(newMin, bounds.step);\n }\n while (newMax - bounds.step >= bounds.high) {\n \tnewMax = safeIncrement(newMax, -bounds.step);\n }\n bounds.min = newMin;\n bounds.max = newMax;\n bounds.range = bounds.max - bounds.min;\n\n var values = [];\n for (i = bounds.min; i <= bounds.max; i = safeIncrement(i, bounds.step)) {\n var value = Chartist.roundWithPrecision(i);\n if (value !== values[values.length - 1]) {\n values.push(value);\n }\n }\n bounds.values = values;\n return bounds;\n };\n\n /**\n * Calculate cartesian coordinates of polar coordinates\n *\n * @memberof Chartist.Core\n * @param {Number} centerX X-axis coordinates of center point of circle segment\n * @param {Number} centerY X-axis coordinates of center point of circle segment\n * @param {Number} radius Radius of circle segment\n * @param {Number} angleInDegrees Angle of circle segment in degrees\n * @return {{x:Number, y:Number}} Coordinates of point on circumference\n */\n Chartist.polarToCartesian = function (centerX, centerY, radius, angleInDegrees) {\n var angleInRadians = (angleInDegrees - 90) * Math.PI / 180.0;\n\n return {\n x: centerX + (radius * Math.cos(angleInRadians)),\n y: centerY + (radius * Math.sin(angleInRadians))\n };\n };\n\n /**\n * Initialize chart drawing rectangle (area where chart is drawn) x1,y1 = bottom left / x2,y2 = top right\n *\n * @memberof Chartist.Core\n * @param {Object} svg The svg element for the chart\n * @param {Object} options The Object that contains all the optional values for the chart\n * @param {Number} [fallbackPadding] The fallback padding if partial padding objects are used\n * @return {Object} The chart rectangles coordinates inside the svg element plus the rectangles measurements\n */\n Chartist.createChartRect = function (svg, options, fallbackPadding) {\n var hasAxis = !!(options.axisX || options.axisY);\n var yAxisOffset = hasAxis ? options.axisY.offset : 0;\n var xAxisOffset = hasAxis ? options.axisX.offset : 0;\n // If width or height results in invalid value (including 0) we fallback to the unitless settings or even 0\n var width = svg.width() || Chartist.quantity(options.width).value || 0;\n var height = svg.height() || Chartist.quantity(options.height).value || 0;\n var normalizedPadding = Chartist.normalizePadding(options.chartPadding, fallbackPadding);\n\n // If settings were to small to cope with offset (legacy) and padding, we'll adjust\n width = Math.max(width, yAxisOffset + normalizedPadding.left + normalizedPadding.right);\n height = Math.max(height, xAxisOffset + normalizedPadding.top + normalizedPadding.bottom);\n\n var chartRect = {\n padding: normalizedPadding,\n width: function () {\n return this.x2 - this.x1;\n },\n height: function () {\n return this.y1 - this.y2;\n }\n };\n\n if(hasAxis) {\n if (options.axisX.position === 'start') {\n chartRect.y2 = normalizedPadding.top + xAxisOffset;\n chartRect.y1 = Math.max(height - normalizedPadding.bottom, chartRect.y2 + 1);\n } else {\n chartRect.y2 = normalizedPadding.top;\n chartRect.y1 = Math.max(height - normalizedPadding.bottom - xAxisOffset, chartRect.y2 + 1);\n }\n\n if (options.axisY.position === 'start') {\n chartRect.x1 = normalizedPadding.left + yAxisOffset;\n chartRect.x2 = Math.max(width - normalizedPadding.right, chartRect.x1 + 1);\n } else {\n chartRect.x1 = normalizedPadding.left;\n chartRect.x2 = Math.max(width - normalizedPadding.right - yAxisOffset, chartRect.x1 + 1);\n }\n } else {\n chartRect.x1 = normalizedPadding.left;\n chartRect.x2 = Math.max(width - normalizedPadding.right, chartRect.x1 + 1);\n chartRect.y2 = normalizedPadding.top;\n chartRect.y1 = Math.max(height - normalizedPadding.bottom, chartRect.y2 + 1);\n }\n\n return chartRect;\n };\n\n /**\n * Creates a grid line based on a projected value.\n *\n * @memberof Chartist.Core\n * @param position\n * @param index\n * @param axis\n * @param offset\n * @param length\n * @param group\n * @param classes\n * @param eventEmitter\n */\n Chartist.createGrid = function(position, index, axis, offset, length, group, classes, eventEmitter) {\n var positionalData = {};\n positionalData[axis.units.pos + '1'] = position;\n positionalData[axis.units.pos + '2'] = position;\n positionalData[axis.counterUnits.pos + '1'] = offset;\n positionalData[axis.counterUnits.pos + '2'] = offset + length;\n\n var gridElement = group.elem('line', positionalData, classes.join(' '));\n\n // Event for grid draw\n eventEmitter.emit('draw',\n Chartist.extend({\n type: 'grid',\n axis: axis,\n index: index,\n group: group,\n element: gridElement\n }, positionalData)\n );\n };\n\n /**\n * Creates a grid background rect and emits the draw event.\n *\n * @memberof Chartist.Core\n * @param gridGroup\n * @param chartRect\n * @param className\n * @param eventEmitter\n */\n Chartist.createGridBackground = function (gridGroup, chartRect, className, eventEmitter) {\n var gridBackground = gridGroup.elem('rect', {\n x: chartRect.x1,\n y: chartRect.y2,\n width: chartRect.width(),\n height: chartRect.height(),\n }, className, true);\n\n // Event for grid background draw\n eventEmitter.emit('draw', {\n type: 'gridBackground',\n group: gridGroup,\n element: gridBackground\n });\n };\n\n /**\n * Creates a label based on a projected value and an axis.\n *\n * @memberof Chartist.Core\n * @param position\n * @param length\n * @param index\n * @param labels\n * @param axis\n * @param axisOffset\n * @param labelOffset\n * @param group\n * @param classes\n * @param useForeignObject\n * @param eventEmitter\n */\n Chartist.createLabel = function(position, length, index, labels, axis, axisOffset, labelOffset, group, classes, useForeignObject, eventEmitter) {\n var labelElement;\n var positionalData = {};\n\n positionalData[axis.units.pos] = position + labelOffset[axis.units.pos];\n positionalData[axis.counterUnits.pos] = labelOffset[axis.counterUnits.pos];\n positionalData[axis.units.len] = length;\n positionalData[axis.counterUnits.len] = Math.max(0, axisOffset - 10);\n\n if(useForeignObject) {\n // We need to set width and height explicitly to px as span will not expand with width and height being\n // 100% in all browsers\n var content = document.createElement('span');\n content.className = classes.join(' ');\n content.setAttribute('xmlns', Chartist.namespaces.xhtml);\n content.innerText = labels[index];\n content.style[axis.units.len] = Math.round(positionalData[axis.units.len]) + 'px';\n content.style[axis.counterUnits.len] = Math.round(positionalData[axis.counterUnits.len]) + 'px';\n\n labelElement = group.foreignObject(content, Chartist.extend({\n style: 'overflow: visible;'\n }, positionalData));\n } else {\n labelElement = group.elem('text', positionalData, classes.join(' ')).text(labels[index]);\n }\n\n eventEmitter.emit('draw', Chartist.extend({\n type: 'label',\n axis: axis,\n index: index,\n group: group,\n element: labelElement,\n text: labels[index]\n }, positionalData));\n };\n\n /**\n * Helper to read series specific options from options object. It automatically falls back to the global option if\n * there is no option in the series options.\n *\n * @param {Object} series Series object\n * @param {Object} options Chartist options object\n * @param {string} key The options key that should be used to obtain the options\n * @returns {*}\n */\n Chartist.getSeriesOption = function(series, options, key) {\n if(series.name && options.series && options.series[series.name]) {\n var seriesOptions = options.series[series.name];\n return seriesOptions.hasOwnProperty(key) ? seriesOptions[key] : options[key];\n } else {\n return options[key];\n }\n };\n\n /**\n * Provides options handling functionality with callback for options changes triggered by responsive options and media query matches\n *\n * @memberof Chartist.Core\n * @param {Object} options Options set by user\n * @param {Array} responsiveOptions Optional functions to add responsive behavior to chart\n * @param {Object} eventEmitter The event emitter that will be used to emit the options changed events\n * @return {Object} The consolidated options object from the defaults, base and matching responsive options\n */\n Chartist.optionsProvider = function (options, responsiveOptions, eventEmitter) {\n var baseOptions = Chartist.extend({}, options),\n currentOptions,\n mediaQueryListeners = [],\n i;\n\n function updateCurrentOptions(mediaEvent) {\n var previousOptions = currentOptions;\n currentOptions = Chartist.extend({}, baseOptions);\n\n if (responsiveOptions) {\n for (i = 0; i < responsiveOptions.length; i++) {\n var mql = window.matchMedia(responsiveOptions[i][0]);\n if (mql.matches) {\n currentOptions = Chartist.extend(currentOptions, responsiveOptions[i][1]);\n }\n }\n }\n\n if(eventEmitter && mediaEvent) {\n eventEmitter.emit('optionsChanged', {\n previousOptions: previousOptions,\n currentOptions: currentOptions\n });\n }\n }\n\n function removeMediaQueryListeners() {\n mediaQueryListeners.forEach(function(mql) {\n mql.removeListener(updateCurrentOptions);\n });\n }\n\n if (!window.matchMedia) {\n throw 'window.matchMedia not found! Make sure you\\'re using a polyfill.';\n } else if (responsiveOptions) {\n\n for (i = 0; i < responsiveOptions.length; i++) {\n var mql = window.matchMedia(responsiveOptions[i][0]);\n mql.addListener(updateCurrentOptions);\n mediaQueryListeners.push(mql);\n }\n }\n // Execute initially without an event argument so we get the correct options\n updateCurrentOptions();\n\n return {\n removeMediaQueryListeners: removeMediaQueryListeners,\n getCurrentOptions: function getCurrentOptions() {\n return Chartist.extend({}, currentOptions);\n }\n };\n };\n\n\n /**\n * Splits a list of coordinates and associated values into segments. Each returned segment contains a pathCoordinates\n * valueData property describing the segment.\n *\n * With the default options, segments consist of contiguous sets of points that do not have an undefined value. Any\n * points with undefined values are discarded.\n *\n * **Options**\n * The following options are used to determine how segments are formed\n * ```javascript\n * var options = {\n * // If fillHoles is true, undefined values are simply discarded without creating a new segment. Assuming other options are default, this returns single segment.\n * fillHoles: false,\n * // If increasingX is true, the coordinates in all segments have strictly increasing x-values.\n * increasingX: false\n * };\n * ```\n *\n * @memberof Chartist.Core\n * @param {Array} pathCoordinates List of point coordinates to be split in the form [x1, y1, x2, y2 ... xn, yn]\n * @param {Array} values List of associated point values in the form [v1, v2 .. vn]\n * @param {Object} options Options set by user\n * @return {Array} List of segments, each containing a pathCoordinates and valueData property.\n */\n Chartist.splitIntoSegments = function(pathCoordinates, valueData, options) {\n var defaultOptions = {\n increasingX: false,\n fillHoles: false\n };\n\n options = Chartist.extend({}, defaultOptions, options);\n\n var segments = [];\n var hole = true;\n\n for(var i = 0; i < pathCoordinates.length; i += 2) {\n // If this value is a \"hole\" we set the hole flag\n if(Chartist.getMultiValue(valueData[i / 2].value) === undefined) {\n // if(valueData[i / 2].value === undefined) {\n if(!options.fillHoles) {\n hole = true;\n }\n } else {\n if(options.increasingX && i >= 2 && pathCoordinates[i] <= pathCoordinates[i-2]) {\n // X is not increasing, so we need to make sure we start a new segment\n hole = true;\n }\n\n\n // If it's a valid value we need to check if we're coming out of a hole and create a new empty segment\n if(hole) {\n segments.push({\n pathCoordinates: [],\n valueData: []\n });\n // As we have a valid value now, we are not in a \"hole\" anymore\n hole = false;\n }\n\n // Add to the segment pathCoordinates and valueData\n segments[segments.length - 1].pathCoordinates.push(pathCoordinates[i], pathCoordinates[i + 1]);\n segments[segments.length - 1].valueData.push(valueData[i / 2]);\n }\n }\n\n return segments;\n };\n}(this, Chartist));\n;/**\n * Chartist path interpolation functions.\n *\n * @module Chartist.Interpolation\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n Chartist.Interpolation = {};\n\n /**\n * This interpolation function does not smooth the path and the result is only containing lines and no curves.\n *\n * @example\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [[1, 2, 8, 1, 7]]\n * }, {\n * lineSmooth: Chartist.Interpolation.none({\n * fillHoles: false\n * })\n * });\n *\n *\n * @memberof Chartist.Interpolation\n * @return {Function}\n */\n Chartist.Interpolation.none = function(options) {\n var defaultOptions = {\n fillHoles: false\n };\n options = Chartist.extend({}, defaultOptions, options);\n return function none(pathCoordinates, valueData) {\n var path = new Chartist.Svg.Path();\n var hole = true;\n\n for(var i = 0; i < pathCoordinates.length; i += 2) {\n var currX = pathCoordinates[i];\n var currY = pathCoordinates[i + 1];\n var currData = valueData[i / 2];\n\n if(Chartist.getMultiValue(currData.value) !== undefined) {\n\n if(hole) {\n path.move(currX, currY, false, currData);\n } else {\n path.line(currX, currY, false, currData);\n }\n\n hole = false;\n } else if(!options.fillHoles) {\n hole = true;\n }\n }\n\n return path;\n };\n };\n\n /**\n * Simple smoothing creates horizontal handles that are positioned with a fraction of the length between two data points. You can use the divisor option to specify the amount of smoothing.\n *\n * Simple smoothing can be used instead of `Chartist.Smoothing.cardinal` if you'd like to get rid of the artifacts it produces sometimes. Simple smoothing produces less flowing lines but is accurate by hitting the points and it also doesn't swing below or above the given data point.\n *\n * All smoothing functions within Chartist are factory functions that accept an options parameter. The simple interpolation function accepts one configuration parameter `divisor`, between 1 and ∞, which controls the smoothing characteristics.\n *\n * @example\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [[1, 2, 8, 1, 7]]\n * }, {\n * lineSmooth: Chartist.Interpolation.simple({\n * divisor: 2,\n * fillHoles: false\n * })\n * });\n *\n *\n * @memberof Chartist.Interpolation\n * @param {Object} options The options of the simple interpolation factory function.\n * @return {Function}\n */\n Chartist.Interpolation.simple = function(options) {\n var defaultOptions = {\n divisor: 2,\n fillHoles: false\n };\n options = Chartist.extend({}, defaultOptions, options);\n\n var d = 1 / Math.max(1, options.divisor);\n\n return function simple(pathCoordinates, valueData) {\n var path = new Chartist.Svg.Path();\n var prevX, prevY, prevData;\n\n for(var i = 0; i < pathCoordinates.length; i += 2) {\n var currX = pathCoordinates[i];\n var currY = pathCoordinates[i + 1];\n var length = (currX - prevX) * d;\n var currData = valueData[i / 2];\n\n if(currData.value !== undefined) {\n\n if(prevData === undefined) {\n path.move(currX, currY, false, currData);\n } else {\n path.curve(\n prevX + length,\n prevY,\n currX - length,\n currY,\n currX,\n currY,\n false,\n currData\n );\n }\n\n prevX = currX;\n prevY = currY;\n prevData = currData;\n } else if(!options.fillHoles) {\n prevX = currX = prevData = undefined;\n }\n }\n\n return path;\n };\n };\n\n /**\n * Cardinal / Catmull-Rome spline interpolation is the default smoothing function in Chartist. It produces nice results where the splines will always meet the points. It produces some artifacts though when data values are increased or decreased rapidly. The line may not follow a very accurate path and if the line should be accurate this smoothing function does not produce the best results.\n *\n * Cardinal splines can only be created if there are more than two data points. If this is not the case this smoothing will fallback to `Chartist.Smoothing.none`.\n *\n * All smoothing functions within Chartist are factory functions that accept an options parameter. The cardinal interpolation function accepts one configuration parameter `tension`, between 0 and 1, which controls the smoothing intensity.\n *\n * @example\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [[1, 2, 8, 1, 7]]\n * }, {\n * lineSmooth: Chartist.Interpolation.cardinal({\n * tension: 1,\n * fillHoles: false\n * })\n * });\n *\n * @memberof Chartist.Interpolation\n * @param {Object} options The options of the cardinal factory function.\n * @return {Function}\n */\n Chartist.Interpolation.cardinal = function(options) {\n var defaultOptions = {\n tension: 1,\n fillHoles: false\n };\n\n options = Chartist.extend({}, defaultOptions, options);\n\n var t = Math.min(1, Math.max(0, options.tension)),\n c = 1 - t;\n\n return function cardinal(pathCoordinates, valueData) {\n // First we try to split the coordinates into segments\n // This is necessary to treat \"holes\" in line charts\n var segments = Chartist.splitIntoSegments(pathCoordinates, valueData, {\n fillHoles: options.fillHoles\n });\n\n if(!segments.length) {\n // If there were no segments return 'Chartist.Interpolation.none'\n return Chartist.Interpolation.none()([]);\n } else if(segments.length > 1) {\n // If the split resulted in more that one segment we need to interpolate each segment individually and join them\n // afterwards together into a single path.\n var paths = [];\n // For each segment we will recurse the cardinal function\n segments.forEach(function(segment) {\n paths.push(cardinal(segment.pathCoordinates, segment.valueData));\n });\n // Join the segment path data into a single path and return\n return Chartist.Svg.Path.join(paths);\n } else {\n // If there was only one segment we can proceed regularly by using pathCoordinates and valueData from the first\n // segment\n pathCoordinates = segments[0].pathCoordinates;\n valueData = segments[0].valueData;\n\n // If less than two points we need to fallback to no smoothing\n if(pathCoordinates.length <= 4) {\n return Chartist.Interpolation.none()(pathCoordinates, valueData);\n }\n\n var path = new Chartist.Svg.Path().move(pathCoordinates[0], pathCoordinates[1], false, valueData[0]),\n z;\n\n for (var i = 0, iLen = pathCoordinates.length; iLen - 2 * !z > i; i += 2) {\n var p = [\n {x: +pathCoordinates[i - 2], y: +pathCoordinates[i - 1]},\n {x: +pathCoordinates[i], y: +pathCoordinates[i + 1]},\n {x: +pathCoordinates[i + 2], y: +pathCoordinates[i + 3]},\n {x: +pathCoordinates[i + 4], y: +pathCoordinates[i + 5]}\n ];\n if (z) {\n if (!i) {\n p[0] = {x: +pathCoordinates[iLen - 2], y: +pathCoordinates[iLen - 1]};\n } else if (iLen - 4 === i) {\n p[3] = {x: +pathCoordinates[0], y: +pathCoordinates[1]};\n } else if (iLen - 2 === i) {\n p[2] = {x: +pathCoordinates[0], y: +pathCoordinates[1]};\n p[3] = {x: +pathCoordinates[2], y: +pathCoordinates[3]};\n }\n } else {\n if (iLen - 4 === i) {\n p[3] = p[2];\n } else if (!i) {\n p[0] = {x: +pathCoordinates[i], y: +pathCoordinates[i + 1]};\n }\n }\n\n path.curve(\n (t * (-p[0].x + 6 * p[1].x + p[2].x) / 6) + (c * p[2].x),\n (t * (-p[0].y + 6 * p[1].y + p[2].y) / 6) + (c * p[2].y),\n (t * (p[1].x + 6 * p[2].x - p[3].x) / 6) + (c * p[2].x),\n (t * (p[1].y + 6 * p[2].y - p[3].y) / 6) + (c * p[2].y),\n p[2].x,\n p[2].y,\n false,\n valueData[(i + 2) / 2]\n );\n }\n\n return path;\n }\n };\n };\n\n /**\n * Monotone Cubic spline interpolation produces a smooth curve which preserves monotonicity. Unlike cardinal splines, the curve will not extend beyond the range of y-values of the original data points.\n *\n * Monotone Cubic splines can only be created if there are more than two data points. If this is not the case this smoothing will fallback to `Chartist.Smoothing.none`.\n *\n * The x-values of subsequent points must be increasing to fit a Monotone Cubic spline. If this condition is not met for a pair of adjacent points, then there will be a break in the curve between those data points.\n *\n * All smoothing functions within Chartist are factory functions that accept an options parameter.\n *\n * @example\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [[1, 2, 8, 1, 7]]\n * }, {\n * lineSmooth: Chartist.Interpolation.monotoneCubic({\n * fillHoles: false\n * })\n * });\n *\n * @memberof Chartist.Interpolation\n * @param {Object} options The options of the monotoneCubic factory function.\n * @return {Function}\n */\n Chartist.Interpolation.monotoneCubic = function(options) {\n var defaultOptions = {\n fillHoles: false\n };\n\n options = Chartist.extend({}, defaultOptions, options);\n\n return function monotoneCubic(pathCoordinates, valueData) {\n // First we try to split the coordinates into segments\n // This is necessary to treat \"holes\" in line charts\n var segments = Chartist.splitIntoSegments(pathCoordinates, valueData, {\n fillHoles: options.fillHoles,\n increasingX: true\n });\n\n if(!segments.length) {\n // If there were no segments return 'Chartist.Interpolation.none'\n return Chartist.Interpolation.none()([]);\n } else if(segments.length > 1) {\n // If the split resulted in more that one segment we need to interpolate each segment individually and join them\n // afterwards together into a single path.\n var paths = [];\n // For each segment we will recurse the monotoneCubic fn function\n segments.forEach(function(segment) {\n paths.push(monotoneCubic(segment.pathCoordinates, segment.valueData));\n });\n // Join the segment path data into a single path and return\n return Chartist.Svg.Path.join(paths);\n } else {\n // If there was only one segment we can proceed regularly by using pathCoordinates and valueData from the first\n // segment\n pathCoordinates = segments[0].pathCoordinates;\n valueData = segments[0].valueData;\n\n // If less than three points we need to fallback to no smoothing\n if(pathCoordinates.length <= 4) {\n return Chartist.Interpolation.none()(pathCoordinates, valueData);\n }\n\n var xs = [],\n ys = [],\n i,\n n = pathCoordinates.length / 2,\n ms = [],\n ds = [], dys = [], dxs = [],\n path;\n\n // Populate x and y coordinates into separate arrays, for readability\n\n for(i = 0; i < n; i++) {\n xs[i] = pathCoordinates[i * 2];\n ys[i] = pathCoordinates[i * 2 + 1];\n }\n\n // Calculate deltas and derivative\n\n for(i = 0; i < n - 1; i++) {\n dys[i] = ys[i + 1] - ys[i];\n dxs[i] = xs[i + 1] - xs[i];\n ds[i] = dys[i] / dxs[i];\n }\n\n // Determine desired slope (m) at each point using Fritsch-Carlson method\n // See: http://math.stackexchange.com/questions/45218/implementation-of-monotone-cubic-interpolation\n\n ms[0] = ds[0];\n ms[n - 1] = ds[n - 2];\n\n for(i = 1; i < n - 1; i++) {\n if(ds[i] === 0 || ds[i - 1] === 0 || (ds[i - 1] > 0) !== (ds[i] > 0)) {\n ms[i] = 0;\n } else {\n ms[i] = 3 * (dxs[i - 1] + dxs[i]) / (\n (2 * dxs[i] + dxs[i - 1]) / ds[i - 1] +\n (dxs[i] + 2 * dxs[i - 1]) / ds[i]);\n\n if(!isFinite(ms[i])) {\n ms[i] = 0;\n }\n }\n }\n\n // Now build a path from the slopes\n\n path = new Chartist.Svg.Path().move(xs[0], ys[0], false, valueData[0]);\n\n for(i = 0; i < n - 1; i++) {\n path.curve(\n // First control point\n xs[i] + dxs[i] / 3,\n ys[i] + ms[i] * dxs[i] / 3,\n // Second control point\n xs[i + 1] - dxs[i] / 3,\n ys[i + 1] - ms[i + 1] * dxs[i] / 3,\n // End point\n xs[i + 1],\n ys[i + 1],\n\n false,\n valueData[i + 1]\n );\n }\n\n return path;\n }\n };\n };\n\n /**\n * Step interpolation will cause the line chart to move in steps rather than diagonal or smoothed lines. This interpolation will create additional points that will also be drawn when the `showPoint` option is enabled.\n *\n * All smoothing functions within Chartist are factory functions that accept an options parameter. The step interpolation function accepts one configuration parameter `postpone`, that can be `true` or `false`. The default value is `true` and will cause the step to occur where the value actually changes. If a different behaviour is needed where the step is shifted to the left and happens before the actual value, this option can be set to `false`.\n *\n * @example\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [[1, 2, 8, 1, 7]]\n * }, {\n * lineSmooth: Chartist.Interpolation.step({\n * postpone: true,\n * fillHoles: false\n * })\n * });\n *\n * @memberof Chartist.Interpolation\n * @param options\n * @returns {Function}\n */\n Chartist.Interpolation.step = function(options) {\n var defaultOptions = {\n postpone: true,\n fillHoles: false\n };\n\n options = Chartist.extend({}, defaultOptions, options);\n\n return function step(pathCoordinates, valueData) {\n var path = new Chartist.Svg.Path();\n\n var prevX, prevY, prevData;\n\n for (var i = 0; i < pathCoordinates.length; i += 2) {\n var currX = pathCoordinates[i];\n var currY = pathCoordinates[i + 1];\n var currData = valueData[i / 2];\n\n // If the current point is also not a hole we can draw the step lines\n if(currData.value !== undefined) {\n if(prevData === undefined) {\n path.move(currX, currY, false, currData);\n } else {\n if(options.postpone) {\n // If postponed we should draw the step line with the value of the previous value\n path.line(currX, prevY, false, prevData);\n } else {\n // If not postponed we should draw the step line with the value of the current value\n path.line(prevX, currY, false, currData);\n }\n // Line to the actual point (this should only be a Y-Axis movement\n path.line(currX, currY, false, currData);\n }\n\n prevX = currX;\n prevY = currY;\n prevData = currData;\n } else if(!options.fillHoles) {\n prevX = prevY = prevData = undefined;\n }\n }\n\n return path;\n };\n };\n\n}(this, Chartist));\n;/**\n * A very basic event module that helps to generate and catch events.\n *\n * @module Chartist.Event\n */\n/* global Chartist */\n(function (globalRoot, Chartist) {\n 'use strict';\n\n Chartist.EventEmitter = function () {\n var handlers = [];\n\n /**\n * Add an event handler for a specific event\n *\n * @memberof Chartist.Event\n * @param {String} event The event name\n * @param {Function} handler A event handler function\n */\n function addEventHandler(event, handler) {\n handlers[event] = handlers[event] || [];\n handlers[event].push(handler);\n }\n\n /**\n * Remove an event handler of a specific event name or remove all event handlers for a specific event.\n *\n * @memberof Chartist.Event\n * @param {String} event The event name where a specific or all handlers should be removed\n * @param {Function} [handler] An optional event handler function. If specified only this specific handler will be removed and otherwise all handlers are removed.\n */\n function removeEventHandler(event, handler) {\n // Only do something if there are event handlers with this name existing\n if(handlers[event]) {\n // If handler is set we will look for a specific handler and only remove this\n if(handler) {\n handlers[event].splice(handlers[event].indexOf(handler), 1);\n if(handlers[event].length === 0) {\n delete handlers[event];\n }\n } else {\n // If no handler is specified we remove all handlers for this event\n delete handlers[event];\n }\n }\n }\n\n /**\n * Use this function to emit an event. All handlers that are listening for this event will be triggered with the data parameter.\n *\n * @memberof Chartist.Event\n * @param {String} event The event name that should be triggered\n * @param {*} data Arbitrary data that will be passed to the event handler callback functions\n */\n function emit(event, data) {\n // Only do something if there are event handlers with this name existing\n if(handlers[event]) {\n handlers[event].forEach(function(handler) {\n handler(data);\n });\n }\n\n // Emit event to star event handlers\n if(handlers['*']) {\n handlers['*'].forEach(function(starHandler) {\n starHandler(event, data);\n });\n }\n }\n\n return {\n addEventHandler: addEventHandler,\n removeEventHandler: removeEventHandler,\n emit: emit\n };\n };\n\n}(this, Chartist));\n;/**\n * This module provides some basic prototype inheritance utilities.\n *\n * @module Chartist.Class\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n function listToArray(list) {\n var arr = [];\n if (list.length) {\n for (var i = 0; i < list.length; i++) {\n arr.push(list[i]);\n }\n }\n return arr;\n }\n\n /**\n * Method to extend from current prototype.\n *\n * @memberof Chartist.Class\n * @param {Object} properties The object that serves as definition for the prototype that gets created for the new class. This object should always contain a constructor property that is the desired constructor for the newly created class.\n * @param {Object} [superProtoOverride] By default extens will use the current class prototype or Chartist.class. With this parameter you can specify any super prototype that will be used.\n * @return {Function} Constructor function of the new class\n *\n * @example\n * var Fruit = Class.extend({\n * color: undefined,\n * sugar: undefined,\n *\n * constructor: function(color, sugar) {\n * this.color = color;\n * this.sugar = sugar;\n * },\n *\n * eat: function() {\n * this.sugar = 0;\n * return this;\n * }\n * });\n *\n * var Banana = Fruit.extend({\n * length: undefined,\n *\n * constructor: function(length, sugar) {\n * Banana.super.constructor.call(this, 'Yellow', sugar);\n * this.length = length;\n * }\n * });\n *\n * var banana = new Banana(20, 40);\n * console.log('banana instanceof Fruit', banana instanceof Fruit);\n * console.log('Fruit is prototype of banana', Fruit.prototype.isPrototypeOf(banana));\n * console.log('bananas prototype is Fruit', Object.getPrototypeOf(banana) === Fruit.prototype);\n * console.log(banana.sugar);\n * console.log(banana.eat().sugar);\n * console.log(banana.color);\n */\n function extend(properties, superProtoOverride) {\n var superProto = superProtoOverride || this.prototype || Chartist.Class;\n var proto = Object.create(superProto);\n\n Chartist.Class.cloneDefinitions(proto, properties);\n\n var constr = function() {\n var fn = proto.constructor || function () {},\n instance;\n\n // If this is linked to the Chartist namespace the constructor was not called with new\n // To provide a fallback we will instantiate here and return the instance\n instance = this === Chartist ? Object.create(proto) : this;\n fn.apply(instance, Array.prototype.slice.call(arguments, 0));\n\n // If this constructor was not called with new we need to return the instance\n // This will not harm when the constructor has been called with new as the returned value is ignored\n return instance;\n };\n\n constr.prototype = proto;\n constr.super = superProto;\n constr.extend = this.extend;\n\n return constr;\n }\n\n // Variable argument list clones args > 0 into args[0] and retruns modified args[0]\n function cloneDefinitions() {\n var args = listToArray(arguments);\n var target = args[0];\n\n args.splice(1, args.length - 1).forEach(function (source) {\n Object.getOwnPropertyNames(source).forEach(function (propName) {\n // If this property already exist in target we delete it first\n delete target[propName];\n // Define the property with the descriptor from source\n Object.defineProperty(target, propName,\n Object.getOwnPropertyDescriptor(source, propName));\n });\n });\n\n return target;\n }\n\n Chartist.Class = {\n extend: extend,\n cloneDefinitions: cloneDefinitions\n };\n\n}(this, Chartist));\n;/**\n * Base for all chart types. The methods in Chartist.Base are inherited to all chart types.\n *\n * @module Chartist.Base\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n\n // TODO: Currently we need to re-draw the chart on window resize. This is usually very bad and will affect performance.\n // This is done because we can't work with relative coordinates when drawing the chart because SVG Path does not\n // work with relative positions yet. We need to check if we can do a viewBox hack to switch to percentage.\n // See http://mozilla.6506.n7.nabble.com/Specyfing-paths-with-percentages-unit-td247474.html\n // Update: can be done using the above method tested here: http://codepen.io/gionkunz/pen/KDvLj\n // The problem is with the label offsets that can't be converted into percentage and affecting the chart container\n /**\n * Updates the chart which currently does a full reconstruction of the SVG DOM\n *\n * @param {Object} [data] Optional data you'd like to set for the chart before it will update. If not specified the update method will use the data that is already configured with the chart.\n * @param {Object} [options] Optional options you'd like to add to the previous options for the chart before it will update. If not specified the update method will use the options that have been already configured with the chart.\n * @param {Boolean} [override] If set to true, the passed options will be used to extend the options that have been configured already. Otherwise the chart default options will be used as the base\n * @memberof Chartist.Base\n */\n function update(data, options, override) {\n if(data) {\n this.data = data || {};\n this.data.labels = this.data.labels || [];\n this.data.series = this.data.series || [];\n // Event for data transformation that allows to manipulate the data before it gets rendered in the charts\n this.eventEmitter.emit('data', {\n type: 'update',\n data: this.data\n });\n }\n\n if(options) {\n this.options = Chartist.extend({}, override ? this.options : this.defaultOptions, options);\n\n // If chartist was not initialized yet, we just set the options and leave the rest to the initialization\n // Otherwise we re-create the optionsProvider at this point\n if(!this.initializeTimeoutId) {\n this.optionsProvider.removeMediaQueryListeners();\n this.optionsProvider = Chartist.optionsProvider(this.options, this.responsiveOptions, this.eventEmitter);\n }\n }\n\n // Only re-created the chart if it has been initialized yet\n if(!this.initializeTimeoutId) {\n this.createChart(this.optionsProvider.getCurrentOptions());\n }\n\n // Return a reference to the chart object to chain up calls\n return this;\n }\n\n /**\n * This method can be called on the API object of each chart and will un-register all event listeners that were added to other components. This currently includes a window.resize listener as well as media query listeners if any responsive options have been provided. Use this function if you need to destroy and recreate Chartist charts dynamically.\n *\n * @memberof Chartist.Base\n */\n function detach() {\n // Only detach if initialization already occurred on this chart. If this chart still hasn't initialized (therefore\n // the initializationTimeoutId is still a valid timeout reference, we will clear the timeout\n if(!this.initializeTimeoutId) {\n window.removeEventListener('resize', this.resizeListener);\n this.optionsProvider.removeMediaQueryListeners();\n } else {\n window.clearTimeout(this.initializeTimeoutId);\n }\n\n return this;\n }\n\n /**\n * Use this function to register event handlers. The handler callbacks are synchronous and will run in the main thread rather than the event loop.\n *\n * @memberof Chartist.Base\n * @param {String} event Name of the event. Check the examples for supported events.\n * @param {Function} handler The handler function that will be called when an event with the given name was emitted. This function will receive a data argument which contains event data. See the example for more details.\n */\n function on(event, handler) {\n this.eventEmitter.addEventHandler(event, handler);\n return this;\n }\n\n /**\n * Use this function to un-register event handlers. If the handler function parameter is omitted all handlers for the given event will be un-registered.\n *\n * @memberof Chartist.Base\n * @param {String} event Name of the event for which a handler should be removed\n * @param {Function} [handler] The handler function that that was previously used to register a new event handler. This handler will be removed from the event handler list. If this parameter is omitted then all event handlers for the given event are removed from the list.\n */\n function off(event, handler) {\n this.eventEmitter.removeEventHandler(event, handler);\n return this;\n }\n\n function initialize() {\n // Add window resize listener that re-creates the chart\n window.addEventListener('resize', this.resizeListener);\n\n // Obtain current options based on matching media queries (if responsive options are given)\n // This will also register a listener that is re-creating the chart based on media changes\n this.optionsProvider = Chartist.optionsProvider(this.options, this.responsiveOptions, this.eventEmitter);\n // Register options change listener that will trigger a chart update\n this.eventEmitter.addEventHandler('optionsChanged', function() {\n this.update();\n }.bind(this));\n\n // Before the first chart creation we need to register us with all plugins that are configured\n // Initialize all relevant plugins with our chart object and the plugin options specified in the config\n if(this.options.plugins) {\n this.options.plugins.forEach(function(plugin) {\n if(plugin instanceof Array) {\n plugin[0](this, plugin[1]);\n } else {\n plugin(this);\n }\n }.bind(this));\n }\n\n // Event for data transformation that allows to manipulate the data before it gets rendered in the charts\n this.eventEmitter.emit('data', {\n type: 'initial',\n data: this.data\n });\n\n // Create the first chart\n this.createChart(this.optionsProvider.getCurrentOptions());\n\n // As chart is initialized from the event loop now we can reset our timeout reference\n // This is important if the chart gets initialized on the same element twice\n this.initializeTimeoutId = undefined;\n }\n\n /**\n * Constructor of chart base class.\n *\n * @param query\n * @param data\n * @param defaultOptions\n * @param options\n * @param responsiveOptions\n * @constructor\n */\n function Base(query, data, defaultOptions, options, responsiveOptions) {\n this.container = Chartist.querySelector(query);\n this.data = data || {};\n this.data.labels = this.data.labels || [];\n this.data.series = this.data.series || [];\n this.defaultOptions = defaultOptions;\n this.options = options;\n this.responsiveOptions = responsiveOptions;\n this.eventEmitter = Chartist.EventEmitter();\n this.supportsForeignObject = Chartist.Svg.isSupported('Extensibility');\n this.supportsAnimations = Chartist.Svg.isSupported('AnimationEventsAttribute');\n this.resizeListener = function resizeListener(){\n this.update();\n }.bind(this);\n\n if(this.container) {\n // If chartist was already initialized in this container we are detaching all event listeners first\n if(this.container.__chartist__) {\n this.container.__chartist__.detach();\n }\n\n this.container.__chartist__ = this;\n }\n\n // Using event loop for first draw to make it possible to register event listeners in the same call stack where\n // the chart was created.\n this.initializeTimeoutId = setTimeout(initialize.bind(this), 0);\n }\n\n // Creating the chart base class\n Chartist.Base = Chartist.Class.extend({\n constructor: Base,\n optionsProvider: undefined,\n container: undefined,\n svg: undefined,\n eventEmitter: undefined,\n createChart: function() {\n throw new Error('Base chart type can\\'t be instantiated!');\n },\n update: update,\n detach: detach,\n on: on,\n off: off,\n version: Chartist.version,\n supportsForeignObject: false\n });\n\n}(this, Chartist));\n;/**\n * Chartist SVG module for simple SVG DOM abstraction\n *\n * @module Chartist.Svg\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n var document = globalRoot.document;\n\n /**\n * Chartist.Svg creates a new SVG object wrapper with a starting element. You can use the wrapper to fluently create sub-elements and modify them.\n *\n * @memberof Chartist.Svg\n * @constructor\n * @param {String|Element} name The name of the SVG element to create or an SVG dom element which should be wrapped into Chartist.Svg\n * @param {Object} attributes An object with properties that will be added as attributes to the SVG element that is created. Attributes with undefined values will not be added.\n * @param {String} className This class or class list will be added to the SVG element\n * @param {Object} parent The parent SVG wrapper object where this newly created wrapper and it's element will be attached to as child\n * @param {Boolean} insertFirst If this param is set to true in conjunction with a parent element the newly created element will be added as first child element in the parent element\n */\n function Svg(name, attributes, className, parent, insertFirst) {\n // If Svg is getting called with an SVG element we just return the wrapper\n if(name instanceof Element) {\n this._node = name;\n } else {\n this._node = document.createElementNS(Chartist.namespaces.svg, name);\n\n // If this is an SVG element created then custom namespace\n if(name === 'svg') {\n this.attr({\n 'xmlns:ct': Chartist.namespaces.ct\n });\n }\n }\n\n if(attributes) {\n this.attr(attributes);\n }\n\n if(className) {\n this.addClass(className);\n }\n\n if(parent) {\n if (insertFirst && parent._node.firstChild) {\n parent._node.insertBefore(this._node, parent._node.firstChild);\n } else {\n parent._node.appendChild(this._node);\n }\n }\n }\n\n /**\n * Set attributes on the current SVG element of the wrapper you're currently working on.\n *\n * @memberof Chartist.Svg\n * @param {Object|String} attributes An object with properties that will be added as attributes to the SVG element that is created. Attributes with undefined values will not be added. If this parameter is a String then the function is used as a getter and will return the attribute value.\n * @param {String} [ns] If specified, the attribute will be obtained using getAttributeNs. In order to write namepsaced attributes you can use the namespace:attribute notation within the attributes object.\n * @return {Object|String} The current wrapper object will be returned so it can be used for chaining or the attribute value if used as getter function.\n */\n function attr(attributes, ns) {\n if(typeof attributes === 'string') {\n if(ns) {\n return this._node.getAttributeNS(ns, attributes);\n } else {\n return this._node.getAttribute(attributes);\n }\n }\n\n Object.keys(attributes).forEach(function(key) {\n // If the attribute value is undefined we can skip this one\n if(attributes[key] === undefined) {\n return;\n }\n\n if (key.indexOf(':') !== -1) {\n var namespacedAttribute = key.split(':');\n this._node.setAttributeNS(Chartist.namespaces[namespacedAttribute[0]], key, attributes[key]);\n } else {\n this._node.setAttribute(key, attributes[key]);\n }\n }.bind(this));\n\n return this;\n }\n\n /**\n * Create a new SVG element whose wrapper object will be selected for further operations. This way you can also create nested groups easily.\n *\n * @memberof Chartist.Svg\n * @param {String} name The name of the SVG element that should be created as child element of the currently selected element wrapper\n * @param {Object} [attributes] An object with properties that will be added as attributes to the SVG element that is created. Attributes with undefined values will not be added.\n * @param {String} [className] This class or class list will be added to the SVG element\n * @param {Boolean} [insertFirst] If this param is set to true in conjunction with a parent element the newly created element will be added as first child element in the parent element\n * @return {Chartist.Svg} Returns a Chartist.Svg wrapper object that can be used to modify the containing SVG data\n */\n function elem(name, attributes, className, insertFirst) {\n return new Chartist.Svg(name, attributes, className, this, insertFirst);\n }\n\n /**\n * Returns the parent Chartist.SVG wrapper object\n *\n * @memberof Chartist.Svg\n * @return {Chartist.Svg} Returns a Chartist.Svg wrapper around the parent node of the current node. If the parent node is not existing or it's not an SVG node then this function will return null.\n */\n function parent() {\n return this._node.parentNode instanceof SVGElement ? new Chartist.Svg(this._node.parentNode) : null;\n }\n\n /**\n * This method returns a Chartist.Svg wrapper around the root SVG element of the current tree.\n *\n * @memberof Chartist.Svg\n * @return {Chartist.Svg} The root SVG element wrapped in a Chartist.Svg element\n */\n function root() {\n var node = this._node;\n while(node.nodeName !== 'svg') {\n node = node.parentNode;\n }\n return new Chartist.Svg(node);\n }\n\n /**\n * Find the first child SVG element of the current element that matches a CSS selector. The returned object is a Chartist.Svg wrapper.\n *\n * @memberof Chartist.Svg\n * @param {String} selector A CSS selector that is used to query for child SVG elements\n * @return {Chartist.Svg} The SVG wrapper for the element found or null if no element was found\n */\n function querySelector(selector) {\n var foundNode = this._node.querySelector(selector);\n return foundNode ? new Chartist.Svg(foundNode) : null;\n }\n\n /**\n * Find the all child SVG elements of the current element that match a CSS selector. The returned object is a Chartist.Svg.List wrapper.\n *\n * @memberof Chartist.Svg\n * @param {String} selector A CSS selector that is used to query for child SVG elements\n * @return {Chartist.Svg.List} The SVG wrapper list for the element found or null if no element was found\n */\n function querySelectorAll(selector) {\n var foundNodes = this._node.querySelectorAll(selector);\n return foundNodes.length ? new Chartist.Svg.List(foundNodes) : null;\n }\n\n /**\n * Returns the underlying SVG node for the current element.\n *\n * @memberof Chartist.Svg\n * @returns {Node}\n */\n function getNode() {\n return this._node;\n }\n\n /**\n * This method creates a foreignObject (see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject) that allows to embed HTML content into a SVG graphic. With the help of foreignObjects you can enable the usage of regular HTML elements inside of SVG where they are subject for SVG positioning and transformation but the Browser will use the HTML rendering capabilities for the containing DOM.\n *\n * @memberof Chartist.Svg\n * @param {Node|String} content The DOM Node, or HTML string that will be converted to a DOM Node, that is then placed into and wrapped by the foreignObject\n * @param {String} [attributes] An object with properties that will be added as attributes to the foreignObject element that is created. Attributes with undefined values will not be added.\n * @param {String} [className] This class or class list will be added to the SVG element\n * @param {Boolean} [insertFirst] Specifies if the foreignObject should be inserted as first child\n * @return {Chartist.Svg} New wrapper object that wraps the foreignObject element\n */\n function foreignObject(content, attributes, className, insertFirst) {\n // If content is string then we convert it to DOM\n // TODO: Handle case where content is not a string nor a DOM Node\n if(typeof content === 'string') {\n var container = document.createElement('div');\n container.innerHTML = content;\n content = container.firstChild;\n }\n\n // Adding namespace to content element\n content.setAttribute('xmlns', Chartist.namespaces.xmlns);\n\n // Creating the foreignObject without required extension attribute (as described here\n // http://www.w3.org/TR/SVG/extend.html#ForeignObjectElement)\n var fnObj = this.elem('foreignObject', attributes, className, insertFirst);\n\n // Add content to foreignObjectElement\n fnObj._node.appendChild(content);\n\n return fnObj;\n }\n\n /**\n * This method adds a new text element to the current Chartist.Svg wrapper.\n *\n * @memberof Chartist.Svg\n * @param {String} t The text that should be added to the text element that is created\n * @return {Chartist.Svg} The same wrapper object that was used to add the newly created element\n */\n function text(t) {\n this._node.appendChild(document.createTextNode(t));\n return this;\n }\n\n /**\n * This method will clear all child nodes of the current wrapper object.\n *\n * @memberof Chartist.Svg\n * @return {Chartist.Svg} The same wrapper object that got emptied\n */\n function empty() {\n while (this._node.firstChild) {\n this._node.removeChild(this._node.firstChild);\n }\n\n return this;\n }\n\n /**\n * This method will cause the current wrapper to remove itself from its parent wrapper. Use this method if you'd like to get rid of an element in a given DOM structure.\n *\n * @memberof Chartist.Svg\n * @return {Chartist.Svg} The parent wrapper object of the element that got removed\n */\n function remove() {\n this._node.parentNode.removeChild(this._node);\n return this.parent();\n }\n\n /**\n * This method will replace the element with a new element that can be created outside of the current DOM.\n *\n * @memberof Chartist.Svg\n * @param {Chartist.Svg} newElement The new Chartist.Svg object that will be used to replace the current wrapper object\n * @return {Chartist.Svg} The wrapper of the new element\n */\n function replace(newElement) {\n this._node.parentNode.replaceChild(newElement._node, this._node);\n return newElement;\n }\n\n /**\n * This method will append an element to the current element as a child.\n *\n * @memberof Chartist.Svg\n * @param {Chartist.Svg} element The Chartist.Svg element that should be added as a child\n * @param {Boolean} [insertFirst] Specifies if the element should be inserted as first child\n * @return {Chartist.Svg} The wrapper of the appended object\n */\n function append(element, insertFirst) {\n if(insertFirst && this._node.firstChild) {\n this._node.insertBefore(element._node, this._node.firstChild);\n } else {\n this._node.appendChild(element._node);\n }\n\n return this;\n }\n\n /**\n * Returns an array of class names that are attached to the current wrapper element. This method can not be chained further.\n *\n * @memberof Chartist.Svg\n * @return {Array} A list of classes or an empty array if there are no classes on the current element\n */\n function classes() {\n return this._node.getAttribute('class') ? this._node.getAttribute('class').trim().split(/\\s+/) : [];\n }\n\n /**\n * Adds one or a space separated list of classes to the current element and ensures the classes are only existing once.\n *\n * @memberof Chartist.Svg\n * @param {String} names A white space separated list of class names\n * @return {Chartist.Svg} The wrapper of the current element\n */\n function addClass(names) {\n this._node.setAttribute('class',\n this.classes(this._node)\n .concat(names.trim().split(/\\s+/))\n .filter(function(elem, pos, self) {\n return self.indexOf(elem) === pos;\n }).join(' ')\n );\n\n return this;\n }\n\n /**\n * Removes one or a space separated list of classes from the current element.\n *\n * @memberof Chartist.Svg\n * @param {String} names A white space separated list of class names\n * @return {Chartist.Svg} The wrapper of the current element\n */\n function removeClass(names) {\n var removedClasses = names.trim().split(/\\s+/);\n\n this._node.setAttribute('class', this.classes(this._node).filter(function(name) {\n return removedClasses.indexOf(name) === -1;\n }).join(' '));\n\n return this;\n }\n\n /**\n * Removes all classes from the current element.\n *\n * @memberof Chartist.Svg\n * @return {Chartist.Svg} The wrapper of the current element\n */\n function removeAllClasses() {\n this._node.setAttribute('class', '');\n\n return this;\n }\n\n /**\n * Get element height using `getBoundingClientRect`\n *\n * @memberof Chartist.Svg\n * @return {Number} The elements height in pixels\n */\n function height() {\n return this._node.getBoundingClientRect().height;\n }\n\n /**\n * Get element width using `getBoundingClientRect`\n *\n * @memberof Chartist.Core\n * @return {Number} The elements width in pixels\n */\n function width() {\n return this._node.getBoundingClientRect().width;\n }\n\n /**\n * The animate function lets you animate the current element with SMIL animations. You can add animations for multiple attributes at the same time by using an animation definition object. This object should contain SMIL animation attributes. Please refer to http://www.w3.org/TR/SVG/animate.html for a detailed specification about the available animation attributes. Additionally an easing property can be passed in the animation definition object. This can be a string with a name of an easing function in `Chartist.Svg.Easing` or an array with four numbers specifying a cubic Bézier curve.\n * **An animations object could look like this:**\n * ```javascript\n * element.animate({\n * opacity: {\n * dur: 1000,\n * from: 0,\n * to: 1\n * },\n * x1: {\n * dur: '1000ms',\n * from: 100,\n * to: 200,\n * easing: 'easeOutQuart'\n * },\n * y1: {\n * dur: '2s',\n * from: 0,\n * to: 100\n * }\n * });\n * ```\n * **Automatic unit conversion**\n * For the `dur` and the `begin` animate attribute you can also omit a unit by passing a number. The number will automatically be converted to milli seconds.\n * **Guided mode**\n * The default behavior of SMIL animations with offset using the `begin` attribute is that the attribute will keep it's original value until the animation starts. Mostly this behavior is not desired as you'd like to have your element attributes already initialized with the animation `from` value even before the animation starts. Also if you don't specify `fill=\"freeze\"` on an animate element or if you delete the animation after it's done (which is done in guided mode) the attribute will switch back to the initial value. This behavior is also not desired when performing simple one-time animations. For one-time animations you'd want to trigger animations immediately instead of relative to the document begin time. That's why in guided mode Chartist.Svg will also use the `begin` property to schedule a timeout and manually start the animation after the timeout. If you're using multiple SMIL definition objects for an attribute (in an array), guided mode will be disabled for this attribute, even if you explicitly enabled it.\n * If guided mode is enabled the following behavior is added:\n * - Before the animation starts (even when delayed with `begin`) the animated attribute will be set already to the `from` value of the animation\n * - `begin` is explicitly set to `indefinite` so it can be started manually without relying on document begin time (creation)\n * - The animate element will be forced to use `fill=\"freeze\"`\n * - The animation will be triggered with `beginElement()` in a timeout where `begin` of the definition object is interpreted in milli seconds. If no `begin` was specified the timeout is triggered immediately.\n * - After the animation the element attribute value will be set to the `to` value of the animation\n * - The animate element is deleted from the DOM\n *\n * @memberof Chartist.Svg\n * @param {Object} animations An animations object where the property keys are the attributes you'd like to animate. The properties should be objects again that contain the SMIL animation attributes (usually begin, dur, from, and to). The property begin and dur is auto converted (see Automatic unit conversion). You can also schedule multiple animations for the same attribute by passing an Array of SMIL definition objects. Attributes that contain an array of SMIL definition objects will not be executed in guided mode.\n * @param {Boolean} guided Specify if guided mode should be activated for this animation (see Guided mode). If not otherwise specified, guided mode will be activated.\n * @param {Object} eventEmitter If specified, this event emitter will be notified when an animation starts or ends.\n * @return {Chartist.Svg} The current element where the animation was added\n */\n function animate(animations, guided, eventEmitter) {\n if(guided === undefined) {\n guided = true;\n }\n\n Object.keys(animations).forEach(function createAnimateForAttributes(attribute) {\n\n function createAnimate(animationDefinition, guided) {\n var attributeProperties = {},\n animate,\n timeout,\n easing;\n\n // Check if an easing is specified in the definition object and delete it from the object as it will not\n // be part of the animate element attributes.\n if(animationDefinition.easing) {\n // If already an easing Bézier curve array we take it or we lookup a easing array in the Easing object\n easing = animationDefinition.easing instanceof Array ?\n animationDefinition.easing :\n Chartist.Svg.Easing[animationDefinition.easing];\n delete animationDefinition.easing;\n }\n\n // If numeric dur or begin was provided we assume milli seconds\n animationDefinition.begin = Chartist.ensureUnit(animationDefinition.begin, 'ms');\n animationDefinition.dur = Chartist.ensureUnit(animationDefinition.dur, 'ms');\n\n if(easing) {\n animationDefinition.calcMode = 'spline';\n animationDefinition.keySplines = easing.join(' ');\n animationDefinition.keyTimes = '0;1';\n }\n\n // Adding \"fill: freeze\" if we are in guided mode and set initial attribute values\n if(guided) {\n animationDefinition.fill = 'freeze';\n // Animated property on our element should already be set to the animation from value in guided mode\n attributeProperties[attribute] = animationDefinition.from;\n this.attr(attributeProperties);\n\n // In guided mode we also set begin to indefinite so we can trigger the start manually and put the begin\n // which needs to be in ms aside\n timeout = Chartist.quantity(animationDefinition.begin || 0).value;\n animationDefinition.begin = 'indefinite';\n }\n\n animate = this.elem('animate', Chartist.extend({\n attributeName: attribute\n }, animationDefinition));\n\n if(guided) {\n // If guided we take the value that was put aside in timeout and trigger the animation manually with a timeout\n setTimeout(function() {\n // If beginElement fails we set the animated attribute to the end position and remove the animate element\n // This happens if the SMIL ElementTimeControl interface is not supported or any other problems occured in\n // the browser. (Currently FF 34 does not support animate elements in foreignObjects)\n try {\n animate._node.beginElement();\n } catch(err) {\n // Set animated attribute to current animated value\n attributeProperties[attribute] = animationDefinition.to;\n this.attr(attributeProperties);\n // Remove the animate element as it's no longer required\n animate.remove();\n }\n }.bind(this), timeout);\n }\n\n if(eventEmitter) {\n animate._node.addEventListener('beginEvent', function handleBeginEvent() {\n eventEmitter.emit('animationBegin', {\n element: this,\n animate: animate._node,\n params: animationDefinition\n });\n }.bind(this));\n }\n\n animate._node.addEventListener('endEvent', function handleEndEvent() {\n if(eventEmitter) {\n eventEmitter.emit('animationEnd', {\n element: this,\n animate: animate._node,\n params: animationDefinition\n });\n }\n\n if(guided) {\n // Set animated attribute to current animated value\n attributeProperties[attribute] = animationDefinition.to;\n this.attr(attributeProperties);\n // Remove the animate element as it's no longer required\n animate.remove();\n }\n }.bind(this));\n }\n\n // If current attribute is an array of definition objects we create an animate for each and disable guided mode\n if(animations[attribute] instanceof Array) {\n animations[attribute].forEach(function(animationDefinition) {\n createAnimate.bind(this)(animationDefinition, false);\n }.bind(this));\n } else {\n createAnimate.bind(this)(animations[attribute], guided);\n }\n\n }.bind(this));\n\n return this;\n }\n\n Chartist.Svg = Chartist.Class.extend({\n constructor: Svg,\n attr: attr,\n elem: elem,\n parent: parent,\n root: root,\n querySelector: querySelector,\n querySelectorAll: querySelectorAll,\n getNode: getNode,\n foreignObject: foreignObject,\n text: text,\n empty: empty,\n remove: remove,\n replace: replace,\n append: append,\n classes: classes,\n addClass: addClass,\n removeClass: removeClass,\n removeAllClasses: removeAllClasses,\n height: height,\n width: width,\n animate: animate\n });\n\n /**\n * This method checks for support of a given SVG feature like Extensibility, SVG-animation or the like. Check http://www.w3.org/TR/SVG11/feature for a detailed list.\n *\n * @memberof Chartist.Svg\n * @param {String} feature The SVG 1.1 feature that should be checked for support.\n * @return {Boolean} True of false if the feature is supported or not\n */\n Chartist.Svg.isSupported = function(feature) {\n return document.implementation.hasFeature('http://www.w3.org/TR/SVG11/feature#' + feature, '1.1');\n };\n\n /**\n * This Object contains some standard easing cubic bezier curves. Then can be used with their name in the `Chartist.Svg.animate`. You can also extend the list and use your own name in the `animate` function. Click the show code button to see the available bezier functions.\n *\n * @memberof Chartist.Svg\n */\n var easingCubicBeziers = {\n easeInSine: [0.47, 0, 0.745, 0.715],\n easeOutSine: [0.39, 0.575, 0.565, 1],\n easeInOutSine: [0.445, 0.05, 0.55, 0.95],\n easeInQuad: [0.55, 0.085, 0.68, 0.53],\n easeOutQuad: [0.25, 0.46, 0.45, 0.94],\n easeInOutQuad: [0.455, 0.03, 0.515, 0.955],\n easeInCubic: [0.55, 0.055, 0.675, 0.19],\n easeOutCubic: [0.215, 0.61, 0.355, 1],\n easeInOutCubic: [0.645, 0.045, 0.355, 1],\n easeInQuart: [0.895, 0.03, 0.685, 0.22],\n easeOutQuart: [0.165, 0.84, 0.44, 1],\n easeInOutQuart: [0.77, 0, 0.175, 1],\n easeInQuint: [0.755, 0.05, 0.855, 0.06],\n easeOutQuint: [0.23, 1, 0.32, 1],\n easeInOutQuint: [0.86, 0, 0.07, 1],\n easeInExpo: [0.95, 0.05, 0.795, 0.035],\n easeOutExpo: [0.19, 1, 0.22, 1],\n easeInOutExpo: [1, 0, 0, 1],\n easeInCirc: [0.6, 0.04, 0.98, 0.335],\n easeOutCirc: [0.075, 0.82, 0.165, 1],\n easeInOutCirc: [0.785, 0.135, 0.15, 0.86],\n easeInBack: [0.6, -0.28, 0.735, 0.045],\n easeOutBack: [0.175, 0.885, 0.32, 1.275],\n easeInOutBack: [0.68, -0.55, 0.265, 1.55]\n };\n\n Chartist.Svg.Easing = easingCubicBeziers;\n\n /**\n * This helper class is to wrap multiple `Chartist.Svg` elements into a list where you can call the `Chartist.Svg` functions on all elements in the list with one call. This is helpful when you'd like to perform calls with `Chartist.Svg` on multiple elements.\n * An instance of this class is also returned by `Chartist.Svg.querySelectorAll`.\n *\n * @memberof Chartist.Svg\n * @param {Array|NodeList} nodeList An Array of SVG DOM nodes or a SVG DOM NodeList (as returned by document.querySelectorAll)\n * @constructor\n */\n function SvgList(nodeList) {\n var list = this;\n\n this.svgElements = [];\n for(var i = 0; i < nodeList.length; i++) {\n this.svgElements.push(new Chartist.Svg(nodeList[i]));\n }\n\n // Add delegation methods for Chartist.Svg\n Object.keys(Chartist.Svg.prototype).filter(function(prototypeProperty) {\n return ['constructor',\n 'parent',\n 'querySelector',\n 'querySelectorAll',\n 'replace',\n 'append',\n 'classes',\n 'height',\n 'width'].indexOf(prototypeProperty) === -1;\n }).forEach(function(prototypeProperty) {\n list[prototypeProperty] = function() {\n var args = Array.prototype.slice.call(arguments, 0);\n list.svgElements.forEach(function(element) {\n Chartist.Svg.prototype[prototypeProperty].apply(element, args);\n });\n return list;\n };\n });\n }\n\n Chartist.Svg.List = Chartist.Class.extend({\n constructor: SvgList\n });\n}(this, Chartist));\n;/**\n * Chartist SVG path module for SVG path description creation and modification.\n *\n * @module Chartist.Svg.Path\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n /**\n * Contains the descriptors of supported element types in a SVG path. Currently only move, line and curve are supported.\n *\n * @memberof Chartist.Svg.Path\n * @type {Object}\n */\n var elementDescriptions = {\n m: ['x', 'y'],\n l: ['x', 'y'],\n c: ['x1', 'y1', 'x2', 'y2', 'x', 'y'],\n a: ['rx', 'ry', 'xAr', 'lAf', 'sf', 'x', 'y']\n };\n\n /**\n * Default options for newly created SVG path objects.\n *\n * @memberof Chartist.Svg.Path\n * @type {Object}\n */\n var defaultOptions = {\n // The accuracy in digit count after the decimal point. This will be used to round numbers in the SVG path. If this option is set to false then no rounding will be performed.\n accuracy: 3\n };\n\n function element(command, params, pathElements, pos, relative, data) {\n var pathElement = Chartist.extend({\n command: relative ? command.toLowerCase() : command.toUpperCase()\n }, params, data ? { data: data } : {} );\n\n pathElements.splice(pos, 0, pathElement);\n }\n\n function forEachParam(pathElements, cb) {\n pathElements.forEach(function(pathElement, pathElementIndex) {\n elementDescriptions[pathElement.command.toLowerCase()].forEach(function(paramName, paramIndex) {\n cb(pathElement, paramName, pathElementIndex, paramIndex, pathElements);\n });\n });\n }\n\n /**\n * Used to construct a new path object.\n *\n * @memberof Chartist.Svg.Path\n * @param {Boolean} close If set to true then this path will be closed when stringified (with a Z at the end)\n * @param {Object} options Options object that overrides the default objects. See default options for more details.\n * @constructor\n */\n function SvgPath(close, options) {\n this.pathElements = [];\n this.pos = 0;\n this.close = close;\n this.options = Chartist.extend({}, defaultOptions, options);\n }\n\n /**\n * Gets or sets the current position (cursor) inside of the path. You can move around the cursor freely but limited to 0 or the count of existing elements. All modifications with element functions will insert new elements at the position of this cursor.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} [pos] If a number is passed then the cursor is set to this position in the path element array.\n * @return {Chartist.Svg.Path|Number} If the position parameter was passed then the return value will be the path object for easy call chaining. If no position parameter was passed then the current position is returned.\n */\n function position(pos) {\n if(pos !== undefined) {\n this.pos = Math.max(0, Math.min(this.pathElements.length, pos));\n return this;\n } else {\n return this.pos;\n }\n }\n\n /**\n * Removes elements from the path starting at the current position.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} count Number of path elements that should be removed from the current position.\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function remove(count) {\n this.pathElements.splice(this.pos, count);\n return this;\n }\n\n /**\n * Use this function to add a new move SVG path element.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} x The x coordinate for the move element.\n * @param {Number} y The y coordinate for the move element.\n * @param {Boolean} [relative] If set to true the move element will be created with relative coordinates (lowercase letter)\n * @param {*} [data] Any data that should be stored with the element object that will be accessible in pathElement\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function move(x, y, relative, data) {\n element('M', {\n x: +x,\n y: +y\n }, this.pathElements, this.pos++, relative, data);\n return this;\n }\n\n /**\n * Use this function to add a new line SVG path element.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} x The x coordinate for the line element.\n * @param {Number} y The y coordinate for the line element.\n * @param {Boolean} [relative] If set to true the line element will be created with relative coordinates (lowercase letter)\n * @param {*} [data] Any data that should be stored with the element object that will be accessible in pathElement\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function line(x, y, relative, data) {\n element('L', {\n x: +x,\n y: +y\n }, this.pathElements, this.pos++, relative, data);\n return this;\n }\n\n /**\n * Use this function to add a new curve SVG path element.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} x1 The x coordinate for the first control point of the bezier curve.\n * @param {Number} y1 The y coordinate for the first control point of the bezier curve.\n * @param {Number} x2 The x coordinate for the second control point of the bezier curve.\n * @param {Number} y2 The y coordinate for the second control point of the bezier curve.\n * @param {Number} x The x coordinate for the target point of the curve element.\n * @param {Number} y The y coordinate for the target point of the curve element.\n * @param {Boolean} [relative] If set to true the curve element will be created with relative coordinates (lowercase letter)\n * @param {*} [data] Any data that should be stored with the element object that will be accessible in pathElement\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function curve(x1, y1, x2, y2, x, y, relative, data) {\n element('C', {\n x1: +x1,\n y1: +y1,\n x2: +x2,\n y2: +y2,\n x: +x,\n y: +y\n }, this.pathElements, this.pos++, relative, data);\n return this;\n }\n\n /**\n * Use this function to add a new non-bezier curve SVG path element.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} rx The radius to be used for the x-axis of the arc.\n * @param {Number} ry The radius to be used for the y-axis of the arc.\n * @param {Number} xAr Defines the orientation of the arc\n * @param {Number} lAf Large arc flag\n * @param {Number} sf Sweep flag\n * @param {Number} x The x coordinate for the target point of the curve element.\n * @param {Number} y The y coordinate for the target point of the curve element.\n * @param {Boolean} [relative] If set to true the curve element will be created with relative coordinates (lowercase letter)\n * @param {*} [data] Any data that should be stored with the element object that will be accessible in pathElement\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function arc(rx, ry, xAr, lAf, sf, x, y, relative, data) {\n element('A', {\n rx: +rx,\n ry: +ry,\n xAr: +xAr,\n lAf: +lAf,\n sf: +sf,\n x: +x,\n y: +y\n }, this.pathElements, this.pos++, relative, data);\n return this;\n }\n\n /**\n * Parses an SVG path seen in the d attribute of path elements, and inserts the parsed elements into the existing path object at the current cursor position. Any closing path indicators (Z at the end of the path) will be ignored by the parser as this is provided by the close option in the options of the path object.\n *\n * @memberof Chartist.Svg.Path\n * @param {String} path Any SVG path that contains move (m), line (l) or curve (c) components.\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function parse(path) {\n // Parsing the SVG path string into an array of arrays [['M', '10', '10'], ['L', '100', '100']]\n var chunks = path.replace(/([A-Za-z])([0-9])/g, '$1 $2')\n .replace(/([0-9])([A-Za-z])/g, '$1 $2')\n .split(/[\\s,]+/)\n .reduce(function(result, element) {\n if(element.match(/[A-Za-z]/)) {\n result.push([]);\n }\n\n result[result.length - 1].push(element);\n return result;\n }, []);\n\n // If this is a closed path we remove the Z at the end because this is determined by the close option\n if(chunks[chunks.length - 1][0].toUpperCase() === 'Z') {\n chunks.pop();\n }\n\n // Using svgPathElementDescriptions to map raw path arrays into objects that contain the command and the parameters\n // For example {command: 'M', x: '10', y: '10'}\n var elements = chunks.map(function(chunk) {\n var command = chunk.shift(),\n description = elementDescriptions[command.toLowerCase()];\n\n return Chartist.extend({\n command: command\n }, description.reduce(function(result, paramName, index) {\n result[paramName] = +chunk[index];\n return result;\n }, {}));\n });\n\n // Preparing a splice call with the elements array as var arg params and insert the parsed elements at the current position\n var spliceArgs = [this.pos, 0];\n Array.prototype.push.apply(spliceArgs, elements);\n Array.prototype.splice.apply(this.pathElements, spliceArgs);\n // Increase the internal position by the element count\n this.pos += elements.length;\n\n return this;\n }\n\n /**\n * This function renders to current SVG path object into a final SVG string that can be used in the d attribute of SVG path elements. It uses the accuracy option to round big decimals. If the close parameter was set in the constructor of this path object then a path closing Z will be appended to the output string.\n *\n * @memberof Chartist.Svg.Path\n * @return {String}\n */\n function stringify() {\n var accuracyMultiplier = Math.pow(10, this.options.accuracy);\n\n return this.pathElements.reduce(function(path, pathElement) {\n var params = elementDescriptions[pathElement.command.toLowerCase()].map(function(paramName) {\n return this.options.accuracy ?\n (Math.round(pathElement[paramName] * accuracyMultiplier) / accuracyMultiplier) :\n pathElement[paramName];\n }.bind(this));\n\n return path + pathElement.command + params.join(',');\n }.bind(this), '') + (this.close ? 'Z' : '');\n }\n\n /**\n * Scales all elements in the current SVG path object. There is an individual parameter for each coordinate. Scaling will also be done for control points of curves, affecting the given coordinate.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} x The number which will be used to scale the x, x1 and x2 of all path elements.\n * @param {Number} y The number which will be used to scale the y, y1 and y2 of all path elements.\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function scale(x, y) {\n forEachParam(this.pathElements, function(pathElement, paramName) {\n pathElement[paramName] *= paramName[0] === 'x' ? x : y;\n });\n return this;\n }\n\n /**\n * Translates all elements in the current SVG path object. The translation is relative and there is an individual parameter for each coordinate. Translation will also be done for control points of curves, affecting the given coordinate.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} x The number which will be used to translate the x, x1 and x2 of all path elements.\n * @param {Number} y The number which will be used to translate the y, y1 and y2 of all path elements.\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function translate(x, y) {\n forEachParam(this.pathElements, function(pathElement, paramName) {\n pathElement[paramName] += paramName[0] === 'x' ? x : y;\n });\n return this;\n }\n\n /**\n * This function will run over all existing path elements and then loop over their attributes. The callback function will be called for every path element attribute that exists in the current path.\n * The method signature of the callback function looks like this:\n * ```javascript\n * function(pathElement, paramName, pathElementIndex, paramIndex, pathElements)\n * ```\n * If something else than undefined is returned by the callback function, this value will be used to replace the old value. This allows you to build custom transformations of path objects that can't be achieved using the basic transformation functions scale and translate.\n *\n * @memberof Chartist.Svg.Path\n * @param {Function} transformFnc The callback function for the transformation. Check the signature in the function description.\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function transform(transformFnc) {\n forEachParam(this.pathElements, function(pathElement, paramName, pathElementIndex, paramIndex, pathElements) {\n var transformed = transformFnc(pathElement, paramName, pathElementIndex, paramIndex, pathElements);\n if(transformed || transformed === 0) {\n pathElement[paramName] = transformed;\n }\n });\n return this;\n }\n\n /**\n * This function clones a whole path object with all its properties. This is a deep clone and path element objects will also be cloned.\n *\n * @memberof Chartist.Svg.Path\n * @param {Boolean} [close] Optional option to set the new cloned path to closed. If not specified or false, the original path close option will be used.\n * @return {Chartist.Svg.Path}\n */\n function clone(close) {\n var c = new Chartist.Svg.Path(close || this.close);\n c.pos = this.pos;\n c.pathElements = this.pathElements.slice().map(function cloneElements(pathElement) {\n return Chartist.extend({}, pathElement);\n });\n c.options = Chartist.extend({}, this.options);\n return c;\n }\n\n /**\n * Split a Svg.Path object by a specific command in the path chain. The path chain will be split and an array of newly created paths objects will be returned. This is useful if you'd like to split an SVG path by it's move commands, for example, in order to isolate chunks of drawings.\n *\n * @memberof Chartist.Svg.Path\n * @param {String} command The command you'd like to use to split the path\n * @return {Array}\n */\n function splitByCommand(command) {\n var split = [\n new Chartist.Svg.Path()\n ];\n\n this.pathElements.forEach(function(pathElement) {\n if(pathElement.command === command.toUpperCase() && split[split.length - 1].pathElements.length !== 0) {\n split.push(new Chartist.Svg.Path());\n }\n\n split[split.length - 1].pathElements.push(pathElement);\n });\n\n return split;\n }\n\n /**\n * This static function on `Chartist.Svg.Path` is joining multiple paths together into one paths.\n *\n * @memberof Chartist.Svg.Path\n * @param {Array} paths A list of paths to be joined together. The order is important.\n * @param {boolean} close If the newly created path should be a closed path\n * @param {Object} options Path options for the newly created path.\n * @return {Chartist.Svg.Path}\n */\n\n function join(paths, close, options) {\n var joinedPath = new Chartist.Svg.Path(close, options);\n for(var i = 0; i < paths.length; i++) {\n var path = paths[i];\n for(var j = 0; j < path.pathElements.length; j++) {\n joinedPath.pathElements.push(path.pathElements[j]);\n }\n }\n return joinedPath;\n }\n\n Chartist.Svg.Path = Chartist.Class.extend({\n constructor: SvgPath,\n position: position,\n remove: remove,\n move: move,\n line: line,\n curve: curve,\n arc: arc,\n scale: scale,\n translate: translate,\n transform: transform,\n parse: parse,\n stringify: stringify,\n clone: clone,\n splitByCommand: splitByCommand\n });\n\n Chartist.Svg.Path.elementDescriptions = elementDescriptions;\n Chartist.Svg.Path.join = join;\n}(this, Chartist));\n;/* global Chartist */\n(function (globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n var axisUnits = {\n x: {\n pos: 'x',\n len: 'width',\n dir: 'horizontal',\n rectStart: 'x1',\n rectEnd: 'x2',\n rectOffset: 'y2'\n },\n y: {\n pos: 'y',\n len: 'height',\n dir: 'vertical',\n rectStart: 'y2',\n rectEnd: 'y1',\n rectOffset: 'x1'\n }\n };\n\n function Axis(units, chartRect, ticks, options) {\n this.units = units;\n this.counterUnits = units === axisUnits.x ? axisUnits.y : axisUnits.x;\n this.chartRect = chartRect;\n this.axisLength = chartRect[units.rectEnd] - chartRect[units.rectStart];\n this.gridOffset = chartRect[units.rectOffset];\n this.ticks = ticks;\n this.options = options;\n }\n\n function createGridAndLabels(gridGroup, labelGroup, useForeignObject, chartOptions, eventEmitter) {\n var axisOptions = chartOptions['axis' + this.units.pos.toUpperCase()];\n var projectedValues = this.ticks.map(this.projectValue.bind(this));\n var labelValues = this.ticks.map(axisOptions.labelInterpolationFnc);\n\n projectedValues.forEach(function(projectedValue, index) {\n var labelOffset = {\n x: 0,\n y: 0\n };\n\n // TODO: Find better solution for solving this problem\n // Calculate how much space we have available for the label\n var labelLength;\n if(projectedValues[index + 1]) {\n // If we still have one label ahead, we can calculate the distance to the next tick / label\n labelLength = projectedValues[index + 1] - projectedValue;\n } else {\n // If we don't have a label ahead and we have only two labels in total, we just take the remaining distance to\n // on the whole axis length. We limit that to a minimum of 30 pixel, so that labels close to the border will\n // still be visible inside of the chart padding.\n labelLength = Math.max(this.axisLength - projectedValue, 30);\n }\n\n // Skip grid lines and labels where interpolated label values are falsey (execpt for 0)\n if(Chartist.isFalseyButZero(labelValues[index]) && labelValues[index] !== '') {\n return;\n }\n\n // Transform to global coordinates using the chartRect\n // We also need to set the label offset for the createLabel function\n if(this.units.pos === 'x') {\n projectedValue = this.chartRect.x1 + projectedValue;\n labelOffset.x = chartOptions.axisX.labelOffset.x;\n\n // If the labels should be positioned in start position (top side for vertical axis) we need to set a\n // different offset as for positioned with end (bottom)\n if(chartOptions.axisX.position === 'start') {\n labelOffset.y = this.chartRect.padding.top + chartOptions.axisX.labelOffset.y + (useForeignObject ? 5 : 20);\n } else {\n labelOffset.y = this.chartRect.y1 + chartOptions.axisX.labelOffset.y + (useForeignObject ? 5 : 20);\n }\n } else {\n projectedValue = this.chartRect.y1 - projectedValue;\n labelOffset.y = chartOptions.axisY.labelOffset.y - (useForeignObject ? labelLength : 0);\n\n // If the labels should be positioned in start position (left side for horizontal axis) we need to set a\n // different offset as for positioned with end (right side)\n if(chartOptions.axisY.position === 'start') {\n labelOffset.x = useForeignObject ? this.chartRect.padding.left + chartOptions.axisY.labelOffset.x : this.chartRect.x1 - 10;\n } else {\n labelOffset.x = this.chartRect.x2 + chartOptions.axisY.labelOffset.x + 10;\n }\n }\n\n if(axisOptions.showGrid) {\n Chartist.createGrid(projectedValue, index, this, this.gridOffset, this.chartRect[this.counterUnits.len](), gridGroup, [\n chartOptions.classNames.grid,\n chartOptions.classNames[this.units.dir]\n ], eventEmitter);\n }\n\n if(axisOptions.showLabel) {\n Chartist.createLabel(projectedValue, labelLength, index, labelValues, this, axisOptions.offset, labelOffset, labelGroup, [\n chartOptions.classNames.label,\n chartOptions.classNames[this.units.dir],\n (axisOptions.position === 'start' ? chartOptions.classNames[axisOptions.position] : chartOptions.classNames['end'])\n ], useForeignObject, eventEmitter);\n }\n }.bind(this));\n }\n\n Chartist.Axis = Chartist.Class.extend({\n constructor: Axis,\n createGridAndLabels: createGridAndLabels,\n projectValue: function(value, index, data) {\n throw new Error('Base axis can\\'t be instantiated!');\n }\n });\n\n Chartist.Axis.units = axisUnits;\n\n}(this, Chartist));\n;/**\n * The auto scale axis uses standard linear scale projection of values along an axis. It uses order of magnitude to find a scale automatically and evaluates the available space in order to find the perfect amount of ticks for your chart.\n * **Options**\n * The following options are used by this axis in addition to the default axis options outlined in the axis configuration of the chart default settings.\n * ```javascript\n * var options = {\n * // If high is specified then the axis will display values explicitly up to this value and the computed maximum from the data is ignored\n * high: 100,\n * // If low is specified then the axis will display values explicitly down to this value and the computed minimum from the data is ignored\n * low: 0,\n * // This option will be used when finding the right scale division settings. The amount of ticks on the scale will be determined so that as many ticks as possible will be displayed, while not violating this minimum required space (in pixel).\n * scaleMinSpace: 20,\n * // Can be set to true or false. If set to true, the scale will be generated with whole numbers only.\n * onlyInteger: true,\n * // The reference value can be used to make sure that this value will always be on the chart. This is especially useful on bipolar charts where the bipolar center always needs to be part of the chart.\n * referenceValue: 5\n * };\n * ```\n *\n * @module Chartist.AutoScaleAxis\n */\n/* global Chartist */\n(function (globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n function AutoScaleAxis(axisUnit, data, chartRect, options) {\n // Usually we calculate highLow based on the data but this can be overriden by a highLow object in the options\n var highLow = options.highLow || Chartist.getHighLow(data, options, axisUnit.pos);\n this.bounds = Chartist.getBounds(chartRect[axisUnit.rectEnd] - chartRect[axisUnit.rectStart], highLow, options.scaleMinSpace || 20, options.onlyInteger);\n this.range = {\n min: this.bounds.min,\n max: this.bounds.max\n };\n\n Chartist.AutoScaleAxis.super.constructor.call(this,\n axisUnit,\n chartRect,\n this.bounds.values,\n options);\n }\n\n function projectValue(value) {\n return this.axisLength * (+Chartist.getMultiValue(value, this.units.pos) - this.bounds.min) / this.bounds.range;\n }\n\n Chartist.AutoScaleAxis = Chartist.Axis.extend({\n constructor: AutoScaleAxis,\n projectValue: projectValue\n });\n\n}(this, Chartist));\n;/**\n * The fixed scale axis uses standard linear projection of values along an axis. It makes use of a divisor option to divide the range provided from the minimum and maximum value or the options high and low that will override the computed minimum and maximum.\n * **Options**\n * The following options are used by this axis in addition to the default axis options outlined in the axis configuration of the chart default settings.\n * ```javascript\n * var options = {\n * // If high is specified then the axis will display values explicitly up to this value and the computed maximum from the data is ignored\n * high: 100,\n * // If low is specified then the axis will display values explicitly down to this value and the computed minimum from the data is ignored\n * low: 0,\n * // If specified then the value range determined from minimum to maximum (or low and high) will be divided by this number and ticks will be generated at those division points. The default divisor is 1.\n * divisor: 4,\n * // If ticks is explicitly set, then the axis will not compute the ticks with the divisor, but directly use the data in ticks to determine at what points on the axis a tick need to be generated.\n * ticks: [1, 10, 20, 30]\n * };\n * ```\n *\n * @module Chartist.FixedScaleAxis\n */\n/* global Chartist */\n(function (globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n function FixedScaleAxis(axisUnit, data, chartRect, options) {\n var highLow = options.highLow || Chartist.getHighLow(data, options, axisUnit.pos);\n this.divisor = options.divisor || 1;\n this.ticks = options.ticks || Chartist.times(this.divisor).map(function(value, index) {\n return highLow.low + (highLow.high - highLow.low) / this.divisor * index;\n }.bind(this));\n this.ticks.sort(function(a, b) {\n return a - b;\n });\n this.range = {\n min: highLow.low,\n max: highLow.high\n };\n\n Chartist.FixedScaleAxis.super.constructor.call(this,\n axisUnit,\n chartRect,\n this.ticks,\n options);\n\n this.stepLength = this.axisLength / this.divisor;\n }\n\n function projectValue(value) {\n return this.axisLength * (+Chartist.getMultiValue(value, this.units.pos) - this.range.min) / (this.range.max - this.range.min);\n }\n\n Chartist.FixedScaleAxis = Chartist.Axis.extend({\n constructor: FixedScaleAxis,\n projectValue: projectValue\n });\n\n}(this, Chartist));\n;/**\n * The step axis for step based charts like bar chart or step based line charts. It uses a fixed amount of ticks that will be equally distributed across the whole axis length. The projection is done using the index of the data value rather than the value itself and therefore it's only useful for distribution purpose.\n * **Options**\n * The following options are used by this axis in addition to the default axis options outlined in the axis configuration of the chart default settings.\n * ```javascript\n * var options = {\n * // Ticks to be used to distribute across the axis length. As this axis type relies on the index of the value rather than the value, arbitrary data that can be converted to a string can be used as ticks.\n * ticks: ['One', 'Two', 'Three'],\n * // If set to true the full width will be used to distribute the values where the last value will be at the maximum of the axis length. If false the spaces between the ticks will be evenly distributed instead.\n * stretch: true\n * };\n * ```\n *\n * @module Chartist.StepAxis\n */\n/* global Chartist */\n(function (globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n function StepAxis(axisUnit, data, chartRect, options) {\n Chartist.StepAxis.super.constructor.call(this,\n axisUnit,\n chartRect,\n options.ticks,\n options);\n\n var calc = Math.max(1, options.ticks.length - (options.stretch ? 1 : 0));\n this.stepLength = this.axisLength / calc;\n }\n\n function projectValue(value, index) {\n return this.stepLength * index;\n }\n\n Chartist.StepAxis = Chartist.Axis.extend({\n constructor: StepAxis,\n projectValue: projectValue\n });\n\n}(this, Chartist));\n;/**\n * The Chartist line chart can be used to draw Line or Scatter charts. If used in the browser you can access the global `Chartist` namespace where you find the `Line` function as a main entry point.\n *\n * For examples on how to use the line chart please check the examples of the `Chartist.Line` method.\n *\n * @module Chartist.Line\n */\n/* global Chartist */\n(function(globalRoot, Chartist){\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n /**\n * Default options in line charts. Expand the code view to see a detailed list of options with comments.\n *\n * @memberof Chartist.Line\n */\n var defaultOptions = {\n // Options for X-Axis\n axisX: {\n // The offset of the labels to the chart area\n offset: 30,\n // Position where labels are placed. Can be set to `start` or `end` where `start` is equivalent to left or top on vertical axis and `end` is equivalent to right or bottom on horizontal axis.\n position: 'end',\n // Allows you to correct label positioning on this axis by positive or negative x and y offset.\n labelOffset: {\n x: 0,\n y: 0\n },\n // If labels should be shown or not\n showLabel: true,\n // If the axis grid should be drawn or not\n showGrid: true,\n // Interpolation function that allows you to intercept the value from the axis label\n labelInterpolationFnc: Chartist.noop,\n // Set the axis type to be used to project values on this axis. If not defined, Chartist.StepAxis will be used for the X-Axis, where the ticks option will be set to the labels in the data and the stretch option will be set to the global fullWidth option. This type can be changed to any axis constructor available (e.g. Chartist.FixedScaleAxis), where all axis options should be present here.\n type: undefined\n },\n // Options for Y-Axis\n axisY: {\n // The offset of the labels to the chart area\n offset: 40,\n // Position where labels are placed. Can be set to `start` or `end` where `start` is equivalent to left or top on vertical axis and `end` is equivalent to right or bottom on horizontal axis.\n position: 'start',\n // Allows you to correct label positioning on this axis by positive or negative x and y offset.\n labelOffset: {\n x: 0,\n y: 0\n },\n // If labels should be shown or not\n showLabel: true,\n // If the axis grid should be drawn or not\n showGrid: true,\n // Interpolation function that allows you to intercept the value from the axis label\n labelInterpolationFnc: Chartist.noop,\n // Set the axis type to be used to project values on this axis. If not defined, Chartist.AutoScaleAxis will be used for the Y-Axis, where the high and low options will be set to the global high and low options. This type can be changed to any axis constructor available (e.g. Chartist.FixedScaleAxis), where all axis options should be present here.\n type: undefined,\n // This value specifies the minimum height in pixel of the scale steps\n scaleMinSpace: 20,\n // Use only integer values (whole numbers) for the scale steps\n onlyInteger: false\n },\n // Specify a fixed width for the chart as a string (i.e. '100px' or '50%')\n width: undefined,\n // Specify a fixed height for the chart as a string (i.e. '100px' or '50%')\n height: undefined,\n // If the line should be drawn or not\n showLine: true,\n // If dots should be drawn or not\n showPoint: true,\n // If the line chart should draw an area\n showArea: false,\n // The base for the area chart that will be used to close the area shape (is normally 0)\n areaBase: 0,\n // Specify if the lines should be smoothed. This value can be true or false where true will result in smoothing using the default smoothing interpolation function Chartist.Interpolation.cardinal and false results in Chartist.Interpolation.none. You can also choose other smoothing / interpolation functions available in the Chartist.Interpolation module, or write your own interpolation function. Check the examples for a brief description.\n lineSmooth: true,\n // If the line chart should add a background fill to the .ct-grids group.\n showGridBackground: false,\n // Overriding the natural low of the chart allows you to zoom in or limit the charts lowest displayed value\n low: undefined,\n // Overriding the natural high of the chart allows you to zoom in or limit the charts highest displayed value\n high: undefined,\n // Padding of the chart drawing area to the container element and labels as a number or padding object {top: 5, right: 5, bottom: 5, left: 5}\n chartPadding: {\n top: 15,\n right: 15,\n bottom: 5,\n left: 10\n },\n // When set to true, the last grid line on the x-axis is not drawn and the chart elements will expand to the full available width of the chart. For the last label to be drawn correctly you might need to add chart padding or offset the last label with a draw event handler.\n fullWidth: false,\n // If true the whole data is reversed including labels, the series order as well as the whole series data arrays.\n reverseData: false,\n // Override the class names that get used to generate the SVG structure of the chart\n classNames: {\n chart: 'ct-chart-line',\n label: 'ct-label',\n labelGroup: 'ct-labels',\n series: 'ct-series',\n line: 'ct-line',\n point: 'ct-point',\n area: 'ct-area',\n grid: 'ct-grid',\n gridGroup: 'ct-grids',\n gridBackground: 'ct-grid-background',\n vertical: 'ct-vertical',\n horizontal: 'ct-horizontal',\n start: 'ct-start',\n end: 'ct-end'\n }\n };\n\n /**\n * Creates a new chart\n *\n */\n function createChart(options) {\n var data = Chartist.normalizeData(this.data, options.reverseData, true);\n\n // Create new svg object\n this.svg = Chartist.createSvg(this.container, options.width, options.height, options.classNames.chart);\n // Create groups for labels, grid and series\n var gridGroup = this.svg.elem('g').addClass(options.classNames.gridGroup);\n var seriesGroup = this.svg.elem('g');\n var labelGroup = this.svg.elem('g').addClass(options.classNames.labelGroup);\n\n var chartRect = Chartist.createChartRect(this.svg, options, defaultOptions.padding);\n var axisX, axisY;\n\n if(options.axisX.type === undefined) {\n axisX = new Chartist.StepAxis(Chartist.Axis.units.x, data.normalized.series, chartRect, Chartist.extend({}, options.axisX, {\n ticks: data.normalized.labels,\n stretch: options.fullWidth\n }));\n } else {\n axisX = options.axisX.type.call(Chartist, Chartist.Axis.units.x, data.normalized.series, chartRect, options.axisX);\n }\n\n if(options.axisY.type === undefined) {\n axisY = new Chartist.AutoScaleAxis(Chartist.Axis.units.y, data.normalized.series, chartRect, Chartist.extend({}, options.axisY, {\n high: Chartist.isNumeric(options.high) ? options.high : options.axisY.high,\n low: Chartist.isNumeric(options.low) ? options.low : options.axisY.low\n }));\n } else {\n axisY = options.axisY.type.call(Chartist, Chartist.Axis.units.y, data.normalized.series, chartRect, options.axisY);\n }\n\n axisX.createGridAndLabels(gridGroup, labelGroup, this.supportsForeignObject, options, this.eventEmitter);\n axisY.createGridAndLabels(gridGroup, labelGroup, this.supportsForeignObject, options, this.eventEmitter);\n\n if (options.showGridBackground) {\n Chartist.createGridBackground(gridGroup, chartRect, options.classNames.gridBackground, this.eventEmitter);\n }\n\n // Draw the series\n data.raw.series.forEach(function(series, seriesIndex) {\n var seriesElement = seriesGroup.elem('g');\n\n // Write attributes to series group element. If series name or meta is undefined the attributes will not be written\n seriesElement.attr({\n 'ct:series-name': series.name,\n 'ct:meta': Chartist.serialize(series.meta)\n });\n\n // Use series class from series data or if not set generate one\n seriesElement.addClass([\n options.classNames.series,\n (series.className || options.classNames.series + '-' + Chartist.alphaNumerate(seriesIndex))\n ].join(' '));\n\n var pathCoordinates = [],\n pathData = [];\n\n data.normalized.series[seriesIndex].forEach(function(value, valueIndex) {\n var p = {\n x: chartRect.x1 + axisX.projectValue(value, valueIndex, data.normalized.series[seriesIndex]),\n y: chartRect.y1 - axisY.projectValue(value, valueIndex, data.normalized.series[seriesIndex])\n };\n pathCoordinates.push(p.x, p.y);\n pathData.push({\n value: value,\n valueIndex: valueIndex,\n meta: Chartist.getMetaData(series, valueIndex)\n });\n }.bind(this));\n\n var seriesOptions = {\n lineSmooth: Chartist.getSeriesOption(series, options, 'lineSmooth'),\n showPoint: Chartist.getSeriesOption(series, options, 'showPoint'),\n showLine: Chartist.getSeriesOption(series, options, 'showLine'),\n showArea: Chartist.getSeriesOption(series, options, 'showArea'),\n areaBase: Chartist.getSeriesOption(series, options, 'areaBase')\n };\n\n var smoothing = typeof seriesOptions.lineSmooth === 'function' ?\n seriesOptions.lineSmooth : (seriesOptions.lineSmooth ? Chartist.Interpolation.monotoneCubic() : Chartist.Interpolation.none());\n // Interpolating path where pathData will be used to annotate each path element so we can trace back the original\n // index, value and meta data\n var path = smoothing(pathCoordinates, pathData);\n\n // If we should show points we need to create them now to avoid secondary loop\n // Points are drawn from the pathElements returned by the interpolation function\n // Small offset for Firefox to render squares correctly\n if (seriesOptions.showPoint) {\n\n path.pathElements.forEach(function(pathElement) {\n var point = seriesElement.elem('line', {\n x1: pathElement.x,\n y1: pathElement.y,\n x2: pathElement.x + 0.01,\n y2: pathElement.y\n }, options.classNames.point).attr({\n 'ct:value': [pathElement.data.value.x, pathElement.data.value.y].filter(Chartist.isNumeric).join(','),\n 'ct:meta': Chartist.serialize(pathElement.data.meta)\n });\n\n this.eventEmitter.emit('draw', {\n type: 'point',\n value: pathElement.data.value,\n index: pathElement.data.valueIndex,\n meta: pathElement.data.meta,\n series: series,\n seriesIndex: seriesIndex,\n axisX: axisX,\n axisY: axisY,\n group: seriesElement,\n element: point,\n x: pathElement.x,\n y: pathElement.y\n });\n }.bind(this));\n }\n\n if(seriesOptions.showLine) {\n var line = seriesElement.elem('path', {\n d: path.stringify()\n }, options.classNames.line, true);\n\n this.eventEmitter.emit('draw', {\n type: 'line',\n values: data.normalized.series[seriesIndex],\n path: path.clone(),\n chartRect: chartRect,\n index: seriesIndex,\n series: series,\n seriesIndex: seriesIndex,\n seriesMeta: series.meta,\n axisX: axisX,\n axisY: axisY,\n group: seriesElement,\n element: line\n });\n }\n\n // Area currently only works with axes that support a range!\n if(seriesOptions.showArea && axisY.range) {\n // If areaBase is outside the chart area (< min or > max) we need to set it respectively so that\n // the area is not drawn outside the chart area.\n var areaBase = Math.max(Math.min(seriesOptions.areaBase, axisY.range.max), axisY.range.min);\n\n // We project the areaBase value into screen coordinates\n var areaBaseProjected = chartRect.y1 - axisY.projectValue(areaBase);\n\n // In order to form the area we'll first split the path by move commands so we can chunk it up into segments\n path.splitByCommand('M').filter(function onlySolidSegments(pathSegment) {\n // We filter only \"solid\" segments that contain more than one point. Otherwise there's no need for an area\n return pathSegment.pathElements.length > 1;\n }).map(function convertToArea(solidPathSegments) {\n // Receiving the filtered solid path segments we can now convert those segments into fill areas\n var firstElement = solidPathSegments.pathElements[0];\n var lastElement = solidPathSegments.pathElements[solidPathSegments.pathElements.length - 1];\n\n // Cloning the solid path segment with closing option and removing the first move command from the clone\n // We then insert a new move that should start at the area base and draw a straight line up or down\n // at the end of the path we add an additional straight line to the projected area base value\n // As the closing option is set our path will be automatically closed\n return solidPathSegments.clone(true)\n .position(0)\n .remove(1)\n .move(firstElement.x, areaBaseProjected)\n .line(firstElement.x, firstElement.y)\n .position(solidPathSegments.pathElements.length + 1)\n .line(lastElement.x, areaBaseProjected);\n\n }).forEach(function createArea(areaPath) {\n // For each of our newly created area paths, we'll now create path elements by stringifying our path objects\n // and adding the created DOM elements to the correct series group\n var area = seriesElement.elem('path', {\n d: areaPath.stringify()\n }, options.classNames.area, true);\n\n // Emit an event for each area that was drawn\n this.eventEmitter.emit('draw', {\n type: 'area',\n values: data.normalized.series[seriesIndex],\n path: areaPath.clone(),\n series: series,\n seriesIndex: seriesIndex,\n axisX: axisX,\n axisY: axisY,\n chartRect: chartRect,\n index: seriesIndex,\n group: seriesElement,\n element: area\n });\n }.bind(this));\n }\n }.bind(this));\n\n this.eventEmitter.emit('created', {\n bounds: axisY.bounds,\n chartRect: chartRect,\n axisX: axisX,\n axisY: axisY,\n svg: this.svg,\n options: options\n });\n }\n\n /**\n * This method creates a new line chart.\n *\n * @memberof Chartist.Line\n * @param {String|Node} query A selector query string or directly a DOM element\n * @param {Object} data The data object that needs to consist of a labels and a series array\n * @param {Object} [options] The options object with options that override the default options. Check the examples for a detailed list.\n * @param {Array} [responsiveOptions] Specify an array of responsive option arrays which are a media query and options object pair => [[mediaQueryString, optionsObject],[more...]]\n * @return {Object} An object which exposes the API for the created chart\n *\n * @example\n * // Create a simple line chart\n * var data = {\n * // A labels array that can contain any sort of values\n * labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri'],\n * // Our series array that contains series objects or in this case series data arrays\n * series: [\n * [5, 2, 4, 2, 0]\n * ]\n * };\n *\n * // As options we currently only set a static size of 300x200 px\n * var options = {\n * width: '300px',\n * height: '200px'\n * };\n *\n * // In the global name space Chartist we call the Line function to initialize a line chart. As a first parameter we pass in a selector where we would like to get our chart created. Second parameter is the actual data object and as a third parameter we pass in our options\n * new Chartist.Line('.ct-chart', data, options);\n *\n * @example\n * // Use specific interpolation function with configuration from the Chartist.Interpolation module\n *\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [\n * [1, 1, 8, 1, 7]\n * ]\n * }, {\n * lineSmooth: Chartist.Interpolation.cardinal({\n * tension: 0.2\n * })\n * });\n *\n * @example\n * // Create a line chart with responsive options\n *\n * var data = {\n * // A labels array that can contain any sort of values\n * labels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],\n * // Our series array that contains series objects or in this case series data arrays\n * series: [\n * [5, 2, 4, 2, 0]\n * ]\n * };\n *\n * // In addition to the regular options we specify responsive option overrides that will override the default configutation based on the matching media queries.\n * var responsiveOptions = [\n * ['screen and (min-width: 641px) and (max-width: 1024px)', {\n * showPoint: false,\n * axisX: {\n * labelInterpolationFnc: function(value) {\n * // Will return Mon, Tue, Wed etc. on medium screens\n * return value.slice(0, 3);\n * }\n * }\n * }],\n * ['screen and (max-width: 640px)', {\n * showLine: false,\n * axisX: {\n * labelInterpolationFnc: function(value) {\n * // Will return M, T, W etc. on small screens\n * return value[0];\n * }\n * }\n * }]\n * ];\n *\n * new Chartist.Line('.ct-chart', data, null, responsiveOptions);\n *\n */\n function Line(query, data, options, responsiveOptions) {\n Chartist.Line.super.constructor.call(this,\n query,\n data,\n defaultOptions,\n Chartist.extend({}, defaultOptions, options),\n responsiveOptions);\n }\n\n // Creating line chart type in Chartist namespace\n Chartist.Line = Chartist.Base.extend({\n constructor: Line,\n createChart: createChart\n });\n\n}(this, Chartist));\n;/**\n * The bar chart module of Chartist that can be used to draw unipolar or bipolar bar and grouped bar charts.\n *\n * @module Chartist.Bar\n */\n/* global Chartist */\n(function(globalRoot, Chartist){\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n /**\n * Default options in bar charts. Expand the code view to see a detailed list of options with comments.\n *\n * @memberof Chartist.Bar\n */\n var defaultOptions = {\n // Options for X-Axis\n axisX: {\n // The offset of the chart drawing area to the border of the container\n offset: 30,\n // Position where labels are placed. Can be set to `start` or `end` where `start` is equivalent to left or top on vertical axis and `end` is equivalent to right or bottom on horizontal axis.\n position: 'end',\n // Allows you to correct label positioning on this axis by positive or negative x and y offset.\n labelOffset: {\n x: 0,\n y: 0\n },\n // If labels should be shown or not\n showLabel: true,\n // If the axis grid should be drawn or not\n showGrid: true,\n // Interpolation function that allows you to intercept the value from the axis label\n labelInterpolationFnc: Chartist.noop,\n // This value specifies the minimum width in pixel of the scale steps\n scaleMinSpace: 30,\n // Use only integer values (whole numbers) for the scale steps\n onlyInteger: false\n },\n // Options for Y-Axis\n axisY: {\n // The offset of the chart drawing area to the border of the container\n offset: 40,\n // Position where labels are placed. Can be set to `start` or `end` where `start` is equivalent to left or top on vertical axis and `end` is equivalent to right or bottom on horizontal axis.\n position: 'start',\n // Allows you to correct label positioning on this axis by positive or negative x and y offset.\n labelOffset: {\n x: 0,\n y: 0\n },\n // If labels should be shown or not\n showLabel: true,\n // If the axis grid should be drawn or not\n showGrid: true,\n // Interpolation function that allows you to intercept the value from the axis label\n labelInterpolationFnc: Chartist.noop,\n // This value specifies the minimum height in pixel of the scale steps\n scaleMinSpace: 20,\n // Use only integer values (whole numbers) for the scale steps\n onlyInteger: false\n },\n // Specify a fixed width for the chart as a string (i.e. '100px' or '50%')\n width: undefined,\n // Specify a fixed height for the chart as a string (i.e. '100px' or '50%')\n height: undefined,\n // Overriding the natural high of the chart allows you to zoom in or limit the charts highest displayed value\n high: undefined,\n // Overriding the natural low of the chart allows you to zoom in or limit the charts lowest displayed value\n low: undefined,\n // Unless low/high are explicitly set, bar chart will be centered at zero by default. Set referenceValue to null to auto scale.\n referenceValue: 0,\n // Padding of the chart drawing area to the container element and labels as a number or padding object {top: 5, right: 5, bottom: 5, left: 5}\n chartPadding: {\n top: 15,\n right: 15,\n bottom: 5,\n left: 10\n },\n // Specify the distance in pixel of bars in a group\n seriesBarDistance: 15,\n // If set to true this property will cause the series bars to be stacked. Check the `stackMode` option for further stacking options.\n stackBars: false,\n // If set to 'overlap' this property will force the stacked bars to draw from the zero line.\n // If set to 'accumulate' this property will form a total for each series point. This will also influence the y-axis and the overall bounds of the chart. In stacked mode the seriesBarDistance property will have no effect.\n stackMode: 'accumulate',\n // Inverts the axes of the bar chart in order to draw a horizontal bar chart. Be aware that you also need to invert your axis settings as the Y Axis will now display the labels and the X Axis the values.\n horizontalBars: false,\n // If set to true then each bar will represent a series and the data array is expected to be a one dimensional array of data values rather than a series array of series. This is useful if the bar chart should represent a profile rather than some data over time.\n distributeSeries: false,\n // If true the whole data is reversed including labels, the series order as well as the whole series data arrays.\n reverseData: false,\n // If the bar chart should add a background fill to the .ct-grids group.\n showGridBackground: false,\n // Override the class names that get used to generate the SVG structure of the chart\n classNames: {\n chart: 'ct-chart-bar',\n horizontalBars: 'ct-horizontal-bars',\n label: 'ct-label',\n labelGroup: 'ct-labels',\n series: 'ct-series',\n bar: 'ct-bar',\n grid: 'ct-grid',\n gridGroup: 'ct-grids',\n gridBackground: 'ct-grid-background',\n vertical: 'ct-vertical',\n horizontal: 'ct-horizontal',\n start: 'ct-start',\n end: 'ct-end'\n }\n };\n\n /**\n * Creates a new chart\n *\n */\n function createChart(options) {\n var data;\n var highLow;\n\n if(options.distributeSeries) {\n data = Chartist.normalizeData(this.data, options.reverseData, options.horizontalBars ? 'x' : 'y');\n data.normalized.series = data.normalized.series.map(function(value) {\n return [value];\n });\n } else {\n data = Chartist.normalizeData(this.data, options.reverseData, options.horizontalBars ? 'x' : 'y');\n }\n\n // Create new svg element\n this.svg = Chartist.createSvg(\n this.container,\n options.width,\n options.height,\n options.classNames.chart + (options.horizontalBars ? ' ' + options.classNames.horizontalBars : '')\n );\n\n // Drawing groups in correct order\n var gridGroup = this.svg.elem('g').addClass(options.classNames.gridGroup);\n var seriesGroup = this.svg.elem('g');\n var labelGroup = this.svg.elem('g').addClass(options.classNames.labelGroup);\n\n if(options.stackBars && data.normalized.series.length !== 0) {\n\n // If stacked bars we need to calculate the high low from stacked values from each series\n var serialSums = Chartist.serialMap(data.normalized.series, function serialSums() {\n return Array.prototype.slice.call(arguments).map(function(value) {\n return value;\n }).reduce(function(prev, curr) {\n return {\n x: prev.x + (curr && curr.x) || 0,\n y: prev.y + (curr && curr.y) || 0\n };\n }, {x: 0, y: 0});\n });\n\n highLow = Chartist.getHighLow([serialSums], options, options.horizontalBars ? 'x' : 'y');\n\n } else {\n\n highLow = Chartist.getHighLow(data.normalized.series, options, options.horizontalBars ? 'x' : 'y');\n }\n\n // Overrides of high / low from settings\n highLow.high = +options.high || (options.high === 0 ? 0 : highLow.high);\n highLow.low = +options.low || (options.low === 0 ? 0 : highLow.low);\n\n var chartRect = Chartist.createChartRect(this.svg, options, defaultOptions.padding);\n\n var valueAxis,\n labelAxisTicks,\n labelAxis,\n axisX,\n axisY;\n\n // We need to set step count based on some options combinations\n if(options.distributeSeries && options.stackBars) {\n // If distributed series are enabled and bars need to be stacked, we'll only have one bar and therefore should\n // use only the first label for the step axis\n labelAxisTicks = data.normalized.labels.slice(0, 1);\n } else {\n // If distributed series are enabled but stacked bars aren't, we should use the series labels\n // If we are drawing a regular bar chart with two dimensional series data, we just use the labels array\n // as the bars are normalized\n labelAxisTicks = data.normalized.labels;\n }\n\n // Set labelAxis and valueAxis based on the horizontalBars setting. This setting will flip the axes if necessary.\n if(options.horizontalBars) {\n if(options.axisX.type === undefined) {\n valueAxis = axisX = new Chartist.AutoScaleAxis(Chartist.Axis.units.x, data.normalized.series, chartRect, Chartist.extend({}, options.axisX, {\n highLow: highLow,\n referenceValue: 0\n }));\n } else {\n valueAxis = axisX = options.axisX.type.call(Chartist, Chartist.Axis.units.x, data.normalized.series, chartRect, Chartist.extend({}, options.axisX, {\n highLow: highLow,\n referenceValue: 0\n }));\n }\n\n if(options.axisY.type === undefined) {\n labelAxis = axisY = new Chartist.StepAxis(Chartist.Axis.units.y, data.normalized.series, chartRect, {\n ticks: labelAxisTicks\n });\n } else {\n labelAxis = axisY = options.axisY.type.call(Chartist, Chartist.Axis.units.y, data.normalized.series, chartRect, options.axisY);\n }\n } else {\n if(options.axisX.type === undefined) {\n labelAxis = axisX = new Chartist.StepAxis(Chartist.Axis.units.x, data.normalized.series, chartRect, {\n ticks: labelAxisTicks\n });\n } else {\n labelAxis = axisX = options.axisX.type.call(Chartist, Chartist.Axis.units.x, data.normalized.series, chartRect, options.axisX);\n }\n\n if(options.axisY.type === undefined) {\n valueAxis = axisY = new Chartist.AutoScaleAxis(Chartist.Axis.units.y, data.normalized.series, chartRect, Chartist.extend({}, options.axisY, {\n highLow: highLow,\n referenceValue: 0\n }));\n } else {\n valueAxis = axisY = options.axisY.type.call(Chartist, Chartist.Axis.units.y, data.normalized.series, chartRect, Chartist.extend({}, options.axisY, {\n highLow: highLow,\n referenceValue: 0\n }));\n }\n }\n\n // Projected 0 point\n var zeroPoint = options.horizontalBars ? (chartRect.x1 + valueAxis.projectValue(0)) : (chartRect.y1 - valueAxis.projectValue(0));\n // Used to track the screen coordinates of stacked bars\n var stackedBarValues = [];\n\n labelAxis.createGridAndLabels(gridGroup, labelGroup, this.supportsForeignObject, options, this.eventEmitter);\n valueAxis.createGridAndLabels(gridGroup, labelGroup, this.supportsForeignObject, options, this.eventEmitter);\n\n if (options.showGridBackground) {\n Chartist.createGridBackground(gridGroup, chartRect, options.classNames.gridBackground, this.eventEmitter);\n }\n\n // Draw the series\n data.raw.series.forEach(function(series, seriesIndex) {\n // Calculating bi-polar value of index for seriesOffset. For i = 0..4 biPol will be -1.5, -0.5, 0.5, 1.5 etc.\n var biPol = seriesIndex - (data.raw.series.length - 1) / 2;\n // Half of the period width between vertical grid lines used to position bars\n var periodHalfLength;\n // Current series SVG element\n var seriesElement;\n\n // We need to set periodHalfLength based on some options combinations\n if(options.distributeSeries && !options.stackBars) {\n // If distributed series are enabled but stacked bars aren't, we need to use the length of the normaizedData array\n // which is the series count and divide by 2\n periodHalfLength = labelAxis.axisLength / data.normalized.series.length / 2;\n } else if(options.distributeSeries && options.stackBars) {\n // If distributed series and stacked bars are enabled we'll only get one bar so we should just divide the axis\n // length by 2\n periodHalfLength = labelAxis.axisLength / 2;\n } else {\n // On regular bar charts we should just use the series length\n periodHalfLength = labelAxis.axisLength / data.normalized.series[seriesIndex].length / 2;\n }\n\n // Adding the series group to the series element\n seriesElement = seriesGroup.elem('g');\n\n // Write attributes to series group element. If series name or meta is undefined the attributes will not be written\n seriesElement.attr({\n 'ct:series-name': series.name,\n 'ct:meta': Chartist.serialize(series.meta)\n });\n\n // Use series class from series data or if not set generate one\n seriesElement.addClass([\n options.classNames.series,\n (series.className || options.classNames.series + '-' + Chartist.alphaNumerate(seriesIndex))\n ].join(' '));\n\n data.normalized.series[seriesIndex].forEach(function(value, valueIndex) {\n var projected,\n bar,\n previousStack,\n labelAxisValueIndex;\n\n // We need to set labelAxisValueIndex based on some options combinations\n if(options.distributeSeries && !options.stackBars) {\n // If distributed series are enabled but stacked bars aren't, we can use the seriesIndex for later projection\n // on the step axis for label positioning\n labelAxisValueIndex = seriesIndex;\n } else if(options.distributeSeries && options.stackBars) {\n // If distributed series and stacked bars are enabled, we will only get one bar and therefore always use\n // 0 for projection on the label step axis\n labelAxisValueIndex = 0;\n } else {\n // On regular bar charts we just use the value index to project on the label step axis\n labelAxisValueIndex = valueIndex;\n }\n\n // We need to transform coordinates differently based on the chart layout\n if(options.horizontalBars) {\n projected = {\n x: chartRect.x1 + valueAxis.projectValue(value && value.x ? value.x : 0, valueIndex, data.normalized.series[seriesIndex]),\n y: chartRect.y1 - labelAxis.projectValue(value && value.y ? value.y : 0, labelAxisValueIndex, data.normalized.series[seriesIndex])\n };\n } else {\n projected = {\n x: chartRect.x1 + labelAxis.projectValue(value && value.x ? value.x : 0, labelAxisValueIndex, data.normalized.series[seriesIndex]),\n y: chartRect.y1 - valueAxis.projectValue(value && value.y ? value.y : 0, valueIndex, data.normalized.series[seriesIndex])\n }\n }\n\n // If the label axis is a step based axis we will offset the bar into the middle of between two steps using\n // the periodHalfLength value. Also we do arrange the different series so that they align up to each other using\n // the seriesBarDistance. If we don't have a step axis, the bar positions can be chosen freely so we should not\n // add any automated positioning.\n if(labelAxis instanceof Chartist.StepAxis) {\n // Offset to center bar between grid lines, but only if the step axis is not stretched\n if(!labelAxis.options.stretch) {\n projected[labelAxis.units.pos] += periodHalfLength * (options.horizontalBars ? -1 : 1);\n }\n // Using bi-polar offset for multiple series if no stacked bars or series distribution is used\n projected[labelAxis.units.pos] += (options.stackBars || options.distributeSeries) ? 0 : biPol * options.seriesBarDistance * (options.horizontalBars ? -1 : 1);\n }\n\n // Enter value in stacked bar values used to remember previous screen value for stacking up bars\n previousStack = stackedBarValues[valueIndex] || zeroPoint;\n stackedBarValues[valueIndex] = previousStack - (zeroPoint - projected[labelAxis.counterUnits.pos]);\n\n // Skip if value is undefined\n if(value === undefined) {\n return;\n }\n\n var positions = {};\n positions[labelAxis.units.pos + '1'] = projected[labelAxis.units.pos];\n positions[labelAxis.units.pos + '2'] = projected[labelAxis.units.pos];\n\n if(options.stackBars && (options.stackMode === 'accumulate' || !options.stackMode)) {\n // Stack mode: accumulate (default)\n // If bars are stacked we use the stackedBarValues reference and otherwise base all bars off the zero line\n // We want backwards compatibility, so the expected fallback without the 'stackMode' option\n // to be the original behaviour (accumulate)\n positions[labelAxis.counterUnits.pos + '1'] = previousStack;\n positions[labelAxis.counterUnits.pos + '2'] = stackedBarValues[valueIndex];\n } else {\n // Draw from the zero line normally\n // This is also the same code for Stack mode: overlap\n positions[labelAxis.counterUnits.pos + '1'] = zeroPoint;\n positions[labelAxis.counterUnits.pos + '2'] = projected[labelAxis.counterUnits.pos];\n }\n\n // Limit x and y so that they are within the chart rect\n positions.x1 = Math.min(Math.max(positions.x1, chartRect.x1), chartRect.x2);\n positions.x2 = Math.min(Math.max(positions.x2, chartRect.x1), chartRect.x2);\n positions.y1 = Math.min(Math.max(positions.y1, chartRect.y2), chartRect.y1);\n positions.y2 = Math.min(Math.max(positions.y2, chartRect.y2), chartRect.y1);\n\n var metaData = Chartist.getMetaData(series, valueIndex);\n\n // Create bar element\n bar = seriesElement.elem('line', positions, options.classNames.bar).attr({\n 'ct:value': [value.x, value.y].filter(Chartist.isNumeric).join(','),\n 'ct:meta': Chartist.serialize(metaData)\n });\n\n this.eventEmitter.emit('draw', Chartist.extend({\n type: 'bar',\n value: value,\n index: valueIndex,\n meta: metaData,\n series: series,\n seriesIndex: seriesIndex,\n axisX: axisX,\n axisY: axisY,\n chartRect: chartRect,\n group: seriesElement,\n element: bar\n }, positions));\n }.bind(this));\n }.bind(this));\n\n this.eventEmitter.emit('created', {\n bounds: valueAxis.bounds,\n chartRect: chartRect,\n axisX: axisX,\n axisY: axisY,\n svg: this.svg,\n options: options\n });\n }\n\n /**\n * This method creates a new bar chart and returns API object that you can use for later changes.\n *\n * @memberof Chartist.Bar\n * @param {String|Node} query A selector query string or directly a DOM element\n * @param {Object} data The data object that needs to consist of a labels and a series array\n * @param {Object} [options] The options object with options that override the default options. Check the examples for a detailed list.\n * @param {Array} [responsiveOptions] Specify an array of responsive option arrays which are a media query and options object pair => [[mediaQueryString, optionsObject],[more...]]\n * @return {Object} An object which exposes the API for the created chart\n *\n * @example\n * // Create a simple bar chart\n * var data = {\n * labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri'],\n * series: [\n * [5, 2, 4, 2, 0]\n * ]\n * };\n *\n * // In the global name space Chartist we call the Bar function to initialize a bar chart. As a first parameter we pass in a selector where we would like to get our chart created and as a second parameter we pass our data object.\n * new Chartist.Bar('.ct-chart', data);\n *\n * @example\n * // This example creates a bipolar grouped bar chart where the boundaries are limitted to -10 and 10\n * new Chartist.Bar('.ct-chart', {\n * labels: [1, 2, 3, 4, 5, 6, 7],\n * series: [\n * [1, 3, 2, -5, -3, 1, -6],\n * [-5, -2, -4, -1, 2, -3, 1]\n * ]\n * }, {\n * seriesBarDistance: 12,\n * low: -10,\n * high: 10\n * });\n *\n */\n function Bar(query, data, options, responsiveOptions) {\n Chartist.Bar.super.constructor.call(this,\n query,\n data,\n defaultOptions,\n Chartist.extend({}, defaultOptions, options),\n responsiveOptions);\n }\n\n // Creating bar chart type in Chartist namespace\n Chartist.Bar = Chartist.Base.extend({\n constructor: Bar,\n createChart: createChart\n });\n\n}(this, Chartist));\n;/**\n * The pie chart module of Chartist that can be used to draw pie, donut or gauge charts\n *\n * @module Chartist.Pie\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n /**\n * Default options in line charts. Expand the code view to see a detailed list of options with comments.\n *\n * @memberof Chartist.Pie\n */\n var defaultOptions = {\n // Specify a fixed width for the chart as a string (i.e. '100px' or '50%')\n width: undefined,\n // Specify a fixed height for the chart as a string (i.e. '100px' or '50%')\n height: undefined,\n // Padding of the chart drawing area to the container element and labels as a number or padding object {top: 5, right: 5, bottom: 5, left: 5}\n chartPadding: 5,\n // Override the class names that are used to generate the SVG structure of the chart\n classNames: {\n chartPie: 'ct-chart-pie',\n chartDonut: 'ct-chart-donut',\n series: 'ct-series',\n slicePie: 'ct-slice-pie',\n sliceDonut: 'ct-slice-donut',\n sliceDonutSolid: 'ct-slice-donut-solid',\n label: 'ct-label'\n },\n // The start angle of the pie chart in degrees where 0 points north. A higher value offsets the start angle clockwise.\n startAngle: 0,\n // An optional total you can specify. By specifying a total value, the sum of the values in the series must be this total in order to draw a full pie. You can use this parameter to draw only parts of a pie or gauge charts.\n total: undefined,\n // If specified the donut CSS classes will be used and strokes will be drawn instead of pie slices.\n donut: false,\n // If specified the donut segments will be drawn as shapes instead of strokes.\n donutSolid: false,\n // Specify the donut stroke width, currently done in javascript for convenience. May move to CSS styles in the future.\n // This option can be set as number or string to specify a relative width (i.e. 100 or '30%').\n donutWidth: 60,\n // If a label should be shown or not\n showLabel: true,\n // Label position offset from the standard position which is half distance of the radius. This value can be either positive or negative. Positive values will position the label away from the center.\n labelOffset: 0,\n // This option can be set to 'inside', 'outside' or 'center'. Positioned with 'inside' the labels will be placed on half the distance of the radius to the border of the Pie by respecting the 'labelOffset'. The 'outside' option will place the labels at the border of the pie and 'center' will place the labels in the absolute center point of the chart. The 'center' option only makes sense in conjunction with the 'labelOffset' option.\n labelPosition: 'inside',\n // An interpolation function for the label value\n labelInterpolationFnc: Chartist.noop,\n // Label direction can be 'neutral', 'explode' or 'implode'. The labels anchor will be positioned based on those settings as well as the fact if the labels are on the right or left side of the center of the chart. Usually explode is useful when labels are positioned far away from the center.\n labelDirection: 'neutral',\n // If true the whole data is reversed including labels, the series order as well as the whole series data arrays.\n reverseData: false,\n // If true empty values will be ignored to avoid drawing unncessary slices and labels\n ignoreEmptyValues: false\n };\n\n /**\n * Determines SVG anchor position based on direction and center parameter\n *\n * @param center\n * @param label\n * @param direction\n * @return {string}\n */\n function determineAnchorPosition(center, label, direction) {\n var toTheRight = label.x > center.x;\n\n if(toTheRight && direction === 'explode' ||\n !toTheRight && direction === 'implode') {\n return 'start';\n } else if(toTheRight && direction === 'implode' ||\n !toTheRight && direction === 'explode') {\n return 'end';\n } else {\n return 'middle';\n }\n }\n\n /**\n * Creates the pie chart\n *\n * @param options\n */\n function createChart(options) {\n var data = Chartist.normalizeData(this.data);\n var seriesGroups = [],\n labelsGroup,\n chartRect,\n radius,\n labelRadius,\n totalDataSum,\n startAngle = options.startAngle;\n\n // Create SVG.js draw\n this.svg = Chartist.createSvg(this.container, options.width, options.height,options.donut ? options.classNames.chartDonut : options.classNames.chartPie);\n // Calculate charting rect\n chartRect = Chartist.createChartRect(this.svg, options, defaultOptions.padding);\n // Get biggest circle radius possible within chartRect\n radius = Math.min(chartRect.width() / 2, chartRect.height() / 2);\n // Calculate total of all series to get reference value or use total reference from optional options\n totalDataSum = options.total || data.normalized.series.reduce(function(previousValue, currentValue) {\n return previousValue + currentValue;\n }, 0);\n\n var donutWidth = Chartist.quantity(options.donutWidth);\n if (donutWidth.unit === '%') {\n donutWidth.value *= radius / 100;\n }\n\n // If this is a donut chart we need to adjust our radius to enable strokes to be drawn inside\n // Unfortunately this is not possible with the current SVG Spec\n // See this proposal for more details: http://lists.w3.org/Archives/Public/www-svg/2003Oct/0000.html\n radius -= options.donut && !options.donutSolid ? donutWidth.value / 2 : 0;\n\n // If labelPosition is set to `outside` or a donut chart is drawn then the label position is at the radius,\n // if regular pie chart it's half of the radius\n if(options.labelPosition === 'outside' || options.donut && !options.donutSolid) {\n labelRadius = radius;\n } else if(options.labelPosition === 'center') {\n // If labelPosition is center we start with 0 and will later wait for the labelOffset\n labelRadius = 0;\n } else if(options.donutSolid) {\n labelRadius = radius - donutWidth.value / 2;\n } else {\n // Default option is 'inside' where we use half the radius so the label will be placed in the center of the pie\n // slice\n labelRadius = radius / 2;\n }\n // Add the offset to the labelRadius where a negative offset means closed to the center of the chart\n labelRadius += options.labelOffset;\n\n // Calculate end angle based on total sum and current data value and offset with padding\n var center = {\n x: chartRect.x1 + chartRect.width() / 2,\n y: chartRect.y2 + chartRect.height() / 2\n };\n\n // Check if there is only one non-zero value in the series array.\n var hasSingleValInSeries = data.raw.series.filter(function(val) {\n return val.hasOwnProperty('value') ? val.value !== 0 : val !== 0;\n }).length === 1;\n\n // Creating the series groups\n data.raw.series.forEach(function(series, index) {\n seriesGroups[index] = this.svg.elem('g', null, null);\n }.bind(this));\n //if we need to show labels we create the label group now\n if(options.showLabel) {\n labelsGroup = this.svg.elem('g', null, null);\n }\n\n // Draw the series\n // initialize series groups\n data.raw.series.forEach(function(series, index) {\n // If current value is zero and we are ignoring empty values then skip to next value\n if (data.normalized.series[index] === 0 && options.ignoreEmptyValues) return;\n\n // If the series is an object and contains a name or meta data we add a custom attribute\n seriesGroups[index].attr({\n 'ct:series-name': series.name\n });\n\n // Use series class from series data or if not set generate one\n seriesGroups[index].addClass([\n options.classNames.series,\n (series.className || options.classNames.series + '-' + Chartist.alphaNumerate(index))\n ].join(' '));\n\n // If the whole dataset is 0 endAngle should be zero. Can't divide by 0.\n var endAngle = (totalDataSum > 0 ? startAngle + data.normalized.series[index] / totalDataSum * 360 : 0);\n\n // Use slight offset so there are no transparent hairline issues\n var overlappigStartAngle = Math.max(0, startAngle - (index === 0 || hasSingleValInSeries ? 0 : 0.2));\n\n // If we need to draw the arc for all 360 degrees we need to add a hack where we close the circle\n // with Z and use 359.99 degrees\n if(endAngle - overlappigStartAngle >= 359.99) {\n endAngle = overlappigStartAngle + 359.99;\n }\n\n var start = Chartist.polarToCartesian(center.x, center.y, radius, overlappigStartAngle),\n end = Chartist.polarToCartesian(center.x, center.y, radius, endAngle);\n\n var innerStart,\n innerEnd,\n donutSolidRadius;\n\n // Create a new path element for the pie chart. If this isn't a donut chart we should close the path for a correct stroke\n var path = new Chartist.Svg.Path(!options.donut || options.donutSolid)\n .move(end.x, end.y)\n .arc(radius, radius, 0, endAngle - startAngle > 180, 0, start.x, start.y);\n\n // If regular pie chart (no donut) we add a line to the center of the circle for completing the pie\n if(!options.donut) {\n path.line(center.x, center.y);\n } else if (options.donutSolid) {\n donutSolidRadius = radius - donutWidth.value;\n innerStart = Chartist.polarToCartesian(center.x, center.y, donutSolidRadius, startAngle - (index === 0 || hasSingleValInSeries ? 0 : 0.2));\n innerEnd = Chartist.polarToCartesian(center.x, center.y, donutSolidRadius, endAngle);\n path.line(innerStart.x, innerStart.y);\n path.arc(donutSolidRadius, donutSolidRadius, 0, endAngle - startAngle > 180, 1, innerEnd.x, innerEnd.y);\n }\n\n // Create the SVG path\n // If this is a donut chart we add the donut class, otherwise just a regular slice\n var pathClassName = options.classNames.slicePie;\n if (options.donut) {\n pathClassName = options.classNames.sliceDonut;\n if (options.donutSolid) {\n pathClassName = options.classNames.sliceDonutSolid;\n }\n }\n var pathElement = seriesGroups[index].elem('path', {\n d: path.stringify()\n }, pathClassName);\n\n // Adding the pie series value to the path\n pathElement.attr({\n 'ct:value': data.normalized.series[index],\n 'ct:meta': Chartist.serialize(series.meta)\n });\n\n // If this is a donut, we add the stroke-width as style attribute\n if(options.donut && !options.donutSolid) {\n pathElement._node.style.strokeWidth = donutWidth.value + 'px';\n }\n\n // Fire off draw event\n this.eventEmitter.emit('draw', {\n type: 'slice',\n value: data.normalized.series[index],\n totalDataSum: totalDataSum,\n index: index,\n meta: series.meta,\n series: series,\n group: seriesGroups[index],\n element: pathElement,\n path: path.clone(),\n center: center,\n radius: radius,\n startAngle: startAngle,\n endAngle: endAngle\n });\n\n // If we need to show labels we need to add the label for this slice now\n if(options.showLabel) {\n var labelPosition;\n if(data.raw.series.length === 1) {\n // If we have only 1 series, we can position the label in the center of the pie\n labelPosition = {\n x: center.x,\n y: center.y\n };\n } else {\n // Position at the labelRadius distance from center and between start and end angle\n labelPosition = Chartist.polarToCartesian(\n center.x,\n center.y,\n labelRadius,\n startAngle + (endAngle - startAngle) / 2\n );\n }\n\n var rawValue;\n if(data.normalized.labels && !Chartist.isFalseyButZero(data.normalized.labels[index])) {\n rawValue = data.normalized.labels[index];\n } else {\n rawValue = data.normalized.series[index];\n }\n\n var interpolatedValue = options.labelInterpolationFnc(rawValue, index);\n\n if(interpolatedValue || interpolatedValue === 0) {\n var labelElement = labelsGroup.elem('text', {\n dx: labelPosition.x,\n dy: labelPosition.y,\n 'text-anchor': determineAnchorPosition(center, labelPosition, options.labelDirection)\n }, options.classNames.label).text('' + interpolatedValue);\n\n // Fire off draw event\n this.eventEmitter.emit('draw', {\n type: 'label',\n index: index,\n group: labelsGroup,\n element: labelElement,\n text: '' + interpolatedValue,\n x: labelPosition.x,\n y: labelPosition.y\n });\n }\n }\n\n // Set next startAngle to current endAngle.\n // (except for last slice)\n startAngle = endAngle;\n }.bind(this));\n\n this.eventEmitter.emit('created', {\n chartRect: chartRect,\n svg: this.svg,\n options: options\n });\n }\n\n /**\n * This method creates a new pie chart and returns an object that can be used to redraw the chart.\n *\n * @memberof Chartist.Pie\n * @param {String|Node} query A selector query string or directly a DOM element\n * @param {Object} data The data object in the pie chart needs to have a series property with a one dimensional data array. The values will be normalized against each other and don't necessarily need to be in percentage. The series property can also be an array of value objects that contain a value property and a className property to override the CSS class name for the series group.\n * @param {Object} [options] The options object with options that override the default options. Check the examples for a detailed list.\n * @param {Array} [responsiveOptions] Specify an array of responsive option arrays which are a media query and options object pair => [[mediaQueryString, optionsObject],[more...]]\n * @return {Object} An object with a version and an update method to manually redraw the chart\n *\n * @example\n * // Simple pie chart example with four series\n * new Chartist.Pie('.ct-chart', {\n * series: [10, 2, 4, 3]\n * });\n *\n * @example\n * // Drawing a donut chart\n * new Chartist.Pie('.ct-chart', {\n * series: [10, 2, 4, 3]\n * }, {\n * donut: true\n * });\n *\n * @example\n * // Using donut, startAngle and total to draw a gauge chart\n * new Chartist.Pie('.ct-chart', {\n * series: [20, 10, 30, 40]\n * }, {\n * donut: true,\n * donutWidth: 20,\n * startAngle: 270,\n * total: 200\n * });\n *\n * @example\n * // Drawing a pie chart with padding and labels that are outside the pie\n * new Chartist.Pie('.ct-chart', {\n * series: [20, 10, 30, 40]\n * }, {\n * chartPadding: 30,\n * labelOffset: 50,\n * labelDirection: 'explode'\n * });\n *\n * @example\n * // Overriding the class names for individual series as well as a name and meta data.\n * // The name will be written as ct:series-name attribute and the meta data will be serialized and written\n * // to a ct:meta attribute.\n * new Chartist.Pie('.ct-chart', {\n * series: [{\n * value: 20,\n * name: 'Series 1',\n * className: 'my-custom-class-one',\n * meta: 'Meta One'\n * }, {\n * value: 10,\n * name: 'Series 2',\n * className: 'my-custom-class-two',\n * meta: 'Meta Two'\n * }, {\n * value: 70,\n * name: 'Series 3',\n * className: 'my-custom-class-three',\n * meta: 'Meta Three'\n * }]\n * });\n */\n function Pie(query, data, options, responsiveOptions) {\n Chartist.Pie.super.constructor.call(this,\n query,\n data,\n defaultOptions,\n Chartist.extend({}, defaultOptions, options),\n responsiveOptions);\n }\n\n // Creating pie chart type in Chartist namespace\n Chartist.Pie = Chartist.Base.extend({\n constructor: Pie,\n createChart: createChart,\n determineAnchorPosition: determineAnchorPosition\n });\n\n}(this, Chartist));\n\nreturn Chartist;\n\n}));\n"]} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/css/daterangepicker.css b/INCUBATE/incubate/incubate/static/css/daterangepicker.css new file mode 100644 index 0000000000000000000000000000000000000000..a96380496ee3751027b56970d4b3398a7cd697ce --- /dev/null +++ b/INCUBATE/incubate/incubate/static/css/daterangepicker.css @@ -0,0 +1,410 @@ +.daterangepicker { + position: absolute; + color: inherit; + background-color: #fff; + border-radius: 4px; + border: 1px solid #ddd; + width: 278px; + max-width: none; + padding: 0; + margin-top: 7px; + top: 100px; + left: 20px; + z-index: 3001; + display: none; + font-family: arial; + font-size: 15px; + line-height: 1em; +} + +.daterangepicker:before, .daterangepicker:after { + position: absolute; + display: inline-block; + border-bottom-color: rgba(0, 0, 0, 0.2); + content: ''; +} + +.daterangepicker:before { + top: -7px; + border-right: 7px solid transparent; + border-left: 7px solid transparent; + border-bottom: 7px solid #ccc; +} + +.daterangepicker:after { + top: -6px; + border-right: 6px solid transparent; + border-bottom: 6px solid #fff; + border-left: 6px solid transparent; +} + +.daterangepicker.opensleft:before { + right: 9px; +} + +.daterangepicker.opensleft:after { + right: 10px; +} + +.daterangepicker.openscenter:before { + left: 0; + right: 0; + width: 0; + margin-left: auto; + margin-right: auto; +} + +.daterangepicker.openscenter:after { + left: 0; + right: 0; + width: 0; + margin-left: auto; + margin-right: auto; +} + +.daterangepicker.opensright:before { + left: 9px; +} + +.daterangepicker.opensright:after { + left: 10px; +} + +.daterangepicker.drop-up { + margin-top: -7px; +} + +.daterangepicker.drop-up:before { + top: initial; + bottom: -7px; + border-bottom: initial; + border-top: 7px solid #ccc; +} + +.daterangepicker.drop-up:after { + top: initial; + bottom: -6px; + border-bottom: initial; + border-top: 6px solid #fff; +} + +.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar { + float: none; +} + +.daterangepicker.single .drp-selected { + display: none; +} + +.daterangepicker.show-calendar .drp-calendar { + display: block; +} + +.daterangepicker.show-calendar .drp-buttons { + display: block; +} + +.daterangepicker.auto-apply .drp-buttons { + display: none; +} + +.daterangepicker .drp-calendar { + display: none; + max-width: 270px; +} + +.daterangepicker .drp-calendar.left { + padding: 8px 0 8px 8px; +} + +.daterangepicker .drp-calendar.right { + padding: 8px; +} + +.daterangepicker .drp-calendar.single .calendar-table { + border: none; +} + +.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span { + color: #fff; + border: solid black; + border-width: 0 2px 2px 0; + border-radius: 0; + display: inline-block; + padding: 3px; +} + +.daterangepicker .calendar-table .next span { + transform: rotate(-45deg); + -webkit-transform: rotate(-45deg); +} + +.daterangepicker .calendar-table .prev span { + transform: rotate(135deg); + -webkit-transform: rotate(135deg); +} + +.daterangepicker .calendar-table th, .daterangepicker .calendar-table td { + white-space: nowrap; + text-align: center; + vertical-align: middle; + min-width: 32px; + width: 32px; + height: 24px; + line-height: 24px; + font-size: 12px; + border-radius: 4px; + border: 1px solid transparent; + white-space: nowrap; + cursor: pointer; +} + +.daterangepicker .calendar-table { + border: 1px solid #fff; + border-radius: 4px; + background-color: #fff; +} + +.daterangepicker .calendar-table table { + width: 100%; + margin: 0; + border-spacing: 0; + border-collapse: collapse; +} + +.daterangepicker td.available:hover, .daterangepicker th.available:hover { + background-color: #eee; + border-color: transparent; + color: inherit; +} + +.daterangepicker td.week, .daterangepicker th.week { + font-size: 80%; + color: #ccc; +} + +.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date { + background-color: #fff; + border-color: transparent; + color: #999; +} + +.daterangepicker td.in-range { + background-color: #ebf4f8; + border-color: transparent; + color: #000; + border-radius: 0; +} + +.daterangepicker td.start-date { + border-radius: 4px 0 0 4px; +} + +.daterangepicker td.end-date { + border-radius: 0 4px 4px 0; +} + +.daterangepicker td.start-date.end-date { + border-radius: 4px; +} + +.daterangepicker td.active, .daterangepicker td.active:hover { + background-color: #357ebd; + border-color: transparent; + color: #fff; +} + +.daterangepicker th.month { + width: auto; +} + +.daterangepicker td.disabled, .daterangepicker option.disabled { + color: #999; + cursor: not-allowed; + text-decoration: line-through; +} + +.daterangepicker select.monthselect, .daterangepicker select.yearselect { + font-size: 12px; + padding: 1px; + height: auto; + margin: 0; + cursor: default; +} + +.daterangepicker select.monthselect { + margin-right: 2%; + width: 56%; +} + +.daterangepicker select.yearselect { + width: 40%; +} + +.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect { + width: 50px; + margin: 0 auto; + background: #eee; + border: 1px solid #eee; + padding: 2px; + outline: 0; + font-size: 12px; +} + +.daterangepicker .calendar-time { + text-align: center; + margin: 4px auto 0 auto; + line-height: 30px; + position: relative; +} + +.daterangepicker .calendar-time select.disabled { + color: #ccc; + cursor: not-allowed; +} + +.daterangepicker .drp-buttons { + clear: both; + text-align: right; + padding: 8px; + border-top: 1px solid #ddd; + display: none; + line-height: 12px; + vertical-align: middle; +} + +.daterangepicker .drp-selected { + display: inline-block; + font-size: 12px; + padding-right: 8px; +} + +.daterangepicker .drp-buttons .btn { + margin-left: 8px; + font-size: 12px; + font-weight: bold; + padding: 4px 8px; +} + +.daterangepicker.show-ranges.single.rtl .drp-calendar.left { + border-right: 1px solid #ddd; +} + +.daterangepicker.show-ranges.single.ltr .drp-calendar.left { + border-left: 1px solid #ddd; +} + +.daterangepicker.show-ranges.rtl .drp-calendar.right { + border-right: 1px solid #ddd; +} + +.daterangepicker.show-ranges.ltr .drp-calendar.left { + border-left: 1px solid #ddd; +} + +.daterangepicker .ranges { + float: none; + text-align: left; + margin: 0; +} + +.daterangepicker.show-calendar .ranges { + margin-top: 8px; +} + +.daterangepicker .ranges ul { + list-style: none; + margin: 0 auto; + padding: 0; + width: 100%; +} + +.daterangepicker .ranges li { + font-size: 12px; + padding: 8px 12px; + cursor: pointer; +} + +.daterangepicker .ranges li:hover { + background-color: #eee; +} + +.daterangepicker .ranges li.active { + background-color: #08c; + color: #fff; +} + +/* Larger Screen Styling */ +@media (min-width: 564px) { + .daterangepicker { + width: auto; + } + + .daterangepicker .ranges ul { + width: 140px; + } + + .daterangepicker.single .ranges ul { + width: 100%; + } + + .daterangepicker.single .drp-calendar.left { + clear: none; + } + + .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar { + float: left; + } + + .daterangepicker { + direction: ltr; + text-align: left; + } + + .daterangepicker .drp-calendar.left { + clear: left; + margin-right: 0; + } + + .daterangepicker .drp-calendar.left .calendar-table { + border-right: none; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + + .daterangepicker .drp-calendar.right { + margin-left: 0; + } + + .daterangepicker .drp-calendar.right .calendar-table { + border-left: none; + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + + .daterangepicker .drp-calendar.left .calendar-table { + padding-right: 8px; + } + + .daterangepicker .ranges, .daterangepicker .drp-calendar { + float: left; + } +} + +@media (min-width: 730px) { + .daterangepicker .ranges { + width: auto; + } + + .daterangepicker .ranges { + float: left; + } + + .daterangepicker.rtl .ranges { + float: right; + } + + .daterangepicker .drp-calendar.left { + clear: none !important; + } +} diff --git a/INCUBATE/incubate/incubate/static/css/daterangepicker.js b/INCUBATE/incubate/incubate/static/css/daterangepicker.js new file mode 100644 index 0000000000000000000000000000000000000000..6aac9665b5631cf3398d1cda5ef8d40f36f210cc --- /dev/null +++ b/INCUBATE/incubate/incubate/static/css/daterangepicker.js @@ -0,0 +1,1565 @@ +/** +* @version: 3.0.5 +* @author: Dan Grossman http://www.dangrossman.info/ +* @copyright: Copyright (c) 2012-2019 Dan Grossman. All rights reserved. +* @license: Licensed under the MIT license. See http://www.opensource.org/licenses/mit-license.php +* @website: http://www.daterangepicker.com/ +*/ +// Following the UMD template https://github.com/umdjs/umd/blob/master/templates/returnExportsGlobal.js +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Make globaly available as well + define(['moment', 'jquery'], function (moment, jquery) { + if (!jquery.fn) jquery.fn = {}; // webpack server rendering + if (typeof moment !== 'function' && moment.default) moment = moment.default + return factory(moment, jquery); + }); + } else if (typeof module === 'object' && module.exports) { + // Node / Browserify + //isomorphic issue + var jQuery = (typeof window != 'undefined') ? window.jQuery : undefined; + if (!jQuery) { + jQuery = require('jquery'); + if (!jQuery.fn) jQuery.fn = {}; + } + var moment = (typeof window != 'undefined' && typeof window.moment != 'undefined') ? window.moment : require('moment'); + module.exports = factory(moment, jQuery); + } else { + // Browser globals + root.daterangepicker = factory(root.moment, root.jQuery); + } +}(this, function(moment, $) { + var DateRangePicker = function(element, options, cb) { + + //default settings for options + this.parentEl = 'body'; + this.element = $(element); + this.startDate = moment().startOf('day'); + this.endDate = moment().endOf('day'); + this.minDate = false; + this.maxDate = false; + this.maxSpan = false; + this.autoApply = false; + this.singleDatePicker = false; + this.showDropdowns = false; + this.minYear = moment().subtract(100, 'year').format('YYYY'); + this.maxYear = moment().add(100, 'year').format('YYYY'); + this.showWeekNumbers = false; + this.showISOWeekNumbers = false; + this.showCustomRangeLabel = true; + this.timePicker = false; + this.timePicker24Hour = false; + this.timePickerIncrement = 1; + this.timePickerSeconds = false; + this.linkedCalendars = true; + this.autoUpdateInput = true; + this.alwaysShowCalendars = false; + this.ranges = {}; + + this.opens = 'right'; + if (this.element.hasClass('pull-right')) + this.opens = 'left'; + + this.drops = 'down'; + if (this.element.hasClass('dropup')) + this.drops = 'up'; + + this.buttonClasses = 'btn btn-sm'; + this.applyButtonClasses = 'btn-primary'; + this.cancelButtonClasses = 'btn-default'; + + this.locale = { + direction: 'ltr', + format: moment.localeData().longDateFormat('L'), + separator: ' - ', + applyLabel: 'Apply', + cancelLabel: 'Cancel', + weekLabel: 'W', + customRangeLabel: 'Custom Range', + daysOfWeek: moment.weekdaysMin(), + monthNames: moment.monthsShort(), + firstDay: moment.localeData().firstDayOfWeek() + }; + + this.callback = function() { }; + + //some state information + this.isShowing = false; + this.leftCalendar = {}; + this.rightCalendar = {}; + + //custom options from user + if (typeof options !== 'object' || options === null) + options = {}; + + //allow setting options with data attributes + //data-api options will be overwritten with custom javascript options + options = $.extend(this.element.data(), options); + + //html template for the picker UI + if (typeof options.template !== 'string' && !(options.template instanceof $)) + options.template = + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '' + + '' + + ' ' + + '
' + + '
'; + + this.parentEl = (options.parentEl && $(options.parentEl).length) ? $(options.parentEl) : $(this.parentEl); + this.container = $(options.template).appendTo(this.parentEl); + + // + // handle all the possible options overriding defaults + // + + if (typeof options.locale === 'object') { + + if (typeof options.locale.direction === 'string') + this.locale.direction = options.locale.direction; + + if (typeof options.locale.format === 'string') + this.locale.format = options.locale.format; + + if (typeof options.locale.separator === 'string') + this.locale.separator = options.locale.separator; + + if (typeof options.locale.daysOfWeek === 'object') + this.locale.daysOfWeek = options.locale.daysOfWeek.slice(); + + if (typeof options.locale.monthNames === 'object') + this.locale.monthNames = options.locale.monthNames.slice(); + + if (typeof options.locale.firstDay === 'number') + this.locale.firstDay = options.locale.firstDay; + + if (typeof options.locale.applyLabel === 'string') + this.locale.applyLabel = options.locale.applyLabel; + + if (typeof options.locale.cancelLabel === 'string') + this.locale.cancelLabel = options.locale.cancelLabel; + + if (typeof options.locale.weekLabel === 'string') + this.locale.weekLabel = options.locale.weekLabel; + + if (typeof options.locale.customRangeLabel === 'string'){ + //Support unicode chars in the custom range name. + var elem = document.createElement('textarea'); + elem.innerHTML = options.locale.customRangeLabel; + var rangeHtml = elem.value; + this.locale.customRangeLabel = rangeHtml; + } + } + this.container.addClass(this.locale.direction); + + if (typeof options.startDate === 'string') + this.startDate = moment(options.startDate, this.locale.format); + + if (typeof options.endDate === 'string') + this.endDate = moment(options.endDate, this.locale.format); + + if (typeof options.minDate === 'string') + this.minDate = moment(options.minDate, this.locale.format); + + if (typeof options.maxDate === 'string') + this.maxDate = moment(options.maxDate, this.locale.format); + + if (typeof options.startDate === 'object') + this.startDate = moment(options.startDate); + + if (typeof options.endDate === 'object') + this.endDate = moment(options.endDate); + + if (typeof options.minDate === 'object') + this.minDate = moment(options.minDate); + + if (typeof options.maxDate === 'object') + this.maxDate = moment(options.maxDate); + + // sanity check for bad options + if (this.minDate && this.startDate.isBefore(this.minDate)) + this.startDate = this.minDate.clone(); + + // sanity check for bad options + if (this.maxDate && this.endDate.isAfter(this.maxDate)) + this.endDate = this.maxDate.clone(); + + if (typeof options.applyButtonClasses === 'string') + this.applyButtonClasses = options.applyButtonClasses; + + if (typeof options.applyClass === 'string') //backwards compat + this.applyButtonClasses = options.applyClass; + + if (typeof options.cancelButtonClasses === 'string') + this.cancelButtonClasses = options.cancelButtonClasses; + + if (typeof options.cancelClass === 'string') //backwards compat + this.cancelButtonClasses = options.cancelClass; + + if (typeof options.maxSpan === 'object') + this.maxSpan = options.maxSpan; + + if (typeof options.dateLimit === 'object') //backwards compat + this.maxSpan = options.dateLimit; + + if (typeof options.opens === 'string') + this.opens = options.opens; + + if (typeof options.drops === 'string') + this.drops = options.drops; + + if (typeof options.showWeekNumbers === 'boolean') + this.showWeekNumbers = options.showWeekNumbers; + + if (typeof options.showISOWeekNumbers === 'boolean') + this.showISOWeekNumbers = options.showISOWeekNumbers; + + if (typeof options.buttonClasses === 'string') + this.buttonClasses = options.buttonClasses; + + if (typeof options.buttonClasses === 'object') + this.buttonClasses = options.buttonClasses.join(' '); + + if (typeof options.showDropdowns === 'boolean') + this.showDropdowns = options.showDropdowns; + + if (typeof options.minYear === 'number') + this.minYear = options.minYear; + + if (typeof options.maxYear === 'number') + this.maxYear = options.maxYear; + + if (typeof options.showCustomRangeLabel === 'boolean') + this.showCustomRangeLabel = options.showCustomRangeLabel; + + if (typeof options.singleDatePicker === 'boolean') { + this.singleDatePicker = options.singleDatePicker; + if (this.singleDatePicker) + this.endDate = this.startDate.clone(); + } + + if (typeof options.timePicker === 'boolean') + this.timePicker = options.timePicker; + + if (typeof options.timePickerSeconds === 'boolean') + this.timePickerSeconds = options.timePickerSeconds; + + if (typeof options.timePickerIncrement === 'number') + this.timePickerIncrement = options.timePickerIncrement; + + if (typeof options.timePicker24Hour === 'boolean') + this.timePicker24Hour = options.timePicker24Hour; + + if (typeof options.autoApply === 'boolean') + this.autoApply = options.autoApply; + + if (typeof options.autoUpdateInput === 'boolean') + this.autoUpdateInput = options.autoUpdateInput; + + if (typeof options.linkedCalendars === 'boolean') + this.linkedCalendars = options.linkedCalendars; + + if (typeof options.isInvalidDate === 'function') + this.isInvalidDate = options.isInvalidDate; + + if (typeof options.isCustomDate === 'function') + this.isCustomDate = options.isCustomDate; + + if (typeof options.alwaysShowCalendars === 'boolean') + this.alwaysShowCalendars = options.alwaysShowCalendars; + + // update day names order to firstDay + if (this.locale.firstDay != 0) { + var iterator = this.locale.firstDay; + while (iterator > 0) { + this.locale.daysOfWeek.push(this.locale.daysOfWeek.shift()); + iterator--; + } + } + + var start, end, range; + + //if no start/end dates set, check if an input element contains initial values + if (typeof options.startDate === 'undefined' && typeof options.endDate === 'undefined') { + if ($(this.element).is(':text')) { + var val = $(this.element).val(), + split = val.split(this.locale.separator); + + start = end = null; + + if (split.length == 2) { + start = moment(split[0], this.locale.format); + end = moment(split[1], this.locale.format); + } else if (this.singleDatePicker && val !== "") { + start = moment(val, this.locale.format); + end = moment(val, this.locale.format); + } + if (start !== null && end !== null) { + this.setStartDate(start); + this.setEndDate(end); + } + } + } + + if (typeof options.ranges === 'object') { + for (range in options.ranges) { + + if (typeof options.ranges[range][0] === 'string') + start = moment(options.ranges[range][0], this.locale.format); + else + start = moment(options.ranges[range][0]); + + if (typeof options.ranges[range][1] === 'string') + end = moment(options.ranges[range][1], this.locale.format); + else + end = moment(options.ranges[range][1]); + + // If the start or end date exceed those allowed by the minDate or maxSpan + // options, shorten the range to the allowable period. + if (this.minDate && start.isBefore(this.minDate)) + start = this.minDate.clone(); + + var maxDate = this.maxDate; + if (this.maxSpan && maxDate && start.clone().add(this.maxSpan).isAfter(maxDate)) + maxDate = start.clone().add(this.maxSpan); + if (maxDate && end.isAfter(maxDate)) + end = maxDate.clone(); + + // If the end of the range is before the minimum or the start of the range is + // after the maximum, don't display this range option at all. + if ((this.minDate && end.isBefore(this.minDate, this.timepicker ? 'minute' : 'day')) + || (maxDate && start.isAfter(maxDate, this.timepicker ? 'minute' : 'day'))) + continue; + + //Support unicode chars in the range names. + var elem = document.createElement('textarea'); + elem.innerHTML = range; + var rangeHtml = elem.value; + + this.ranges[rangeHtml] = [start, end]; + } + + var list = '
    '; + for (range in this.ranges) { + list += '
  • ' + range + '
  • '; + } + if (this.showCustomRangeLabel) { + list += '
  • ' + this.locale.customRangeLabel + '
  • '; + } + list += '
'; + this.container.find('.ranges').prepend(list); + } + + if (typeof cb === 'function') { + this.callback = cb; + } + + if (!this.timePicker) { + this.startDate = this.startDate.startOf('day'); + this.endDate = this.endDate.endOf('day'); + this.container.find('.calendar-time').hide(); + } + + //can't be used together for now + if (this.timePicker && this.autoApply) + this.autoApply = false; + + if (this.autoApply) { + this.container.addClass('auto-apply'); + } + + if (typeof options.ranges === 'object') + this.container.addClass('show-ranges'); + + if (this.singleDatePicker) { + this.container.addClass('single'); + this.container.find('.drp-calendar.left').addClass('single'); + this.container.find('.drp-calendar.left').show(); + this.container.find('.drp-calendar.right').hide(); + if (!this.timePicker) { + this.container.addClass('auto-apply'); + } + } + + if ((typeof options.ranges === 'undefined' && !this.singleDatePicker) || this.alwaysShowCalendars) { + this.container.addClass('show-calendar'); + } + + this.container.addClass('opens' + this.opens); + + //apply CSS classes and labels to buttons + this.container.find('.applyBtn, .cancelBtn').addClass(this.buttonClasses); + if (this.applyButtonClasses.length) + this.container.find('.applyBtn').addClass(this.applyButtonClasses); + if (this.cancelButtonClasses.length) + this.container.find('.cancelBtn').addClass(this.cancelButtonClasses); + this.container.find('.applyBtn').html(this.locale.applyLabel); + this.container.find('.cancelBtn').html(this.locale.cancelLabel); + + // + // event listeners + // + + this.container.find('.drp-calendar') + .on('click.daterangepicker', '.prev', $.proxy(this.clickPrev, this)) + .on('click.daterangepicker', '.next', $.proxy(this.clickNext, this)) + .on('mousedown.daterangepicker', 'td.available', $.proxy(this.clickDate, this)) + .on('mouseenter.daterangepicker', 'td.available', $.proxy(this.hoverDate, this)) + .on('change.daterangepicker', 'select.yearselect', $.proxy(this.monthOrYearChanged, this)) + .on('change.daterangepicker', 'select.monthselect', $.proxy(this.monthOrYearChanged, this)) + .on('change.daterangepicker', 'select.hourselect,select.minuteselect,select.secondselect,select.ampmselect', $.proxy(this.timeChanged, this)) + + this.container.find('.ranges') + .on('click.daterangepicker', 'li', $.proxy(this.clickRange, this)) + + this.container.find('.drp-buttons') + .on('click.daterangepicker', 'button.applyBtn', $.proxy(this.clickApply, this)) + .on('click.daterangepicker', 'button.cancelBtn', $.proxy(this.clickCancel, this)) + + if (this.element.is('input') || this.element.is('button')) { + this.element.on({ + 'click.daterangepicker': $.proxy(this.show, this), + 'focus.daterangepicker': $.proxy(this.show, this), + 'keyup.daterangepicker': $.proxy(this.elementChanged, this), + 'keydown.daterangepicker': $.proxy(this.keydown, this) //IE 11 compatibility + }); + } else { + this.element.on('click.daterangepicker', $.proxy(this.toggle, this)); + this.element.on('keydown.daterangepicker', $.proxy(this.toggle, this)); + } + + // + // if attached to a text input, set the initial value + // + + this.updateElement(); + + }; + + DateRangePicker.prototype = { + + constructor: DateRangePicker, + + setStartDate: function(startDate) { + if (typeof startDate === 'string') + this.startDate = moment(startDate, this.locale.format); + + if (typeof startDate === 'object') + this.startDate = moment(startDate); + + if (!this.timePicker) + this.startDate = this.startDate.startOf('day'); + + if (this.timePicker && this.timePickerIncrement) + this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); + + if (this.minDate && this.startDate.isBefore(this.minDate)) { + this.startDate = this.minDate.clone(); + if (this.timePicker && this.timePickerIncrement) + this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); + } + + if (this.maxDate && this.startDate.isAfter(this.maxDate)) { + this.startDate = this.maxDate.clone(); + if (this.timePicker && this.timePickerIncrement) + this.startDate.minute(Math.floor(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); + } + + if (!this.isShowing) + this.updateElement(); + + this.updateMonthsInView(); + }, + + setEndDate: function(endDate) { + if (typeof endDate === 'string') + this.endDate = moment(endDate, this.locale.format); + + if (typeof endDate === 'object') + this.endDate = moment(endDate); + + if (!this.timePicker) + this.endDate = this.endDate.endOf('day'); + + if (this.timePicker && this.timePickerIncrement) + this.endDate.minute(Math.round(this.endDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); + + if (this.endDate.isBefore(this.startDate)) + this.endDate = this.startDate.clone(); + + if (this.maxDate && this.endDate.isAfter(this.maxDate)) + this.endDate = this.maxDate.clone(); + + if (this.maxSpan && this.startDate.clone().add(this.maxSpan).isBefore(this.endDate)) + this.endDate = this.startDate.clone().add(this.maxSpan); + + this.previousRightTime = this.endDate.clone(); + + this.container.find('.drp-selected').html(this.startDate.format(this.locale.format) + this.locale.separator + this.endDate.format(this.locale.format)); + + if (!this.isShowing) + this.updateElement(); + + this.updateMonthsInView(); + }, + + isInvalidDate: function() { + return false; + }, + + isCustomDate: function() { + return false; + }, + + updateView: function() { + if (this.timePicker) { + this.renderTimePicker('left'); + this.renderTimePicker('right'); + if (!this.endDate) { + this.container.find('.right .calendar-time select').attr('disabled', 'disabled').addClass('disabled'); + } else { + this.container.find('.right .calendar-time select').removeAttr('disabled').removeClass('disabled'); + } + } + if (this.endDate) + this.container.find('.drp-selected').html(this.startDate.format(this.locale.format) + this.locale.separator + this.endDate.format(this.locale.format)); + this.updateMonthsInView(); + this.updateCalendars(); + this.updateFormInputs(); + }, + + updateMonthsInView: function() { + if (this.endDate) { + + //if both dates are visible already, do nothing + if (!this.singleDatePicker && this.leftCalendar.month && this.rightCalendar.month && + (this.startDate.format('YYYY-MM') == this.leftCalendar.month.format('YYYY-MM') || this.startDate.format('YYYY-MM') == this.rightCalendar.month.format('YYYY-MM')) + && + (this.endDate.format('YYYY-MM') == this.leftCalendar.month.format('YYYY-MM') || this.endDate.format('YYYY-MM') == this.rightCalendar.month.format('YYYY-MM')) + ) { + return; + } + + this.leftCalendar.month = this.startDate.clone().date(2); + if (!this.linkedCalendars && (this.endDate.month() != this.startDate.month() || this.endDate.year() != this.startDate.year())) { + this.rightCalendar.month = this.endDate.clone().date(2); + } else { + this.rightCalendar.month = this.startDate.clone().date(2).add(1, 'month'); + } + + } else { + if (this.leftCalendar.month.format('YYYY-MM') != this.startDate.format('YYYY-MM') && this.rightCalendar.month.format('YYYY-MM') != this.startDate.format('YYYY-MM')) { + this.leftCalendar.month = this.startDate.clone().date(2); + this.rightCalendar.month = this.startDate.clone().date(2).add(1, 'month'); + } + } + if (this.maxDate && this.linkedCalendars && !this.singleDatePicker && this.rightCalendar.month > this.maxDate) { + this.rightCalendar.month = this.maxDate.clone().date(2); + this.leftCalendar.month = this.maxDate.clone().date(2).subtract(1, 'month'); + } + }, + + updateCalendars: function() { + + if (this.timePicker) { + var hour, minute, second; + if (this.endDate) { + hour = parseInt(this.container.find('.left .hourselect').val(), 10); + minute = parseInt(this.container.find('.left .minuteselect').val(), 10); + if (isNaN(minute)) { + minute = parseInt(this.container.find('.left .minuteselect option:last').val(), 10); + } + second = this.timePickerSeconds ? parseInt(this.container.find('.left .secondselect').val(), 10) : 0; + if (!this.timePicker24Hour) { + var ampm = this.container.find('.left .ampmselect').val(); + if (ampm === 'PM' && hour < 12) + hour += 12; + if (ampm === 'AM' && hour === 12) + hour = 0; + } + } else { + hour = parseInt(this.container.find('.right .hourselect').val(), 10); + minute = parseInt(this.container.find('.right .minuteselect').val(), 10); + if (isNaN(minute)) { + minute = parseInt(this.container.find('.right .minuteselect option:last').val(), 10); + } + second = this.timePickerSeconds ? parseInt(this.container.find('.right .secondselect').val(), 10) : 0; + if (!this.timePicker24Hour) { + var ampm = this.container.find('.right .ampmselect').val(); + if (ampm === 'PM' && hour < 12) + hour += 12; + if (ampm === 'AM' && hour === 12) + hour = 0; + } + } + this.leftCalendar.month.hour(hour).minute(minute).second(second); + this.rightCalendar.month.hour(hour).minute(minute).second(second); + } + + this.renderCalendar('left'); + this.renderCalendar('right'); + + //highlight any predefined range matching the current start and end dates + this.container.find('.ranges li').removeClass('active'); + if (this.endDate == null) return; + + this.calculateChosenLabel(); + }, + + renderCalendar: function(side) { + + // + // Build the matrix of dates that will populate the calendar + // + + var calendar = side == 'left' ? this.leftCalendar : this.rightCalendar; + var month = calendar.month.month(); + var year = calendar.month.year(); + var hour = calendar.month.hour(); + var minute = calendar.month.minute(); + var second = calendar.month.second(); + var daysInMonth = moment([year, month]).daysInMonth(); + var firstDay = moment([year, month, 1]); + var lastDay = moment([year, month, daysInMonth]); + var lastMonth = moment(firstDay).subtract(1, 'month').month(); + var lastYear = moment(firstDay).subtract(1, 'month').year(); + var daysInLastMonth = moment([lastYear, lastMonth]).daysInMonth(); + var dayOfWeek = firstDay.day(); + + //initialize a 6 rows x 7 columns array for the calendar + var calendar = []; + calendar.firstDay = firstDay; + calendar.lastDay = lastDay; + + for (var i = 0; i < 6; i++) { + calendar[i] = []; + } + + //populate the calendar with date objects + var startDay = daysInLastMonth - dayOfWeek + this.locale.firstDay + 1; + if (startDay > daysInLastMonth) + startDay -= 7; + + if (dayOfWeek == this.locale.firstDay) + startDay = daysInLastMonth - 6; + + var curDate = moment([lastYear, lastMonth, startDay, 12, minute, second]); + + var col, row; + for (var i = 0, col = 0, row = 0; i < 42; i++, col++, curDate = moment(curDate).add(24, 'hour')) { + if (i > 0 && col % 7 === 0) { + col = 0; + row++; + } + calendar[row][col] = curDate.clone().hour(hour).minute(minute).second(second); + curDate.hour(12); + + if (this.minDate && calendar[row][col].format('YYYY-MM-DD') == this.minDate.format('YYYY-MM-DD') && calendar[row][col].isBefore(this.minDate) && side == 'left') { + calendar[row][col] = this.minDate.clone(); + } + + if (this.maxDate && calendar[row][col].format('YYYY-MM-DD') == this.maxDate.format('YYYY-MM-DD') && calendar[row][col].isAfter(this.maxDate) && side == 'right') { + calendar[row][col] = this.maxDate.clone(); + } + + } + + //make the calendar object available to hoverDate/clickDate + if (side == 'left') { + this.leftCalendar.calendar = calendar; + } else { + this.rightCalendar.calendar = calendar; + } + + // + // Display the calendar + // + + var minDate = side == 'left' ? this.minDate : this.startDate; + var maxDate = this.maxDate; + var selected = side == 'left' ? this.startDate : this.endDate; + var arrow = this.locale.direction == 'ltr' ? {left: 'chevron-left', right: 'chevron-right'} : {left: 'chevron-right', right: 'chevron-left'}; + + var html = ''; + html += ''; + html += ''; + + // add empty cell for week number + if (this.showWeekNumbers || this.showISOWeekNumbers) + html += ''; + + if ((!minDate || minDate.isBefore(calendar.firstDay)) && (!this.linkedCalendars || side == 'left')) { + html += ''; + } else { + html += ''; + } + + var dateHtml = this.locale.monthNames[calendar[1][1].month()] + calendar[1][1].format(" YYYY"); + + if (this.showDropdowns) { + var currentMonth = calendar[1][1].month(); + var currentYear = calendar[1][1].year(); + var maxYear = (maxDate && maxDate.year()) || (this.maxYear); + var minYear = (minDate && minDate.year()) || (this.minYear); + var inMinYear = currentYear == minYear; + var inMaxYear = currentYear == maxYear; + + var monthHtml = '"; + + var yearHtml = ''; + + dateHtml = monthHtml + yearHtml; + } + + html += ''; + if ((!maxDate || maxDate.isAfter(calendar.lastDay)) && (!this.linkedCalendars || side == 'right' || this.singleDatePicker)) { + html += ''; + } else { + html += ''; + } + + html += ''; + html += ''; + + // add week number label + if (this.showWeekNumbers || this.showISOWeekNumbers) + html += ''; + + $.each(this.locale.daysOfWeek, function(index, dayOfWeek) { + html += ''; + }); + + html += ''; + html += ''; + html += ''; + + //adjust maxDate to reflect the maxSpan setting in order to + //grey out end dates beyond the maxSpan + if (this.endDate == null && this.maxSpan) { + var maxLimit = this.startDate.clone().add(this.maxSpan).endOf('day'); + if (!maxDate || maxLimit.isBefore(maxDate)) { + maxDate = maxLimit; + } + } + + for (var row = 0; row < 6; row++) { + html += ''; + + // add week number + if (this.showWeekNumbers) + html += ''; + else if (this.showISOWeekNumbers) + html += ''; + + for (var col = 0; col < 7; col++) { + + var classes = []; + + //highlight today's date + if (calendar[row][col].isSame(new Date(), "day")) + classes.push('today'); + + //highlight weekends + if (calendar[row][col].isoWeekday() > 5) + classes.push('weekend'); + + //grey out the dates in other months displayed at beginning and end of this calendar + if (calendar[row][col].month() != calendar[1][1].month()) + classes.push('off', 'ends'); + + //don't allow selection of dates before the minimum date + if (this.minDate && calendar[row][col].isBefore(this.minDate, 'day')) + classes.push('off', 'disabled'); + + //don't allow selection of dates after the maximum date + if (maxDate && calendar[row][col].isAfter(maxDate, 'day')) + classes.push('off', 'disabled'); + + //don't allow selection of date if a custom function decides it's invalid + if (this.isInvalidDate(calendar[row][col])) + classes.push('off', 'disabled'); + + //highlight the currently selected start date + if (calendar[row][col].format('YYYY-MM-DD') == this.startDate.format('YYYY-MM-DD')) + classes.push('active', 'start-date'); + + //highlight the currently selected end date + if (this.endDate != null && calendar[row][col].format('YYYY-MM-DD') == this.endDate.format('YYYY-MM-DD')) + classes.push('active', 'end-date'); + + //highlight dates in-between the selected dates + if (this.endDate != null && calendar[row][col] > this.startDate && calendar[row][col] < this.endDate) + classes.push('in-range'); + + //apply custom classes for this date + var isCustom = this.isCustomDate(calendar[row][col]); + if (isCustom !== false) { + if (typeof isCustom === 'string') + classes.push(isCustom); + else + Array.prototype.push.apply(classes, isCustom); + } + + var cname = '', disabled = false; + for (var i = 0; i < classes.length; i++) { + cname += classes[i] + ' '; + if (classes[i] == 'disabled') + disabled = true; + } + if (!disabled) + cname += 'available'; + + html += ''; + + } + html += ''; + } + + html += ''; + html += '
' + dateHtml + '
' + this.locale.weekLabel + '' + dayOfWeek + '
' + calendar[row][0].week() + '' + calendar[row][0].isoWeek() + '' + calendar[row][col].date() + '
'; + + this.container.find('.drp-calendar.' + side + ' .calendar-table').html(html); + + }, + + renderTimePicker: function(side) { + + // Don't bother updating the time picker if it's currently disabled + // because an end date hasn't been clicked yet + if (side == 'right' && !this.endDate) return; + + var html, selected, minDate, maxDate = this.maxDate; + + if (this.maxSpan && (!this.maxDate || this.startDate.clone().add(this.maxSpan).isBefore(this.maxDate))) + maxDate = this.startDate.clone().add(this.maxSpan); + + if (side == 'left') { + selected = this.startDate.clone(); + minDate = this.minDate; + } else if (side == 'right') { + selected = this.endDate.clone(); + minDate = this.startDate; + + //Preserve the time already selected + var timeSelector = this.container.find('.drp-calendar.right .calendar-time'); + if (timeSelector.html() != '') { + + selected.hour(!isNaN(selected.hour()) ? selected.hour() : timeSelector.find('.hourselect option:selected').val()); + selected.minute(!isNaN(selected.minute()) ? selected.minute() : timeSelector.find('.minuteselect option:selected').val()); + selected.second(!isNaN(selected.second()) ? selected.second() : timeSelector.find('.secondselect option:selected').val()); + + if (!this.timePicker24Hour) { + var ampm = timeSelector.find('.ampmselect option:selected').val(); + if (ampm === 'PM' && selected.hour() < 12) + selected.hour(selected.hour() + 12); + if (ampm === 'AM' && selected.hour() === 12) + selected.hour(0); + } + + } + + if (selected.isBefore(this.startDate)) + selected = this.startDate.clone(); + + if (maxDate && selected.isAfter(maxDate)) + selected = maxDate.clone(); + + } + + // + // hours + // + + html = ' '; + + // + // minutes + // + + html += ': '; + + // + // seconds + // + + if (this.timePickerSeconds) { + html += ': '; + } + + // + // AM/PM + // + + if (!this.timePicker24Hour) { + html += ''; + } + + this.container.find('.drp-calendar.' + side + ' .calendar-time').html(html); + + }, + + updateFormInputs: function() { + + if (this.singleDatePicker || (this.endDate && (this.startDate.isBefore(this.endDate) || this.startDate.isSame(this.endDate)))) { + this.container.find('button.applyBtn').removeAttr('disabled'); + } else { + this.container.find('button.applyBtn').attr('disabled', 'disabled'); + } + + }, + + move: function() { + var parentOffset = { top: 0, left: 0 }, + containerTop; + var parentRightEdge = $(window).width(); + if (!this.parentEl.is('body')) { + parentOffset = { + top: this.parentEl.offset().top - this.parentEl.scrollTop(), + left: this.parentEl.offset().left - this.parentEl.scrollLeft() + }; + parentRightEdge = this.parentEl[0].clientWidth + this.parentEl.offset().left; + } + + if (this.drops == 'up') + containerTop = this.element.offset().top - this.container.outerHeight() - parentOffset.top; + else + containerTop = this.element.offset().top + this.element.outerHeight() - parentOffset.top; + + // Force the container to it's actual width + this.container.css({ + top: 0, + left: 0, + right: 'auto' + }); + var containerWidth = this.container.outerWidth(); + + this.container[this.drops == 'up' ? 'addClass' : 'removeClass']('drop-up'); + + if (this.opens == 'left') { + var containerRight = parentRightEdge - this.element.offset().left - this.element.outerWidth(); + if (containerWidth + containerRight > $(window).width()) { + this.container.css({ + top: containerTop, + right: 'auto', + left: 9 + }); + } else { + this.container.css({ + top: containerTop, + right: containerRight, + left: 'auto' + }); + } + } else if (this.opens == 'center') { + var containerLeft = this.element.offset().left - parentOffset.left + this.element.outerWidth() / 2 + - containerWidth / 2; + if (containerLeft < 0) { + this.container.css({ + top: containerTop, + right: 'auto', + left: 9 + }); + } else if (containerLeft + containerWidth > $(window).width()) { + this.container.css({ + top: containerTop, + left: 'auto', + right: 0 + }); + } else { + this.container.css({ + top: containerTop, + left: containerLeft, + right: 'auto' + }); + } + } else { + var containerLeft = this.element.offset().left - parentOffset.left; + if (containerLeft + containerWidth > $(window).width()) { + this.container.css({ + top: containerTop, + left: 'auto', + right: 0 + }); + } else { + this.container.css({ + top: containerTop, + left: containerLeft, + right: 'auto' + }); + } + } + }, + + show: function(e) { + if (this.isShowing) return; + + // Create a click proxy that is private to this instance of datepicker, for unbinding + this._outsideClickProxy = $.proxy(function(e) { this.outsideClick(e); }, this); + + // Bind global datepicker mousedown for hiding and + $(document) + .on('mousedown.daterangepicker', this._outsideClickProxy) + // also support mobile devices + .on('touchend.daterangepicker', this._outsideClickProxy) + // also explicitly play nice with Bootstrap dropdowns, which stopPropagation when clicking them + .on('click.daterangepicker', '[data-toggle=dropdown]', this._outsideClickProxy) + // and also close when focus changes to outside the picker (eg. tabbing between controls) + .on('focusin.daterangepicker', this._outsideClickProxy); + + // Reposition the picker if the window is resized while it's open + $(window).on('resize.daterangepicker', $.proxy(function(e) { this.move(e); }, this)); + + this.oldStartDate = this.startDate.clone(); + this.oldEndDate = this.endDate.clone(); + this.previousRightTime = this.endDate.clone(); + + this.updateView(); + this.container.show(); + this.move(); + this.element.trigger('show.daterangepicker', this); + this.isShowing = true; + }, + + hide: function(e) { + if (!this.isShowing) return; + + //incomplete date selection, revert to last values + if (!this.endDate) { + this.startDate = this.oldStartDate.clone(); + this.endDate = this.oldEndDate.clone(); + } + + //if a new date range was selected, invoke the user callback function + if (!this.startDate.isSame(this.oldStartDate) || !this.endDate.isSame(this.oldEndDate)) + this.callback(this.startDate.clone(), this.endDate.clone(), this.chosenLabel); + + //if picker is attached to a text input, update it + this.updateElement(); + + $(document).off('.daterangepicker'); + $(window).off('.daterangepicker'); + this.container.hide(); + this.element.trigger('hide.daterangepicker', this); + this.isShowing = false; + }, + + toggle: function(e) { + if (this.isShowing) { + this.hide(); + } else { + this.show(); + } + }, + + outsideClick: function(e) { + var target = $(e.target); + // if the page is clicked anywhere except within the daterangerpicker/button + // itself then call this.hide() + if ( + // ie modal dialog fix + e.type == "focusin" || + target.closest(this.element).length || + target.closest(this.container).length || + target.closest('.calendar-table').length + ) return; + this.hide(); + this.element.trigger('outsideClick.daterangepicker', this); + }, + + showCalendars: function() { + this.container.addClass('show-calendar'); + this.move(); + this.element.trigger('showCalendar.daterangepicker', this); + }, + + hideCalendars: function() { + this.container.removeClass('show-calendar'); + this.element.trigger('hideCalendar.daterangepicker', this); + }, + + clickRange: function(e) { + var label = e.target.getAttribute('data-range-key'); + this.chosenLabel = label; + if (label == this.locale.customRangeLabel) { + this.showCalendars(); + } else { + var dates = this.ranges[label]; + this.startDate = dates[0]; + this.endDate = dates[1]; + + if (!this.timePicker) { + this.startDate.startOf('day'); + this.endDate.endOf('day'); + } + + if (!this.alwaysShowCalendars) + this.hideCalendars(); + this.clickApply(); + } + }, + + clickPrev: function(e) { + var cal = $(e.target).parents('.drp-calendar'); + if (cal.hasClass('left')) { + this.leftCalendar.month.subtract(1, 'month'); + if (this.linkedCalendars) + this.rightCalendar.month.subtract(1, 'month'); + } else { + this.rightCalendar.month.subtract(1, 'month'); + } + this.updateCalendars(); + }, + + clickNext: function(e) { + var cal = $(e.target).parents('.drp-calendar'); + if (cal.hasClass('left')) { + this.leftCalendar.month.add(1, 'month'); + } else { + this.rightCalendar.month.add(1, 'month'); + if (this.linkedCalendars) + this.leftCalendar.month.add(1, 'month'); + } + this.updateCalendars(); + }, + + hoverDate: function(e) { + + //ignore dates that can't be selected + if (!$(e.target).hasClass('available')) return; + + var title = $(e.target).attr('data-title'); + var row = title.substr(1, 1); + var col = title.substr(3, 1); + var cal = $(e.target).parents('.drp-calendar'); + var date = cal.hasClass('left') ? this.leftCalendar.calendar[row][col] : this.rightCalendar.calendar[row][col]; + + //highlight the dates between the start date and the date being hovered as a potential end date + var leftCalendar = this.leftCalendar; + var rightCalendar = this.rightCalendar; + var startDate = this.startDate; + if (!this.endDate) { + this.container.find('.drp-calendar tbody td').each(function(index, el) { + + //skip week numbers, only look at dates + if ($(el).hasClass('week')) return; + + var title = $(el).attr('data-title'); + var row = title.substr(1, 1); + var col = title.substr(3, 1); + var cal = $(el).parents('.drp-calendar'); + var dt = cal.hasClass('left') ? leftCalendar.calendar[row][col] : rightCalendar.calendar[row][col]; + + if ((dt.isAfter(startDate) && dt.isBefore(date)) || dt.isSame(date, 'day')) { + $(el).addClass('in-range'); + } else { + $(el).removeClass('in-range'); + } + + }); + } + + }, + + clickDate: function(e) { + + if (!$(e.target).hasClass('available')) return; + + var title = $(e.target).attr('data-title'); + var row = title.substr(1, 1); + var col = title.substr(3, 1); + var cal = $(e.target).parents('.drp-calendar'); + var date = cal.hasClass('left') ? this.leftCalendar.calendar[row][col] : this.rightCalendar.calendar[row][col]; + + // + // this function needs to do a few things: + // * alternate between selecting a start and end date for the range, + // * if the time picker is enabled, apply the hour/minute/second from the select boxes to the clicked date + // * if autoapply is enabled, and an end date was chosen, apply the selection + // * if single date picker mode, and time picker isn't enabled, apply the selection immediately + // * if one of the inputs above the calendars was focused, cancel that manual input + // + + if (this.endDate || date.isBefore(this.startDate, 'day')) { //picking start + if (this.timePicker) { + var hour = parseInt(this.container.find('.left .hourselect').val(), 10); + if (!this.timePicker24Hour) { + var ampm = this.container.find('.left .ampmselect').val(); + if (ampm === 'PM' && hour < 12) + hour += 12; + if (ampm === 'AM' && hour === 12) + hour = 0; + } + var minute = parseInt(this.container.find('.left .minuteselect').val(), 10); + if (isNaN(minute)) { + minute = parseInt(this.container.find('.left .minuteselect option:last').val(), 10); + } + var second = this.timePickerSeconds ? parseInt(this.container.find('.left .secondselect').val(), 10) : 0; + date = date.clone().hour(hour).minute(minute).second(second); + } + this.endDate = null; + this.setStartDate(date.clone()); + } else if (!this.endDate && date.isBefore(this.startDate)) { + //special case: clicking the same date for start/end, + //but the time of the end date is before the start date + this.setEndDate(this.startDate.clone()); + } else { // picking end + if (this.timePicker) { + var hour = parseInt(this.container.find('.right .hourselect').val(), 10); + if (!this.timePicker24Hour) { + var ampm = this.container.find('.right .ampmselect').val(); + if (ampm === 'PM' && hour < 12) + hour += 12; + if (ampm === 'AM' && hour === 12) + hour = 0; + } + var minute = parseInt(this.container.find('.right .minuteselect').val(), 10); + if (isNaN(minute)) { + minute = parseInt(this.container.find('.right .minuteselect option:last').val(), 10); + } + var second = this.timePickerSeconds ? parseInt(this.container.find('.right .secondselect').val(), 10) : 0; + date = date.clone().hour(hour).minute(minute).second(second); + } + this.setEndDate(date.clone()); + if (this.autoApply) { + this.calculateChosenLabel(); + this.clickApply(); + } + } + + if (this.singleDatePicker) { + this.setEndDate(this.startDate); + if (!this.timePicker) + this.clickApply(); + } + + this.updateView(); + + //This is to cancel the blur event handler if the mouse was in one of the inputs + e.stopPropagation(); + + }, + + calculateChosenLabel: function () { + var customRange = true; + var i = 0; + for (var range in this.ranges) { + if (this.timePicker) { + var format = this.timePickerSeconds ? "YYYY-MM-DD HH:mm:ss" : "YYYY-MM-DD HH:mm"; + //ignore times when comparing dates if time picker seconds is not enabled + if (this.startDate.format(format) == this.ranges[range][0].format(format) && this.endDate.format(format) == this.ranges[range][1].format(format)) { + customRange = false; + this.chosenLabel = this.container.find('.ranges li:eq(' + i + ')').addClass('active').attr('data-range-key'); + break; + } + } else { + //ignore times when comparing dates if time picker is not enabled + if (this.startDate.format('YYYY-MM-DD') == this.ranges[range][0].format('YYYY-MM-DD') && this.endDate.format('YYYY-MM-DD') == this.ranges[range][1].format('YYYY-MM-DD')) { + customRange = false; + this.chosenLabel = this.container.find('.ranges li:eq(' + i + ')').addClass('active').attr('data-range-key'); + break; + } + } + i++; + } + if (customRange) { + if (this.showCustomRangeLabel) { + this.chosenLabel = this.container.find('.ranges li:last').addClass('active').attr('data-range-key'); + } else { + this.chosenLabel = null; + } + this.showCalendars(); + } + }, + + clickApply: function(e) { + this.hide(); + this.element.trigger('apply.daterangepicker', this); + }, + + clickCancel: function(e) { + this.startDate = this.oldStartDate; + this.endDate = this.oldEndDate; + this.hide(); + this.element.trigger('cancel.daterangepicker', this); + }, + + monthOrYearChanged: function(e) { + var isLeft = $(e.target).closest('.drp-calendar').hasClass('left'), + leftOrRight = isLeft ? 'left' : 'right', + cal = this.container.find('.drp-calendar.'+leftOrRight); + + // Month must be Number for new moment versions + var month = parseInt(cal.find('.monthselect').val(), 10); + var year = cal.find('.yearselect').val(); + + if (!isLeft) { + if (year < this.startDate.year() || (year == this.startDate.year() && month < this.startDate.month())) { + month = this.startDate.month(); + year = this.startDate.year(); + } + } + + if (this.minDate) { + if (year < this.minDate.year() || (year == this.minDate.year() && month < this.minDate.month())) { + month = this.minDate.month(); + year = this.minDate.year(); + } + } + + if (this.maxDate) { + if (year > this.maxDate.year() || (year == this.maxDate.year() && month > this.maxDate.month())) { + month = this.maxDate.month(); + year = this.maxDate.year(); + } + } + + if (isLeft) { + this.leftCalendar.month.month(month).year(year); + if (this.linkedCalendars) + this.rightCalendar.month = this.leftCalendar.month.clone().add(1, 'month'); + } else { + this.rightCalendar.month.month(month).year(year); + if (this.linkedCalendars) + this.leftCalendar.month = this.rightCalendar.month.clone().subtract(1, 'month'); + } + this.updateCalendars(); + }, + + timeChanged: function(e) { + + var cal = $(e.target).closest('.drp-calendar'), + isLeft = cal.hasClass('left'); + + var hour = parseInt(cal.find('.hourselect').val(), 10); + var minute = parseInt(cal.find('.minuteselect').val(), 10); + if (isNaN(minute)) { + minute = parseInt(cal.find('.minuteselect option:last').val(), 10); + } + var second = this.timePickerSeconds ? parseInt(cal.find('.secondselect').val(), 10) : 0; + + if (!this.timePicker24Hour) { + var ampm = cal.find('.ampmselect').val(); + if (ampm === 'PM' && hour < 12) + hour += 12; + if (ampm === 'AM' && hour === 12) + hour = 0; + } + + if (isLeft) { + var start = this.startDate.clone(); + start.hour(hour); + start.minute(minute); + start.second(second); + this.setStartDate(start); + if (this.singleDatePicker) { + this.endDate = this.startDate.clone(); + } else if (this.endDate && this.endDate.format('YYYY-MM-DD') == start.format('YYYY-MM-DD') && this.endDate.isBefore(start)) { + this.setEndDate(start.clone()); + } + } else if (this.endDate) { + var end = this.endDate.clone(); + end.hour(hour); + end.minute(minute); + end.second(second); + this.setEndDate(end); + } + + //update the calendars so all clickable dates reflect the new time component + this.updateCalendars(); + + //update the form inputs above the calendars with the new time + this.updateFormInputs(); + + //re-render the time pickers because changing one selection can affect what's enabled in another + this.renderTimePicker('left'); + this.renderTimePicker('right'); + + }, + + elementChanged: function() { + if (!this.element.is('input')) return; + if (!this.element.val().length) return; + + var dateString = this.element.val().split(this.locale.separator), + start = null, + end = null; + + if (dateString.length === 2) { + start = moment(dateString[0], this.locale.format); + end = moment(dateString[1], this.locale.format); + } + + if (this.singleDatePicker || start === null || end === null) { + start = moment(this.element.val(), this.locale.format); + end = start; + } + + if (!start.isValid() || !end.isValid()) return; + + this.setStartDate(start); + this.setEndDate(end); + this.updateView(); + }, + + keydown: function(e) { + //hide on tab or enter + if ((e.keyCode === 9) || (e.keyCode === 13)) { + this.hide(); + } + + //hide on esc and prevent propagation + if (e.keyCode === 27) { + e.preventDefault(); + e.stopPropagation(); + + this.hide(); + } + }, + + updateElement: function() { + if (this.element.is('input') && this.autoUpdateInput) { + var newValue = this.startDate.format(this.locale.format); + if (!this.singleDatePicker) { + newValue += this.locale.separator + this.endDate.format(this.locale.format); + } + if (newValue !== this.element.val()) { + this.element.val(newValue).trigger('change'); + } + } + }, + + remove: function() { + this.container.remove(); + this.element.off('.daterangepicker'); + this.element.removeData(); + } + + }; + + $.fn.daterangepicker = function(options, callback) { + var implementOptions = $.extend(true, {}, $.fn.daterangepicker.defaultOptions, options); + this.each(function() { + var el = $(this); + if (el.data('daterangepicker')) + el.data('daterangepicker').remove(); + el.data('daterangepicker', new DateRangePicker(el, implementOptions, callback)); + }); + return this; + }; + + return DateRangePicker; + +})); diff --git a/INCUBATE/incubate/incubate/static/css/flag-icon.min.css b/INCUBATE/incubate/incubate/static/css/flag-icon.min.css new file mode 100644 index 0000000000000000000000000000000000000000..72bd39a3aa63f49212d61ffbd3c013c855bab6b7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/css/flag-icon.min.css @@ -0,0 +1 @@ +.flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.flag-icon{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.flag-icon:before{content:"\00a0"}.flag-icon.flag-icon-squared{width:1em}.flag-icon-ad{background-image:url(../flags/4x3/ad.svg)}.flag-icon-ad.flag-icon-squared{background-image:url(../flags/1x1/ad.svg)}.flag-icon-ae{background-image:url(../flags/4x3/ae.svg)}.flag-icon-ae.flag-icon-squared{background-image:url(../flags/1x1/ae.svg)}.flag-icon-af{background-image:url(../flags/4x3/af.svg)}.flag-icon-af.flag-icon-squared{background-image:url(../flags/1x1/af.svg)}.flag-icon-ag{background-image:url(../flags/4x3/ag.svg)}.flag-icon-ag.flag-icon-squared{background-image:url(../flags/1x1/ag.svg)}.flag-icon-ai{background-image:url(../flags/4x3/ai.svg)}.flag-icon-ai.flag-icon-squared{background-image:url(../flags/1x1/ai.svg)}.flag-icon-al{background-image:url(../flags/4x3/al.svg)}.flag-icon-al.flag-icon-squared{background-image:url(../flags/1x1/al.svg)}.flag-icon-am{background-image:url(../flags/4x3/am.svg)}.flag-icon-am.flag-icon-squared{background-image:url(../flags/1x1/am.svg)}.flag-icon-ao{background-image:url(../flags/4x3/ao.svg)}.flag-icon-ao.flag-icon-squared{background-image:url(../flags/1x1/ao.svg)}.flag-icon-aq{background-image:url(../flags/4x3/aq.svg)}.flag-icon-aq.flag-icon-squared{background-image:url(../flags/1x1/aq.svg)}.flag-icon-ar{background-image:url(../flags/4x3/ar.svg)}.flag-icon-ar.flag-icon-squared{background-image:url(../flags/1x1/ar.svg)}.flag-icon-as{background-image:url(../flags/4x3/as.svg)}.flag-icon-as.flag-icon-squared{background-image:url(../flags/1x1/as.svg)}.flag-icon-at{background-image:url(../flags/4x3/at.svg)}.flag-icon-at.flag-icon-squared{background-image:url(../flags/1x1/at.svg)}.flag-icon-au{background-image:url(../flags/4x3/au.svg)}.flag-icon-au.flag-icon-squared{background-image:url(../flags/1x1/au.svg)}.flag-icon-aw{background-image:url(../flags/4x3/aw.svg)}.flag-icon-aw.flag-icon-squared{background-image:url(../flags/1x1/aw.svg)}.flag-icon-ax{background-image:url(../flags/4x3/ax.svg)}.flag-icon-ax.flag-icon-squared{background-image:url(../flags/1x1/ax.svg)}.flag-icon-az{background-image:url(../flags/4x3/az.svg)}.flag-icon-az.flag-icon-squared{background-image:url(../flags/1x1/az.svg)}.flag-icon-ba{background-image:url(../flags/4x3/ba.svg)}.flag-icon-ba.flag-icon-squared{background-image:url(../flags/1x1/ba.svg)}.flag-icon-bb{background-image:url(../flags/4x3/bb.svg)}.flag-icon-bb.flag-icon-squared{background-image:url(../flags/1x1/bb.svg)}.flag-icon-bd{background-image:url(../flags/4x3/bd.svg)}.flag-icon-bd.flag-icon-squared{background-image:url(../flags/1x1/bd.svg)}.flag-icon-be{background-image:url(../flags/4x3/be.svg)}.flag-icon-be.flag-icon-squared{background-image:url(../flags/1x1/be.svg)}.flag-icon-bf{background-image:url(../flags/4x3/bf.svg)}.flag-icon-bf.flag-icon-squared{background-image:url(../flags/1x1/bf.svg)}.flag-icon-bg{background-image:url(../flags/4x3/bg.svg)}.flag-icon-bg.flag-icon-squared{background-image:url(../flags/1x1/bg.svg)}.flag-icon-bh{background-image:url(../flags/4x3/bh.svg)}.flag-icon-bh.flag-icon-squared{background-image:url(../flags/1x1/bh.svg)}.flag-icon-bi{background-image:url(../flags/4x3/bi.svg)}.flag-icon-bi.flag-icon-squared{background-image:url(../flags/1x1/bi.svg)}.flag-icon-bj{background-image:url(../flags/4x3/bj.svg)}.flag-icon-bj.flag-icon-squared{background-image:url(../flags/1x1/bj.svg)}.flag-icon-bl{background-image:url(../flags/4x3/bl.svg)}.flag-icon-bl.flag-icon-squared{background-image:url(../flags/1x1/bl.svg)}.flag-icon-bm{background-image:url(../flags/4x3/bm.svg)}.flag-icon-bm.flag-icon-squared{background-image:url(../flags/1x1/bm.svg)}.flag-icon-bn{background-image:url(../flags/4x3/bn.svg)}.flag-icon-bn.flag-icon-squared{background-image:url(../flags/1x1/bn.svg)}.flag-icon-bo{background-image:url(../flags/4x3/bo.svg)}.flag-icon-bo.flag-icon-squared{background-image:url(../flags/1x1/bo.svg)}.flag-icon-bq{background-image:url(../flags/4x3/bq.svg)}.flag-icon-bq.flag-icon-squared{background-image:url(../flags/1x1/bq.svg)}.flag-icon-br{background-image:url(../flags/4x3/br.svg)}.flag-icon-br.flag-icon-squared{background-image:url(../flags/1x1/br.svg)}.flag-icon-bs{background-image:url(../flags/4x3/bs.svg)}.flag-icon-bs.flag-icon-squared{background-image:url(../flags/1x1/bs.svg)}.flag-icon-bt{background-image:url(../flags/4x3/bt.svg)}.flag-icon-bt.flag-icon-squared{background-image:url(../flags/1x1/bt.svg)}.flag-icon-bv{background-image:url(../flags/4x3/bv.svg)}.flag-icon-bv.flag-icon-squared{background-image:url(../flags/1x1/bv.svg)}.flag-icon-bw{background-image:url(../flags/4x3/bw.svg)}.flag-icon-bw.flag-icon-squared{background-image:url(../flags/1x1/bw.svg)}.flag-icon-by{background-image:url(../flags/4x3/by.svg)}.flag-icon-by.flag-icon-squared{background-image:url(../flags/1x1/by.svg)}.flag-icon-bz{background-image:url(../flags/4x3/bz.svg)}.flag-icon-bz.flag-icon-squared{background-image:url(../flags/1x1/bz.svg)}.flag-icon-ca{background-image:url(../flags/4x3/ca.svg)}.flag-icon-ca.flag-icon-squared{background-image:url(../flags/1x1/ca.svg)}.flag-icon-cc{background-image:url(../flags/4x3/cc.svg)}.flag-icon-cc.flag-icon-squared{background-image:url(../flags/1x1/cc.svg)}.flag-icon-cd{background-image:url(../flags/4x3/cd.svg)}.flag-icon-cd.flag-icon-squared{background-image:url(../flags/1x1/cd.svg)}.flag-icon-cf{background-image:url(../flags/4x3/cf.svg)}.flag-icon-cf.flag-icon-squared{background-image:url(../flags/1x1/cf.svg)}.flag-icon-cg{background-image:url(../flags/4x3/cg.svg)}.flag-icon-cg.flag-icon-squared{background-image:url(../flags/1x1/cg.svg)}.flag-icon-ch{background-image:url(../flags/4x3/ch.svg)}.flag-icon-ch.flag-icon-squared{background-image:url(../flags/1x1/ch.svg)}.flag-icon-ci{background-image:url(../flags/4x3/ci.svg)}.flag-icon-ci.flag-icon-squared{background-image:url(../flags/1x1/ci.svg)}.flag-icon-ck{background-image:url(../flags/4x3/ck.svg)}.flag-icon-ck.flag-icon-squared{background-image:url(../flags/1x1/ck.svg)}.flag-icon-cl{background-image:url(../flags/4x3/cl.svg)}.flag-icon-cl.flag-icon-squared{background-image:url(../flags/1x1/cl.svg)}.flag-icon-cm{background-image:url(../flags/4x3/cm.svg)}.flag-icon-cm.flag-icon-squared{background-image:url(../flags/1x1/cm.svg)}.flag-icon-cn{background-image:url(../flags/4x3/cn.svg)}.flag-icon-cn.flag-icon-squared{background-image:url(../flags/1x1/cn.svg)}.flag-icon-co{background-image:url(../flags/4x3/co.svg)}.flag-icon-co.flag-icon-squared{background-image:url(../flags/1x1/co.svg)}.flag-icon-cr{background-image:url(../flags/4x3/cr.svg)}.flag-icon-cr.flag-icon-squared{background-image:url(../flags/1x1/cr.svg)}.flag-icon-cu{background-image:url(../flags/4x3/cu.svg)}.flag-icon-cu.flag-icon-squared{background-image:url(../flags/1x1/cu.svg)}.flag-icon-cv{background-image:url(../flags/4x3/cv.svg)}.flag-icon-cv.flag-icon-squared{background-image:url(../flags/1x1/cv.svg)}.flag-icon-cw{background-image:url(../flags/4x3/cw.svg)}.flag-icon-cw.flag-icon-squared{background-image:url(../flags/1x1/cw.svg)}.flag-icon-cx{background-image:url(../flags/4x3/cx.svg)}.flag-icon-cx.flag-icon-squared{background-image:url(../flags/1x1/cx.svg)}.flag-icon-cy{background-image:url(../flags/4x3/cy.svg)}.flag-icon-cy.flag-icon-squared{background-image:url(../flags/1x1/cy.svg)}.flag-icon-cz{background-image:url(../flags/4x3/cz.svg)}.flag-icon-cz.flag-icon-squared{background-image:url(../flags/1x1/cz.svg)}.flag-icon-de{background-image:url(../flags/4x3/de.svg)}.flag-icon-de.flag-icon-squared{background-image:url(../flags/1x1/de.svg)}.flag-icon-dj{background-image:url(../flags/4x3/dj.svg)}.flag-icon-dj.flag-icon-squared{background-image:url(../flags/1x1/dj.svg)}.flag-icon-dk{background-image:url(../flags/4x3/dk.svg)}.flag-icon-dk.flag-icon-squared{background-image:url(../flags/1x1/dk.svg)}.flag-icon-dm{background-image:url(../flags/4x3/dm.svg)}.flag-icon-dm.flag-icon-squared{background-image:url(../flags/1x1/dm.svg)}.flag-icon-do{background-image:url(../flags/4x3/do.svg)}.flag-icon-do.flag-icon-squared{background-image:url(../flags/1x1/do.svg)}.flag-icon-dz{background-image:url(../flags/4x3/dz.svg)}.flag-icon-dz.flag-icon-squared{background-image:url(../flags/1x1/dz.svg)}.flag-icon-ec{background-image:url(../flags/4x3/ec.svg)}.flag-icon-ec.flag-icon-squared{background-image:url(../flags/1x1/ec.svg)}.flag-icon-ee{background-image:url(../flags/4x3/ee.svg)}.flag-icon-ee.flag-icon-squared{background-image:url(../flags/1x1/ee.svg)}.flag-icon-eg{background-image:url(../flags/4x3/eg.svg)}.flag-icon-eg.flag-icon-squared{background-image:url(../flags/1x1/eg.svg)}.flag-icon-eh{background-image:url(../flags/4x3/eh.svg)}.flag-icon-eh.flag-icon-squared{background-image:url(../flags/1x1/eh.svg)}.flag-icon-er{background-image:url(../flags/4x3/er.svg)}.flag-icon-er.flag-icon-squared{background-image:url(../flags/1x1/er.svg)}.flag-icon-es{background-image:url(../flags/4x3/es.svg)}.flag-icon-es.flag-icon-squared{background-image:url(../flags/1x1/es.svg)}.flag-icon-et{background-image:url(../flags/4x3/et.svg)}.flag-icon-et.flag-icon-squared{background-image:url(../flags/1x1/et.svg)}.flag-icon-fi{background-image:url(../flags/4x3/fi.svg)}.flag-icon-fi.flag-icon-squared{background-image:url(../flags/1x1/fi.svg)}.flag-icon-fj{background-image:url(../flags/4x3/fj.svg)}.flag-icon-fj.flag-icon-squared{background-image:url(../flags/1x1/fj.svg)}.flag-icon-fk{background-image:url(../flags/4x3/fk.svg)}.flag-icon-fk.flag-icon-squared{background-image:url(../flags/1x1/fk.svg)}.flag-icon-fm{background-image:url(../flags/4x3/fm.svg)}.flag-icon-fm.flag-icon-squared{background-image:url(../flags/1x1/fm.svg)}.flag-icon-fo{background-image:url(../flags/4x3/fo.svg)}.flag-icon-fo.flag-icon-squared{background-image:url(../flags/1x1/fo.svg)}.flag-icon-fr{background-image:url(../flags/4x3/fr.svg)}.flag-icon-fr.flag-icon-squared{background-image:url(../flags/1x1/fr.svg)}.flag-icon-ga{background-image:url(../flags/4x3/ga.svg)}.flag-icon-ga.flag-icon-squared{background-image:url(../flags/1x1/ga.svg)}.flag-icon-gb{background-image:url(../flags/4x3/gb.svg)}.flag-icon-gb.flag-icon-squared{background-image:url(../flags/1x1/gb.svg)}.flag-icon-gd{background-image:url(../flags/4x3/gd.svg)}.flag-icon-gd.flag-icon-squared{background-image:url(../flags/1x1/gd.svg)}.flag-icon-ge{background-image:url(../flags/4x3/ge.svg)}.flag-icon-ge.flag-icon-squared{background-image:url(../flags/1x1/ge.svg)}.flag-icon-gf{background-image:url(../flags/4x3/gf.svg)}.flag-icon-gf.flag-icon-squared{background-image:url(../flags/1x1/gf.svg)}.flag-icon-gg{background-image:url(../flags/4x3/gg.svg)}.flag-icon-gg.flag-icon-squared{background-image:url(../flags/1x1/gg.svg)}.flag-icon-gh{background-image:url(../flags/4x3/gh.svg)}.flag-icon-gh.flag-icon-squared{background-image:url(../flags/1x1/gh.svg)}.flag-icon-gi{background-image:url(../flags/4x3/gi.svg)}.flag-icon-gi.flag-icon-squared{background-image:url(../flags/1x1/gi.svg)}.flag-icon-gl{background-image:url(../flags/4x3/gl.svg)}.flag-icon-gl.flag-icon-squared{background-image:url(../flags/1x1/gl.svg)}.flag-icon-gm{background-image:url(../flags/4x3/gm.svg)}.flag-icon-gm.flag-icon-squared{background-image:url(../flags/1x1/gm.svg)}.flag-icon-gn{background-image:url(../flags/4x3/gn.svg)}.flag-icon-gn.flag-icon-squared{background-image:url(../flags/1x1/gn.svg)}.flag-icon-gp{background-image:url(../flags/4x3/gp.svg)}.flag-icon-gp.flag-icon-squared{background-image:url(../flags/1x1/gp.svg)}.flag-icon-gq{background-image:url(../flags/4x3/gq.svg)}.flag-icon-gq.flag-icon-squared{background-image:url(../flags/1x1/gq.svg)}.flag-icon-gr{background-image:url(../flags/4x3/gr.svg)}.flag-icon-gr.flag-icon-squared{background-image:url(../flags/1x1/gr.svg)}.flag-icon-gs{background-image:url(../flags/4x3/gs.svg)}.flag-icon-gs.flag-icon-squared{background-image:url(../flags/1x1/gs.svg)}.flag-icon-gt{background-image:url(../flags/4x3/gt.svg)}.flag-icon-gt.flag-icon-squared{background-image:url(../flags/1x1/gt.svg)}.flag-icon-gu{background-image:url(../flags/4x3/gu.svg)}.flag-icon-gu.flag-icon-squared{background-image:url(../flags/1x1/gu.svg)}.flag-icon-gw{background-image:url(../flags/4x3/gw.svg)}.flag-icon-gw.flag-icon-squared{background-image:url(../flags/1x1/gw.svg)}.flag-icon-gy{background-image:url(../flags/4x3/gy.svg)}.flag-icon-gy.flag-icon-squared{background-image:url(../flags/1x1/gy.svg)}.flag-icon-hk{background-image:url(../flags/4x3/hk.svg)}.flag-icon-hk.flag-icon-squared{background-image:url(../flags/1x1/hk.svg)}.flag-icon-hm{background-image:url(../flags/4x3/hm.svg)}.flag-icon-hm.flag-icon-squared{background-image:url(../flags/1x1/hm.svg)}.flag-icon-hn{background-image:url(../flags/4x3/hn.svg)}.flag-icon-hn.flag-icon-squared{background-image:url(../flags/1x1/hn.svg)}.flag-icon-hr{background-image:url(../flags/4x3/hr.svg)}.flag-icon-hr.flag-icon-squared{background-image:url(../flags/1x1/hr.svg)}.flag-icon-ht{background-image:url(../flags/4x3/ht.svg)}.flag-icon-ht.flag-icon-squared{background-image:url(../flags/1x1/ht.svg)}.flag-icon-hu{background-image:url(../flags/4x3/hu.svg)}.flag-icon-hu.flag-icon-squared{background-image:url(../flags/1x1/hu.svg)}.flag-icon-id{background-image:url(../flags/4x3/id.svg)}.flag-icon-id.flag-icon-squared{background-image:url(../flags/1x1/id.svg)}.flag-icon-ie{background-image:url(../flags/4x3/ie.svg)}.flag-icon-ie.flag-icon-squared{background-image:url(../flags/1x1/ie.svg)}.flag-icon-il{background-image:url(../flags/4x3/il.svg)}.flag-icon-il.flag-icon-squared{background-image:url(../flags/1x1/il.svg)}.flag-icon-im{background-image:url(../flags/4x3/im.svg)}.flag-icon-im.flag-icon-squared{background-image:url(../flags/1x1/im.svg)}.flag-icon-in{background-image:url(../flags/4x3/in.svg)}.flag-icon-in.flag-icon-squared{background-image:url(../flags/1x1/in.svg)}.flag-icon-io{background-image:url(../flags/4x3/io.svg)}.flag-icon-io.flag-icon-squared{background-image:url(../flags/1x1/io.svg)}.flag-icon-iq{background-image:url(../flags/4x3/iq.svg)}.flag-icon-iq.flag-icon-squared{background-image:url(../flags/1x1/iq.svg)}.flag-icon-ir{background-image:url(../flags/4x3/ir.svg)}.flag-icon-ir.flag-icon-squared{background-image:url(../flags/1x1/ir.svg)}.flag-icon-is{background-image:url(../flags/4x3/is.svg)}.flag-icon-is.flag-icon-squared{background-image:url(../flags/1x1/is.svg)}.flag-icon-it{background-image:url(../flags/4x3/it.svg)}.flag-icon-it.flag-icon-squared{background-image:url(../flags/1x1/it.svg)}.flag-icon-je{background-image:url(../flags/4x3/je.svg)}.flag-icon-je.flag-icon-squared{background-image:url(../flags/1x1/je.svg)}.flag-icon-jm{background-image:url(../flags/4x3/jm.svg)}.flag-icon-jm.flag-icon-squared{background-image:url(../flags/1x1/jm.svg)}.flag-icon-jo{background-image:url(../flags/4x3/jo.svg)}.flag-icon-jo.flag-icon-squared{background-image:url(../flags/1x1/jo.svg)}.flag-icon-jp{background-image:url(../flags/4x3/jp.svg)}.flag-icon-jp.flag-icon-squared{background-image:url(../flags/1x1/jp.svg)}.flag-icon-ke{background-image:url(../flags/4x3/ke.svg)}.flag-icon-ke.flag-icon-squared{background-image:url(../flags/1x1/ke.svg)}.flag-icon-kg{background-image:url(../flags/4x3/kg.svg)}.flag-icon-kg.flag-icon-squared{background-image:url(../flags/1x1/kg.svg)}.flag-icon-kh{background-image:url(../flags/4x3/kh.svg)}.flag-icon-kh.flag-icon-squared{background-image:url(../flags/1x1/kh.svg)}.flag-icon-ki{background-image:url(../flags/4x3/ki.svg)}.flag-icon-ki.flag-icon-squared{background-image:url(../flags/1x1/ki.svg)}.flag-icon-km{background-image:url(../flags/4x3/km.svg)}.flag-icon-km.flag-icon-squared{background-image:url(../flags/1x1/km.svg)}.flag-icon-kn{background-image:url(../flags/4x3/kn.svg)}.flag-icon-kn.flag-icon-squared{background-image:url(../flags/1x1/kn.svg)}.flag-icon-kp{background-image:url(../flags/4x3/kp.svg)}.flag-icon-kp.flag-icon-squared{background-image:url(../flags/1x1/kp.svg)}.flag-icon-kr{background-image:url(../flags/4x3/kr.svg)}.flag-icon-kr.flag-icon-squared{background-image:url(../flags/1x1/kr.svg)}.flag-icon-kw{background-image:url(../flags/4x3/kw.svg)}.flag-icon-kw.flag-icon-squared{background-image:url(../flags/1x1/kw.svg)}.flag-icon-ky{background-image:url(../flags/4x3/ky.svg)}.flag-icon-ky.flag-icon-squared{background-image:url(../flags/1x1/ky.svg)}.flag-icon-kz{background-image:url(../flags/4x3/kz.svg)}.flag-icon-kz.flag-icon-squared{background-image:url(../flags/1x1/kz.svg)}.flag-icon-la{background-image:url(../flags/4x3/la.svg)}.flag-icon-la.flag-icon-squared{background-image:url(../flags/1x1/la.svg)}.flag-icon-lb{background-image:url(../flags/4x3/lb.svg)}.flag-icon-lb.flag-icon-squared{background-image:url(../flags/1x1/lb.svg)}.flag-icon-lc{background-image:url(../flags/4x3/lc.svg)}.flag-icon-lc.flag-icon-squared{background-image:url(../flags/1x1/lc.svg)}.flag-icon-li{background-image:url(../flags/4x3/li.svg)}.flag-icon-li.flag-icon-squared{background-image:url(../flags/1x1/li.svg)}.flag-icon-lk{background-image:url(../flags/4x3/lk.svg)}.flag-icon-lk.flag-icon-squared{background-image:url(../flags/1x1/lk.svg)}.flag-icon-lr{background-image:url(../flags/4x3/lr.svg)}.flag-icon-lr.flag-icon-squared{background-image:url(../flags/1x1/lr.svg)}.flag-icon-ls{background-image:url(../flags/4x3/ls.svg)}.flag-icon-ls.flag-icon-squared{background-image:url(../flags/1x1/ls.svg)}.flag-icon-lt{background-image:url(../flags/4x3/lt.svg)}.flag-icon-lt.flag-icon-squared{background-image:url(../flags/1x1/lt.svg)}.flag-icon-lu{background-image:url(../flags/4x3/lu.svg)}.flag-icon-lu.flag-icon-squared{background-image:url(../flags/1x1/lu.svg)}.flag-icon-lv{background-image:url(../flags/4x3/lv.svg)}.flag-icon-lv.flag-icon-squared{background-image:url(../flags/1x1/lv.svg)}.flag-icon-ly{background-image:url(../flags/4x3/ly.svg)}.flag-icon-ly.flag-icon-squared{background-image:url(../flags/1x1/ly.svg)}.flag-icon-ma{background-image:url(../flags/4x3/ma.svg)}.flag-icon-ma.flag-icon-squared{background-image:url(../flags/1x1/ma.svg)}.flag-icon-mc{background-image:url(../flags/4x3/mc.svg)}.flag-icon-mc.flag-icon-squared{background-image:url(../flags/1x1/mc.svg)}.flag-icon-md{background-image:url(../flags/4x3/md.svg)}.flag-icon-md.flag-icon-squared{background-image:url(../flags/1x1/md.svg)}.flag-icon-me{background-image:url(../flags/4x3/me.svg)}.flag-icon-me.flag-icon-squared{background-image:url(../flags/1x1/me.svg)}.flag-icon-mf{background-image:url(../flags/4x3/mf.svg)}.flag-icon-mf.flag-icon-squared{background-image:url(../flags/1x1/mf.svg)}.flag-icon-mg{background-image:url(../flags/4x3/mg.svg)}.flag-icon-mg.flag-icon-squared{background-image:url(../flags/1x1/mg.svg)}.flag-icon-mh{background-image:url(../flags/4x3/mh.svg)}.flag-icon-mh.flag-icon-squared{background-image:url(../flags/1x1/mh.svg)}.flag-icon-mk{background-image:url(../flags/4x3/mk.svg)}.flag-icon-mk.flag-icon-squared{background-image:url(../flags/1x1/mk.svg)}.flag-icon-ml{background-image:url(../flags/4x3/ml.svg)}.flag-icon-ml.flag-icon-squared{background-image:url(../flags/1x1/ml.svg)}.flag-icon-mm{background-image:url(../flags/4x3/mm.svg)}.flag-icon-mm.flag-icon-squared{background-image:url(../flags/1x1/mm.svg)}.flag-icon-mn{background-image:url(../flags/4x3/mn.svg)}.flag-icon-mn.flag-icon-squared{background-image:url(../flags/1x1/mn.svg)}.flag-icon-mo{background-image:url(../flags/4x3/mo.svg)}.flag-icon-mo.flag-icon-squared{background-image:url(../flags/1x1/mo.svg)}.flag-icon-mp{background-image:url(../flags/4x3/mp.svg)}.flag-icon-mp.flag-icon-squared{background-image:url(../flags/1x1/mp.svg)}.flag-icon-mq{background-image:url(../flags/4x3/mq.svg)}.flag-icon-mq.flag-icon-squared{background-image:url(../flags/1x1/mq.svg)}.flag-icon-mr{background-image:url(../flags/4x3/mr.svg)}.flag-icon-mr.flag-icon-squared{background-image:url(../flags/1x1/mr.svg)}.flag-icon-ms{background-image:url(../flags/4x3/ms.svg)}.flag-icon-ms.flag-icon-squared{background-image:url(../flags/1x1/ms.svg)}.flag-icon-mt{background-image:url(../flags/4x3/mt.svg)}.flag-icon-mt.flag-icon-squared{background-image:url(../flags/1x1/mt.svg)}.flag-icon-mu{background-image:url(../flags/4x3/mu.svg)}.flag-icon-mu.flag-icon-squared{background-image:url(../flags/1x1/mu.svg)}.flag-icon-mv{background-image:url(../flags/4x3/mv.svg)}.flag-icon-mv.flag-icon-squared{background-image:url(../flags/1x1/mv.svg)}.flag-icon-mw{background-image:url(../flags/4x3/mw.svg)}.flag-icon-mw.flag-icon-squared{background-image:url(../flags/1x1/mw.svg)}.flag-icon-mx{background-image:url(../flags/4x3/mx.svg)}.flag-icon-mx.flag-icon-squared{background-image:url(../flags/1x1/mx.svg)}.flag-icon-my{background-image:url(../flags/4x3/my.svg)}.flag-icon-my.flag-icon-squared{background-image:url(../flags/1x1/my.svg)}.flag-icon-mz{background-image:url(../flags/4x3/mz.svg)}.flag-icon-mz.flag-icon-squared{background-image:url(../flags/1x1/mz.svg)}.flag-icon-na{background-image:url(../flags/4x3/na.svg)}.flag-icon-na.flag-icon-squared{background-image:url(../flags/1x1/na.svg)}.flag-icon-nc{background-image:url(../flags/4x3/nc.svg)}.flag-icon-nc.flag-icon-squared{background-image:url(../flags/1x1/nc.svg)}.flag-icon-ne{background-image:url(../flags/4x3/ne.svg)}.flag-icon-ne.flag-icon-squared{background-image:url(../flags/1x1/ne.svg)}.flag-icon-nf{background-image:url(../flags/4x3/nf.svg)}.flag-icon-nf.flag-icon-squared{background-image:url(../flags/1x1/nf.svg)}.flag-icon-ng{background-image:url(../flags/4x3/ng.svg)}.flag-icon-ng.flag-icon-squared{background-image:url(../flags/1x1/ng.svg)}.flag-icon-ni{background-image:url(../flags/4x3/ni.svg)}.flag-icon-ni.flag-icon-squared{background-image:url(../flags/1x1/ni.svg)}.flag-icon-nl{background-image:url(../flags/4x3/nl.svg)}.flag-icon-nl.flag-icon-squared{background-image:url(../flags/1x1/nl.svg)}.flag-icon-no{background-image:url(../flags/4x3/no.svg)}.flag-icon-no.flag-icon-squared{background-image:url(../flags/1x1/no.svg)}.flag-icon-np{background-image:url(../flags/4x3/np.svg)}.flag-icon-np.flag-icon-squared{background-image:url(../flags/1x1/np.svg)}.flag-icon-nr{background-image:url(../flags/4x3/nr.svg)}.flag-icon-nr.flag-icon-squared{background-image:url(../flags/1x1/nr.svg)}.flag-icon-nu{background-image:url(../flags/4x3/nu.svg)}.flag-icon-nu.flag-icon-squared{background-image:url(../flags/1x1/nu.svg)}.flag-icon-nz{background-image:url(../flags/4x3/nz.svg)}.flag-icon-nz.flag-icon-squared{background-image:url(../flags/1x1/nz.svg)}.flag-icon-om{background-image:url(../flags/4x3/om.svg)}.flag-icon-om.flag-icon-squared{background-image:url(../flags/1x1/om.svg)}.flag-icon-pa{background-image:url(../flags/4x3/pa.svg)}.flag-icon-pa.flag-icon-squared{background-image:url(../flags/1x1/pa.svg)}.flag-icon-pe{background-image:url(../flags/4x3/pe.svg)}.flag-icon-pe.flag-icon-squared{background-image:url(../flags/1x1/pe.svg)}.flag-icon-pf{background-image:url(../flags/4x3/pf.svg)}.flag-icon-pf.flag-icon-squared{background-image:url(../flags/1x1/pf.svg)}.flag-icon-pg{background-image:url(../flags/4x3/pg.svg)}.flag-icon-pg.flag-icon-squared{background-image:url(../flags/1x1/pg.svg)}.flag-icon-ph{background-image:url(../flags/4x3/ph.svg)}.flag-icon-ph.flag-icon-squared{background-image:url(../flags/1x1/ph.svg)}.flag-icon-pk{background-image:url(../flags/4x3/pk.svg)}.flag-icon-pk.flag-icon-squared{background-image:url(../flags/1x1/pk.svg)}.flag-icon-pl{background-image:url(../flags/4x3/pl.svg)}.flag-icon-pl.flag-icon-squared{background-image:url(../flags/1x1/pl.svg)}.flag-icon-pm{background-image:url(../flags/4x3/pm.svg)}.flag-icon-pm.flag-icon-squared{background-image:url(../flags/1x1/pm.svg)}.flag-icon-pn{background-image:url(../flags/4x3/pn.svg)}.flag-icon-pn.flag-icon-squared{background-image:url(../flags/1x1/pn.svg)}.flag-icon-pr{background-image:url(../flags/4x3/pr.svg)}.flag-icon-pr.flag-icon-squared{background-image:url(../flags/1x1/pr.svg)}.flag-icon-ps{background-image:url(../flags/4x3/ps.svg)}.flag-icon-ps.flag-icon-squared{background-image:url(../flags/1x1/ps.svg)}.flag-icon-pt{background-image:url(../flags/4x3/pt.svg)}.flag-icon-pt.flag-icon-squared{background-image:url(../flags/1x1/pt.svg)}.flag-icon-pw{background-image:url(../flags/4x3/pw.svg)}.flag-icon-pw.flag-icon-squared{background-image:url(../flags/1x1/pw.svg)}.flag-icon-py{background-image:url(../flags/4x3/py.svg)}.flag-icon-py.flag-icon-squared{background-image:url(../flags/1x1/py.svg)}.flag-icon-qa{background-image:url(../flags/4x3/qa.svg)}.flag-icon-qa.flag-icon-squared{background-image:url(../flags/1x1/qa.svg)}.flag-icon-re{background-image:url(../flags/4x3/re.svg)}.flag-icon-re.flag-icon-squared{background-image:url(../flags/1x1/re.svg)}.flag-icon-ro{background-image:url(../flags/4x3/ro.svg)}.flag-icon-ro.flag-icon-squared{background-image:url(../flags/1x1/ro.svg)}.flag-icon-rs{background-image:url(../flags/4x3/rs.svg)}.flag-icon-rs.flag-icon-squared{background-image:url(../flags/1x1/rs.svg)}.flag-icon-ru{background-image:url(../flags/4x3/ru.svg)}.flag-icon-ru.flag-icon-squared{background-image:url(../flags/1x1/ru.svg)}.flag-icon-rw{background-image:url(../flags/4x3/rw.svg)}.flag-icon-rw.flag-icon-squared{background-image:url(../flags/1x1/rw.svg)}.flag-icon-sa{background-image:url(../flags/4x3/sa.svg)}.flag-icon-sa.flag-icon-squared{background-image:url(../flags/1x1/sa.svg)}.flag-icon-sb{background-image:url(../flags/4x3/sb.svg)}.flag-icon-sb.flag-icon-squared{background-image:url(../flags/1x1/sb.svg)}.flag-icon-sc{background-image:url(../flags/4x3/sc.svg)}.flag-icon-sc.flag-icon-squared{background-image:url(../flags/1x1/sc.svg)}.flag-icon-sd{background-image:url(../flags/4x3/sd.svg)}.flag-icon-sd.flag-icon-squared{background-image:url(../flags/1x1/sd.svg)}.flag-icon-se{background-image:url(../flags/4x3/se.svg)}.flag-icon-se.flag-icon-squared{background-image:url(../flags/1x1/se.svg)}.flag-icon-sg{background-image:url(../flags/4x3/sg.svg)}.flag-icon-sg.flag-icon-squared{background-image:url(../flags/1x1/sg.svg)}.flag-icon-sh{background-image:url(../flags/4x3/sh.svg)}.flag-icon-sh.flag-icon-squared{background-image:url(../flags/1x1/sh.svg)}.flag-icon-si{background-image:url(../flags/4x3/si.svg)}.flag-icon-si.flag-icon-squared{background-image:url(../flags/1x1/si.svg)}.flag-icon-sj{background-image:url(../flags/4x3/sj.svg)}.flag-icon-sj.flag-icon-squared{background-image:url(../flags/1x1/sj.svg)}.flag-icon-sk{background-image:url(../flags/4x3/sk.svg)}.flag-icon-sk.flag-icon-squared{background-image:url(../flags/1x1/sk.svg)}.flag-icon-sl{background-image:url(../flags/4x3/sl.svg)}.flag-icon-sl.flag-icon-squared{background-image:url(../flags/1x1/sl.svg)}.flag-icon-sm{background-image:url(../flags/4x3/sm.svg)}.flag-icon-sm.flag-icon-squared{background-image:url(../flags/1x1/sm.svg)}.flag-icon-sn{background-image:url(../flags/4x3/sn.svg)}.flag-icon-sn.flag-icon-squared{background-image:url(../flags/1x1/sn.svg)}.flag-icon-so{background-image:url(../flags/4x3/so.svg)}.flag-icon-so.flag-icon-squared{background-image:url(../flags/1x1/so.svg)}.flag-icon-sr{background-image:url(../flags/4x3/sr.svg)}.flag-icon-sr.flag-icon-squared{background-image:url(../flags/1x1/sr.svg)}.flag-icon-ss{background-image:url(../flags/4x3/ss.svg)}.flag-icon-ss.flag-icon-squared{background-image:url(../flags/1x1/ss.svg)}.flag-icon-st{background-image:url(../flags/4x3/st.svg)}.flag-icon-st.flag-icon-squared{background-image:url(../flags/1x1/st.svg)}.flag-icon-sv{background-image:url(../flags/4x3/sv.svg)}.flag-icon-sv.flag-icon-squared{background-image:url(../flags/1x1/sv.svg)}.flag-icon-sx{background-image:url(../flags/4x3/sx.svg)}.flag-icon-sx.flag-icon-squared{background-image:url(../flags/1x1/sx.svg)}.flag-icon-sy{background-image:url(../flags/4x3/sy.svg)}.flag-icon-sy.flag-icon-squared{background-image:url(../flags/1x1/sy.svg)}.flag-icon-sz{background-image:url(../flags/4x3/sz.svg)}.flag-icon-sz.flag-icon-squared{background-image:url(../flags/1x1/sz.svg)}.flag-icon-tc{background-image:url(../flags/4x3/tc.svg)}.flag-icon-tc.flag-icon-squared{background-image:url(../flags/1x1/tc.svg)}.flag-icon-td{background-image:url(../flags/4x3/td.svg)}.flag-icon-td.flag-icon-squared{background-image:url(../flags/1x1/td.svg)}.flag-icon-tf{background-image:url(../flags/4x3/tf.svg)}.flag-icon-tf.flag-icon-squared{background-image:url(../flags/1x1/tf.svg)}.flag-icon-tg{background-image:url(../flags/4x3/tg.svg)}.flag-icon-tg.flag-icon-squared{background-image:url(../flags/1x1/tg.svg)}.flag-icon-th{background-image:url(../flags/4x3/th.svg)}.flag-icon-th.flag-icon-squared{background-image:url(../flags/1x1/th.svg)}.flag-icon-tj{background-image:url(../flags/4x3/tj.svg)}.flag-icon-tj.flag-icon-squared{background-image:url(../flags/1x1/tj.svg)}.flag-icon-tk{background-image:url(../flags/4x3/tk.svg)}.flag-icon-tk.flag-icon-squared{background-image:url(../flags/1x1/tk.svg)}.flag-icon-tl{background-image:url(../flags/4x3/tl.svg)}.flag-icon-tl.flag-icon-squared{background-image:url(../flags/1x1/tl.svg)}.flag-icon-tm{background-image:url(../flags/4x3/tm.svg)}.flag-icon-tm.flag-icon-squared{background-image:url(../flags/1x1/tm.svg)}.flag-icon-tn{background-image:url(../flags/4x3/tn.svg)}.flag-icon-tn.flag-icon-squared{background-image:url(../flags/1x1/tn.svg)}.flag-icon-to{background-image:url(../flags/4x3/to.svg)}.flag-icon-to.flag-icon-squared{background-image:url(../flags/1x1/to.svg)}.flag-icon-tr{background-image:url(../flags/4x3/tr.svg)}.flag-icon-tr.flag-icon-squared{background-image:url(../flags/1x1/tr.svg)}.flag-icon-tt{background-image:url(../flags/4x3/tt.svg)}.flag-icon-tt.flag-icon-squared{background-image:url(../flags/1x1/tt.svg)}.flag-icon-tv{background-image:url(../flags/4x3/tv.svg)}.flag-icon-tv.flag-icon-squared{background-image:url(../flags/1x1/tv.svg)}.flag-icon-tw{background-image:url(../flags/4x3/tw.svg)}.flag-icon-tw.flag-icon-squared{background-image:url(../flags/1x1/tw.svg)}.flag-icon-tz{background-image:url(../flags/4x3/tz.svg)}.flag-icon-tz.flag-icon-squared{background-image:url(../flags/1x1/tz.svg)}.flag-icon-ua{background-image:url(../flags/4x3/ua.svg)}.flag-icon-ua.flag-icon-squared{background-image:url(../flags/1x1/ua.svg)}.flag-icon-ug{background-image:url(../flags/4x3/ug.svg)}.flag-icon-ug.flag-icon-squared{background-image:url(../flags/1x1/ug.svg)}.flag-icon-um{background-image:url(../flags/4x3/um.svg)}.flag-icon-um.flag-icon-squared{background-image:url(../flags/1x1/um.svg)}.flag-icon-us{background-image:url(../flags/4x3/us.svg)}.flag-icon-us.flag-icon-squared{background-image:url(../flags/1x1/us.svg)}.flag-icon-uy{background-image:url(../flags/4x3/uy.svg)}.flag-icon-uy.flag-icon-squared{background-image:url(../flags/1x1/uy.svg)}.flag-icon-uz{background-image:url(../flags/4x3/uz.svg)}.flag-icon-uz.flag-icon-squared{background-image:url(../flags/1x1/uz.svg)}.flag-icon-va{background-image:url(../flags/4x3/va.svg)}.flag-icon-va.flag-icon-squared{background-image:url(../flags/1x1/va.svg)}.flag-icon-vc{background-image:url(../flags/4x3/vc.svg)}.flag-icon-vc.flag-icon-squared{background-image:url(../flags/1x1/vc.svg)}.flag-icon-ve{background-image:url(../flags/4x3/ve.svg)}.flag-icon-ve.flag-icon-squared{background-image:url(../flags/1x1/ve.svg)}.flag-icon-vg{background-image:url(../flags/4x3/vg.svg)}.flag-icon-vg.flag-icon-squared{background-image:url(../flags/1x1/vg.svg)}.flag-icon-vi{background-image:url(../flags/4x3/vi.svg)}.flag-icon-vi.flag-icon-squared{background-image:url(../flags/1x1/vi.svg)}.flag-icon-vn{background-image:url(../flags/4x3/vn.svg)}.flag-icon-vn.flag-icon-squared{background-image:url(../flags/1x1/vn.svg)}.flag-icon-vu{background-image:url(../flags/4x3/vu.svg)}.flag-icon-vu.flag-icon-squared{background-image:url(../flags/1x1/vu.svg)}.flag-icon-wf{background-image:url(../flags/4x3/wf.svg)}.flag-icon-wf.flag-icon-squared{background-image:url(../flags/1x1/wf.svg)}.flag-icon-ws{background-image:url(../flags/4x3/ws.svg)}.flag-icon-ws.flag-icon-squared{background-image:url(../flags/1x1/ws.svg)}.flag-icon-ye{background-image:url(../flags/4x3/ye.svg)}.flag-icon-ye.flag-icon-squared{background-image:url(../flags/1x1/ye.svg)}.flag-icon-yt{background-image:url(../flags/4x3/yt.svg)}.flag-icon-yt.flag-icon-squared{background-image:url(../flags/1x1/yt.svg)}.flag-icon-za{background-image:url(../flags/4x3/za.svg)}.flag-icon-za.flag-icon-squared{background-image:url(../flags/1x1/za.svg)}.flag-icon-zm{background-image:url(../flags/4x3/zm.svg)}.flag-icon-zm.flag-icon-squared{background-image:url(../flags/1x1/zm.svg)}.flag-icon-zw{background-image:url(../flags/4x3/zw.svg)}.flag-icon-zw.flag-icon-squared{background-image:url(../flags/1x1/zw.svg)}.flag-icon-es-ct{background-image:url(../flags/4x3/es-ct.svg)}.flag-icon-es-ct.flag-icon-squared{background-image:url(../flags/1x1/es-ct.svg)}.flag-icon-eu{background-image:url(../flags/4x3/eu.svg)}.flag-icon-eu.flag-icon-squared{background-image:url(../flags/1x1/eu.svg)}.flag-icon-gb-eng{background-image:url(../flags/4x3/gb-eng.svg)}.flag-icon-gb-eng.flag-icon-squared{background-image:url(../flags/1x1/gb-eng.svg)}.flag-icon-gb-nir{background-image:url(../flags/4x3/gb-nir.svg)}.flag-icon-gb-nir.flag-icon-squared{background-image:url(../flags/1x1/gb-nir.svg)}.flag-icon-gb-sct{background-image:url(../flags/4x3/gb-sct.svg)}.flag-icon-gb-sct.flag-icon-squared{background-image:url(../flags/1x1/gb-sct.svg)}.flag-icon-gb-wls{background-image:url(../flags/4x3/gb-wls.svg)}.flag-icon-gb-wls.flag-icon-squared{background-image:url(../flags/1x1/gb-wls.svg)}.flag-icon-un{background-image:url(../flags/4x3/un.svg)}.flag-icon-un.flag-icon-squared{background-image:url(../flags/1x1/un.svg)}.flag-icon-xk{background-image:url(../flags/4x3/xk.svg)}.flag-icon-xk.flag-icon-squared{background-image:url(../flags/1x1/xk.svg)} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/css/simple-line-icons.css b/INCUBATE/incubate/incubate/static/css/simple-line-icons.css new file mode 100644 index 0000000000000000000000000000000000000000..a5e97e26648baf6b1ef565d939ecc80ae73e7d25 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/css/simple-line-icons.css @@ -0,0 +1,778 @@ +@font-face { + font-family: 'simple-line-icons'; + src: url('../fonts/Simple-Line-Icons.eot?v=2.4.0'); + src: url('../fonts/Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'), url('../fonts/Simple-Line-Icons.woff2?v=2.4.0') format('woff2'), url('../fonts/Simple-Line-Icons.ttf?v=2.4.0') format('truetype'), url('../fonts/Simple-Line-Icons.woff?v=2.4.0') format('woff'), url('../fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg'); + font-weight: normal; + font-style: normal; +} +/* + Use the following CSS code if you want to have a class per icon. + Instead of a list of all class selectors, you can use the generic [class*="icon-"] selector, but it's slower: +*/ +.icon-user, +.icon-people, +.icon-user-female, +.icon-user-follow, +.icon-user-following, +.icon-user-unfollow, +.icon-login, +.icon-logout, +.icon-emotsmile, +.icon-phone, +.icon-call-end, +.icon-call-in, +.icon-call-out, +.icon-map, +.icon-location-pin, +.icon-direction, +.icon-directions, +.icon-compass, +.icon-layers, +.icon-menu, +.icon-list, +.icon-options-vertical, +.icon-options, +.icon-arrow-down, +.icon-arrow-left, +.icon-arrow-right, +.icon-arrow-up, +.icon-arrow-up-circle, +.icon-arrow-left-circle, +.icon-arrow-right-circle, +.icon-arrow-down-circle, +.icon-check, +.icon-clock, +.icon-plus, +.icon-minus, +.icon-close, +.icon-event, +.icon-exclamation, +.icon-organization, +.icon-trophy, +.icon-screen-smartphone, +.icon-screen-desktop, +.icon-plane, +.icon-notebook, +.icon-mustache, +.icon-mouse, +.icon-magnet, +.icon-energy, +.icon-disc, +.icon-cursor, +.icon-cursor-move, +.icon-crop, +.icon-chemistry, +.icon-speedometer, +.icon-shield, +.icon-screen-tablet, +.icon-magic-wand, +.icon-hourglass, +.icon-graduation, +.icon-ghost, +.icon-game-controller, +.icon-fire, +.icon-eyeglass, +.icon-envelope-open, +.icon-envelope-letter, +.icon-bell, +.icon-badge, +.icon-anchor, +.icon-wallet, +.icon-vector, +.icon-speech, +.icon-puzzle, +.icon-printer, +.icon-present, +.icon-playlist, +.icon-pin, +.icon-picture, +.icon-handbag, +.icon-globe-alt, +.icon-globe, +.icon-folder-alt, +.icon-folder, +.icon-film, +.icon-feed, +.icon-drop, +.icon-drawer, +.icon-docs, +.icon-doc, +.icon-diamond, +.icon-cup, +.icon-calculator, +.icon-bubbles, +.icon-briefcase, +.icon-book-open, +.icon-basket-loaded, +.icon-basket, +.icon-bag, +.icon-action-undo, +.icon-action-redo, +.icon-wrench, +.icon-umbrella, +.icon-trash, +.icon-tag, +.icon-support, +.icon-frame, +.icon-size-fullscreen, +.icon-size-actual, +.icon-shuffle, +.icon-share-alt, +.icon-share, +.icon-rocket, +.icon-question, +.icon-pie-chart, +.icon-pencil, +.icon-note, +.icon-loop, +.icon-home, +.icon-grid, +.icon-graph, +.icon-microphone, +.icon-music-tone-alt, +.icon-music-tone, +.icon-earphones-alt, +.icon-earphones, +.icon-equalizer, +.icon-like, +.icon-dislike, +.icon-control-start, +.icon-control-rewind, +.icon-control-play, +.icon-control-pause, +.icon-control-forward, +.icon-control-end, +.icon-volume-1, +.icon-volume-2, +.icon-volume-off, +.icon-calendar, +.icon-bulb, +.icon-chart, +.icon-ban, +.icon-bubble, +.icon-camrecorder, +.icon-camera, +.icon-cloud-download, +.icon-cloud-upload, +.icon-envelope, +.icon-eye, +.icon-flag, +.icon-heart, +.icon-info, +.icon-key, +.icon-link, +.icon-lock, +.icon-lock-open, +.icon-magnifier, +.icon-magnifier-add, +.icon-magnifier-remove, +.icon-paper-clip, +.icon-paper-plane, +.icon-power, +.icon-refresh, +.icon-reload, +.icon-settings, +.icon-star, +.icon-symbol-female, +.icon-symbol-male, +.icon-target, +.icon-credit-card, +.icon-paypal, +.icon-social-tumblr, +.icon-social-twitter, +.icon-social-facebook, +.icon-social-instagram, +.icon-social-linkedin, +.icon-social-pinterest, +.icon-social-github, +.icon-social-google, +.icon-social-reddit, +.icon-social-skype, +.icon-social-dribbble, +.icon-social-behance, +.icon-social-foursqare, +.icon-social-soundcloud, +.icon-social-spotify, +.icon-social-stumbleupon, +.icon-social-youtube, +.icon-social-dropbox, +.icon-social-vkontakte, +.icon-social-steam { + font-family: 'simple-line-icons'; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.icon-user:before { + content: "\e005"; +} +.icon-people:before { + content: "\e001"; +} +.icon-user-female:before { + content: "\e000"; +} +.icon-user-follow:before { + content: "\e002"; +} +.icon-user-following:before { + content: "\e003"; +} +.icon-user-unfollow:before { + content: "\e004"; +} +.icon-login:before { + content: "\e066"; +} +.icon-logout:before { + content: "\e065"; +} +.icon-emotsmile:before { + content: "\e021"; +} +.icon-phone:before { + content: "\e600"; +} +.icon-call-end:before { + content: "\e048"; +} +.icon-call-in:before { + content: "\e047"; +} +.icon-call-out:before { + content: "\e046"; +} +.icon-map:before { + content: "\e033"; +} +.icon-location-pin:before { + content: "\e096"; +} +.icon-direction:before { + content: "\e042"; +} +.icon-directions:before { + content: "\e041"; +} +.icon-compass:before { + content: "\e045"; +} +.icon-layers:before { + content: "\e034"; +} +.icon-menu:before { + content: "\e601"; +} +.icon-list:before { + content: "\e067"; +} +.icon-options-vertical:before { + content: "\e602"; +} +.icon-options:before { + content: "\e603"; +} +.icon-arrow-down:before { + content: "\e604"; +} +.icon-arrow-left:before { + content: "\e605"; +} +.icon-arrow-right:before { + content: "\e606"; +} +.icon-arrow-up:before { + content: "\e607"; +} +.icon-arrow-up-circle:before { + content: "\e078"; +} +.icon-arrow-left-circle:before { + content: "\e07a"; +} +.icon-arrow-right-circle:before { + content: "\e079"; +} +.icon-arrow-down-circle:before { + content: "\e07b"; +} +.icon-check:before { + content: "\e080"; +} +.icon-clock:before { + content: "\e081"; +} +.icon-plus:before { + content: "\e095"; +} +.icon-minus:before { + content: "\e615"; +} +.icon-close:before { + content: "\e082"; +} +.icon-event:before { + content: "\e619"; +} +.icon-exclamation:before { + content: "\e617"; +} +.icon-organization:before { + content: "\e616"; +} +.icon-trophy:before { + content: "\e006"; +} +.icon-screen-smartphone:before { + content: "\e010"; +} +.icon-screen-desktop:before { + content: "\e011"; +} +.icon-plane:before { + content: "\e012"; +} +.icon-notebook:before { + content: "\e013"; +} +.icon-mustache:before { + content: "\e014"; +} +.icon-mouse:before { + content: "\e015"; +} +.icon-magnet:before { + content: "\e016"; +} +.icon-energy:before { + content: "\e020"; +} +.icon-disc:before { + content: "\e022"; +} +.icon-cursor:before { + content: "\e06e"; +} +.icon-cursor-move:before { + content: "\e023"; +} +.icon-crop:before { + content: "\e024"; +} +.icon-chemistry:before { + content: "\e026"; +} +.icon-speedometer:before { + content: "\e007"; +} +.icon-shield:before { + content: "\e00e"; +} +.icon-screen-tablet:before { + content: "\e00f"; +} +.icon-magic-wand:before { + content: "\e017"; +} +.icon-hourglass:before { + content: "\e018"; +} +.icon-graduation:before { + content: "\e019"; +} +.icon-ghost:before { + content: "\e01a"; +} +.icon-game-controller:before { + content: "\e01b"; +} +.icon-fire:before { + content: "\e01c"; +} +.icon-eyeglass:before { + content: "\e01d"; +} +.icon-envelope-open:before { + content: "\e01e"; +} +.icon-envelope-letter:before { + content: "\e01f"; +} +.icon-bell:before { + content: "\e027"; +} +.icon-badge:before { + content: "\e028"; +} +.icon-anchor:before { + content: "\e029"; +} +.icon-wallet:before { + content: "\e02a"; +} +.icon-vector:before { + content: "\e02b"; +} +.icon-speech:before { + content: "\e02c"; +} +.icon-puzzle:before { + content: "\e02d"; +} +.icon-printer:before { + content: "\e02e"; +} +.icon-present:before { + content: "\e02f"; +} +.icon-playlist:before { + content: "\e030"; +} +.icon-pin:before { + content: "\e031"; +} +.icon-picture:before { + content: "\e032"; +} +.icon-handbag:before { + content: "\e035"; +} +.icon-globe-alt:before { + content: "\e036"; +} +.icon-globe:before { + content: "\e037"; +} +.icon-folder-alt:before { + content: "\e039"; +} +.icon-folder:before { + content: "\e089"; +} +.icon-film:before { + content: "\e03a"; +} +.icon-feed:before { + content: "\e03b"; +} +.icon-drop:before { + content: "\e03e"; +} +.icon-drawer:before { + content: "\e03f"; +} +.icon-docs:before { + content: "\e040"; +} +.icon-doc:before { + content: "\e085"; +} +.icon-diamond:before { + content: "\e043"; +} +.icon-cup:before { + content: "\e044"; +} +.icon-calculator:before { + content: "\e049"; +} +.icon-bubbles:before { + content: "\e04a"; +} +.icon-briefcase:before { + content: "\e04b"; +} +.icon-book-open:before { + content: "\e04c"; +} +.icon-basket-loaded:before { + content: "\e04d"; +} +.icon-basket:before { + content: "\e04e"; +} +.icon-bag:before { + content: "\e04f"; +} +.icon-action-undo:before { + content: "\e050"; +} +.icon-action-redo:before { + content: "\e051"; +} +.icon-wrench:before { + content: "\e052"; +} +.icon-umbrella:before { + content: "\e053"; +} +.icon-trash:before { + content: "\e054"; +} +.icon-tag:before { + content: "\e055"; +} +.icon-support:before { + content: "\e056"; +} +.icon-frame:before { + content: "\e038"; +} +.icon-size-fullscreen:before { + content: "\e057"; +} +.icon-size-actual:before { + content: "\e058"; +} +.icon-shuffle:before { + content: "\e059"; +} +.icon-share-alt:before { + content: "\e05a"; +} +.icon-share:before { + content: "\e05b"; +} +.icon-rocket:before { + content: "\e05c"; +} +.icon-question:before { + content: "\e05d"; +} +.icon-pie-chart:before { + content: "\e05e"; +} +.icon-pencil:before { + content: "\e05f"; +} +.icon-note:before { + content: "\e060"; +} +.icon-loop:before { + content: "\e064"; +} +.icon-home:before { + content: "\e069"; +} +.icon-grid:before { + content: "\e06a"; +} +.icon-graph:before { + content: "\e06b"; +} +.icon-microphone:before { + content: "\e063"; +} +.icon-music-tone-alt:before { + content: "\e061"; +} +.icon-music-tone:before { + content: "\e062"; +} +.icon-earphones-alt:before { + content: "\e03c"; +} +.icon-earphones:before { + content: "\e03d"; +} +.icon-equalizer:before { + content: "\e06c"; +} +.icon-like:before { + content: "\e068"; +} +.icon-dislike:before { + content: "\e06d"; +} +.icon-control-start:before { + content: "\e06f"; +} +.icon-control-rewind:before { + content: "\e070"; +} +.icon-control-play:before { + content: "\e071"; +} +.icon-control-pause:before { + content: "\e072"; +} +.icon-control-forward:before { + content: "\e073"; +} +.icon-control-end:before { + content: "\e074"; +} +.icon-volume-1:before { + content: "\e09f"; +} +.icon-volume-2:before { + content: "\e0a0"; +} +.icon-volume-off:before { + content: "\e0a1"; +} +.icon-calendar:before { + content: "\e075"; +} +.icon-bulb:before { + content: "\e076"; +} +.icon-chart:before { + content: "\e077"; +} +.icon-ban:before { + content: "\e07c"; +} +.icon-bubble:before { + content: "\e07d"; +} +.icon-camrecorder:before { + content: "\e07e"; +} +.icon-camera:before { + content: "\e07f"; +} +.icon-cloud-download:before { + content: "\e083"; +} +.icon-cloud-upload:before { + content: "\e084"; +} +.icon-envelope:before { + content: "\e086"; +} +.icon-eye:before { + content: "\e087"; +} +.icon-flag:before { + content: "\e088"; +} +.icon-heart:before { + content: "\e08a"; +} +.icon-info:before { + content: "\e08b"; +} +.icon-key:before { + content: "\e08c"; +} +.icon-link:before { + content: "\e08d"; +} +.icon-lock:before { + content: "\e08e"; +} +.icon-lock-open:before { + content: "\e08f"; +} +.icon-magnifier:before { + content: "\e090"; +} +.icon-magnifier-add:before { + content: "\e091"; +} +.icon-magnifier-remove:before { + content: "\e092"; +} +.icon-paper-clip:before { + content: "\e093"; +} +.icon-paper-plane:before { + content: "\e094"; +} +.icon-power:before { + content: "\e097"; +} +.icon-refresh:before { + content: "\e098"; +} +.icon-reload:before { + content: "\e099"; +} +.icon-settings:before { + content: "\e09a"; +} +.icon-star:before { + content: "\e09b"; +} +.icon-symbol-female:before { + content: "\e09c"; +} +.icon-symbol-male:before { + content: "\e09d"; +} +.icon-target:before { + content: "\e09e"; +} +.icon-credit-card:before { + content: "\e025"; +} +.icon-paypal:before { + content: "\e608"; +} +.icon-social-tumblr:before { + content: "\e00a"; +} +.icon-social-twitter:before { + content: "\e009"; +} +.icon-social-facebook:before { + content: "\e00b"; +} +.icon-social-instagram:before { + content: "\e609"; +} +.icon-social-linkedin:before { + content: "\e60a"; +} +.icon-social-pinterest:before { + content: "\e60b"; +} +.icon-social-github:before { + content: "\e60c"; +} +.icon-social-google:before { + content: "\e60d"; +} +.icon-social-reddit:before { + content: "\e60e"; +} +.icon-social-skype:before { + content: "\e60f"; +} +.icon-social-dribbble:before { + content: "\e00d"; +} +.icon-social-behance:before { + content: "\e610"; +} +.icon-social-foursqare:before { + content: "\e611"; +} +.icon-social-soundcloud:before { + content: "\e612"; +} +.icon-social-spotify:before { + content: "\e613"; +} +.icon-social-stumbleupon:before { + content: "\e614"; +} +.icon-social-youtube:before { + content: "\e008"; +} +.icon-social-dropbox:before { + content: "\e00c"; +} +.icon-social-vkontakte:before { + content: "\e618"; +} +.icon-social-steam:before { + content: "\e620"; +} diff --git a/INCUBATE/incubate/incubate/static/css/style.css b/INCUBATE/incubate/incubate/static/css/style.css new file mode 100644 index 0000000000000000000000000000000000000000..7f138dfee31719cf1f7f453fb1c3ec9bc953fe8a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/css/style.css @@ -0,0 +1,13351 @@ +/*------------------------------------------------------------------- + ===== Table of Contents ===== + + * Bootstrap functions + * Template variables + * SCSS Compass Functions + * Boostrap Main SCSS + * Template mixins + + Animation Mixins + + Background Mixins + + Badge Mixins + + Button Mixins + + Miscellaneous Mixins + + BlockQuote Mixins + + Cards Mixins + + Color Functions Mixins + + Tooltips + + popovers + * Core Styles + + Reset Styles + + Fonts + + Functions + + Backgrounds + + Typography + + Miscellaneous + + Footer + + Layouts + + Utilities + + Demo styles + * Components + + Accordions + + Badges + + Bootstrap Alerts + + Boostrap Progress + + Buttons + + Breadcrumbs + + Cards + + Checkboxes and Radios + + Dropdowns + + Forms + + Google maps + + Icons + + Loaders + + Lists + + Modals + + Pagination + + Popover + + Preview + + Tables + + Tabs + + Timeline + + Todo List + + Tooltips + + User Profile + + Pricing table + * Email + + Mail Sidebar + + Mail List Container + + Message Content + * Plugin Overrides + + Ace Editor + + Avgrund Popup + + Bootstrap Tour + + Chartist + + CodeMirror + + Colcade + + Colorpicker + + Context Menu + + Data Tables + + Datepicker + + Dropify + + Dropzone + + Flot chart + + Full Calendar + + Google Charts + + Icheck + + Jquery File Upload + + Js-grid + + Jvectormap + + Light Gallery + + Listify + + No-ui-slider + + Owl-carousel + + Progressbar-js + + Pws-tabs + + Quill Editor + + Rating + + Select2 + + Summernote Editor + + SweetAlert + + Switchery + + Tags + + TinyMCE Editor + + Toast + + Typeahead + + Wysi Editor + + X-editable + + Wizard + * Landing screens + + Auth + + Lock Screen +-------------------------------------------------------------------*/ +/*-------------------------------------------------------------------*/ +/* === Import Bootstrap functions and variables === */ +/*-------------------------------------------------------------------*/ +/* === Import template variables === */ +/*-------------------------------------------------------------------*/ +/* === SCSS Compass Functions === */ +@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap"); + +@-webkit-keyframes flash { + 0% { + opacity: 1; } + 25% { + opacity: 0; } + 50% { + opacity: 1; } + 75% { + opacity: 0; } + 100% { + opacity: 1; } } + +@keyframes flash { + 0% { + opacity: 1; } + 25% { + opacity: 0; } + 50% { + opacity: 1; } + 75% { + opacity: 0; } + 100% { + opacity: 1; } } + +@-webkit-keyframes bounce { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 20% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 40% { + -webkit-transform: translateY(-30px); + transform: translateY(-30px); } + 50% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 60% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); } + 80% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); } } + +@keyframes bounce { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 20% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 40% { + -webkit-transform: translateY(-30px); + transform: translateY(-30px); } + 50% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 60% { + -webkit-transform: translateY(-15px); + transform: translateY(-15px); } + 80% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); } } + +@-webkit-keyframes shake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); } + 10% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 20% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 30% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 40% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 50% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 60% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 70% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 80% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 90% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@keyframes shake { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); } + 10% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 20% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 30% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 40% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 50% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 60% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 70% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 80% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 90% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@-webkit-keyframes tada { + 0% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); } + 10% { + -webkit-transform: scale(0.9) rotate(-3deg); + transform: scale(0.9) rotate(-3deg); } + 20% { + -webkit-transform: scale(0.9) rotate(-3deg); + transform: scale(0.9) rotate(-3deg); } + 30% { + -webkit-transform: scale(1.1) rotate(3deg); + transform: scale(1.1) rotate(3deg); } + 40% { + -webkit-transform: scale(1.1) rotate(-3deg); + transform: scale(1.1) rotate(-3deg); } + 50% { + -webkit-transform: scale(1.1) rotate(3deg); + transform: scale(1.1) rotate(3deg); } + 60% { + -webkit-transform: scale(1.1) rotate(-3deg); + transform: scale(1.1) rotate(-3deg); } + 70% { + -webkit-transform: scale(1.1) rotate(3deg); + transform: scale(1.1) rotate(3deg); } + 80% { + -webkit-transform: scale(1.1) rotate(-3deg); + transform: scale(1.1) rotate(-3deg); } + 90% { + -webkit-transform: scale(1.1) rotate(3deg); + transform: scale(1.1) rotate(3deg); } + 100% { + -webkit-transform: scale(1) rotate(0); + transform: scale(1) rotate(0); } } + +@keyframes tada { + 0% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); } + 10% { + -webkit-transform: scale(0.9) rotate(-3deg); + transform: scale(0.9) rotate(-3deg); } + 20% { + -webkit-transform: scale(0.9) rotate(-3deg); + transform: scale(0.9) rotate(-3deg); } + 30% { + -webkit-transform: scale(1.1) rotate(3deg); + transform: scale(1.1) rotate(3deg); } + 40% { + -webkit-transform: scale(1.1) rotate(-3deg); + transform: scale(1.1) rotate(-3deg); } + 50% { + -webkit-transform: scale(1.1) rotate(3deg); + transform: scale(1.1) rotate(3deg); } + 60% { + -webkit-transform: scale(1.1) rotate(-3deg); + transform: scale(1.1) rotate(-3deg); } + 70% { + -webkit-transform: scale(1.1) rotate(3deg); + transform: scale(1.1) rotate(3deg); } + 80% { + -webkit-transform: scale(1.1) rotate(-3deg); + transform: scale(1.1) rotate(-3deg); } + 90% { + -webkit-transform: scale(1.1) rotate(3deg); + transform: scale(1.1) rotate(3deg); } + 100% { + -webkit-transform: scale(1) rotate(0); + transform: scale(1) rotate(0); } } + +@-webkit-keyframes swing { + 20%, 40%, 60%, 80%, 100% { + -webkit-transform-origin: top center 50%; + transform-origin: top center 50%; } + 20% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); } + 40% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); } + 60% { + -webkit-transform: rotate(5deg); + transform: rotate(5deg); } + 80% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg); } + 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } } + +@keyframes swing { + 20%, 40%, 60%, 80%, 100% { + -webkit-transform-origin: top center 50%; + transform-origin: top center 50%; } + 20% { + -webkit-transform: rotate(15deg); + transform: rotate(15deg); } + 40% { + -webkit-transform: rotate(-10deg); + transform: rotate(-10deg); } + 60% { + -webkit-transform: rotate(5deg); + transform: rotate(5deg); } + 80% { + -webkit-transform: rotate(-5deg); + transform: rotate(-5deg); } + 100% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } } + +@-webkit-keyframes wobble { + 0% { + -webkit-transform: translateX(0%); + transform: translateX(0%); } + 15% { + -webkit-transform: translateX(-25%) rotate(-5deg); + transform: translateX(-25%) rotate(-5deg); } + 30% { + -webkit-transform: translateX(20%) rotate(3deg); + transform: translateX(20%) rotate(3deg); } + 45% { + -webkit-transform: translateX(-15%) rotate(-3deg); + transform: translateX(-15%) rotate(-3deg); } + 60% { + -webkit-transform: translateX(10%) rotate(2deg); + transform: translateX(10%) rotate(2deg); } + 75% { + -webkit-transform: translateX(-5%) rotate(-1deg); + transform: translateX(-5%) rotate(-1deg); } + 100% { + -webkit-transform: translateX(0%); + transform: translateX(0%); } } + +@keyframes wobble { + 0% { + -webkit-transform: translateX(0%); + transform: translateX(0%); } + 15% { + -webkit-transform: translateX(-25%) rotate(-5deg); + transform: translateX(-25%) rotate(-5deg); } + 30% { + -webkit-transform: translateX(20%) rotate(3deg); + transform: translateX(20%) rotate(3deg); } + 45% { + -webkit-transform: translateX(-15%) rotate(-3deg); + transform: translateX(-15%) rotate(-3deg); } + 60% { + -webkit-transform: translateX(10%) rotate(2deg); + transform: translateX(10%) rotate(2deg); } + 75% { + -webkit-transform: translateX(-5%) rotate(-1deg); + transform: translateX(-5%) rotate(-1deg); } + 100% { + -webkit-transform: translateX(0%); + transform: translateX(0%); } } + +@-webkit-keyframes pulse { + 0% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); } + 50% { + -webkit-transform: scale(1.1, 1.1); + transform: scale(1.1, 1.1); } + 100% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); } } + +@keyframes pulse { + 0% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); } + 50% { + -webkit-transform: scale(1.1, 1.1); + transform: scale(1.1, 1.1); } + 100% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); } } + +@-webkit-keyframes wiggle { + 0% { + -webkit-transform: skewX(9deg); + transform: skewX(9deg); } + 10% { + -webkit-transform: skewX(-8deg); + transform: skewX(-8deg); } + 20% { + -webkit-transform: skewX(7deg); + transform: skewX(7deg); } + 30% { + -webkit-transform: skewX(-6deg); + transform: skewX(-6deg); } + 40% { + -webkit-transform: skewX(5deg); + transform: skewX(5deg); } + 50% { + -webkit-transform: skewX(-4deg); + transform: skewX(-4deg); } + 60% { + -webkit-transform: skewX(3deg); + transform: skewX(3deg); } + 70% { + -webkit-transform: skewX(-2deg); + transform: skewX(-2deg); } + 80% { + -webkit-transform: skewX(1deg); + transform: skewX(1deg); } + 90% { + -webkit-transform: skewX(0deg); + transform: skewX(0deg); } + 100% { + -webkit-transform: skewX(0deg); + transform: skewX(0deg); } } + +@keyframes wiggle { + 0% { + -webkit-transform: skewX(9deg); + transform: skewX(9deg); } + 10% { + -webkit-transform: skewX(-8deg); + transform: skewX(-8deg); } + 20% { + -webkit-transform: skewX(7deg); + transform: skewX(7deg); } + 30% { + -webkit-transform: skewX(-6deg); + transform: skewX(-6deg); } + 40% { + -webkit-transform: skewX(5deg); + transform: skewX(5deg); } + 50% { + -webkit-transform: skewX(-4deg); + transform: skewX(-4deg); } + 60% { + -webkit-transform: skewX(3deg); + transform: skewX(3deg); } + 70% { + -webkit-transform: skewX(-2deg); + transform: skewX(-2deg); } + 80% { + -webkit-transform: skewX(1deg); + transform: skewX(1deg); } + 90% { + -webkit-transform: skewX(0deg); + transform: skewX(0deg); } + 100% { + -webkit-transform: skewX(0deg); + transform: skewX(0deg); } } + +@-webkit-keyframes bounceOut { + 0% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); } + 25% { + -webkit-transform: scale(0.95, 0.95); + transform: scale(0.95, 0.95); } + 50% { + opacity: 1; + -webkit-transform: scale(1.1, 1.1); + transform: scale(1.1, 1.1); } + 100% { + opacity: 0; + -webkit-transform: scale(0.3, 0.3); + transform: scale(0.3, 0.3); } } + +@keyframes bounceOut { + 0% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); } + 25% { + -webkit-transform: scale(0.95, 0.95); + transform: scale(0.95, 0.95); } + 50% { + opacity: 1; + -webkit-transform: scale(1.1, 1.1); + transform: scale(1.1, 1.1); } + 100% { + opacity: 0; + -webkit-transform: scale(0.3, 0.3); + transform: scale(0.3, 0.3); } } + +@-webkit-keyframes bounceOutUp { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 20% { + opacity: 1; + -webkit-transform: translateY(20px); + transform: translateY(20px); } + 100% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); } } + +@keyframes bounceOutUp { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 20% { + opacity: 1; + -webkit-transform: translateY(20px); + transform: translateY(20px); } + 100% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); } } + +@-webkit-keyframes bounceOutDown { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 20% { + opacity: 1; + -webkit-transform: translateY(-20px); + transform: translateY(-20px); } + 100% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); } } + +@keyframes bounceOutDown { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); } + 20% { + opacity: 1; + -webkit-transform: translateY(-20px); + transform: translateY(-20px); } + 100% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); } } + +@-webkit-keyframes bounceOutLeft { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); } + 20% { + opacity: 1; + -webkit-transform: translateX(20px); + transform: translateX(20px); } + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); } } + +@keyframes bounceOutLeft { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); } + 20% { + opacity: 1; + -webkit-transform: translateX(20px); + transform: translateX(20px); } + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); } } + +@-webkit-keyframes bounceOutRight { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); } + 20% { + opacity: 1; + -webkit-transform: translateX(-20px); + transform: translateX(-20px); } + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); } } + +@keyframes bounceOutRight { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); } + 20% { + opacity: 1; + -webkit-transform: translateX(-20px); + transform: translateX(-20px); } + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); } } + +@-webkit-keyframes bounceIn { + 0% { + opacity: 0; + -webkit-transform: scale(0.3, 0.3); + transform: scale(0.3, 0.3); } + 50% { + opacity: 1; + -webkit-transform: scale(1.05, 1.05); + transform: scale(1.05, 1.05); } + 70% { + -webkit-transform: scale(0.9, 0.9); + transform: scale(0.9, 0.9); } + 100% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); } } + +@keyframes bounceIn { + 0% { + opacity: 0; + -webkit-transform: scale(0.3, 0.3); + transform: scale(0.3, 0.3); } + 50% { + opacity: 1; + -webkit-transform: scale(1.05, 1.05); + transform: scale(1.05, 1.05); } + 70% { + -webkit-transform: scale(0.9, 0.9); + transform: scale(0.9, 0.9); } + 100% { + -webkit-transform: scale(1, 1); + transform: scale(1, 1); } } + +@-webkit-keyframes bounceInDown { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); } + 60% { + opacity: 1; + -webkit-transform: translateY(30px); + transform: translateY(30px); } + 80% { + -webkit-transform: translateY(-10px); + transform: translateY(-10px); } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); } } + +@keyframes bounceInDown { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); } + 60% { + opacity: 1; + -webkit-transform: translateY(30px); + transform: translateY(30px); } + 80% { + -webkit-transform: translateY(-10px); + transform: translateY(-10px); } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); } } + +@-webkit-keyframes bounceInUp { + 0% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); } + 60% { + opacity: 1; + -webkit-transform: translateY(-30px); + transform: translateY(-30px); } + 80% { + -webkit-transform: translateY(10px); + transform: translateY(10px); } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); } } + +@keyframes bounceInUp { + 0% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); } + 60% { + opacity: 1; + -webkit-transform: translateY(-30px); + transform: translateY(-30px); } + 80% { + -webkit-transform: translateY(10px); + transform: translateY(10px); } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); } } + +@-webkit-keyframes bounceInRight { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); } + 60% { + opacity: 1; + -webkit-transform: translateX(-30px); + transform: translateX(-30px); } + 80% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@keyframes bounceInRight { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); } + 60% { + opacity: 1; + -webkit-transform: translateX(-30px); + transform: translateX(-30px); } + 80% { + -webkit-transform: translateX(10px); + transform: translateX(10px); } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@-webkit-keyframes bounceInLeft { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); } + 60% { + opacity: 1; + -webkit-transform: translateX(30px); + transform: translateX(30px); } + 80% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@keyframes bounceInLeft { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); } + 60% { + opacity: 1; + -webkit-transform: translateX(30px); + transform: translateX(30px); } + 80% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px); } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@-webkit-keyframes fadeOut { + 0% { + opacity: 1; } + 100% { + opacity: 0; } } + +@keyframes fadeOut { + 0% { + opacity: 1; } + 100% { + opacity: 0; } } + +@-webkit-keyframes fadeOutUp { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } + 100% { + -webkit-transform: translateY(-20px); + transform: translateY(-20px); + opacity: 0; } } + +@keyframes fadeOutUp { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } + 100% { + -webkit-transform: translateY(-20px); + transform: translateY(-20px); + opacity: 0; } } + +@-webkit-keyframes fadeOutDown { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } + 100% { + -webkit-transform: translateY(20px); + transform: translateY(20px); + opacity: 0; } } + +@keyframes fadeOutDown { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } + 100% { + -webkit-transform: translateY(20px); + transform: translateY(20px); + opacity: 0; } } + +@-webkit-keyframes fadeOutRight { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; } + 100% { + -webkit-transform: translateX(20px); + transform: translateX(20px); + opacity: 0; } } + +@keyframes fadeOutRight { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; } + 100% { + -webkit-transform: translateX(20px); + transform: translateX(20px); + opacity: 0; } } + +@-webkit-keyframes fadeOutLeft { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; } + 100% { + -webkit-transform: translateX(-20px); + transform: translateX(-20px); + opacity: 0; } } + +@keyframes fadeOutLeft { + 0% { + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; } + 100% { + -webkit-transform: translateX(-20px); + transform: translateX(-20px); + opacity: 0; } } + +@-webkit-keyframes fadeOutUpBig { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } + 100% { + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); + opacity: 0; } } + +@keyframes fadeOutUpBig { + 0% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } + 100% { + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); + opacity: 0; } } + +@-webkit-keyframes fadeOutDownBig { + 0% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); } + 100% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); } } + +@keyframes fadeOutDownBig { + 0% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); } + 100% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px); } } + +@-webkit-keyframes fadeOutRightBig { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); } + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); } } + +@keyframes fadeOutRightBig { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); } + 100% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); } } + +@-webkit-keyframes fadeOutLeftBig { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); } + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); } } + +@keyframes fadeOutLeftBig { + 0% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); } + 100% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); } } + +@-webkit-keyframes fadeIn { + 0% { + opacity: 0; } + 100% { + opacity: 1; } } + +@keyframes fadeIn { + 0% { + opacity: 0; } + 100% { + opacity: 1; } } + +@-webkit-keyframes fadeInUp { + 0% { + -webkit-transform: translateY(20px); + transform: translateY(20px); + opacity: 0; } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } } + +@keyframes fadeInUp { + 0% { + -webkit-transform: translateY(20px); + transform: translateY(20px); + opacity: 0; } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } } + +@-webkit-keyframes fadeInDown { + 0% { + -webkit-transform: translateY(-20px); + transform: translateY(-20px); + opacity: 0; } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } } + +@keyframes fadeInDown { + 0% { + -webkit-transform: translateY(-20px); + transform: translateY(-20px); + opacity: 0; } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } } + +@-webkit-keyframes fadeInRight { + 0% { + -webkit-transform: translateX(20px); + transform: translateX(20px); + opacity: 0; } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; } } + +@keyframes fadeInRight { + 0% { + -webkit-transform: translateX(20px); + transform: translateX(20px); + opacity: 0; } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; } } + +@-webkit-keyframes fadeInLeft { + 0% { + -webkit-transform: translateX(-20px); + transform: translateX(-20px); + opacity: 0; } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; } } + +@keyframes fadeInLeft { + 0% { + -webkit-transform: translateX(-20px); + transform: translateX(-20px); + opacity: 0; } + 100% { + -webkit-transform: translateX(0); + transform: translateX(0); + opacity: 1; } } + +@-webkit-keyframes fadeInUpBig { + 0% { + -webkit-transform: translateY(2000px); + transform: translateY(2000px); + opacity: 0; } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } } + +@keyframes fadeInUpBig { + 0% { + -webkit-transform: translateY(2000px); + transform: translateY(2000px); + opacity: 0; } + 100% { + -webkit-transform: translateY(0); + transform: translateY(0); + opacity: 1; } } + +@-webkit-keyframes fadeInDownBig { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); } } + +@keyframes fadeInDownBig { + 0% { + opacity: 0; + -webkit-transform: translateY(-2000px); + transform: translateY(-2000px); } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0); } } + +@-webkit-keyframes fadeInRightBig { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@keyframes fadeInRightBig { + 0% { + opacity: 0; + -webkit-transform: translateX(2000px); + transform: translateX(2000px); } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@-webkit-keyframes fadeInLeftBig { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@keyframes fadeInLeftBig { + 0% { + opacity: 0; + -webkit-transform: translateX(-2000px); + transform: translateX(-2000px); } + 100% { + opacity: 1; + -webkit-transform: translateX(0); + transform: translateX(0); } } + +@-webkit-keyframes flip { + 0% { + -webkit-transform: perspective(400px) rotateY(0); + transform: perspective(400px) rotateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; } + 40% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg); + transform: perspective(400px) translateZ(150px) rotateY(170deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; } + 50% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); + transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + 80% { + -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95); + transform: perspective(400px) rotateY(360deg) scale(0.95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + 100% { + -webkit-transform: perspective(400px) scale(1); + transform: perspective(400px) scale(1); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } } + +@keyframes flip { + 0% { + -webkit-transform: perspective(400px) rotateY(0); + transform: perspective(400px) rotateY(0); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; } + 40% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg); + transform: perspective(400px) translateZ(150px) rotateY(170deg); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; } + 50% { + -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); + transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + 80% { + -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95); + transform: perspective(400px) rotateY(360deg) scale(0.95); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } + 100% { + -webkit-transform: perspective(400px) scale(1); + transform: perspective(400px) scale(1); + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; } } + +@-webkit-keyframes flipInX { + 0% { + -webkit-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } + 40% { + -webkit-transform: perspective(400px) rotateX(-10deg); + transform: perspective(400px) rotateX(-10deg); } + 70% { + -webkit-transform: perspective(400px) rotateX(10deg); + transform: perspective(400px) rotateX(10deg); } + 100% { + -webkit-transform: perspective(400px) rotateX(0deg); + transform: perspective(400px) rotateX(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } } + +@keyframes flipInX { + 0% { + -webkit-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } + 40% { + -webkit-transform: perspective(400px) rotateX(-10deg); + transform: perspective(400px) rotateX(-10deg); } + 70% { + -webkit-transform: perspective(400px) rotateX(10deg); + transform: perspective(400px) rotateX(10deg); } + 100% { + -webkit-transform: perspective(400px) rotateX(0deg); + transform: perspective(400px) rotateX(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } } + +@-webkit-keyframes flipOutX { + 0% { + -webkit-transform: perspective(400px) rotateX(0deg); + transform: perspective(400px) rotateX(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } + 100% { + -webkit-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } } + +@keyframes flipOutX { + 0% { + -webkit-transform: perspective(400px) rotateX(0deg); + transform: perspective(400px) rotateX(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } + 100% { + -webkit-transform: perspective(400px) rotateX(90deg); + transform: perspective(400px) rotateX(90deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } } + +@-webkit-keyframes flipInY { + 0% { + -webkit-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } + 40% { + -webkit-transform: perspective(400px) rotateY(-10deg); + transform: perspective(400px) rotateY(-10deg); } + 70% { + -webkit-transform: perspective(400px) rotateY(10deg); + transform: perspective(400px) rotateY(10deg); } + 100% { + -webkit-transform: perspective(400px) rotateY(0deg); + transform: perspective(400px) rotateY(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } } + +@keyframes flipInY { + 0% { + -webkit-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } + 40% { + -webkit-transform: perspective(400px) rotateY(-10deg); + transform: perspective(400px) rotateY(-10deg); } + 70% { + -webkit-transform: perspective(400px) rotateY(10deg); + transform: perspective(400px) rotateY(10deg); } + 100% { + -webkit-transform: perspective(400px) rotateY(0deg); + transform: perspective(400px) rotateY(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } } + +@-webkit-keyframes flipOutY { + 0% { + -webkit-transform: perspective(400px) rotateY(0deg); + transform: perspective(400px) rotateY(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } + 100% { + -webkit-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } } + +@keyframes flipOutY { + 0% { + -webkit-transform: perspective(400px) rotateY(0deg); + transform: perspective(400px) rotateY(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } + 100% { + -webkit-transform: perspective(400px) rotateY(90deg); + transform: perspective(400px) rotateY(90deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } } + +@-webkit-keyframes lightSpeedIn { + 0% { + -webkit-transform: translateX(100%) skewX(-30deg); + transform: translateX(100%) skewX(-30deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } + 60% { + -webkit-transform: translateX(-20%) skewX(30deg); + transform: translateX(-20%) skewX(30deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } + 80% { + -webkit-transform: translateX(0%) skewX(-15deg); + transform: translateX(0%) skewX(-15deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } + 100% { + -webkit-transform: translateX(0%) skewX(0deg); + transform: translateX(0%) skewX(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } } + +@keyframes lightSpeedIn { + 0% { + -webkit-transform: translateX(100%) skewX(-30deg); + transform: translateX(100%) skewX(-30deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } + 60% { + -webkit-transform: translateX(-20%) skewX(30deg); + transform: translateX(-20%) skewX(30deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } + 80% { + -webkit-transform: translateX(0%) skewX(-15deg); + transform: translateX(0%) skewX(-15deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } + 100% { + -webkit-transform: translateX(0%) skewX(0deg); + transform: translateX(0%) skewX(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } } + +@-webkit-keyframes lightSpeedOut { + 0% { + -webkit-transform: translateX(0%) skewX(0deg); + transform: translateX(0%) skewX(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } + 100% { + -webkit-transform: translateX(100%) skewX(-30deg); + transform: translateX(100%) skewX(-30deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } } + +@keyframes lightSpeedOut { + 0% { + -webkit-transform: translateX(0%) skewX(0deg); + transform: translateX(0%) skewX(0deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; } + 100% { + -webkit-transform: translateX(100%) skewX(-30deg); + transform: translateX(100%) skewX(-30deg); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } } + +@-webkit-keyframes rotateOut { + 0% { + -webkit-transform-origin: center center 50%; + transform-origin: center center 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + 100% { + -webkit-transform-origin: center center 50%; + transform-origin: center center 50%; + -webkit-transform: rotate(200deg); + transform: rotate(200deg); + opacity: 0; } } + +@keyframes rotateOut { + 0% { + -webkit-transform-origin: center center 50%; + transform-origin: center center 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + 100% { + -webkit-transform-origin: center center 50%; + transform-origin: center center 50%; + -webkit-transform: rotate(200deg); + transform: rotate(200deg); + opacity: 0; } } + +@-webkit-keyframes rotateOutDownLeft { + 0% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + 100% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; } } + +@keyframes rotateOutDownLeft { + 0% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + 100% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; } } + +@-webkit-keyframes rotateOutUpLeft { + 0% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + 100% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; } } + +@keyframes rotateOutUpLeft { + 0% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + 100% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; } } + +@-webkit-keyframes rotateOutDownRight { + 0% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + 100% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; } } + +@keyframes rotateOutDownRight { + 0% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + 100% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; } } + +@-webkit-keyframes rotateOutUpRight { + 0% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + 100% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; } } + +@keyframes rotateOutUpRight { + 0% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } + 100% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; } } + +@-webkit-keyframes rotateIn { + 0% { + -webkit-transform-origin: center center 50%; + transform-origin: center center 50%; + -webkit-transform: rotate(-200deg); + transform: rotate(-200deg); + opacity: 0; } + 100% { + -webkit-transform-origin: center center 50%; + transform-origin: center center 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } } + +@keyframes rotateIn { + 0% { + -webkit-transform-origin: center center 50%; + transform-origin: center center 50%; + -webkit-transform: rotate(-200deg); + transform: rotate(-200deg); + opacity: 0; } + 100% { + -webkit-transform-origin: center center 50%; + transform-origin: center center 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } } + +@-webkit-keyframes rotateInDownLeft { + 0% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; } + 100% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } } + +@keyframes rotateInDownLeft { + 0% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; } + 100% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } } + +@-webkit-keyframes rotateInUpLeft { + 0% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; } + 100% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } } + +@keyframes rotateInUpLeft { + 0% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; } + 100% { + -webkit-transform-origin: left bottom 50%; + transform-origin: left bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } } + +@-webkit-keyframes rotateInUpRight { + 0% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; } + 100% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } } + +@keyframes rotateInUpRight { + 0% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); + opacity: 0; } + 100% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } } + +@-webkit-keyframes rotateInDownRight { + 0% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; } + 100% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } } + +@keyframes rotateInDownRight { + 0% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); + opacity: 0; } + 100% { + -webkit-transform-origin: right bottom 50%; + transform-origin: right bottom 50%; + -webkit-transform: rotate(0); + transform: rotate(0); + opacity: 1; } } + +@-webkit-keyframes hinge { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + -webkit-transform-origin: top left 50%; + transform-origin: top left 50%; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 20%, 60% { + -webkit-transform: rotate(80deg); + transform: rotate(80deg); + -webkit-transform-origin: top left 50%; + transform-origin: top left 50%; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 40% { + -webkit-transform: rotate(60deg); + transform: rotate(60deg); + -webkit-transform-origin: top left 50%; + transform-origin: top left 50%; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 80% { + -webkit-transform: rotate(60deg) translateY(0); + transform: rotate(60deg) translateY(0); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; + -webkit-transform-origin: top left 50%; + transform-origin: top left 50%; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 100% { + -webkit-transform: translateY(700px); + transform: translateY(700px); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } } + +@keyframes hinge { + 0% { + -webkit-transform: rotate(0); + transform: rotate(0); + -webkit-transform-origin: top left 50%; + transform-origin: top left 50%; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 20%, 60% { + -webkit-transform: rotate(80deg); + transform: rotate(80deg); + -webkit-transform-origin: top left 50%; + transform-origin: top left 50%; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 40% { + -webkit-transform: rotate(60deg); + transform: rotate(60deg); + -webkit-transform-origin: top left 50%; + transform-origin: top left 50%; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 80% { + -webkit-transform: rotate(60deg) translateY(0); + transform: rotate(60deg) translateY(0); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; + -webkit-transform-origin: top left 50%; + transform-origin: top left 50%; + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out; } + 100% { + -webkit-transform: translateY(700px); + transform: translateY(700px); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; } } + +@-webkit-keyframes rollIn { + 0% { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + -webkit-transform: translateX(-100%) rotate(-120deg); + transform: translateX(-100%) rotate(-120deg); } + 100% { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; + -webkit-transform: translateX(0px) rotate(0deg); + transform: translateX(0px) rotate(0deg); } } + +@keyframes rollIn { + 0% { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + -webkit-transform: translateX(-100%) rotate(-120deg); + transform: translateX(-100%) rotate(-120deg); } + 100% { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; + -webkit-transform: translateX(0px) rotate(0deg); + transform: translateX(0px) rotate(0deg); } } + +@-webkit-keyframes rollOut { + 0% { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; + -webkit-transform: translateX(0px) rotate(0deg); + transform: translateX(0px) rotate(0deg); } + 100% { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + -webkit-transform: translateX(-100%) rotate(-120deg); + transform: translateX(-100%) rotate(-120deg); } } + +@keyframes rollOut { + 0% { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; + -webkit-transform: translateX(0px) rotate(0deg); + transform: translateX(0px) rotate(0deg); } + 100% { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + -webkit-transform: translateX(-100%) rotate(-120deg); + transform: translateX(-100%) rotate(-120deg); } } + +/*-------------------------------------------------------------------*/ +/* === Boostrap Main SCSS === */ +/*! + * Bootstrap v4.5.3 (https://getbootstrap.com/) + * Copyright 2011-2020 The Bootstrap Authors + * Copyright 2011-2020 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root { + --blue: #5E50F9; + --indigo: #6610f2; + --purple: #6a008a; + --pink: #E91E63; + --red: #f96868; + --orange: #f2a654; + --yellow: #f6e84e; + --green: #46c35f; + --teal: #58d8a3; + --cyan: #57c7d4; + --white: #ffffff; + --gray: #6c757d; + --gray-dark: #0f1531; + --blue: #5E50F9; + --indigo: #6610f2; + --purple: #6a008a; + --pink: #E91E63; + --red: #f96868; + --orange: #f2a654; + --yellow: #f6e84e; + --green: #46c35f; + --teal: #58d8a3; + --cyan: #57c7d4; + --white: #ffffff; + --gray: #434a54; + --gray-light: #aab2bd; + --gray-lighter: #e8eff4; + --gray-lightest: #e6e9ed; + --black: #000000; + --primary: #1bdbe0; + --secondary: #d8d8d8; + --success: #38ce3c; + --info: #8e32e9; + --warning: #ffde73; + --danger: #ff4d6b; + --light: #f8f9fa; + --dark: #3e4b5b; + --breakpoint-xs: 0; + --breakpoint-sm: 576px; + --breakpoint-md: 768px; + --breakpoint-lg: 992px; + --breakpoint-xl: 1200px; + --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } + +*, +*::before, +*::after { + -webkit-box-sizing: border-box; + box-sizing: border-box; } + +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 { + display: block; } + +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #343a40; + text-align: left; + background-color: #fff; } + +[tabindex="-1"]:focus:not(:focus-visible) { + outline: 0 !important; } + +hr { + -webkit-box-sizing: content-box; + box-sizing: content-box; + height: 0; + overflow: visible; } + +h1, h2, h3, h4, h5, h6 { + margin-top: 0; + margin-bottom: 0.5rem; } + +p { + margin-top: 0; + margin-bottom: 1rem; } + +abbr[title], +abbr[data-original-title] { + text-decoration: underline; + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + border-bottom: 0; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; } + +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; } + +ol, +ul, +dl { + margin-top: 0; + margin-bottom: 1rem; } + +ol ol, +ul ul, +ol ul, +ul ol { + margin-bottom: 0; } + +dt { + font-weight: 700; } + +dd { + margin-bottom: .5rem; + margin-left: 0; } + +blockquote { + margin: 0 0 1rem; } + +b, +strong { + font-weight: bolder; } + +small { + font-size: 80%; } + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; } + +sub { + bottom: -.25em; } + +sup { + top: -.5em; } + +a { + color: #007bff; + text-decoration: none; + background-color: transparent; } + a:hover { + color: #0056b3; + text-decoration: underline; } + +a:not([href]):not([class]) { + color: inherit; + text-decoration: none; } + a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; } + +pre, +code, +kbd, +samp { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + font-size: 1em; } + +pre { + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + -ms-overflow-style: scrollbar; } + +figure { + margin: 0 0 1rem; } + +img { + vertical-align: middle; + border-style: none; } + +svg { + overflow: hidden; + vertical-align: middle; } + +table { + border-collapse: collapse; } + +caption { + padding-top: 0.9375rem; + padding-bottom: 0.9375rem; + color: #6c757d; + text-align: left; + caption-side: bottom; } + +th { + text-align: inherit; + text-align: -webkit-match-parent; } + +label { + display: inline-block; + margin-bottom: 0.5rem; } + +button { + border-radius: 0; } + +button:focus { + outline: 1px dotted; + outline: 5px auto -webkit-focus-ring-color; } + +input, +button, +select, +optgroup, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; } + +button, +input { + overflow: visible; } + +button, +select { + text-transform: none; } + +[role="button"] { + cursor: pointer; } + +select { + word-wrap: normal; } + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; } + +button:not(:disabled), +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[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 { + padding: 0; + border-style: none; } + +input[type="radio"], +input[type="checkbox"] { + -webkit-box-sizing: border-box; + box-sizing: border-box; + padding: 0; } + +textarea { + overflow: auto; + resize: vertical; } + +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; } + +legend { + display: block; + width: 100%; + max-width: 100%; + padding: 0; + margin-bottom: .5rem; + font-size: 1.5rem; + line-height: inherit; + color: inherit; + white-space: normal; } + +progress { + vertical-align: baseline; } + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; } + +[type="search"] { + outline-offset: -2px; + -webkit-appearance: none; } + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; } + +output { + display: inline-block; } + +summary { + display: list-item; + cursor: pointer; } + +template { + display: none; } + +[hidden] { + display: none !important; } + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; } + +h1, .h1 { + font-size: 2.5rem; } + +h2, .h2 { + font-size: 2rem; } + +h3, .h3 { + font-size: 1.75rem; } + +h4, .h4 { + font-size: 1.5rem; } + +h5, .h5 { + font-size: 1.25rem; } + +h6, .h6 { + font-size: 1rem; } + +.lead { + font-size: 1.25rem; + font-weight: 300; } + +.display-1 { + font-size: 6rem; + font-weight: 300; + line-height: 1.2; } + +.display-2 { + font-size: 5.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-3 { + font-size: 4.5rem; + font-weight: 300; + line-height: 1.2; } + +.display-4 { + font-size: 3.5rem; + font-weight: 300; + line-height: 1.2; } + +hr { + margin-top: 1rem; + margin-bottom: 1rem; + border: 0; + border-top: 1px solid rgba(0, 0, 0, 0.1); } + +small, +.small { + font-size: 80%; + font-weight: 400; } + +mark, +.mark { + padding: 0.2em; + background-color: #fcf8e3; } + +.list-unstyled { + padding-left: 0; + list-style: none; } + +.list-inline { + padding-left: 0; + list-style: none; } + +.list-inline-item { + display: inline-block; } + .list-inline-item:not(:last-child) { + margin-right: 0.5rem; } + +.initialism { + font-size: 90%; + text-transform: uppercase; } + +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; } + +.blockquote-footer { + display: block; + font-size: 80%; + color: #6c757d; } + .blockquote-footer::before { + content: "\2014\00A0"; } + +.img-fluid { + max-width: 100%; + height: auto; } + +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; } + +.figure { + display: inline-block; } + +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; } + +.figure-caption { + font-size: 90%; + color: #6c757d; } + +code { + font-size: 87.5%; + color: #e83e8c; + word-wrap: break-word; } + a > code { + color: inherit; } + +kbd { + padding: 0.2rem 0.4rem; + font-size: 87.5%; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; } + kbd kbd { + padding: 0; + font-size: 100%; + font-weight: 700; } + +pre { + display: block; + font-size: 87.5%; + color: #212529; } + pre code { + font-size: inherit; + color: inherit; + word-break: normal; } + +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; } + +.container, +.container-fluid, +.container-sm, +.container-md, +.container-lg, +.container-xl { + width: 100%; + padding-right: 10px; + padding-left: 10px; + margin-right: auto; + margin-left: auto; } + +@media (min-width: 576px) { + .container, .container-sm { + max-width: 540px; } } + +@media (min-width: 768px) { + .container, .container-sm, .container-md { + max-width: 720px; } } + +@media (min-width: 992px) { + .container, .container-sm, .container-md, .container-lg { + max-width: 960px; } } + +@media (min-width: 1200px) { + .container, .container-sm, .container-md, .container-lg, .container-xl { + max-width: 1140px; } } + +.row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -10px; + margin-left: -10px; } + +.no-gutters { + margin-right: 0; + margin-left: 0; } + .no-gutters > .col, + .no-gutters > [class*="col-"] { + padding-right: 0; + padding-left: 0; } + +.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, +.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, +.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, +.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, +.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, +.col-xl-auto { + position: relative; + width: 100%; + padding-right: 10px; + padding-left: 10px; } + +.col { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + +.row-cols-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + +.row-cols-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + +.row-cols-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + +.row-cols-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + +.row-cols-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; } + +.row-cols-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + +.col-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; } + +.col-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + +.col-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + +.col-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + +.col-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + +.col-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + +.col-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + +.col-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + +.col-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + +.col-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + +.col-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + +.col-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + +.col-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + +.order-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + +.order-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + +.order-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + +.order-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + +.order-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + +.order-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + +.order-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + +.order-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + +.order-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + +.order-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + +.order-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + +.order-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + +.order-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + +.order-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + +.order-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + +.offset-1 { + margin-left: 8.33333%; } + +.offset-2 { + margin-left: 16.66667%; } + +.offset-3 { + margin-left: 25%; } + +.offset-4 { + margin-left: 33.33333%; } + +.offset-5 { + margin-left: 41.66667%; } + +.offset-6 { + margin-left: 50%; } + +.offset-7 { + margin-left: 58.33333%; } + +.offset-8 { + margin-left: 66.66667%; } + +.offset-9 { + margin-left: 75%; } + +.offset-10 { + margin-left: 83.33333%; } + +.offset-11 { + margin-left: 91.66667%; } + +@media (min-width: 576px) { + .col-sm { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .row-cols-sm-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .row-cols-sm-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .row-cols-sm-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .row-cols-sm-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .row-cols-sm-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; } + .row-cols-sm-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-sm-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-sm-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-sm-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-sm-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-sm-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-sm-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-sm-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-sm-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-sm-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-sm-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-sm-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-sm-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-sm-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-sm-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-sm-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-sm-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-sm-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-sm-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-sm-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-sm-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-sm-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-sm-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-sm-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-sm-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-sm-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-sm-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-sm-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-sm-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-sm-0 { + margin-left: 0; } + .offset-sm-1 { + margin-left: 8.33333%; } + .offset-sm-2 { + margin-left: 16.66667%; } + .offset-sm-3 { + margin-left: 25%; } + .offset-sm-4 { + margin-left: 33.33333%; } + .offset-sm-5 { + margin-left: 41.66667%; } + .offset-sm-6 { + margin-left: 50%; } + .offset-sm-7 { + margin-left: 58.33333%; } + .offset-sm-8 { + margin-left: 66.66667%; } + .offset-sm-9 { + margin-left: 75%; } + .offset-sm-10 { + margin-left: 83.33333%; } + .offset-sm-11 { + margin-left: 91.66667%; } } + +@media (min-width: 768px) { + .col-md { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .row-cols-md-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .row-cols-md-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .row-cols-md-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .row-cols-md-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .row-cols-md-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; } + .row-cols-md-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-md-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-md-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-md-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-md-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-md-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-md-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-md-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-md-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-md-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-md-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-md-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-md-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-md-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-md-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-md-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-md-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-md-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-md-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-md-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-md-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-md-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-md-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-md-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-md-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-md-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-md-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-md-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-md-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-md-0 { + margin-left: 0; } + .offset-md-1 { + margin-left: 8.33333%; } + .offset-md-2 { + margin-left: 16.66667%; } + .offset-md-3 { + margin-left: 25%; } + .offset-md-4 { + margin-left: 33.33333%; } + .offset-md-5 { + margin-left: 41.66667%; } + .offset-md-6 { + margin-left: 50%; } + .offset-md-7 { + margin-left: 58.33333%; } + .offset-md-8 { + margin-left: 66.66667%; } + .offset-md-9 { + margin-left: 75%; } + .offset-md-10 { + margin-left: 83.33333%; } + .offset-md-11 { + margin-left: 91.66667%; } } + +@media (min-width: 992px) { + .col-lg { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .row-cols-lg-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .row-cols-lg-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .row-cols-lg-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .row-cols-lg-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .row-cols-lg-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; } + .row-cols-lg-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-lg-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-lg-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-lg-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-lg-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-lg-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-lg-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-lg-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-lg-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-lg-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-lg-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-lg-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-lg-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-lg-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-lg-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-lg-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-lg-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-lg-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-lg-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-lg-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-lg-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-lg-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-lg-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-lg-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-lg-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-lg-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-lg-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-lg-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-lg-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-lg-0 { + margin-left: 0; } + .offset-lg-1 { + margin-left: 8.33333%; } + .offset-lg-2 { + margin-left: 16.66667%; } + .offset-lg-3 { + margin-left: 25%; } + .offset-lg-4 { + margin-left: 33.33333%; } + .offset-lg-5 { + margin-left: 41.66667%; } + .offset-lg-6 { + margin-left: 50%; } + .offset-lg-7 { + margin-left: 58.33333%; } + .offset-lg-8 { + margin-left: 66.66667%; } + .offset-lg-9 { + margin-left: 75%; } + .offset-lg-10 { + margin-left: 83.33333%; } + .offset-lg-11 { + margin-left: 91.66667%; } } + +@media (min-width: 1200px) { + .col-xl { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + max-width: 100%; } + .row-cols-xl-1 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .row-cols-xl-2 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .row-cols-xl-3 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .row-cols-xl-4 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .row-cols-xl-5 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 20%; + flex: 0 0 20%; + max-width: 20%; } + .row-cols-xl-6 > * { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-xl-auto { + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + width: auto; + max-width: 100%; } + .col-xl-1 { + -webkit-box-flex: 0; + -ms-flex: 0 0 8.33333%; + flex: 0 0 8.33333%; + max-width: 8.33333%; } + .col-xl-2 { + -webkit-box-flex: 0; + -ms-flex: 0 0 16.66667%; + flex: 0 0 16.66667%; + max-width: 16.66667%; } + .col-xl-3 { + -webkit-box-flex: 0; + -ms-flex: 0 0 25%; + flex: 0 0 25%; + max-width: 25%; } + .col-xl-4 { + -webkit-box-flex: 0; + -ms-flex: 0 0 33.33333%; + flex: 0 0 33.33333%; + max-width: 33.33333%; } + .col-xl-5 { + -webkit-box-flex: 0; + -ms-flex: 0 0 41.66667%; + flex: 0 0 41.66667%; + max-width: 41.66667%; } + .col-xl-6 { + -webkit-box-flex: 0; + -ms-flex: 0 0 50%; + flex: 0 0 50%; + max-width: 50%; } + .col-xl-7 { + -webkit-box-flex: 0; + -ms-flex: 0 0 58.33333%; + flex: 0 0 58.33333%; + max-width: 58.33333%; } + .col-xl-8 { + -webkit-box-flex: 0; + -ms-flex: 0 0 66.66667%; + flex: 0 0 66.66667%; + max-width: 66.66667%; } + .col-xl-9 { + -webkit-box-flex: 0; + -ms-flex: 0 0 75%; + flex: 0 0 75%; + max-width: 75%; } + .col-xl-10 { + -webkit-box-flex: 0; + -ms-flex: 0 0 83.33333%; + flex: 0 0 83.33333%; + max-width: 83.33333%; } + .col-xl-11 { + -webkit-box-flex: 0; + -ms-flex: 0 0 91.66667%; + flex: 0 0 91.66667%; + max-width: 91.66667%; } + .col-xl-12 { + -webkit-box-flex: 0; + -ms-flex: 0 0 100%; + flex: 0 0 100%; + max-width: 100%; } + .order-xl-first { + -webkit-box-ordinal-group: 0; + -ms-flex-order: -1; + order: -1; } + .order-xl-last { + -webkit-box-ordinal-group: 14; + -ms-flex-order: 13; + order: 13; } + .order-xl-0 { + -webkit-box-ordinal-group: 1; + -ms-flex-order: 0; + order: 0; } + .order-xl-1 { + -webkit-box-ordinal-group: 2; + -ms-flex-order: 1; + order: 1; } + .order-xl-2 { + -webkit-box-ordinal-group: 3; + -ms-flex-order: 2; + order: 2; } + .order-xl-3 { + -webkit-box-ordinal-group: 4; + -ms-flex-order: 3; + order: 3; } + .order-xl-4 { + -webkit-box-ordinal-group: 5; + -ms-flex-order: 4; + order: 4; } + .order-xl-5 { + -webkit-box-ordinal-group: 6; + -ms-flex-order: 5; + order: 5; } + .order-xl-6 { + -webkit-box-ordinal-group: 7; + -ms-flex-order: 6; + order: 6; } + .order-xl-7 { + -webkit-box-ordinal-group: 8; + -ms-flex-order: 7; + order: 7; } + .order-xl-8 { + -webkit-box-ordinal-group: 9; + -ms-flex-order: 8; + order: 8; } + .order-xl-9 { + -webkit-box-ordinal-group: 10; + -ms-flex-order: 9; + order: 9; } + .order-xl-10 { + -webkit-box-ordinal-group: 11; + -ms-flex-order: 10; + order: 10; } + .order-xl-11 { + -webkit-box-ordinal-group: 12; + -ms-flex-order: 11; + order: 11; } + .order-xl-12 { + -webkit-box-ordinal-group: 13; + -ms-flex-order: 12; + order: 12; } + .offset-xl-0 { + margin-left: 0; } + .offset-xl-1 { + margin-left: 8.33333%; } + .offset-xl-2 { + margin-left: 16.66667%; } + .offset-xl-3 { + margin-left: 25%; } + .offset-xl-4 { + margin-left: 33.33333%; } + .offset-xl-5 { + margin-left: 41.66667%; } + .offset-xl-6 { + margin-left: 50%; } + .offset-xl-7 { + margin-left: 58.33333%; } + .offset-xl-8 { + margin-left: 66.66667%; } + .offset-xl-9 { + margin-left: 75%; } + .offset-xl-10 { + margin-left: 83.33333%; } + .offset-xl-11 { + margin-left: 91.66667%; } } + +.table { + width: 100%; + margin-bottom: 1rem; + color: #212529; } + .table th, + .table td { + padding: 0.9375rem; + vertical-align: top; + border-top: 1px solid #e8ecf1; } + .table thead th { + vertical-align: bottom; + border-bottom: 2px solid #e8ecf1; } + .table tbody + tbody { + border-top: 2px solid #e8ecf1; } + +.table-sm th, +.table-sm td { + padding: 0.3rem; } + +.table-bordered { + border: 1px solid #e8ecf1; } + .table-bordered th, + .table-bordered td { + border: 1px solid #e8ecf1; } + .table-bordered thead th, + .table-bordered thead td { + border-bottom-width: 2px; } + +.table-borderless th, +.table-borderless td, +.table-borderless thead th, +.table-borderless tbody + tbody { + border: 0; } + +.table-striped tbody tr:nth-of-type(odd) { + background-color: #ecf0f4; } + +.table-hover tbody tr:hover { + color: #212529; + background-color: #ecf0f4; } + +.table-primary, +.table-primary > th, +.table-primary > td { + background-color: #bff5f6; } + +.table-primary th, +.table-primary td, +.table-primary thead th, +.table-primary tbody + tbody { + border-color: #88ecef; } + +.table-hover .table-primary:hover { + background-color: #a9f2f3; } + .table-hover .table-primary:hover > td, + .table-hover .table-primary:hover > th { + background-color: #a9f2f3; } + +.table-secondary, +.table-secondary > th, +.table-secondary > td { + background-color: #f4f4f4; } + +.table-secondary th, +.table-secondary td, +.table-secondary thead th, +.table-secondary tbody + tbody { + border-color: #ebebeb; } + +.table-hover .table-secondary:hover { + background-color: #e7e7e7; } + .table-hover .table-secondary:hover > td, + .table-hover .table-secondary:hover > th { + background-color: #e7e7e7; } + +.table-success, +.table-success > th, +.table-success > td { + background-color: #c7f1c8; } + +.table-success th, +.table-success td, +.table-success thead th, +.table-success tbody + tbody { + border-color: #98e69a; } + +.table-hover .table-success:hover { + background-color: #b3ecb4; } + .table-hover .table-success:hover > td, + .table-hover .table-success:hover > th { + background-color: #b3ecb4; } + +.table-info, +.table-info > th, +.table-info > td { + background-color: #dfc6f9; } + +.table-info th, +.table-info td, +.table-info thead th, +.table-info tbody + tbody { + border-color: #c494f4; } + +.table-hover .table-info:hover { + background-color: #d2aff7; } + .table-hover .table-info:hover > td, + .table-hover .table-info:hover > th { + background-color: #d2aff7; } + +.table-warning, +.table-warning > th, +.table-warning > td { + background-color: #fff6d8; } + +.table-warning th, +.table-warning td, +.table-warning thead th, +.table-warning tbody + tbody { + border-color: #ffeeb6; } + +.table-hover .table-warning:hover { + background-color: #fff0bf; } + .table-hover .table-warning:hover > td, + .table-hover .table-warning:hover > th { + background-color: #fff0bf; } + +.table-danger, +.table-danger > th, +.table-danger > td { + background-color: #ffcdd6; } + +.table-danger th, +.table-danger td, +.table-danger thead th, +.table-danger tbody + tbody { + border-color: #ffa2b2; } + +.table-hover .table-danger:hover { + background-color: #ffb4c1; } + .table-hover .table-danger:hover > td, + .table-hover .table-danger:hover > th { + background-color: #ffb4c1; } + +.table-light, +.table-light > th, +.table-light > td { + background-color: #fdfdfe; } + +.table-light th, +.table-light td, +.table-light thead th, +.table-light tbody + tbody { + border-color: #fbfcfc; } + +.table-hover .table-light:hover { + background-color: #ececf6; } + .table-hover .table-light:hover > td, + .table-hover .table-light:hover > th { + background-color: #ececf6; } + +.table-dark, +.table-dark > th, +.table-dark > td { + background-color: #c9cdd1; } + +.table-dark th, +.table-dark td, +.table-dark thead th, +.table-dark tbody + tbody { + border-color: #9ba1aa; } + +.table-hover .table-dark:hover { + background-color: #bbc0c5; } + .table-hover .table-dark:hover > td, + .table-hover .table-dark:hover > th { + background-color: #bbc0c5; } + +.table-active, +.table-active > th, +.table-active > td { + background-color: rgba(0, 0, 0, 0.075); } + +.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 { + background-color: rgba(0, 0, 0, 0.075); } + +.table .thead-dark th { + color: #fff; + background-color: #343a40; + border-color: #454d55; } + +.table .thead-light th { + color: #495057; + background-color: #e9ecef; + border-color: #e8ecf1; } + +.table-dark { + color: #fff; + background-color: #343a40; } + .table-dark th, + .table-dark td, + .table-dark thead th { + border-color: #454d55; } + .table-dark.table-bordered { + border: 0; } + .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 { + color: #fff; + background-color: rgba(255, 255, 255, 0.075); } + +@media (max-width: 575.98px) { + .table-responsive-sm { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-sm > .table-bordered { + border: 0; } } + +@media (max-width: 767.98px) { + .table-responsive-md { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-md > .table-bordered { + border: 0; } } + +@media (max-width: 991.98px) { + .table-responsive-lg { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-lg > .table-bordered { + border: 0; } } + +@media (max-width: 1199.98px) { + .table-responsive-xl { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive-xl > .table-bordered { + border: 0; } } + +.table-responsive { + display: block; + width: 100%; + overflow-x: auto; + -webkit-overflow-scrolling: touch; } + .table-responsive > .table-bordered { + border: 0; } + +.form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead, +.tt-query, +.tt-hint { + display: block; + width: 100%; + height: 2.875rem; + padding: 0.94rem 1.375rem; + font-size: 0.8125rem; + font-weight: 400; + line-height: 1; + color: #495057; + background-color: #ffffff; + background-clip: padding-box; + border: 1px solid #ced4da; + border-radius: 2px; + -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead, + .tt-query, + .tt-hint { + -webkit-transition: none; + transition: none; } } + .form-control::-ms-expand, .select2-container--default .select2-selection--single::-ms-expand, .select2-container--default .select2-selection--single .select2-search__field::-ms-expand, .typeahead::-ms-expand, + .tt-query::-ms-expand, + .tt-hint::-ms-expand { + background-color: transparent; + border: 0; } + .form-control:-moz-focusring, .select2-container--default .select2-selection--single:-moz-focusring, .select2-container--default .select2-selection--single .select2-search__field:-moz-focusring, .typeahead:-moz-focusring, + .tt-query:-moz-focusring, + .tt-hint:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #495057; } + .form-control:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .typeahead:focus, + .tt-query:focus, + .tt-hint:focus { + color: #495057; + background-color: #fff; + border-color: #80bdff; + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .form-control::-webkit-input-placeholder, .select2-container--default .select2-selection--single::-webkit-input-placeholder, .select2-container--default .select2-selection--single .select2-search__field::-webkit-input-placeholder, .typeahead::-webkit-input-placeholder, .tt-query::-webkit-input-placeholder, .tt-hint::-webkit-input-placeholder { + color: #c9c8c8; + opacity: 1; } + .form-control::-moz-placeholder, .select2-container--default .select2-selection--single::-moz-placeholder, .select2-container--default .select2-selection--single .select2-search__field::-moz-placeholder, .typeahead::-moz-placeholder, .tt-query::-moz-placeholder, .tt-hint::-moz-placeholder { + color: #c9c8c8; + opacity: 1; } + .form-control:-ms-input-placeholder, .select2-container--default .select2-selection--single:-ms-input-placeholder, .select2-container--default .select2-selection--single .select2-search__field:-ms-input-placeholder, .typeahead:-ms-input-placeholder, .tt-query:-ms-input-placeholder, .tt-hint:-ms-input-placeholder { + color: #c9c8c8; + opacity: 1; } + .form-control::-ms-input-placeholder, .select2-container--default .select2-selection--single::-ms-input-placeholder, .select2-container--default .select2-selection--single .select2-search__field::-ms-input-placeholder, .typeahead::-ms-input-placeholder, .tt-query::-ms-input-placeholder, .tt-hint::-ms-input-placeholder { + color: #c9c8c8; + opacity: 1; } + .form-control::placeholder, .select2-container--default .select2-selection--single::placeholder, .select2-container--default .select2-selection--single .select2-search__field::placeholder, .typeahead::placeholder, + .tt-query::placeholder, + .tt-hint::placeholder { + color: #c9c8c8; + opacity: 1; } + .form-control:disabled, .select2-container--default .select2-selection--single:disabled, .select2-container--default .select2-selection--single .select2-search__field:disabled, .typeahead:disabled, + .tt-query:disabled, + .tt-hint:disabled, .form-control[readonly], .select2-container--default .select2-selection--single[readonly], .select2-container--default .select2-selection--single .select2-search__field[readonly], .typeahead[readonly], + .tt-query[readonly], + .tt-hint[readonly] { + background-color: #e9ecef; + opacity: 1; } + +input[type="date"].form-control, .select2-container--default input.select2-selection--single[type="date"], .select2-container--default .select2-selection--single input.select2-search__field[type="date"], input.typeahead[type="date"], +input.tt-query[type="date"], +input.tt-hint[type="date"], +input[type="time"].form-control, +.select2-container--default input.select2-selection--single[type="time"], +.select2-container--default .select2-selection--single input.select2-search__field[type="time"], +input.typeahead[type="time"], +input.tt-query[type="time"], +input.tt-hint[type="time"], +input[type="datetime-local"].form-control, +.select2-container--default input.select2-selection--single[type="datetime-local"], +.select2-container--default .select2-selection--single input.select2-search__field[type="datetime-local"], +input.typeahead[type="datetime-local"], +input.tt-query[type="datetime-local"], +input.tt-hint[type="datetime-local"], +input[type="month"].form-control, +.select2-container--default input.select2-selection--single[type="month"], +.select2-container--default .select2-selection--single input.select2-search__field[type="month"], +input.typeahead[type="month"], +input.tt-query[type="month"], +input.tt-hint[type="month"] { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } + +select.form-control:focus::-ms-value, .select2-container--default select.select2-selection--single:focus::-ms-value, .select2-container--default .select2-selection--single select.select2-search__field:focus::-ms-value, select.typeahead:focus::-ms-value, +select.tt-query:focus::-ms-value, +select.tt-hint:focus::-ms-value { + color: #495057; + background-color: #ffffff; } + +.form-control-file, +.form-control-range { + display: block; + width: 100%; } + +.col-form-label { + padding-top: calc(0.94rem + 1px); + padding-bottom: calc(0.94rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1; } + +.col-form-label-lg { + padding-top: calc(0.94rem + 1px); + padding-bottom: calc(0.94rem + 1px); + font-size: 1.25rem; + line-height: 1.5; } + +.col-form-label-sm { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 0.875rem; + line-height: 1.5; } + +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.94rem 0; + margin-bottom: 0; + font-size: 0.8125rem; + line-height: 1; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; } + .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { + padding-right: 0; + padding-left: 0; } + +.form-control-sm { + height: 2.575rem; + padding: 0.5rem 0.81rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; } + +.form-control-lg { + height: 3.175rem; + padding: 0.94rem 1.94rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; } + +select.form-control[size], .select2-container--default select.select2-selection--single[size], .select2-container--default .select2-selection--single select.select2-search__field[size], select.typeahead[size], +select.tt-query[size], +select.tt-hint[size], select.form-control[multiple], .select2-container--default select.select2-selection--single[multiple], .select2-container--default .select2-selection--single select.select2-search__field[multiple], select.typeahead[multiple], +select.tt-query[multiple], +select.tt-hint[multiple] { + height: auto; } + +textarea.form-control, .select2-container--default textarea.select2-selection--single, .select2-container--default .select2-selection--single textarea.select2-search__field, textarea.typeahead, +textarea.tt-query, +textarea.tt-hint { + height: auto; } + +.form-group { + margin-bottom: 1rem; } + +.form-text { + display: block; + margin-top: 0.25rem; } + +.form-row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-right: -5px; + margin-left: -5px; } + .form-row > .col, + .form-row > [class*="col-"] { + padding-right: 5px; + padding-left: 5px; } + +.form-check { + position: relative; + display: block; + padding-left: 1.25rem; } + +.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 { + color: #9c9fa6; } + +.form-check-label { + margin-bottom: 0; } + +.form-check-inline { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding-left: 0; + margin-right: 0.75rem; } + .form-check-inline .form-check-input { + position: static; + margin-top: 0; + margin-right: 0.3125rem; + margin-left: 0; } + +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #28a745; } + +.valid-tooltip { + position: absolute; + top: 100%; + left: 0; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(40, 167, 69, 0.9); + border-radius: 0.25rem; } + +.was-validated :valid ~ .valid-feedback, +.was-validated :valid ~ .valid-tooltip, +.is-valid ~ .valid-feedback, +.is-valid ~ .valid-tooltip { + display: block; } + +.was-validated .form-control:valid, .was-validated .select2-container--default .select2-selection--single:valid, .select2-container--default .was-validated .select2-selection--single:valid, .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid, .select2-container--default .select2-selection--single .was-validated .select2-search__field:valid, .was-validated .typeahead:valid, +.was-validated .tt-query:valid, +.was-validated .tt-hint:valid, .form-control.is-valid, .select2-container--default .is-valid.select2-selection--single, .select2-container--default .select2-selection--single .is-valid.select2-search__field, .is-valid.typeahead, +.is-valid.tt-query, +.is-valid.tt-hint { + border-color: #28a745; + padding-right: calc(1.5em + 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='%2328a745' 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"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-control:valid:focus, .was-validated .select2-container--default .select2-selection--single:valid:focus, .select2-container--default .was-validated .select2-selection--single:valid:focus, .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid:focus, .select2-container--default .select2-selection--single .was-validated .select2-search__field:valid:focus, .was-validated .typeahead:valid:focus, + .was-validated .tt-query:valid:focus, + .was-validated .tt-hint:valid:focus, .form-control.is-valid:focus, .select2-container--default .is-valid.select2-selection--single:focus, .select2-container--default .select2-selection--single .is-valid.select2-search__field:focus, .is-valid.typeahead:focus, + .is-valid.tt-query:focus, + .is-valid.tt-hint:focus { + border-color: #28a745; + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + +.was-validated textarea.form-control:valid, .was-validated .select2-container--default textarea.select2-selection--single:valid, .select2-container--default .was-validated textarea.select2-selection--single:valid, .was-validated .select2-container--default .select2-selection--single textarea.select2-search__field:valid, .select2-container--default .select2-selection--single .was-validated textarea.select2-search__field:valid, .was-validated textarea.typeahead:valid, +.was-validated textarea.tt-query:valid, +.was-validated textarea.tt-hint:valid, textarea.form-control.is-valid, .select2-container--default textarea.is-valid.select2-selection--single, .select2-container--default .select2-selection--single textarea.is-valid.select2-search__field, textarea.is-valid.typeahead, +textarea.is-valid.tt-query, +textarea.is-valid.tt-hint { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + +.was-validated .custom-select:valid, .custom-select.is-valid { + border-color: #28a745; + 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='%2328a745' 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.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { + border-color: #28a745; + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + +.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { + color: #28a745; } + +.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 { + display: block; } + +.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { + color: #28a745; } + .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { + border-color: #28a745; } + +.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { + border-color: #34ce57; + background-color: #34ce57; } + +.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 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 { + border-color: #28a745; } + +.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { + border-color: #28a745; } + +.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { + border-color: #28a745; + -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); } + +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 80%; + color: #dc3545; } + +.invalid-tooltip { + position: absolute; + top: 100%; + left: 0; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: .1rem; + font-size: 0.875rem; + line-height: 1.5; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.25rem; } + +.was-validated :invalid ~ .invalid-feedback, +.was-validated :invalid ~ .invalid-tooltip, +.is-invalid ~ .invalid-feedback, +.is-invalid ~ .invalid-tooltip { + display: block; } + +.was-validated .form-control:invalid, .was-validated .select2-container--default .select2-selection--single:invalid, .select2-container--default .was-validated .select2-selection--single:invalid, .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid, .select2-container--default .select2-selection--single .was-validated .select2-search__field:invalid, .was-validated .typeahead:invalid, +.was-validated .tt-query:invalid, +.was-validated .tt-hint:invalid, .form-control.is-invalid, .select2-container--default .is-invalid.select2-selection--single, .select2-container--default .select2-selection--single .is-invalid.select2-search__field, .is-invalid.typeahead, +.is-invalid.tt-query, +.is-invalid.tt-hint { + border-color: #dc3545; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .form-control:invalid:focus, .was-validated .select2-container--default .select2-selection--single:invalid:focus, .select2-container--default .was-validated .select2-selection--single:invalid:focus, .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid:focus, .select2-container--default .select2-selection--single .was-validated .select2-search__field:invalid:focus, .was-validated .typeahead:invalid:focus, + .was-validated .tt-query:invalid:focus, + .was-validated .tt-hint:invalid:focus, .form-control.is-invalid:focus, .select2-container--default .is-invalid.select2-selection--single:focus, .select2-container--default .select2-selection--single .is-invalid.select2-search__field:focus, .is-invalid.typeahead:focus, + .is-invalid.tt-query:focus, + .is-invalid.tt-hint:focus { + border-color: #dc3545; + -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + +.was-validated textarea.form-control:invalid, .was-validated .select2-container--default textarea.select2-selection--single:invalid, .select2-container--default .was-validated textarea.select2-selection--single:invalid, .was-validated .select2-container--default .select2-selection--single textarea.select2-search__field:invalid, .select2-container--default .select2-selection--single .was-validated textarea.select2-search__field:invalid, .was-validated textarea.typeahead:invalid, +.was-validated textarea.tt-query:invalid, +.was-validated textarea.tt-hint:invalid, textarea.form-control.is-invalid, .select2-container--default textarea.is-invalid.select2-selection--single, .select2-container--default .select2-selection--single textarea.is-invalid.select2-search__field, textarea.is-invalid.typeahead, +textarea.is-invalid.tt-query, +textarea.is-invalid.tt-hint { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); } + +.was-validated .custom-select:invalid, .custom-select.is-invalid { + border-color: #dc3545; + 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='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); } + .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { + border-color: #dc3545; + -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + +.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { + color: #dc3545; } + +.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 { + display: block; } + +.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { + color: #dc3545; } + .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { + border-color: #dc3545; } + +.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { + border-color: #e4606d; + background-color: #e4606d; } + +.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { + -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 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 { + border-color: #dc3545; } + +.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { + border-color: #dc3545; } + +.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { + border-color: #dc3545; + -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); + box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); } + +.form-inline { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .form-inline .form-check { + width: 100%; } + @media (min-width: 576px) { + .form-inline label { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0; } + .form-inline .form-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 0; + -ms-flex: 0 0 auto; + flex: 0 0 auto; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0; } + .form-inline .form-control, .form-inline .select2-container--default .select2-selection--single, .select2-container--default .form-inline .select2-selection--single, .form-inline .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .form-inline .select2-search__field, .form-inline .typeahead, + .form-inline .tt-query, + .form-inline .tt-hint { + display: inline-block; + width: auto; + vertical-align: middle; } + .form-inline .form-control-plaintext { + display: inline-block; } + .form-inline .input-group, + .form-inline .custom-select { + width: auto; } + .form-inline .form-check { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + padding-left: 0; } + .form-inline .form-check-input { + position: relative; + -ms-flex-negative: 0; + flex-shrink: 0; + margin-top: 0; + margin-right: 0.25rem; + margin-left: 0; } + .form-inline .custom-control { + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .form-inline .custom-control-label { + margin-bottom: 0; } } + +.btn { + display: inline-block; + font-weight: 400; + color: #343a40; + text-align: center; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.875rem 2.5rem; + font-size: 0.875rem; + line-height: 1; + border-radius: 0.1875rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + 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; + 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, -webkit-box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .btn { + -webkit-transition: none; + transition: none; } } + .btn:hover { + color: #343a40; + text-decoration: none; } + .btn:focus, .btn.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .btn.disabled, .btn:disabled { + opacity: 0.65; } + .btn:not(:disabled):not(.disabled) { + cursor: pointer; } + +a.btn.disabled, +fieldset:disabled a.btn { + pointer-events: none; } + +.btn-primary { + color: #212529; + background-color: #1bdbe0; + border-color: #1bdbe0; } + .btn-primary:hover { + color: #fff; + background-color: #17babe; + border-color: #16afb2; } + .btn-primary:focus, .btn-primary.focus { + color: #fff; + background-color: #17babe; + border-color: #16afb2; + -webkit-box-shadow: 0 0 0 0.2rem rgba(28, 192, 197, 0.5); + box-shadow: 0 0 0 0.2rem rgba(28, 192, 197, 0.5); } + .btn-primary.disabled, .btn-primary:disabled { + color: #212529; + background-color: #1bdbe0; + border-color: #1bdbe0; } + .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, + .show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #16afb2; + border-color: #14a3a7; } + .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, + .show > .btn-primary.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(28, 192, 197, 0.5); + box-shadow: 0 0 0 0.2rem rgba(28, 192, 197, 0.5); } + +.btn-secondary { + color: #212529; + background-color: #d8d8d8; + border-color: #d8d8d8; } + .btn-secondary:hover { + color: #212529; + background-color: #c5c5c5; + border-color: #bfbfbf; } + .btn-secondary:focus, .btn-secondary.focus { + color: #212529; + background-color: #c5c5c5; + border-color: #bfbfbf; + -webkit-box-shadow: 0 0 0 0.2rem rgba(189, 189, 190, 0.5); + box-shadow: 0 0 0 0.2rem rgba(189, 189, 190, 0.5); } + .btn-secondary.disabled, .btn-secondary:disabled { + color: #212529; + background-color: #d8d8d8; + border-color: #d8d8d8; } + .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, + .show > .btn-secondary.dropdown-toggle { + color: #212529; + background-color: #bfbfbf; + border-color: #b8b8b8; } + .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, + .show > .btn-secondary.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(189, 189, 190, 0.5); + box-shadow: 0 0 0 0.2rem rgba(189, 189, 190, 0.5); } + +.btn-success { + color: #fff; + background-color: #38ce3c; + border-color: #38ce3c; } + .btn-success:hover { + color: #fff; + background-color: #2cb430; + border-color: #2aa92d; } + .btn-success:focus, .btn-success.focus { + color: #fff; + background-color: #2cb430; + border-color: #2aa92d; + -webkit-box-shadow: 0 0 0 0.2rem rgba(86, 213, 89, 0.5); + box-shadow: 0 0 0 0.2rem rgba(86, 213, 89, 0.5); } + .btn-success.disabled, .btn-success:disabled { + color: #fff; + background-color: #38ce3c; + border-color: #38ce3c; } + .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, + .show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #2aa92d; + border-color: #279f2a; } + .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, + .show > .btn-success.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(86, 213, 89, 0.5); + box-shadow: 0 0 0 0.2rem rgba(86, 213, 89, 0.5); } + +.btn-info { + color: #fff; + background-color: #8e32e9; + border-color: #8e32e9; } + .btn-info:hover { + color: #fff; + background-color: #7b18dd; + border-color: #7516d2; } + .btn-info:focus, .btn-info.focus { + color: #fff; + background-color: #7b18dd; + border-color: #7516d2; + -webkit-box-shadow: 0 0 0 0.2rem rgba(159, 81, 236, 0.5); + box-shadow: 0 0 0 0.2rem rgba(159, 81, 236, 0.5); } + .btn-info.disabled, .btn-info:disabled { + color: #fff; + background-color: #8e32e9; + border-color: #8e32e9; } + .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, + .show > .btn-info.dropdown-toggle { + color: #fff; + background-color: #7516d2; + border-color: #6e15c6; } + .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, + .show > .btn-info.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(159, 81, 236, 0.5); + box-shadow: 0 0 0 0.2rem rgba(159, 81, 236, 0.5); } + +.btn-warning { + color: #212529; + background-color: #ffde73; + border-color: #ffde73; } + .btn-warning:hover { + color: #212529; + background-color: #ffd54d; + border-color: #ffd240; } + .btn-warning:focus, .btn-warning.focus { + color: #212529; + background-color: #ffd54d; + border-color: #ffd240; + -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 194, 104, 0.5); + box-shadow: 0 0 0 0.2rem rgba(222, 194, 104, 0.5); } + .btn-warning.disabled, .btn-warning:disabled { + color: #212529; + background-color: #ffde73; + border-color: #ffde73; } + .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, + .show > .btn-warning.dropdown-toggle { + color: #212529; + background-color: #ffd240; + border-color: #ffcf33; } + .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, + .show > .btn-warning.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 194, 104, 0.5); + box-shadow: 0 0 0 0.2rem rgba(222, 194, 104, 0.5); } + +.btn-danger { + color: #fff; + background-color: #ff4d6b; + border-color: #ff4d6b; } + .btn-danger:hover { + color: #fff; + background-color: #ff274b; + border-color: #ff1a41; } + .btn-danger:focus, .btn-danger.focus { + color: #fff; + background-color: #ff274b; + border-color: #ff1a41; + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 104, 129, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 104, 129, 0.5); } + .btn-danger.disabled, .btn-danger:disabled { + color: #fff; + background-color: #ff4d6b; + border-color: #ff4d6b; } + .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, + .show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #ff1a41; + border-color: #ff0d36; } + .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, + .show > .btn-danger.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 104, 129, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 104, 129, 0.5); } + +.btn-light { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; } + .btn-light:hover { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; } + .btn-light:focus, .btn-light.focus { + color: #212529; + background-color: #e2e6ea; + border-color: #dae0e5; + -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } + .btn-light.disabled, .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 { + 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 { + -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); + box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); } + +.btn-dark { + color: #fff; + background-color: #3e4b5b; + border-color: #3e4b5b; } + .btn-dark:hover { + color: #fff; + background-color: #2f3844; + border-color: #29323d; } + .btn-dark:focus, .btn-dark.focus { + color: #fff; + background-color: #2f3844; + border-color: #29323d; + -webkit-box-shadow: 0 0 0 0.2rem rgba(91, 102, 116, 0.5); + box-shadow: 0 0 0 0.2rem rgba(91, 102, 116, 0.5); } + .btn-dark.disabled, .btn-dark:disabled { + color: #fff; + background-color: #3e4b5b; + border-color: #3e4b5b; } + .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, + .show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #29323d; + border-color: #242c35; } + .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, + .show > .btn-dark.dropdown-toggle:focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(91, 102, 116, 0.5); + box-shadow: 0 0 0 0.2rem rgba(91, 102, 116, 0.5); } + +.btn-outline-primary { + color: #1bdbe0; + border-color: #1bdbe0; } + .btn-outline-primary:hover { + color: #212529; + background-color: #1bdbe0; + border-color: #1bdbe0; } + .btn-outline-primary:focus, .btn-outline-primary.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(27, 219, 224, 0.5); + box-shadow: 0 0 0 0.2rem rgba(27, 219, 224, 0.5); } + .btn-outline-primary.disabled, .btn-outline-primary:disabled { + color: #1bdbe0; + 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 { + color: #212529; + background-color: #1bdbe0; + border-color: #1bdbe0; } + .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 { + -webkit-box-shadow: 0 0 0 0.2rem rgba(27, 219, 224, 0.5); + box-shadow: 0 0 0 0.2rem rgba(27, 219, 224, 0.5); } + +.btn-outline-secondary { + color: #d8d8d8; + border-color: #d8d8d8; } + .btn-outline-secondary:hover { + color: #212529; + background-color: #d8d8d8; + border-color: #d8d8d8; } + .btn-outline-secondary:focus, .btn-outline-secondary.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.5); + box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.5); } + .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { + color: #d8d8d8; + 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 { + color: #212529; + background-color: #d8d8d8; + border-color: #d8d8d8; } + .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 { + -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.5); + box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.5); } + +.btn-outline-success { + color: #38ce3c; + border-color: #38ce3c; } + .btn-outline-success:hover { + color: #fff; + background-color: #38ce3c; + border-color: #38ce3c; } + .btn-outline-success:focus, .btn-outline-success.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(56, 206, 60, 0.5); + box-shadow: 0 0 0 0.2rem rgba(56, 206, 60, 0.5); } + .btn-outline-success.disabled, .btn-outline-success:disabled { + color: #38ce3c; + 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 { + color: #fff; + background-color: #38ce3c; + border-color: #38ce3c; } + .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 { + -webkit-box-shadow: 0 0 0 0.2rem rgba(56, 206, 60, 0.5); + box-shadow: 0 0 0 0.2rem rgba(56, 206, 60, 0.5); } + +.btn-outline-info { + color: #8e32e9; + border-color: #8e32e9; } + .btn-outline-info:hover { + color: #fff; + background-color: #8e32e9; + border-color: #8e32e9; } + .btn-outline-info:focus, .btn-outline-info.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(142, 50, 233, 0.5); + box-shadow: 0 0 0 0.2rem rgba(142, 50, 233, 0.5); } + .btn-outline-info.disabled, .btn-outline-info:disabled { + color: #8e32e9; + 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 { + color: #fff; + background-color: #8e32e9; + border-color: #8e32e9; } + .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 { + -webkit-box-shadow: 0 0 0 0.2rem rgba(142, 50, 233, 0.5); + box-shadow: 0 0 0 0.2rem rgba(142, 50, 233, 0.5); } + +.btn-outline-warning { + color: #ffde73; + border-color: #ffde73; } + .btn-outline-warning:hover { + color: #212529; + background-color: #ffde73; + border-color: #ffde73; } + .btn-outline-warning:focus, .btn-outline-warning.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 222, 115, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 222, 115, 0.5); } + .btn-outline-warning.disabled, .btn-outline-warning:disabled { + color: #ffde73; + 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 { + color: #212529; + background-color: #ffde73; + border-color: #ffde73; } + .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 { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 222, 115, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 222, 115, 0.5); } + +.btn-outline-danger { + color: #ff4d6b; + border-color: #ff4d6b; } + .btn-outline-danger:hover { + color: #fff; + background-color: #ff4d6b; + border-color: #ff4d6b; } + .btn-outline-danger:focus, .btn-outline-danger.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 77, 107, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 77, 107, 0.5); } + .btn-outline-danger.disabled, .btn-outline-danger:disabled { + color: #ff4d6b; + 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 { + color: #fff; + background-color: #ff4d6b; + border-color: #ff4d6b; } + .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 { + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 77, 107, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 77, 107, 0.5); } + +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; } + .btn-outline-light:hover { + color: #212529; + background-color: #f8f9fa; + border-color: #f8f9fa; } + .btn-outline-light:focus, .btn-outline-light.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } + .btn-outline-light.disabled, .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 { + 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 { + -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } + +.btn-outline-dark { + color: #3e4b5b; + border-color: #3e4b5b; } + .btn-outline-dark:hover { + color: #fff; + background-color: #3e4b5b; + border-color: #3e4b5b; } + .btn-outline-dark:focus, .btn-outline-dark.focus { + -webkit-box-shadow: 0 0 0 0.2rem rgba(62, 75, 91, 0.5); + box-shadow: 0 0 0 0.2rem rgba(62, 75, 91, 0.5); } + .btn-outline-dark.disabled, .btn-outline-dark:disabled { + color: #3e4b5b; + 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 { + color: #fff; + background-color: #3e4b5b; + border-color: #3e4b5b; } + .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 { + -webkit-box-shadow: 0 0 0 0.2rem rgba(62, 75, 91, 0.5); + box-shadow: 0 0 0 0.2rem rgba(62, 75, 91, 0.5); } + +.btn-link { + font-weight: 400; + color: #007bff; + text-decoration: none; } + .btn-link:hover { + color: #0056b3; + text-decoration: underline; } + .btn-link:focus, .btn-link.focus { + text-decoration: underline; } + .btn-link:disabled, .btn-link.disabled { + color: #6c757d; + pointer-events: none; } + +.btn-lg, .btn-group-lg > .btn { + padding: 1rem 3rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.1875rem; } + +.btn-sm, .btn-group-sm > .btn { + padding: 0.5rem 0.81rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.1875rem; } + +.btn-block { + display: block; + width: 100%; } + .btn-block + .btn-block { + margin-top: 0.5rem; } + +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; } + +.fade { + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; } + @media (prefers-reduced-motion: reduce) { + .fade { + -webkit-transition: none; + transition: none; } } + .fade:not(.show) { + opacity: 0; } + +.collapse:not(.show) { + display: none; } + +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + transition: height 0.35s ease; } + @media (prefers-reduced-motion: reduce) { + .collapsing { + -webkit-transition: none; + transition: none; } } + +.dropup, +.dropright, +.dropdown, +.dropleft { + position: relative; } + +.dropdown-toggle { + white-space: nowrap; } + .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; } + .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0.125rem 0 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #e8ecf1; + border-radius: 0.25rem; } + +.dropdown-menu-left { + right: auto; + left: 0; } + +.dropdown-menu-right { + right: 0; + left: auto; } + +@media (min-width: 576px) { + .dropdown-menu-sm-left { + right: auto; + left: 0; } + .dropdown-menu-sm-right { + right: 0; + left: auto; } } + +@media (min-width: 768px) { + .dropdown-menu-md-left { + right: auto; + left: 0; } + .dropdown-menu-md-right { + right: 0; + left: auto; } } + +@media (min-width: 992px) { + .dropdown-menu-lg-left { + right: auto; + left: 0; } + .dropdown-menu-lg-right { + right: 0; + left: auto; } } + +@media (min-width: 1200px) { + .dropdown-menu-xl-left { + right: auto; + left: 0; } + .dropdown-menu-xl-right { + right: 0; + left: auto; } } + +.dropup .dropdown-menu { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; } + +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; } + +.dropup .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-menu { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; } + +.dropright .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; } + +.dropright .dropdown-toggle:empty::after { + margin-left: 0; } + +.dropright .dropdown-toggle::after { + vertical-align: 0; } + +.dropleft .dropdown-menu { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; } + +.dropleft .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; } + +.dropleft .dropdown-toggle::after { + display: none; } + +.dropleft .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; } + +.dropleft .dropdown-toggle:empty::after { + margin-left: 0; } + +.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"] { + right: auto; + bottom: auto; } + +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid #e8ecf1; } + +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + font-weight: 400; + color: #343a40; + text-align: inherit; + white-space: nowrap; + background-color: transparent; + border: 0; } + .dropdown-item:hover, .dropdown-item:focus { + color: #16181b; + text-decoration: none; + background-color: #f8f9fa; } + .dropdown-item.active, .dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #007bff; } + .dropdown-item.disabled, .dropdown-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: transparent; } + +.dropdown-menu.show { + display: block; } + +.dropdown-header { + display: block; + padding: 0.5rem 1.5rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #343a40; + white-space: nowrap; } + +.dropdown-item-text { + display: block; + padding: 0.25rem 1.5rem; + color: #343a40; } + +.btn-group, +.btn-group-vertical { + position: relative; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + vertical-align: middle; } + .btn-group > .btn, + .btn-group-vertical > .btn { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; } + .btn-group > .btn:hover, + .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 { + z-index: 1; } + +.btn-toolbar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .btn-toolbar .input-group { + width: auto; } + +.btn-group > .btn:not(:first-child), +.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 { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + +.btn-group > .btn:not(:first-child), +.btn-group > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.dropdown-toggle-split { + padding-right: 1.875rem; + padding-left: 1.875rem; } + .dropdown-toggle-split::after, + .dropup .dropdown-toggle-split::after, + .dropright .dropdown-toggle-split::after { + margin-left: 0; } + .dropleft .dropdown-toggle-split::before { + margin-right: 0; } + +.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { + padding-right: 0.6075rem; + padding-left: 0.6075rem; } + +.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { + padding-right: 2.25rem; + padding-left: 2.25rem; } + +.btn-group-vertical { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .btn-group-vertical > .btn, + .btn-group-vertical > .btn-group { + width: 100%; } + .btn-group-vertical > .btn:not(:first-child), + .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 { + 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 { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.btn-group-toggle > .btn, +.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"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; } + +.input-group { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + width: 100%; } + .input-group > .form-control, .select2-container--default .input-group > .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .select2-search__field, .input-group > .typeahead, + .input-group > .tt-query, + .input-group > .tt-hint, + .input-group > .form-control-plaintext, + .input-group > .custom-select, + .input-group > .custom-file { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + width: 1%; + min-width: 0; + margin-bottom: 0; } + .input-group > .form-control + .form-control, .select2-container--default .input-group > .select2-selection--single + .form-control, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .form-control, .input-group > .typeahead + .form-control, .input-group > .tt-query + .form-control, .input-group > .tt-hint + .form-control, .select2-container--default .input-group > .form-control + .select2-selection--single, .select2-container--default .input-group > .select2-selection--single + .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .select2-selection--single, .select2-container--default .input-group > .typeahead + .select2-selection--single, .select2-container--default .input-group > .tt-query + .select2-selection--single, .select2-container--default .input-group > .tt-hint + .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .form-control + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .select2-selection--single + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .typeahead + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .tt-query + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .tt-hint + .select2-search__field, .input-group > .form-control + .typeahead, .select2-container--default .input-group > .select2-selection--single + .typeahead, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .typeahead, .input-group > .typeahead + .typeahead, .input-group > .tt-query + .typeahead, .input-group > .tt-hint + .typeahead, + .input-group > .form-control + .tt-query, + .select2-container--default .input-group > .select2-selection--single + .tt-query, + .select2-container--default .select2-selection--single .input-group > .select2-search__field + .tt-query, + .input-group > .typeahead + .tt-query, + .input-group > .tt-query + .tt-query, + .input-group > .tt-hint + .tt-query, + .input-group > .form-control + .tt-hint, + .select2-container--default .input-group > .select2-selection--single + .tt-hint, + .select2-container--default .select2-selection--single .input-group > .select2-search__field + .tt-hint, + .input-group > .typeahead + .tt-hint, + .input-group > .tt-query + .tt-hint, + .input-group > .tt-hint + .tt-hint, + .input-group > .form-control + .custom-select, + .select2-container--default .input-group > .select2-selection--single + .custom-select, + .select2-container--default .select2-selection--single .input-group > .select2-search__field + .custom-select, + .input-group > .typeahead + .custom-select, + .input-group > .tt-query + .custom-select, + .input-group > .tt-hint + .custom-select, + .input-group > .form-control + .custom-file, + .select2-container--default .input-group > .select2-selection--single + .custom-file, + .select2-container--default .select2-selection--single .input-group > .select2-search__field + .custom-file, + .input-group > .typeahead + .custom-file, + .input-group > .tt-query + .custom-file, + .input-group > .tt-hint + .custom-file, + .input-group > .form-control-plaintext + .form-control, + .select2-container--default .input-group > .form-control-plaintext + .select2-selection--single, + .select2-container--default .select2-selection--single .input-group > .form-control-plaintext + .select2-search__field, + .input-group > .form-control-plaintext + .typeahead, + .input-group > .form-control-plaintext + .tt-query, + .input-group > .form-control-plaintext + .tt-hint, + .input-group > .form-control-plaintext + .custom-select, + .input-group > .form-control-plaintext + .custom-file, + .input-group > .custom-select + .form-control, + .select2-container--default .input-group > .custom-select + .select2-selection--single, + .select2-container--default .select2-selection--single .input-group > .custom-select + .select2-search__field, + .input-group > .custom-select + .typeahead, + .input-group > .custom-select + .tt-query, + .input-group > .custom-select + .tt-hint, + .input-group > .custom-select + .custom-select, + .input-group > .custom-select + .custom-file, + .input-group > .custom-file + .form-control, + .select2-container--default .input-group > .custom-file + .select2-selection--single, + .select2-container--default .select2-selection--single .input-group > .custom-file + .select2-search__field, + .input-group > .custom-file + .typeahead, + .input-group > .custom-file + .tt-query, + .input-group > .custom-file + .tt-hint, + .input-group > .custom-file + .custom-select, + .input-group > .custom-file + .custom-file { + margin-left: -1px; } + .input-group > .form-control:focus, .select2-container--default .input-group > .select2-selection--single:focus, .select2-container--default .select2-selection--single .input-group > .select2-search__field:focus, .input-group > .typeahead:focus, + .input-group > .tt-query:focus, + .input-group > .tt-hint:focus, + .input-group > .custom-select:focus, + .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { + z-index: 3; } + .input-group > .custom-file .custom-file-input:focus { + z-index: 4; } + .input-group > .form-control:not(:last-child), .select2-container--default .input-group > .select2-selection--single:not(:last-child), .select2-container--default .select2-selection--single .input-group > .select2-search__field:not(:last-child), .input-group > .typeahead:not(:last-child), + .input-group > .tt-query:not(:last-child), + .input-group > .tt-hint:not(:last-child), + .input-group > .custom-select:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .input-group > .form-control:not(:first-child), .select2-container--default .input-group > .select2-selection--single:not(:first-child), .select2-container--default .select2-selection--single .input-group > .select2-search__field:not(:first-child), .input-group > .typeahead:not(:first-child), + .input-group > .tt-query:not(:first-child), + .input-group > .tt-hint:not(:first-child), + .input-group > .custom-select:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .input-group > .custom-file { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .input-group > .custom-file:not(:last-child) .custom-file-label, + .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 { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.input-group-prepend, +.input-group-append { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .input-group-prepend .btn, + .input-group-append .btn { + position: relative; + z-index: 2; } + .input-group-prepend .btn:focus, + .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 { + margin-left: -1px; } + +.input-group-prepend { + margin-right: -1px; } + +.input-group-append { + margin-left: -1px; } + +.input-group-text { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0.94rem 1.375rem; + margin-bottom: 0; + font-size: 0.8125rem; + font-weight: 400; + line-height: 1; + color: #495057; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 2px; } + .input-group-text input[type="radio"], + .input-group-text input[type="checkbox"] { + margin-top: 0; } + +.input-group-lg > .form-control:not(textarea), .select2-container--default .input-group-lg > .select2-selection--single:not(textarea), .select2-container--default .select2-selection--single .input-group-lg > .select2-search__field:not(textarea), .input-group-lg > .typeahead:not(textarea), +.input-group-lg > .tt-query:not(textarea), +.input-group-lg > .tt-hint:not(textarea), +.input-group-lg > .custom-select { + height: 3.175rem; } + +.input-group-lg > .form-control, .select2-container--default .input-group-lg > .select2-selection--single, .select2-container--default .select2-selection--single .input-group-lg > .select2-search__field, .input-group-lg > .typeahead, +.input-group-lg > .tt-query, +.input-group-lg > .tt-hint, +.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 { + padding: 0.94rem 1.94rem; + font-size: 1.25rem; + line-height: 1.5; + border-radius: 0.3rem; } + +.input-group-sm > .form-control:not(textarea), .select2-container--default .input-group-sm > .select2-selection--single:not(textarea), .select2-container--default .select2-selection--single .input-group-sm > .select2-search__field:not(textarea), .input-group-sm > .typeahead:not(textarea), +.input-group-sm > .tt-query:not(textarea), +.input-group-sm > .tt-hint:not(textarea), +.input-group-sm > .custom-select { + height: 2.575rem; } + +.input-group-sm > .form-control, .select2-container--default .input-group-sm > .select2-selection--single, .select2-container--default .select2-selection--single .input-group-sm > .select2-search__field, .input-group-sm > .typeahead, +.input-group-sm > .tt-query, +.input-group-sm > .tt-hint, +.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 { + padding: 0.5rem 0.81rem; + font-size: 0.875rem; + line-height: 1.5; + border-radius: 0.2rem; } + +.input-group-lg > .custom-select, +.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) { + 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) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + +.custom-control { + position: relative; + z-index: 1; + display: block; + min-height: 1.5rem; + padding-left: 1.5rem; + -webkit-print-color-adjust: exact; + color-adjust: exact; } + +.custom-control-inline { + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + margin-right: 1rem; } + +.custom-control-input { + position: absolute; + left: 0; + z-index: -1; + width: 1rem; + height: 1.25rem; + opacity: 0; } + .custom-control-input:checked ~ .custom-control-label::before { + color: #fff; + border-color: #007bff; + background-color: #007bff; } + .custom-control-input:focus ~ .custom-control-label::before { + -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-control-input:focus:not(:checked) ~ .custom-control-label::before { + border-color: #80bdff; } + .custom-control-input:not(:disabled):active ~ .custom-control-label::before { + color: #fff; + background-color: #b3d7ff; + border-color: #b3d7ff; } + .custom-control-input[disabled] ~ .custom-control-label, .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 { + background-color: #e9ecef; } + +.custom-control-label { + position: relative; + margin-bottom: 0; + vertical-align: top; } + .custom-control-label::before { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + pointer-events: none; + content: ""; + background-color: #fff; + border: #adb5bd solid 1px; } + .custom-control-label::after { + position: absolute; + top: 0.25rem; + left: -1.5rem; + display: block; + width: 1rem; + height: 1rem; + content: ""; + background: no-repeat 50% / 50% 50%; } + +.custom-checkbox .custom-control-label::before { + border-radius: 0.25rem; } + +.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 { + border-color: #007bff; + background-color: #007bff; } + +.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 { + background-color: rgba(0, 123, 255, 0.5); } + +.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); } + +.custom-radio .custom-control-label::before { + border-radius: 50%; } + +.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 { + background-color: rgba(0, 123, 255, 0.5); } + +.custom-switch { + padding-left: 2.25rem; } + .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 { + top: calc(0.25rem + 2px); + left: calc(-2.25rem + 2px); + width: calc(1rem - 4px); + height: calc(1rem - 4px); + background-color: #adb5bd; + border-radius: 0.5rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + 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; + 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, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .custom-switch .custom-control-label::after { + -webkit-transition: none; + transition: none; } } + .custom-switch .custom-control-input:checked ~ .custom-control-label::after { + background-color: #fff; + -webkit-transform: translateX(0.75rem); + transform: translateX(0.75rem); } + .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { + background-color: rgba(0, 123, 255, 0.5); } + +.custom-select { + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 1.75rem 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + vertical-align: middle; + background: #fff 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; + border: 1px solid #ced4da; + border-radius: 0.25rem; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } + .custom-select:focus { + border-color: #80bdff; + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-select:focus::-ms-value { + color: #495057; + background-color: #ffffff; } + .custom-select[multiple], .custom-select[size]:not([size="1"]) { + height: auto; + padding-right: 0.75rem; + background-image: none; } + .custom-select:disabled { + color: #6c757d; + background-color: #e9ecef; } + .custom-select::-ms-expand { + display: none; } + .custom-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #495057; } + +.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.875rem; } + +.custom-select-lg { + height: calc(1.5em + 1rem + 2px); + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; } + +.custom-file { + position: relative; + display: inline-block; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin-bottom: 0; } + +.custom-file-input { + position: relative; + z-index: 2; + width: 100%; + height: calc(1.5em + 0.75rem + 2px); + margin: 0; + opacity: 0; } + .custom-file-input:focus ~ .custom-file-label { + border-color: #80bdff; + -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-file-input[disabled] ~ .custom-file-label, + .custom-file-input:disabled ~ .custom-file-label { + background-color: #e9ecef; } + .custom-file-input:lang(en) ~ .custom-file-label::after { + content: "Browse"; } + .custom-file-input ~ .custom-file-label[data-browse]::after { + content: attr(data-browse); } + +.custom-file-label { + position: absolute; + top: 0; + right: 0; + left: 0; + z-index: 1; + height: calc(1.5em + 0.75rem + 2px); + padding: 0.375rem 0.75rem; + font-weight: 400; + line-height: 1.5; + color: #495057; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: 0.25rem; } + .custom-file-label::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + z-index: 3; + display: block; + height: calc(1.5em + 0.75rem); + padding: 0.375rem 0.75rem; + line-height: 1.5; + color: #495057; + content: "Browse"; + background-color: #e9ecef; + border-left: inherit; + border-radius: 0 0.25rem 0.25rem 0; } + +.custom-range { + width: 100%; + height: 1.4rem; + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; } + .custom-range:focus { + outline: none; } + .custom-range:focus::-webkit-slider-thumb { + -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-range:focus::-ms-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + .custom-range::-moz-focus-outer { + border: 0; } + .custom-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; } } + .custom-range::-webkit-slider-thumb:active { + background-color: #b3d7ff; } + .custom-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; } + .custom-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; } + @media (prefers-reduced-motion: reduce) { + .custom-range::-moz-range-thumb { + -moz-transition: none; + transition: none; } } + .custom-range::-moz-range-thumb:active { + background-color: #b3d7ff; } + .custom-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; } + .custom-range::-ms-thumb { + width: 1rem; + height: 1rem; + margin-top: 0; + margin-right: 0.2rem; + margin-left: 0.2rem; + background-color: #007bff; + border: 0; + border-radius: 1rem; + -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + 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 { + -ms-transition: none; + transition: none; } } + .custom-range::-ms-thumb:active { + background-color: #b3d7ff; } + .custom-range::-ms-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: transparent; + border-color: transparent; + border-width: 0.5rem; } + .custom-range::-ms-fill-lower { + background-color: #dee2e6; + border-radius: 1rem; } + .custom-range::-ms-fill-upper { + margin-right: 15px; + background-color: #dee2e6; + border-radius: 1rem; } + .custom-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; } + .custom-range:disabled::-webkit-slider-runnable-track { + cursor: default; } + .custom-range:disabled::-moz-range-thumb { + background-color: #adb5bd; } + .custom-range:disabled::-moz-range-track { + cursor: default; } + .custom-range:disabled::-ms-thumb { + background-color: #adb5bd; } + +.custom-control-label::before, +.custom-file-label, +.custom-select { + -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .custom-control-label::before, + .custom-file-label, + .custom-select { + -webkit-transition: none; + transition: none; } } + +.nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + +.nav-link { + display: block; + padding: 0.5rem 1rem; } + .nav-link:hover, .nav-link:focus { + text-decoration: none; } + .nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; } + +.nav-tabs { + border-bottom: 1px solid #ebedf2; } + .nav-tabs .nav-item { + margin-bottom: -1px; } + .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 { + border-color: #ebedf2 #ebedf2 #ebedf2; } + .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 { + color: #343a40; + background-color: #ffffff; + border-color: #ebedf2 #ebedf2 #ffffff; } + .nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.nav-pills .nav-link { + border-radius: 0.25rem; } + +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #007bff; } + +.nav-fill > .nav-link, +.nav-fill .nav-item { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + text-align: center; } + +.nav-justified > .nav-link, +.nav-justified .nav-item { + -ms-flex-preferred-size: 0; + flex-basis: 0; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + text-align: center; } + +.tab-content > .tab-pane { + display: none; } + +.tab-content > .active { + display: block; } + +.navbar { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + 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 { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; } + +.navbar-brand { + display: inline-block; + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + line-height: inherit; + white-space: nowrap; } + .navbar-brand:hover, .navbar-brand:focus { + text-decoration: none; } + +.navbar-nav { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; } + .navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; } + .navbar-nav .dropdown-menu { + position: static; + float: none; } + +.navbar-text { + display: inline-block; + padding-top: 0.5rem; + padding-bottom: 0.5rem; } + +.navbar-collapse { + -ms-flex-preferred-size: 100%; + flex-basis: 100%; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; } + .navbar-toggler:hover, .navbar-toggler:focus { + text-decoration: none; } + +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + content: ""; + 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 { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 576px) { + .navbar-expand-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-sm .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; } + .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 { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-sm .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .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 { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 768px) { + .navbar-expand-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-md .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; } + .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 { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-md .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .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 { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 992px) { + .navbar-expand-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-lg .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; } + .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 { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-lg .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .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 { + padding-right: 0; + padding-left: 0; } } + +@media (min-width: 1200px) { + .navbar-expand-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; } + .navbar-expand-xl .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; } + .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 { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand-xl .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand-xl .navbar-toggler { + display: none; } } + +.navbar-expand { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row nowrap; + flex-flow: row nowrap; + -webkit-box-pack: start; + -ms-flex-pack: start; + 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 { + padding-right: 0; + padding-left: 0; } + .navbar-expand .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar-expand .navbar-nav .dropdown-menu { + position: absolute; } + .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 { + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; } + .navbar-expand .navbar-collapse { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + -ms-flex-preferred-size: auto; + flex-basis: auto; } + .navbar-expand .navbar-toggler { + display: none; } + +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { + color: rgba(0, 0, 0, 0.9); } + +.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 { + color: rgba(0, 0, 0, 0.7); } + .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 { + color: rgba(0, 0, 0, 0.9); } + +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.5); + border-color: rgba(0, 0, 0, 0.1); } + +.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%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } + +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.5); } + .navbar-light .navbar-text a { + color: rgba(0, 0, 0, 0.9); } + .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { + color: rgba(0, 0, 0, 0.9); } + +.navbar-dark .navbar-brand { + color: #fff; } + .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { + color: #fff; } + +.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 { + color: rgba(255, 255, 255, 0.75); } + .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 { + color: #fff; } + +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.5); + border-color: rgba(255, 255, 255, 0.1); } + +.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%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); } + +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.5); } + .navbar-dark .navbar-text a { + color: #fff; } + .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { + color: #fff; } + +.card { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0; } + .card > hr { + margin-right: 0; + margin-left: 0; } + .card > .list-group { + border-top: inherit; + border-bottom: inherit; } + .card > .list-group:first-child { + border-top-width: 0; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); } + .card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); } + .card > .card-header + .list-group, + .card > .list-group + .card-footer { + border-top: 0; } + +.card-body { + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + min-height: 1px; + padding: 1.25rem; } + +.card-title { + margin-bottom: 0.75rem; } + +.card-subtitle { + margin-top: -0.375rem; + margin-bottom: 0; } + +.card-text:last-child { + margin-bottom: 0; } + +.card-link:hover { + text-decoration: none; } + +.card-link + .card-link { + margin-left: 1.25rem; } + +.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 { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } + +.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 { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } + +.card-header-tabs { + margin-right: -0.625rem; + margin-bottom: -0.75rem; + margin-left: -0.625rem; + border-bottom: 0; } + +.card-header-pills { + margin-right: -0.625rem; + margin-left: -0.625rem; } + +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1.25rem; + border-radius: calc(0.25rem - 1px); } + +.card-img, +.card-img-top, +.card-img-bottom { + -ms-flex-negative: 0; + flex-shrink: 0; + width: 100%; } + +.card-img, +.card-img-top { + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); } + +.card-img, +.card-img-bottom { + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); } + +.card-deck .card { + margin-bottom: 15px; } + +@media (min-width: 576px) { + .card-deck { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; + margin-right: -15px; + margin-left: -15px; } + .card-deck .card { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-right: 15px; + margin-bottom: 0; + margin-left: 15px; } } + +.card-group > .card { + margin-bottom: 15px; } + +@media (min-width: 576px) { + .card-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; + flex-flow: row wrap; } + .card-group > .card { + -webkit-box-flex: 1; + -ms-flex: 1 0 0%; + flex: 1 0 0%; + margin-bottom: 0; } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; } + .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 { + border-top-right-radius: 0; } + .card-group > .card:not(:last-child) .card-img-bottom, + .card-group > .card:not(:last-child) .card-footer { + border-bottom-right-radius: 0; } + .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 { + border-top-left-radius: 0; } + .card-group > .card:not(:first-child) .card-img-bottom, + .card-group > .card:not(:first-child) .card-footer { + border-bottom-left-radius: 0; } } + +.card-columns .card { + margin-bottom: 0.75rem; } + +@media (min-width: 576px) { + .card-columns { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + -webkit-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + orphans: 1; + widows: 1; } + .card-columns .card { + display: inline-block; + width: 100%; } } + +.accordion { + overflow-anchor: none; } + .accordion > .card { + overflow: hidden; } + .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) { + border-top-left-radius: 0; + border-top-right-radius: 0; } + .accordion > .card > .card-header { + border-radius: 0; + margin-bottom: -1px; } + +.breadcrumb { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + padding: 0.56rem 1.13rem; + margin-bottom: 1rem; + font-size: 0.875rem; + list-style: none; + background-color: transparent; + border-radius: 0.25rem; } + +.breadcrumb-item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; } + .breadcrumb-item + .breadcrumb-item::before { + display: inline-block; + padding-right: 0.5rem; + color: #6c757d; + content: "/"; } + .breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: underline; } + .breadcrumb-item + .breadcrumb-item:hover::before { + text-decoration: none; } + .breadcrumb-item.active { + color: #495057; } + +.pagination { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + padding-left: 0; + list-style: none; + border-radius: 0.25rem; } + +.page-link { + position: relative; + display: block; + padding: 0.5rem 0.75rem; + margin-left: -1px; + line-height: 1.25; + color: #007bff; + background-color: #fff; + border: 1px solid #dee2e6; } + .page-link:hover { + z-index: 2; + color: #0056b3; + text-decoration: none; + background-color: #e9ecef; + border-color: #dee2e6; } + .page-link:focus { + z-index: 3; + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); + box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } + +.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 { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; } + +.page-item.active .page-link { + z-index: 3; + color: #fff; + background-color: #007bff; + border-color: #007bff; } + +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + cursor: auto; + background-color: #fff; + border-color: #dee2e6; } + +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; + line-height: 1.5; } + +.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 { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; } + +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + line-height: 1.5; } + +.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 { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; } + +.badge { + display: inline-block; + padding: 0.25em 0.4em; + font-size: 75%; + font-weight: 700; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; + -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; + 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; + 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, -webkit-box-shadow 0.15s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .badge { + -webkit-transition: none; + transition: none; } } + a.badge:hover, a.badge:focus { + text-decoration: none; } + .badge:empty { + display: none; } + +.btn .badge { + position: relative; + top: -1px; } + +.badge-pill { + padding-right: 0.6em; + padding-left: 0.6em; + border-radius: 10rem; } + +.badge-primary { + color: #212529; + background-color: #1bdbe0; } + a.badge-primary:hover, a.badge-primary:focus { + color: #212529; + background-color: #16afb2; } + a.badge-primary:focus, a.badge-primary.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(27, 219, 224, 0.5); + box-shadow: 0 0 0 0.2rem rgba(27, 219, 224, 0.5); } + +.badge-secondary { + color: #212529; + background-color: #d8d8d8; } + a.badge-secondary:hover, a.badge-secondary:focus { + color: #212529; + background-color: #bfbfbf; } + a.badge-secondary:focus, a.badge-secondary.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.5); + box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.5); } + +.badge-success, .preview-list .preview-item .preview-thumbnail .badge.badge-online { + color: #fff; + background-color: #38ce3c; } + a.badge-success:hover, .preview-list .preview-item .preview-thumbnail a.badge.badge-online:hover, a.badge-success:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-online:focus { + color: #fff; + background-color: #2aa92d; } + a.badge-success:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-online:focus, a.badge-success.focus, .preview-list .preview-item .preview-thumbnail a.focus.badge.badge-online { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(56, 206, 60, 0.5); + box-shadow: 0 0 0 0.2rem rgba(56, 206, 60, 0.5); } + +.badge-info, .preview-list .preview-item .preview-thumbnail .badge.badge-offline { + color: #fff; + background-color: #8e32e9; } + a.badge-info:hover, .preview-list .preview-item .preview-thumbnail a.badge.badge-offline:hover, a.badge-info:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-offline:focus { + color: #fff; + background-color: #7516d2; } + a.badge-info:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-offline:focus, a.badge-info.focus, .preview-list .preview-item .preview-thumbnail a.focus.badge.badge-offline { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(142, 50, 233, 0.5); + box-shadow: 0 0 0 0.2rem rgba(142, 50, 233, 0.5); } + +.badge-warning, .preview-list .preview-item .preview-thumbnail .badge.badge-busy { + color: #212529; + background-color: #ffde73; } + a.badge-warning:hover, .preview-list .preview-item .preview-thumbnail a.badge.badge-busy:hover, a.badge-warning:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-busy:focus { + color: #212529; + background-color: #ffd240; } + a.badge-warning:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-busy:focus, a.badge-warning.focus, .preview-list .preview-item .preview-thumbnail a.focus.badge.badge-busy { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 222, 115, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 222, 115, 0.5); } + +.badge-danger { + color: #fff; + background-color: #ff4d6b; } + a.badge-danger:hover, a.badge-danger:focus { + color: #fff; + background-color: #ff1a41; } + a.badge-danger:focus, a.badge-danger.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 77, 107, 0.5); + box-shadow: 0 0 0 0.2rem rgba(255, 77, 107, 0.5); } + +.badge-light { + color: #212529; + background-color: #f8f9fa; } + a.badge-light:hover, a.badge-light:focus { + color: #212529; + background-color: #dae0e5; } + a.badge-light:focus, a.badge-light.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); + box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); } + +.badge-dark { + color: #fff; + background-color: #3e4b5b; } + a.badge-dark:hover, a.badge-dark:focus { + color: #fff; + background-color: #29323d; } + a.badge-dark:focus, a.badge-dark.focus { + outline: 0; + -webkit-box-shadow: 0 0 0 0.2rem rgba(62, 75, 91, 0.5); + box-shadow: 0 0 0 0.2rem rgba(62, 75, 91, 0.5); } + +.jumbotron { + padding: 2rem 1rem; + margin-bottom: 2rem; + background-color: #e9ecef; + border-radius: 0.3rem; } + @media (min-width: 576px) { + .jumbotron { + padding: 4rem 2rem; } } + +.jumbotron-fluid { + padding-right: 0; + padding-left: 0; + border-radius: 0; } + +.alert { + position: relative; + padding: 0.75rem 1.25rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; } + +.alert-heading { + color: inherit; } + +.alert-link { + font-weight: 700; } + +.alert-dismissible { + padding-right: 4rem; } + .alert-dismissible .close { + position: absolute; + top: 0; + right: 0; + z-index: 2; + padding: 0.75rem 1.25rem; + color: inherit; } + +.alert-primary { + color: #0e7274; + background-color: #d1f8f9; + border-color: #bff5f6; } + .alert-primary hr { + border-top-color: #a9f2f3; } + .alert-primary .alert-link { + color: #094546; } + +.alert-secondary { + color: #707070; + background-color: #f7f7f7; + border-color: #f4f4f4; } + .alert-secondary hr { + border-top-color: #e7e7e7; } + .alert-secondary .alert-link { + color: #575757; } + +.alert-success { + color: #1d6b1f; + background-color: #d7f5d8; + border-color: #c7f1c8; } + .alert-success hr { + border-top-color: #b3ecb4; } + .alert-success .alert-link { + color: #124313; } + +.alert-info { + color: #4a1a79; + background-color: #e8d6fb; + border-color: #dfc6f9; } + .alert-info hr { + border-top-color: #d2aff7; } + .alert-info .alert-link { + color: #30114f; } + +.alert-warning { + color: #85733c; + background-color: #fff8e3; + border-color: #fff6d8; } + .alert-warning hr { + border-top-color: #fff0bf; } + .alert-warning .alert-link { + color: #62552c; } + +.alert-danger { + color: #852838; + background-color: #ffdbe1; + border-color: #ffcdd6; } + .alert-danger hr { + border-top-color: #ffb4c1; } + .alert-danger .alert-link { + color: #5e1c27; } + +.alert-light { + color: #818182; + background-color: #fefefe; + border-color: #fdfdfe; } + .alert-light hr { + border-top-color: #ececf6; } + .alert-light .alert-link { + color: #686868; } + +.alert-dark { + color: #20272f; + background-color: #d8dbde; + border-color: #c9cdd1; } + .alert-dark hr { + border-top-color: #bbc0c5; } + .alert-dark .alert-link { + color: #0b0e11; } + +@-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 { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + height: 1rem; + overflow: hidden; + line-height: 0; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; } + +.progress-bar { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #007bff; + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .progress-bar { + -webkit-transition: none; + transition: none; } } + +.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 { + -webkit-animation: progress-bar-stripes 1s linear infinite; + animation: progress-bar-stripes 1s linear infinite; } + @media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + -webkit-animation: none; + animation: none; } } + +.media { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; } + +.media-body { + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; } + +.list-group { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: 0.25rem; } + +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; } + .list-group-item-action:hover, .list-group-item-action:focus { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; } + .list-group-item-action:active { + color: #212529; + background-color: #e9ecef; } + +.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 { + border-top-left-radius: inherit; + border-top-right-radius: inherit; } + .list-group-item:last-child { + border-bottom-right-radius: inherit; + border-bottom-left-radius: inherit; } + .list-group-item.disabled, .list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; } + .list-group-item.active { + z-index: 2; + color: #fff; + background-color: #007bff; + border-color: #007bff; } + .list-group-item + .list-group-item { + border-top-width: 0; } + .list-group-item + .list-group-item.active { + margin-top: -1px; + border-top-width: 1px; } + +.list-group-horizontal { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .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 { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; } + .list-group-horizontal > .list-group-item.active { + margin-top: 0; } + .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 { + margin-left: -1px; + border-left-width: 1px; } + +@media (min-width: 576px) { + .list-group-horizontal-sm { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .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 { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; } + .list-group-horizontal-sm > .list-group-item.active { + margin-top: 0; } + .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 { + margin-left: -1px; + border-left-width: 1px; } } + +@media (min-width: 768px) { + .list-group-horizontal-md { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .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 { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; } + .list-group-horizontal-md > .list-group-item.active { + margin-top: 0; } + .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 { + margin-left: -1px; + border-left-width: 1px; } } + +@media (min-width: 992px) { + .list-group-horizontal-lg { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .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 { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; } + .list-group-horizontal-lg > .list-group-item.active { + margin-top: 0; } + .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 { + margin-left: -1px; + border-left-width: 1px; } } + +@media (min-width: 1200px) { + .list-group-horizontal-xl { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .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 { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; } + .list-group-horizontal-xl > .list-group-item.active { + margin-top: 0; } + .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 { + margin-left: -1px; + border-left-width: 1px; } } + +.list-group-flush { + border-radius: 0; } + .list-group-flush > .list-group-item { + border-width: 0 0 1px; } + .list-group-flush > .list-group-item:last-child { + border-bottom-width: 0; } + +.list-group-item-primary { + color: #0e7274; + background-color: #bff5f6; } + .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { + color: #0e7274; + background-color: #a9f2f3; } + .list-group-item-primary.list-group-item-action.active { + color: #ffffff; + background-color: #0e7274; + border-color: #0e7274; } + +.list-group-item-secondary { + color: #707070; + background-color: #f4f4f4; } + .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { + color: #707070; + background-color: #e7e7e7; } + .list-group-item-secondary.list-group-item-action.active { + color: #ffffff; + background-color: #707070; + border-color: #707070; } + +.list-group-item-success { + color: #1d6b1f; + background-color: #c7f1c8; } + .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { + color: #1d6b1f; + background-color: #b3ecb4; } + .list-group-item-success.list-group-item-action.active { + color: #ffffff; + background-color: #1d6b1f; + border-color: #1d6b1f; } + +.list-group-item-info { + color: #4a1a79; + background-color: #dfc6f9; } + .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { + color: #4a1a79; + background-color: #d2aff7; } + .list-group-item-info.list-group-item-action.active { + color: #ffffff; + background-color: #4a1a79; + border-color: #4a1a79; } + +.list-group-item-warning { + color: #85733c; + background-color: #fff6d8; } + .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { + color: #85733c; + background-color: #fff0bf; } + .list-group-item-warning.list-group-item-action.active { + color: #ffffff; + background-color: #85733c; + border-color: #85733c; } + +.list-group-item-danger { + color: #852838; + background-color: #ffcdd6; } + .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { + color: #852838; + background-color: #ffb4c1; } + .list-group-item-danger.list-group-item-action.active { + color: #ffffff; + background-color: #852838; + border-color: #852838; } + +.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 { + color: #818182; + background-color: #ececf6; } + .list-group-item-light.list-group-item-action.active { + color: #ffffff; + background-color: #818182; + border-color: #818182; } + +.list-group-item-dark { + color: #20272f; + background-color: #c9cdd1; } + .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { + color: #20272f; + background-color: #bbc0c5; } + .list-group-item-dark.list-group-item-action.active { + color: #ffffff; + background-color: #20272f; + border-color: #20272f; } + +.close { + float: right; + font-size: 1.5rem; + font-weight: 700; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + opacity: .5; } + .close:hover { + color: #000; + text-decoration: none; } + .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { + opacity: .75; } + +button.close { + padding: 0; + background-color: transparent; + border: 0; } + +a.close.disabled { + pointer-events: none; } + +.toast { + -ms-flex-preferred-size: 350px; + flex-basis: 350px; + max-width: 350px; + font-size: 0.875rem; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); + opacity: 0; + border-radius: 0.25rem; } + .toast:not(:last-child) { + margin-bottom: 0.75rem; } + .toast.showing { + opacity: 1; } + .toast.show { + display: block; + opacity: 1; } + .toast.hide { + display: none; } + +.toast-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0.25rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); } + +.toast-body { + padding: 0.75rem; } + +.modal-open { + overflow: hidden; } + .modal-open .modal { + overflow-x: hidden; + overflow-y: auto; } + +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + display: none; + width: 100%; + height: 100%; + overflow: hidden; + outline: 0; } + +.modal-dialog { + position: relative; + width: auto; + margin: 10px; + pointer-events: none; } + .modal.fade .modal-dialog { + -webkit-transition: -webkit-transform 0.4s ease; + transition: -webkit-transform 0.4s ease; + transition: transform 0.4s ease; + transition: transform 0.4s ease, -webkit-transform 0.4s ease; + -webkit-transform: translate(0, -50px); + transform: translate(0, -50px); } + @media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + -webkit-transition: none; + transition: none; } } + .modal.show .modal-dialog { + -webkit-transform: none; + transform: none; } + .modal.modal-static .modal-dialog { + -webkit-transform: scale(1.02); + transform: scale(1.02); } + +.modal-dialog-scrollable { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + max-height: calc(100% - 20px); } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 20px); + overflow: hidden; } + .modal-dialog-scrollable .modal-header, + .modal-dialog-scrollable .modal-footer { + -ms-flex-negative: 0; + flex-shrink: 0; } + .modal-dialog-scrollable .modal-body { + overflow-y: auto; } + +.modal-dialog-centered { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + min-height: calc(100% - 20px); } + .modal-dialog-centered::before { + display: block; + height: calc(100vh - 20px); + height: -webkit-min-content; + height: -moz-min-content; + height: min-content; + content: ""; } + .modal-dialog-centered.modal-dialog-scrollable { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + height: 100%; } + .modal-dialog-centered.modal-dialog-scrollable .modal-content { + max-height: none; } + .modal-dialog-centered.modal-dialog-scrollable::before { + content: none; } + +.modal-content { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #ecf0f4; + background-clip: padding-box; + border: 1px solid #e8ecf1; + border-radius: 0.3rem; + outline: 0; } + +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; } + .modal-backdrop.fade { + opacity: 0; } + .modal-backdrop.show { + opacity: 0.5; } + +.modal-header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #e8ecf1; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); } + .modal-header .close { + padding: 1rem 1rem; + margin: -25px -26px -25px auto; } + +.modal-title { + margin-bottom: 0; + line-height: 1.5; } + +.modal-body { + position: relative; + -webkit-box-flex: 1; + -ms-flex: 1 1 auto; + flex: 1 1 auto; + padding: 0.9375rem; } + +.modal-footer { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + padding: 0.6875rem; + border-top: 1px solid #e8ecf1; + border-bottom-right-radius: calc(0.3rem - 1px); + border-bottom-left-radius: calc(0.3rem - 1px); } + .modal-footer > * { + margin: 0.25rem; } + +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; } + +@media (min-width: 576px) { + .modal-dialog { + max-width: 500px; + margin: 30px auto; } + .modal-dialog-scrollable { + max-height: calc(100% - 60px); } + .modal-dialog-scrollable .modal-content { + max-height: calc(100vh - 60px); } + .modal-dialog-centered { + min-height: calc(100% - 60px); } + .modal-dialog-centered::before { + height: calc(100vh - 60px); + height: -webkit-min-content; + height: -moz-min-content; + height: min-content; } + .modal-sm { + max-width: 300px; } } + +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + max-width: 90%; } } + +@media (min-width: 1200px) { + .modal-xl { + max-width: 1140px; } } + +.tooltip { + position: absolute; + z-index: 1070; + display: block; + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.75rem; + word-wrap: break-word; + opacity: 0; } + .tooltip.show { + opacity: 0.9; } + .tooltip .arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; } + .tooltip .arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { + padding: 0.4rem 0; } + .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { + bottom: 0; } + .bs-tooltip-top .arrow::before, .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"] { + padding: 0 0.4rem; } + .bs-tooltip-right .arrow, .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 { + right: 0; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; } + +.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { + padding: 0.4rem 0; } + .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { + top: 0; } + .bs-tooltip-bottom .arrow::before, .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"] { + padding: 0 0.4rem; } + .bs-tooltip-left .arrow, .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 { + left: 0; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; } + +.tooltip-inner { + max-width: 200px; + padding: 0.4rem 0.75rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.375rem; } + +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: block; + max-width: 276px; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; } + .popover .arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; + margin: 0 0.3rem; } + .popover .arrow::before, .popover .arrow::after { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; } + +.bs-popover-top, .bs-popover-auto[x-placement^="top"] { + margin-bottom: 0.5rem; } + .bs-popover-top > .arrow, .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 { + 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 { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; } + +.bs-popover-right, .bs-popover-auto[x-placement^="right"] { + margin-left: 0.5rem; } + .bs-popover-right > .arrow, .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 { + 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 { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; } + +.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { + margin-top: 0.5rem; } + .bs-popover-bottom > .arrow, .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 { + 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 { + 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 { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f7f7f7; } + +.bs-popover-left, .bs-popover-auto[x-placement^="left"] { + margin-right: 0.5rem; } + .bs-popover-left > .arrow, .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 { + 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 { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; } + +.popover-header { + padding: 0.5rem 0.75rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); } + .popover-header:empty { + display: none; } + +.popover-body { + padding: 0.5rem 0.75rem; + color: #212529; } + +.carousel { + position: relative; } + +.carousel.pointer-event { + -ms-touch-action: pan-y; + touch-action: pan-y; } + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; } + .carousel-inner::after { + display: block; + clear: both; + content: ""; } + +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transition: -webkit-transform 0.6s ease-in-out; + transition: -webkit-transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out; + transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; } + @media (prefers-reduced-motion: reduce) { + .carousel-item { + -webkit-transition: none; + transition: none; } } + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; } + +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + -webkit-transform: translateX(100%); + transform: translateX(100%); } + +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + -webkit-transform: translateX(-100%); + transform: translateX(-100%); } + +.carousel-fade .carousel-item { + opacity: 0; + -webkit-transition-property: opacity; + transition-property: opacity; + -webkit-transform: none; + transform: none; } + +.carousel-fade .carousel-item.active, +.carousel-fade .carousel-item-next.carousel-item-left, +.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 { + z-index: 0; + opacity: 0; + -webkit-transition: opacity 0s 0.6s; + transition: opacity 0s 0.6s; } + @media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-left, + .carousel-fade .active.carousel-item-right { + -webkit-transition: none; + transition: none; } } + +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: 15%; + color: #fff; + text-align: center; + opacity: 0.5; + -webkit-transition: opacity 0.15s ease; + transition: opacity 0.15s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-control-prev, + .carousel-control-next { + -webkit-transition: none; + transition: none; } } + .carousel-control-prev:hover, .carousel-control-prev:focus, + .carousel-control-next:hover, + .carousel-control-next:focus { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; } + +.carousel-control-prev { + left: 0; } + +.carousel-control-next { + right: 0; } + +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: 20px; + height: 20px; + background: no-repeat 50% / 100% 100%; } + +.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 { + 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 { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + padding-left: 0; + margin-right: 15%; + margin-left: 15%; + list-style: none; } + .carousel-indicators li { + -webkit-box-sizing: content-box; + box-sizing: content-box; + -webkit-box-flex: 0; + -ms-flex: 0 1 auto; + flex: 0 1 auto; + width: 30px; + height: 3px; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: .5; + -webkit-transition: opacity 0.6s ease; + transition: opacity 0.6s ease; } + @media (prefers-reduced-motion: reduce) { + .carousel-indicators li { + -webkit-transition: none; + transition: none; } } + .carousel-indicators .active { + opacity: 1; } + +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; } + +@-webkit-keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes spinner-border { + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + -webkit-animation: spinner-border .75s linear infinite; + animation: spinner-border .75s linear infinite; } + +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; } + +@-webkit-keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); } + 50% { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +@keyframes spinner-grow { + 0% { + -webkit-transform: scale(0); + transform: scale(0); } + 50% { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: text-bottom; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: spinner-grow .75s linear infinite; + animation: spinner-grow .75s linear infinite; } + +.spinner-grow-sm { + width: 1rem; + height: 1rem; } + +.align-baseline { + vertical-align: baseline !important; } + +.align-top { + vertical-align: top !important; } + +.align-middle { + vertical-align: middle !important; } + +.align-bottom { + vertical-align: bottom !important; } + +.align-text-bottom { + vertical-align: text-bottom !important; } + +.align-text-top { + vertical-align: text-top !important; } + +.bg-primary { + background-color: #1bdbe0 !important; } + +a.bg-primary:hover, a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #16afb2 !important; } + +.bg-secondary { + background-color: #d8d8d8 !important; } + +a.bg-secondary:hover, a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #bfbfbf !important; } + +.bg-success { + background-color: #38ce3c !important; } + +a.bg-success:hover, a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #2aa92d !important; } + +.bg-info { + background-color: #8e32e9 !important; } + +a.bg-info:hover, a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #7516d2 !important; } + +.bg-warning { + background-color: #ffde73 !important; } + +a.bg-warning:hover, a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #ffd240 !important; } + +.bg-danger { + background-color: #ff4d6b !important; } + +a.bg-danger:hover, a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #ff1a41 !important; } + +.bg-light { + background-color: #f8f9fa !important; } + +a.bg-light:hover, a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #dae0e5 !important; } + +.bg-dark { + background-color: #3e4b5b !important; } + +a.bg-dark:hover, a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #29323d !important; } + +.bg-white { + background-color: #ffffff !important; } + +.bg-transparent { + background-color: transparent !important; } + +.border, .loader-demo-box { + border: 1px solid #e8ecf1 !important; } + +.border-top { + border-top: 1px solid #e8ecf1 !important; } + +.border-right { + border-right: 1px solid #e8ecf1 !important; } + +.border-bottom { + border-bottom: 1px solid #e8ecf1 !important; } + +.border-left { + border-left: 1px solid #e8ecf1 !important; } + +.border-0 { + border: 0 !important; } + +.border-top-0 { + border-top: 0 !important; } + +.border-right-0 { + border-right: 0 !important; } + +.border-bottom-0 { + border-bottom: 0 !important; } + +.border-left-0 { + border-left: 0 !important; } + +.border-primary { + border-color: #1bdbe0 !important; } + +.border-secondary, .loader-demo-box { + border-color: #d8d8d8 !important; } + +.border-success { + border-color: #38ce3c !important; } + +.border-info { + border-color: #8e32e9 !important; } + +.border-warning { + border-color: #ffde73 !important; } + +.border-danger { + border-color: #ff4d6b !important; } + +.border-light { + border-color: #f8f9fa !important; } + +.border-dark { + border-color: #3e4b5b !important; } + +.border-white { + border-color: #ffffff !important; } + +.rounded-sm { + border-radius: 0.2rem !important; } + +.rounded, .loader-demo-box { + border-radius: 0.25rem !important; } + +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; } + +.rounded-right { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; } + +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } + +.rounded-left { + border-top-left-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; } + +.rounded-lg { + border-radius: 0.3rem !important; } + +.rounded-circle { + border-radius: 50% !important; } + +.rounded-pill { + border-radius: 50rem !important; } + +.rounded-0 { + border-radius: 0 !important; } + +.clearfix::after { + display: block; + clear: both; + content: ""; } + +.d-none { + display: none !important; } + +.d-inline { + display: inline !important; } + +.d-inline-block { + display: inline-block !important; } + +.d-block { + display: block !important; } + +.d-table { + display: table !important; } + +.d-table-row { + display: table-row !important; } + +.d-table-cell { + display: table-cell !important; } + +.d-flex, .page-header, .loader-demo-box, .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-item { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + +.d-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } + +@media (min-width: 576px) { + .d-sm-none { + display: none !important; } + .d-sm-inline { + display: inline !important; } + .d-sm-inline-block { + display: inline-block !important; } + .d-sm-block { + display: block !important; } + .d-sm-table { + display: table !important; } + .d-sm-table-row { + display: table-row !important; } + .d-sm-table-cell { + display: table-cell !important; } + .d-sm-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-sm-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media (min-width: 768px) { + .d-md-none { + display: none !important; } + .d-md-inline { + display: inline !important; } + .d-md-inline-block { + display: inline-block !important; } + .d-md-block { + display: block !important; } + .d-md-table { + display: table !important; } + .d-md-table-row { + display: table-row !important; } + .d-md-table-cell { + display: table-cell !important; } + .d-md-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-md-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media (min-width: 992px) { + .d-lg-none { + display: none !important; } + .d-lg-inline { + display: inline !important; } + .d-lg-inline-block { + display: inline-block !important; } + .d-lg-block { + display: block !important; } + .d-lg-table { + display: table !important; } + .d-lg-table-row { + display: table-row !important; } + .d-lg-table-cell { + display: table-cell !important; } + .d-lg-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-lg-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media (min-width: 1200px) { + .d-xl-none { + display: none !important; } + .d-xl-inline { + display: inline !important; } + .d-xl-inline-block { + display: inline-block !important; } + .d-xl-block { + display: block !important; } + .d-xl-table { + display: table !important; } + .d-xl-table-row { + display: table-row !important; } + .d-xl-table-cell { + display: table-cell !important; } + .d-xl-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-xl-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +@media print { + .d-print-none { + display: none !important; } + .d-print-inline { + display: inline !important; } + .d-print-inline-block { + display: inline-block !important; } + .d-print-block { + display: block !important; } + .d-print-table { + display: table !important; } + .d-print-table-row { + display: table-row !important; } + .d-print-table-cell { + display: table-cell !important; } + .d-print-flex { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; } + .d-print-inline-flex { + display: -webkit-inline-box !important; + display: -ms-inline-flexbox !important; + display: inline-flex !important; } } + +.embed-responsive { + position: relative; + display: block; + width: 100%; + padding: 0; + overflow: hidden; } + .embed-responsive::before { + display: block; + content: ""; } + .embed-responsive .embed-responsive-item, + .embed-responsive iframe, + .embed-responsive embed, + .embed-responsive object, + .embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; } + +.embed-responsive-21by9::before { + padding-top: 42.85714%; } + +.embed-responsive-16by9::before { + padding-top: 56.25%; } + +.embed-responsive-4by3::before { + padding-top: 75%; } + +.embed-responsive-1by1::before { + padding-top: 100%; } + +.embed-responsive-21by9::before { + padding-top: 42.85714%; } + +.embed-responsive-16by9::before { + padding-top: 56.25%; } + +.embed-responsive-4by3::before { + padding-top: 75%; } + +.embed-responsive-1by1::before { + padding-top: 100%; } + +.flex-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + +.flex-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + +.flex-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + +.flex-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + +.flex-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + +.flex-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + +.flex-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + +.flex-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + +.flex-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + +.flex-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + +.flex-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + +.flex-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + +.justify-content-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + +.justify-content-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + +.justify-content-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + +.justify-content-between, .page-header { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + +.justify-content-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + +.align-items-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + +.align-items-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + +.align-items-center, .page-header, .loader-demo-box, .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-item { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + +.align-items-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + +.align-items-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + +.align-content-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + +.align-content-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + +.align-content-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + +.align-content-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + +.align-content-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + +.align-content-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + +.align-self-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; } + +.align-self-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + +.align-self-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + +.align-self-center { + -ms-flex-item-align: center !important; + align-self: center !important; } + +.align-self-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + +.align-self-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; } + +@media (min-width: 576px) { + .flex-sm-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-sm-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-sm-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-sm-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-sm-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-sm-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-sm-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-sm-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-sm-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-sm-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-sm-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-sm-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-sm-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-sm-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-sm-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-sm-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-sm-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-sm-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-sm-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-sm-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-sm-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-sm-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-sm-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-sm-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-sm-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-sm-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-sm-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-sm-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-sm-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; } + .align-self-sm-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-sm-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-sm-center { + -ms-flex-item-align: center !important; + align-self: center !important; } + .align-self-sm-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-sm-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; } } + +@media (min-width: 768px) { + .flex-md-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-md-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-md-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-md-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-md-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-md-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-md-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-md-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-md-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-md-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-md-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-md-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-md-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-md-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-md-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-md-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-md-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-md-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-md-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-md-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-md-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-md-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-md-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-md-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-md-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-md-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-md-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-md-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-md-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; } + .align-self-md-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-md-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-md-center { + -ms-flex-item-align: center !important; + align-self: center !important; } + .align-self-md-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-md-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; } } + +@media (min-width: 992px) { + .flex-lg-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-lg-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-lg-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-lg-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-lg-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-lg-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-lg-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-lg-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-lg-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-lg-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-lg-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-lg-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-lg-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-lg-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-lg-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-lg-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-lg-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-lg-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-lg-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-lg-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-lg-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-lg-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-lg-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-lg-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-lg-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-lg-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-lg-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-lg-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-lg-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; } + .align-self-lg-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-lg-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-lg-center { + -ms-flex-item-align: center !important; + align-self: center !important; } + .align-self-lg-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-lg-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; } } + +@media (min-width: 1200px) { + .flex-xl-row { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: row !important; + flex-direction: row !important; } + .flex-xl-column { + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + -ms-flex-direction: column !important; + flex-direction: column !important; } + .flex-xl-row-reverse { + -webkit-box-orient: horizontal !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: row-reverse !important; + flex-direction: row-reverse !important; } + .flex-xl-column-reverse { + -webkit-box-orient: vertical !important; + -webkit-box-direction: reverse !important; + -ms-flex-direction: column-reverse !important; + flex-direction: column-reverse !important; } + .flex-xl-wrap { + -ms-flex-wrap: wrap !important; + flex-wrap: wrap !important; } + .flex-xl-nowrap { + -ms-flex-wrap: nowrap !important; + flex-wrap: nowrap !important; } + .flex-xl-wrap-reverse { + -ms-flex-wrap: wrap-reverse !important; + flex-wrap: wrap-reverse !important; } + .flex-xl-fill { + -webkit-box-flex: 1 !important; + -ms-flex: 1 1 auto !important; + flex: 1 1 auto !important; } + .flex-xl-grow-0 { + -webkit-box-flex: 0 !important; + -ms-flex-positive: 0 !important; + flex-grow: 0 !important; } + .flex-xl-grow-1 { + -webkit-box-flex: 1 !important; + -ms-flex-positive: 1 !important; + flex-grow: 1 !important; } + .flex-xl-shrink-0 { + -ms-flex-negative: 0 !important; + flex-shrink: 0 !important; } + .flex-xl-shrink-1 { + -ms-flex-negative: 1 !important; + flex-shrink: 1 !important; } + .justify-content-xl-start { + -webkit-box-pack: start !important; + -ms-flex-pack: start !important; + justify-content: flex-start !important; } + .justify-content-xl-end { + -webkit-box-pack: end !important; + -ms-flex-pack: end !important; + justify-content: flex-end !important; } + .justify-content-xl-center { + -webkit-box-pack: center !important; + -ms-flex-pack: center !important; + justify-content: center !important; } + .justify-content-xl-between { + -webkit-box-pack: justify !important; + -ms-flex-pack: justify !important; + justify-content: space-between !important; } + .justify-content-xl-around { + -ms-flex-pack: distribute !important; + justify-content: space-around !important; } + .align-items-xl-start { + -webkit-box-align: start !important; + -ms-flex-align: start !important; + align-items: flex-start !important; } + .align-items-xl-end { + -webkit-box-align: end !important; + -ms-flex-align: end !important; + align-items: flex-end !important; } + .align-items-xl-center { + -webkit-box-align: center !important; + -ms-flex-align: center !important; + align-items: center !important; } + .align-items-xl-baseline { + -webkit-box-align: baseline !important; + -ms-flex-align: baseline !important; + align-items: baseline !important; } + .align-items-xl-stretch { + -webkit-box-align: stretch !important; + -ms-flex-align: stretch !important; + align-items: stretch !important; } + .align-content-xl-start { + -ms-flex-line-pack: start !important; + align-content: flex-start !important; } + .align-content-xl-end { + -ms-flex-line-pack: end !important; + align-content: flex-end !important; } + .align-content-xl-center { + -ms-flex-line-pack: center !important; + align-content: center !important; } + .align-content-xl-between { + -ms-flex-line-pack: justify !important; + align-content: space-between !important; } + .align-content-xl-around { + -ms-flex-line-pack: distribute !important; + align-content: space-around !important; } + .align-content-xl-stretch { + -ms-flex-line-pack: stretch !important; + align-content: stretch !important; } + .align-self-xl-auto { + -ms-flex-item-align: auto !important; + align-self: auto !important; } + .align-self-xl-start { + -ms-flex-item-align: start !important; + align-self: flex-start !important; } + .align-self-xl-end { + -ms-flex-item-align: end !important; + align-self: flex-end !important; } + .align-self-xl-center { + -ms-flex-item-align: center !important; + align-self: center !important; } + .align-self-xl-baseline { + -ms-flex-item-align: baseline !important; + align-self: baseline !important; } + .align-self-xl-stretch { + -ms-flex-item-align: stretch !important; + align-self: stretch !important; } } + +.float-left { + float: left !important; } + +.float-right { + float: right !important; } + +.float-none { + float: none !important; } + +@media (min-width: 576px) { + .float-sm-left { + float: left !important; } + .float-sm-right { + float: right !important; } + .float-sm-none { + float: none !important; } } + +@media (min-width: 768px) { + .float-md-left { + float: left !important; } + .float-md-right { + float: right !important; } + .float-md-none { + float: none !important; } } + +@media (min-width: 992px) { + .float-lg-left { + float: left !important; } + .float-lg-right { + float: right !important; } + .float-lg-none { + float: none !important; } } + +@media (min-width: 1200px) { + .float-xl-left { + float: left !important; } + .float-xl-right { + float: right !important; } + .float-xl-none { + float: none !important; } } + +.user-select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + -ms-user-select: all !important; + user-select: all !important; } + +.user-select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + -ms-user-select: auto !important; + user-select: auto !important; } + +.user-select-none { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; } + +.overflow-auto { + overflow: auto !important; } + +.overflow-hidden { + overflow: hidden !important; } + +.position-static { + position: static !important; } + +.position-relative { + position: relative !important; } + +.position-absolute { + position: absolute !important; } + +.position-fixed { + position: fixed !important; } + +.position-sticky { + position: sticky !important; } + +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; } + +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; } + +@supports (position: sticky) { + .sticky-top { + position: sticky; + top: 0; + z-index: 1020; } } + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border: 0; } + +.sr-only-focusable:active, .sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + overflow: visible; + clip: auto; + white-space: normal; } + +.shadow-sm { + -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } + +.shadow { + -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } + +.shadow-lg { + -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } + +.shadow-none { + -webkit-box-shadow: none !important; + box-shadow: none !important; } + +.w-25 { + width: 25% !important; } + +.w-50 { + width: 50% !important; } + +.w-75 { + width: 75% !important; } + +.w-100 { + width: 100% !important; } + +.w-auto { + width: auto !important; } + +.h-25 { + height: 25% !important; } + +.h-50 { + height: 50% !important; } + +.h-75 { + height: 75% !important; } + +.h-100 { + height: 100% !important; } + +.h-auto { + height: auto !important; } + +.mw-100 { + max-width: 100% !important; } + +.mh-100 { + max-height: 100% !important; } + +.min-vw-100 { + min-width: 100vw !important; } + +.min-vh-100 { + min-height: 100vh !important; } + +.vw-100 { + width: 100vw !important; } + +.vh-100 { + height: 100vh !important; } + +.m-0 { + margin: 0 !important; } + +.mt-0, .demo-modal .modal-dialog, +.my-0 { + margin-top: 0 !important; } + +.mr-0, +.mx-0 { + margin-right: 0 !important; } + +.mb-0, +.my-0 { + margin-bottom: 0 !important; } + +.ml-0, .rtl .preview-list .preview-item .preview-thumbnail .preview-icon i, +.mx-0 { + margin-left: 0 !important; } + +.m-1 { + margin: 0.25rem !important; } + +.mt-1, +.my-1 { + margin-top: 0.25rem !important; } + +.mr-1, +.mx-1 { + margin-right: 0.25rem !important; } + +.mb-1, +.my-1 { + margin-bottom: 0.25rem !important; } + +.ml-1, +.mx-1 { + margin-left: 0.25rem !important; } + +.m-2 { + margin: 0.5rem !important; } + +.mt-2, .template-demo > .btn-group, +.template-demo > .btn-group-vertical, .template-demo .circle-progress, +.my-2 { + margin-top: 0.5rem !important; } + +.mr-2, .template-demo > .btn-group, +.template-demo > .btn-group-vertical, .template-demo > .dropdown, +.mx-2 { + margin-right: 0.5rem !important; } + +.mb-2, +.my-2 { + margin-bottom: 0.5rem !important; } + +.ml-2, .btn-toolbar .btn-group + .btn-group, +.mx-2 { + margin-left: 0.5rem !important; } + +.m-3 { + margin: 1rem !important; } + +.mt-3, .template-demo > .btn, .template-demo > .btn-toolbar, +.my-3 { + margin-top: 1rem !important; } + +.mr-3, .template-demo > .btn, .template-demo > .btn-toolbar, +.mx-3 { + margin-right: 1rem !important; } + +.mb-3, .template-demo .circle-progress-block, +.my-3 { + margin-bottom: 1rem !important; } + +.ml-3, +.mx-3 { + margin-left: 1rem !important; } + +.m-4 { + margin: 1.5rem !important; } + +.mt-4, +.my-4 { + margin-top: 1.5rem !important; } + +.mr-4, +.mx-4 { + margin-right: 1.5rem !important; } + +.mb-4, +.my-4 { + margin-bottom: 1.5rem !important; } + +.ml-4, +.mx-4 { + margin-left: 1.5rem !important; } + +.m-5 { + margin: 3rem !important; } + +.mt-5, +.my-5 { + margin-top: 3rem !important; } + +.mr-5, +.mx-5 { + margin-right: 3rem !important; } + +.mb-5, +.my-5 { + margin-bottom: 3rem !important; } + +.ml-5, +.mx-5 { + margin-left: 3rem !important; } + +.p-0 { + padding: 0 !important; } + +.pt-0, +.py-0 { + padding-top: 0 !important; } + +.pr-0, +.px-0 { + padding-right: 0 !important; } + +.pb-0, +.py-0 { + padding-bottom: 0 !important; } + +.pl-0, +.px-0 { + padding-left: 0 !important; } + +.p-1 { + padding: 0.25rem !important; } + +.pt-1, +.py-1 { + padding-top: 0.25rem !important; } + +.pr-1, +.px-1 { + padding-right: 0.25rem !important; } + +.pb-1, +.py-1 { + padding-bottom: 0.25rem !important; } + +.pl-1, +.px-1 { + padding-left: 0.25rem !important; } + +.p-2 { + padding: 0.5rem !important; } + +.pt-2, +.py-2 { + padding-top: 0.5rem !important; } + +.pr-2, +.px-2, +.template-demo .circle-progress-block { + padding-right: 0.5rem !important; } + +.pb-2, +.py-2 { + padding-bottom: 0.5rem !important; } + +.pl-2, +.px-2, +.template-demo .circle-progress-block { + padding-left: 0.5rem !important; } + +.p-3 { + padding: 1rem !important; } + +.pt-3, +.py-3 { + padding-top: 1rem !important; } + +.pr-3, +.px-3 { + padding-right: 1rem !important; } + +.pb-3, +.py-3 { + padding-bottom: 1rem !important; } + +.pl-3, +.px-3 { + padding-left: 1rem !important; } + +.p-4 { + padding: 1.5rem !important; } + +.pt-4, +.py-4 { + padding-top: 1.5rem !important; } + +.pr-4, +.px-4 { + padding-right: 1.5rem !important; } + +.pb-4, +.py-4 { + padding-bottom: 1.5rem !important; } + +.pl-4, +.px-4 { + padding-left: 1.5rem !important; } + +.p-5 { + padding: 3rem !important; } + +.pt-5, +.py-5 { + padding-top: 3rem !important; } + +.pr-5, +.px-5 { + padding-right: 3rem !important; } + +.pb-5, +.py-5 { + padding-bottom: 3rem !important; } + +.pl-5, +.px-5 { + padding-left: 3rem !important; } + +.m-n1 { + margin: -0.25rem !important; } + +.mt-n1, +.my-n1 { + margin-top: -0.25rem !important; } + +.mr-n1, +.mx-n1 { + margin-right: -0.25rem !important; } + +.mb-n1, +.my-n1 { + margin-bottom: -0.25rem !important; } + +.ml-n1, +.mx-n1 { + margin-left: -0.25rem !important; } + +.m-n2 { + margin: -0.5rem !important; } + +.mt-n2, +.my-n2 { + margin-top: -0.5rem !important; } + +.mr-n2, +.mx-n2 { + margin-right: -0.5rem !important; } + +.mb-n2, +.my-n2 { + margin-bottom: -0.5rem !important; } + +.ml-n2, +.mx-n2 { + margin-left: -0.5rem !important; } + +.m-n3 { + margin: -1rem !important; } + +.mt-n3, +.my-n3 { + margin-top: -1rem !important; } + +.mr-n3, +.mx-n3 { + margin-right: -1rem !important; } + +.mb-n3, +.my-n3 { + margin-bottom: -1rem !important; } + +.ml-n3, +.mx-n3 { + margin-left: -1rem !important; } + +.m-n4 { + margin: -1.5rem !important; } + +.mt-n4, +.my-n4 { + margin-top: -1.5rem !important; } + +.mr-n4, +.mx-n4 { + margin-right: -1.5rem !important; } + +.mb-n4, +.my-n4 { + margin-bottom: -1.5rem !important; } + +.ml-n4, +.mx-n4 { + margin-left: -1.5rem !important; } + +.m-n5 { + margin: -3rem !important; } + +.mt-n5, +.my-n5 { + margin-top: -3rem !important; } + +.mr-n5, +.mx-n5 { + margin-right: -3rem !important; } + +.mb-n5, +.my-n5 { + margin-bottom: -3rem !important; } + +.ml-n5, +.mx-n5 { + margin-left: -3rem !important; } + +.m-auto { + margin: auto !important; } + +.mt-auto, +.my-auto { + margin-top: auto !important; } + +.mr-auto, +.mx-auto { + margin-right: auto !important; } + +.mb-auto, +.my-auto { + margin-bottom: auto !important; } + +.ml-auto, +.mx-auto { + margin-left: auto !important; } + +@media (min-width: 576px) { + .m-sm-0 { + margin: 0 !important; } + .mt-sm-0, + .my-sm-0 { + margin-top: 0 !important; } + .mr-sm-0, + .mx-sm-0 { + margin-right: 0 !important; } + .mb-sm-0, + .my-sm-0 { + margin-bottom: 0 !important; } + .ml-sm-0, + .mx-sm-0 { + margin-left: 0 !important; } + .m-sm-1 { + margin: 0.25rem !important; } + .mt-sm-1, + .my-sm-1 { + margin-top: 0.25rem !important; } + .mr-sm-1, + .mx-sm-1 { + margin-right: 0.25rem !important; } + .mb-sm-1, + .my-sm-1 { + margin-bottom: 0.25rem !important; } + .ml-sm-1, + .mx-sm-1 { + margin-left: 0.25rem !important; } + .m-sm-2 { + margin: 0.5rem !important; } + .mt-sm-2, + .my-sm-2 { + margin-top: 0.5rem !important; } + .mr-sm-2, + .mx-sm-2 { + margin-right: 0.5rem !important; } + .mb-sm-2, + .my-sm-2 { + margin-bottom: 0.5rem !important; } + .ml-sm-2, + .mx-sm-2 { + margin-left: 0.5rem !important; } + .m-sm-3 { + margin: 1rem !important; } + .mt-sm-3, + .my-sm-3 { + margin-top: 1rem !important; } + .mr-sm-3, + .mx-sm-3 { + margin-right: 1rem !important; } + .mb-sm-3, + .my-sm-3 { + margin-bottom: 1rem !important; } + .ml-sm-3, + .mx-sm-3 { + margin-left: 1rem !important; } + .m-sm-4 { + margin: 1.5rem !important; } + .mt-sm-4, + .my-sm-4 { + margin-top: 1.5rem !important; } + .mr-sm-4, + .mx-sm-4 { + margin-right: 1.5rem !important; } + .mb-sm-4, + .my-sm-4 { + margin-bottom: 1.5rem !important; } + .ml-sm-4, + .mx-sm-4 { + margin-left: 1.5rem !important; } + .m-sm-5 { + margin: 3rem !important; } + .mt-sm-5, + .my-sm-5 { + margin-top: 3rem !important; } + .mr-sm-5, + .mx-sm-5 { + margin-right: 3rem !important; } + .mb-sm-5, + .my-sm-5 { + margin-bottom: 3rem !important; } + .ml-sm-5, + .mx-sm-5 { + margin-left: 3rem !important; } + .p-sm-0 { + padding: 0 !important; } + .pt-sm-0, + .py-sm-0 { + padding-top: 0 !important; } + .pr-sm-0, + .px-sm-0 { + padding-right: 0 !important; } + .pb-sm-0, + .py-sm-0 { + padding-bottom: 0 !important; } + .pl-sm-0, + .px-sm-0 { + padding-left: 0 !important; } + .p-sm-1 { + padding: 0.25rem !important; } + .pt-sm-1, + .py-sm-1 { + padding-top: 0.25rem !important; } + .pr-sm-1, + .px-sm-1 { + padding-right: 0.25rem !important; } + .pb-sm-1, + .py-sm-1 { + padding-bottom: 0.25rem !important; } + .pl-sm-1, + .px-sm-1 { + padding-left: 0.25rem !important; } + .p-sm-2 { + padding: 0.5rem !important; } + .pt-sm-2, + .py-sm-2 { + padding-top: 0.5rem !important; } + .pr-sm-2, + .px-sm-2 { + padding-right: 0.5rem !important; } + .pb-sm-2, + .py-sm-2 { + padding-bottom: 0.5rem !important; } + .pl-sm-2, + .px-sm-2 { + padding-left: 0.5rem !important; } + .p-sm-3 { + padding: 1rem !important; } + .pt-sm-3, + .py-sm-3 { + padding-top: 1rem !important; } + .pr-sm-3, + .px-sm-3 { + padding-right: 1rem !important; } + .pb-sm-3, + .py-sm-3 { + padding-bottom: 1rem !important; } + .pl-sm-3, + .px-sm-3 { + padding-left: 1rem !important; } + .p-sm-4 { + padding: 1.5rem !important; } + .pt-sm-4, + .py-sm-4 { + padding-top: 1.5rem !important; } + .pr-sm-4, + .px-sm-4 { + padding-right: 1.5rem !important; } + .pb-sm-4, + .py-sm-4 { + padding-bottom: 1.5rem !important; } + .pl-sm-4, + .px-sm-4 { + padding-left: 1.5rem !important; } + .p-sm-5 { + padding: 3rem !important; } + .pt-sm-5, + .py-sm-5 { + padding-top: 3rem !important; } + .pr-sm-5, + .px-sm-5 { + padding-right: 3rem !important; } + .pb-sm-5, + .py-sm-5 { + padding-bottom: 3rem !important; } + .pl-sm-5, + .px-sm-5 { + padding-left: 3rem !important; } + .m-sm-n1 { + margin: -0.25rem !important; } + .mt-sm-n1, + .my-sm-n1 { + margin-top: -0.25rem !important; } + .mr-sm-n1, + .mx-sm-n1 { + margin-right: -0.25rem !important; } + .mb-sm-n1, + .my-sm-n1 { + margin-bottom: -0.25rem !important; } + .ml-sm-n1, + .mx-sm-n1 { + margin-left: -0.25rem !important; } + .m-sm-n2 { + margin: -0.5rem !important; } + .mt-sm-n2, + .my-sm-n2 { + margin-top: -0.5rem !important; } + .mr-sm-n2, + .mx-sm-n2 { + margin-right: -0.5rem !important; } + .mb-sm-n2, + .my-sm-n2 { + margin-bottom: -0.5rem !important; } + .ml-sm-n2, + .mx-sm-n2 { + margin-left: -0.5rem !important; } + .m-sm-n3 { + margin: -1rem !important; } + .mt-sm-n3, + .my-sm-n3 { + margin-top: -1rem !important; } + .mr-sm-n3, + .mx-sm-n3 { + margin-right: -1rem !important; } + .mb-sm-n3, + .my-sm-n3 { + margin-bottom: -1rem !important; } + .ml-sm-n3, + .mx-sm-n3 { + margin-left: -1rem !important; } + .m-sm-n4 { + margin: -1.5rem !important; } + .mt-sm-n4, + .my-sm-n4 { + margin-top: -1.5rem !important; } + .mr-sm-n4, + .mx-sm-n4 { + margin-right: -1.5rem !important; } + .mb-sm-n4, + .my-sm-n4 { + margin-bottom: -1.5rem !important; } + .ml-sm-n4, + .mx-sm-n4 { + margin-left: -1.5rem !important; } + .m-sm-n5 { + margin: -3rem !important; } + .mt-sm-n5, + .my-sm-n5 { + margin-top: -3rem !important; } + .mr-sm-n5, + .mx-sm-n5 { + margin-right: -3rem !important; } + .mb-sm-n5, + .my-sm-n5 { + margin-bottom: -3rem !important; } + .ml-sm-n5, + .mx-sm-n5 { + margin-left: -3rem !important; } + .m-sm-auto { + margin: auto !important; } + .mt-sm-auto, + .my-sm-auto { + margin-top: auto !important; } + .mr-sm-auto, + .mx-sm-auto { + margin-right: auto !important; } + .mb-sm-auto, + .my-sm-auto { + margin-bottom: auto !important; } + .ml-sm-auto, + .mx-sm-auto { + margin-left: auto !important; } } + +@media (min-width: 768px) { + .m-md-0 { + margin: 0 !important; } + .mt-md-0, + .my-md-0 { + margin-top: 0 !important; } + .mr-md-0, + .mx-md-0 { + margin-right: 0 !important; } + .mb-md-0, + .my-md-0 { + margin-bottom: 0 !important; } + .ml-md-0, + .mx-md-0 { + margin-left: 0 !important; } + .m-md-1 { + margin: 0.25rem !important; } + .mt-md-1, + .my-md-1 { + margin-top: 0.25rem !important; } + .mr-md-1, + .mx-md-1 { + margin-right: 0.25rem !important; } + .mb-md-1, + .my-md-1 { + margin-bottom: 0.25rem !important; } + .ml-md-1, + .mx-md-1 { + margin-left: 0.25rem !important; } + .m-md-2 { + margin: 0.5rem !important; } + .mt-md-2, + .my-md-2 { + margin-top: 0.5rem !important; } + .mr-md-2, + .mx-md-2 { + margin-right: 0.5rem !important; } + .mb-md-2, + .my-md-2 { + margin-bottom: 0.5rem !important; } + .ml-md-2, + .mx-md-2 { + margin-left: 0.5rem !important; } + .m-md-3 { + margin: 1rem !important; } + .mt-md-3, + .my-md-3 { + margin-top: 1rem !important; } + .mr-md-3, + .mx-md-3 { + margin-right: 1rem !important; } + .mb-md-3, + .my-md-3 { + margin-bottom: 1rem !important; } + .ml-md-3, + .mx-md-3 { + margin-left: 1rem !important; } + .m-md-4 { + margin: 1.5rem !important; } + .mt-md-4, + .my-md-4 { + margin-top: 1.5rem !important; } + .mr-md-4, + .mx-md-4 { + margin-right: 1.5rem !important; } + .mb-md-4, + .my-md-4 { + margin-bottom: 1.5rem !important; } + .ml-md-4, + .mx-md-4 { + margin-left: 1.5rem !important; } + .m-md-5 { + margin: 3rem !important; } + .mt-md-5, + .my-md-5 { + margin-top: 3rem !important; } + .mr-md-5, + .mx-md-5 { + margin-right: 3rem !important; } + .mb-md-5, + .my-md-5 { + margin-bottom: 3rem !important; } + .ml-md-5, + .mx-md-5 { + margin-left: 3rem !important; } + .p-md-0 { + padding: 0 !important; } + .pt-md-0, + .py-md-0 { + padding-top: 0 !important; } + .pr-md-0, + .px-md-0 { + padding-right: 0 !important; } + .pb-md-0, + .py-md-0 { + padding-bottom: 0 !important; } + .pl-md-0, + .px-md-0 { + padding-left: 0 !important; } + .p-md-1 { + padding: 0.25rem !important; } + .pt-md-1, + .py-md-1 { + padding-top: 0.25rem !important; } + .pr-md-1, + .px-md-1 { + padding-right: 0.25rem !important; } + .pb-md-1, + .py-md-1 { + padding-bottom: 0.25rem !important; } + .pl-md-1, + .px-md-1 { + padding-left: 0.25rem !important; } + .p-md-2 { + padding: 0.5rem !important; } + .pt-md-2, + .py-md-2 { + padding-top: 0.5rem !important; } + .pr-md-2, + .px-md-2 { + padding-right: 0.5rem !important; } + .pb-md-2, + .py-md-2 { + padding-bottom: 0.5rem !important; } + .pl-md-2, + .px-md-2 { + padding-left: 0.5rem !important; } + .p-md-3 { + padding: 1rem !important; } + .pt-md-3, + .py-md-3 { + padding-top: 1rem !important; } + .pr-md-3, + .px-md-3 { + padding-right: 1rem !important; } + .pb-md-3, + .py-md-3 { + padding-bottom: 1rem !important; } + .pl-md-3, + .px-md-3 { + padding-left: 1rem !important; } + .p-md-4 { + padding: 1.5rem !important; } + .pt-md-4, + .py-md-4 { + padding-top: 1.5rem !important; } + .pr-md-4, + .px-md-4 { + padding-right: 1.5rem !important; } + .pb-md-4, + .py-md-4 { + padding-bottom: 1.5rem !important; } + .pl-md-4, + .px-md-4 { + padding-left: 1.5rem !important; } + .p-md-5 { + padding: 3rem !important; } + .pt-md-5, + .py-md-5 { + padding-top: 3rem !important; } + .pr-md-5, + .px-md-5 { + padding-right: 3rem !important; } + .pb-md-5, + .py-md-5 { + padding-bottom: 3rem !important; } + .pl-md-5, + .px-md-5 { + padding-left: 3rem !important; } + .m-md-n1 { + margin: -0.25rem !important; } + .mt-md-n1, + .my-md-n1 { + margin-top: -0.25rem !important; } + .mr-md-n1, + .mx-md-n1 { + margin-right: -0.25rem !important; } + .mb-md-n1, + .my-md-n1 { + margin-bottom: -0.25rem !important; } + .ml-md-n1, + .mx-md-n1 { + margin-left: -0.25rem !important; } + .m-md-n2 { + margin: -0.5rem !important; } + .mt-md-n2, + .my-md-n2 { + margin-top: -0.5rem !important; } + .mr-md-n2, + .mx-md-n2 { + margin-right: -0.5rem !important; } + .mb-md-n2, + .my-md-n2 { + margin-bottom: -0.5rem !important; } + .ml-md-n2, + .mx-md-n2 { + margin-left: -0.5rem !important; } + .m-md-n3 { + margin: -1rem !important; } + .mt-md-n3, + .my-md-n3 { + margin-top: -1rem !important; } + .mr-md-n3, + .mx-md-n3 { + margin-right: -1rem !important; } + .mb-md-n3, + .my-md-n3 { + margin-bottom: -1rem !important; } + .ml-md-n3, + .mx-md-n3 { + margin-left: -1rem !important; } + .m-md-n4 { + margin: -1.5rem !important; } + .mt-md-n4, + .my-md-n4 { + margin-top: -1.5rem !important; } + .mr-md-n4, + .mx-md-n4 { + margin-right: -1.5rem !important; } + .mb-md-n4, + .my-md-n4 { + margin-bottom: -1.5rem !important; } + .ml-md-n4, + .mx-md-n4 { + margin-left: -1.5rem !important; } + .m-md-n5 { + margin: -3rem !important; } + .mt-md-n5, + .my-md-n5 { + margin-top: -3rem !important; } + .mr-md-n5, + .mx-md-n5 { + margin-right: -3rem !important; } + .mb-md-n5, + .my-md-n5 { + margin-bottom: -3rem !important; } + .ml-md-n5, + .mx-md-n5 { + margin-left: -3rem !important; } + .m-md-auto { + margin: auto !important; } + .mt-md-auto, + .my-md-auto { + margin-top: auto !important; } + .mr-md-auto, + .mx-md-auto { + margin-right: auto !important; } + .mb-md-auto, + .my-md-auto { + margin-bottom: auto !important; } + .ml-md-auto, + .mx-md-auto { + margin-left: auto !important; } } + +@media (min-width: 992px) { + .m-lg-0 { + margin: 0 !important; } + .mt-lg-0, + .my-lg-0 { + margin-top: 0 !important; } + .mr-lg-0, + .mx-lg-0 { + margin-right: 0 !important; } + .mb-lg-0, + .my-lg-0 { + margin-bottom: 0 !important; } + .ml-lg-0, + .mx-lg-0 { + margin-left: 0 !important; } + .m-lg-1 { + margin: 0.25rem !important; } + .mt-lg-1, + .my-lg-1 { + margin-top: 0.25rem !important; } + .mr-lg-1, + .mx-lg-1 { + margin-right: 0.25rem !important; } + .mb-lg-1, + .my-lg-1 { + margin-bottom: 0.25rem !important; } + .ml-lg-1, + .mx-lg-1 { + margin-left: 0.25rem !important; } + .m-lg-2 { + margin: 0.5rem !important; } + .mt-lg-2, + .my-lg-2 { + margin-top: 0.5rem !important; } + .mr-lg-2, + .mx-lg-2 { + margin-right: 0.5rem !important; } + .mb-lg-2, + .my-lg-2 { + margin-bottom: 0.5rem !important; } + .ml-lg-2, + .mx-lg-2 { + margin-left: 0.5rem !important; } + .m-lg-3 { + margin: 1rem !important; } + .mt-lg-3, + .my-lg-3 { + margin-top: 1rem !important; } + .mr-lg-3, + .mx-lg-3 { + margin-right: 1rem !important; } + .mb-lg-3, + .my-lg-3 { + margin-bottom: 1rem !important; } + .ml-lg-3, + .mx-lg-3 { + margin-left: 1rem !important; } + .m-lg-4 { + margin: 1.5rem !important; } + .mt-lg-4, + .my-lg-4 { + margin-top: 1.5rem !important; } + .mr-lg-4, + .mx-lg-4 { + margin-right: 1.5rem !important; } + .mb-lg-4, + .my-lg-4 { + margin-bottom: 1.5rem !important; } + .ml-lg-4, + .mx-lg-4 { + margin-left: 1.5rem !important; } + .m-lg-5 { + margin: 3rem !important; } + .mt-lg-5, + .my-lg-5 { + margin-top: 3rem !important; } + .mr-lg-5, + .mx-lg-5 { + margin-right: 3rem !important; } + .mb-lg-5, + .my-lg-5 { + margin-bottom: 3rem !important; } + .ml-lg-5, + .mx-lg-5 { + margin-left: 3rem !important; } + .p-lg-0 { + padding: 0 !important; } + .pt-lg-0, + .py-lg-0 { + padding-top: 0 !important; } + .pr-lg-0, + .px-lg-0 { + padding-right: 0 !important; } + .pb-lg-0, + .py-lg-0 { + padding-bottom: 0 !important; } + .pl-lg-0, + .px-lg-0 { + padding-left: 0 !important; } + .p-lg-1 { + padding: 0.25rem !important; } + .pt-lg-1, + .py-lg-1 { + padding-top: 0.25rem !important; } + .pr-lg-1, + .px-lg-1 { + padding-right: 0.25rem !important; } + .pb-lg-1, + .py-lg-1 { + padding-bottom: 0.25rem !important; } + .pl-lg-1, + .px-lg-1 { + padding-left: 0.25rem !important; } + .p-lg-2 { + padding: 0.5rem !important; } + .pt-lg-2, + .py-lg-2 { + padding-top: 0.5rem !important; } + .pr-lg-2, + .px-lg-2 { + padding-right: 0.5rem !important; } + .pb-lg-2, + .py-lg-2 { + padding-bottom: 0.5rem !important; } + .pl-lg-2, + .px-lg-2 { + padding-left: 0.5rem !important; } + .p-lg-3 { + padding: 1rem !important; } + .pt-lg-3, + .py-lg-3 { + padding-top: 1rem !important; } + .pr-lg-3, + .px-lg-3 { + padding-right: 1rem !important; } + .pb-lg-3, + .py-lg-3 { + padding-bottom: 1rem !important; } + .pl-lg-3, + .px-lg-3 { + padding-left: 1rem !important; } + .p-lg-4 { + padding: 1.5rem !important; } + .pt-lg-4, + .py-lg-4 { + padding-top: 1.5rem !important; } + .pr-lg-4, + .px-lg-4 { + padding-right: 1.5rem !important; } + .pb-lg-4, + .py-lg-4 { + padding-bottom: 1.5rem !important; } + .pl-lg-4, + .px-lg-4 { + padding-left: 1.5rem !important; } + .p-lg-5 { + padding: 3rem !important; } + .pt-lg-5, + .py-lg-5 { + padding-top: 3rem !important; } + .pr-lg-5, + .px-lg-5 { + padding-right: 3rem !important; } + .pb-lg-5, + .py-lg-5 { + padding-bottom: 3rem !important; } + .pl-lg-5, + .px-lg-5 { + padding-left: 3rem !important; } + .m-lg-n1 { + margin: -0.25rem !important; } + .mt-lg-n1, + .my-lg-n1 { + margin-top: -0.25rem !important; } + .mr-lg-n1, + .mx-lg-n1 { + margin-right: -0.25rem !important; } + .mb-lg-n1, + .my-lg-n1 { + margin-bottom: -0.25rem !important; } + .ml-lg-n1, + .mx-lg-n1 { + margin-left: -0.25rem !important; } + .m-lg-n2 { + margin: -0.5rem !important; } + .mt-lg-n2, + .my-lg-n2 { + margin-top: -0.5rem !important; } + .mr-lg-n2, + .mx-lg-n2 { + margin-right: -0.5rem !important; } + .mb-lg-n2, + .my-lg-n2 { + margin-bottom: -0.5rem !important; } + .ml-lg-n2, + .mx-lg-n2 { + margin-left: -0.5rem !important; } + .m-lg-n3 { + margin: -1rem !important; } + .mt-lg-n3, + .my-lg-n3 { + margin-top: -1rem !important; } + .mr-lg-n3, + .mx-lg-n3 { + margin-right: -1rem !important; } + .mb-lg-n3, + .my-lg-n3 { + margin-bottom: -1rem !important; } + .ml-lg-n3, + .mx-lg-n3 { + margin-left: -1rem !important; } + .m-lg-n4 { + margin: -1.5rem !important; } + .mt-lg-n4, + .my-lg-n4 { + margin-top: -1.5rem !important; } + .mr-lg-n4, + .mx-lg-n4 { + margin-right: -1.5rem !important; } + .mb-lg-n4, + .my-lg-n4 { + margin-bottom: -1.5rem !important; } + .ml-lg-n4, + .mx-lg-n4 { + margin-left: -1.5rem !important; } + .m-lg-n5 { + margin: -3rem !important; } + .mt-lg-n5, + .my-lg-n5 { + margin-top: -3rem !important; } + .mr-lg-n5, + .mx-lg-n5 { + margin-right: -3rem !important; } + .mb-lg-n5, + .my-lg-n5 { + margin-bottom: -3rem !important; } + .ml-lg-n5, + .mx-lg-n5 { + margin-left: -3rem !important; } + .m-lg-auto { + margin: auto !important; } + .mt-lg-auto, + .my-lg-auto { + margin-top: auto !important; } + .mr-lg-auto, + .mx-lg-auto { + margin-right: auto !important; } + .mb-lg-auto, + .my-lg-auto { + margin-bottom: auto !important; } + .ml-lg-auto, + .mx-lg-auto { + margin-left: auto !important; } } + +@media (min-width: 1200px) { + .m-xl-0 { + margin: 0 !important; } + .mt-xl-0, + .my-xl-0 { + margin-top: 0 !important; } + .mr-xl-0, + .mx-xl-0 { + margin-right: 0 !important; } + .mb-xl-0, + .my-xl-0 { + margin-bottom: 0 !important; } + .ml-xl-0, + .mx-xl-0 { + margin-left: 0 !important; } + .m-xl-1 { + margin: 0.25rem !important; } + .mt-xl-1, + .my-xl-1 { + margin-top: 0.25rem !important; } + .mr-xl-1, + .mx-xl-1 { + margin-right: 0.25rem !important; } + .mb-xl-1, + .my-xl-1 { + margin-bottom: 0.25rem !important; } + .ml-xl-1, + .mx-xl-1 { + margin-left: 0.25rem !important; } + .m-xl-2 { + margin: 0.5rem !important; } + .mt-xl-2, + .my-xl-2 { + margin-top: 0.5rem !important; } + .mr-xl-2, + .mx-xl-2 { + margin-right: 0.5rem !important; } + .mb-xl-2, + .my-xl-2 { + margin-bottom: 0.5rem !important; } + .ml-xl-2, + .mx-xl-2 { + margin-left: 0.5rem !important; } + .m-xl-3 { + margin: 1rem !important; } + .mt-xl-3, + .my-xl-3 { + margin-top: 1rem !important; } + .mr-xl-3, + .mx-xl-3 { + margin-right: 1rem !important; } + .mb-xl-3, + .my-xl-3 { + margin-bottom: 1rem !important; } + .ml-xl-3, + .mx-xl-3 { + margin-left: 1rem !important; } + .m-xl-4 { + margin: 1.5rem !important; } + .mt-xl-4, + .my-xl-4 { + margin-top: 1.5rem !important; } + .mr-xl-4, + .mx-xl-4 { + margin-right: 1.5rem !important; } + .mb-xl-4, + .my-xl-4 { + margin-bottom: 1.5rem !important; } + .ml-xl-4, + .mx-xl-4 { + margin-left: 1.5rem !important; } + .m-xl-5 { + margin: 3rem !important; } + .mt-xl-5, + .my-xl-5 { + margin-top: 3rem !important; } + .mr-xl-5, + .mx-xl-5 { + margin-right: 3rem !important; } + .mb-xl-5, + .my-xl-5 { + margin-bottom: 3rem !important; } + .ml-xl-5, + .mx-xl-5 { + margin-left: 3rem !important; } + .p-xl-0 { + padding: 0 !important; } + .pt-xl-0, + .py-xl-0 { + padding-top: 0 !important; } + .pr-xl-0, + .px-xl-0 { + padding-right: 0 !important; } + .pb-xl-0, + .py-xl-0 { + padding-bottom: 0 !important; } + .pl-xl-0, + .px-xl-0 { + padding-left: 0 !important; } + .p-xl-1 { + padding: 0.25rem !important; } + .pt-xl-1, + .py-xl-1 { + padding-top: 0.25rem !important; } + .pr-xl-1, + .px-xl-1 { + padding-right: 0.25rem !important; } + .pb-xl-1, + .py-xl-1 { + padding-bottom: 0.25rem !important; } + .pl-xl-1, + .px-xl-1 { + padding-left: 0.25rem !important; } + .p-xl-2 { + padding: 0.5rem !important; } + .pt-xl-2, + .py-xl-2 { + padding-top: 0.5rem !important; } + .pr-xl-2, + .px-xl-2 { + padding-right: 0.5rem !important; } + .pb-xl-2, + .py-xl-2 { + padding-bottom: 0.5rem !important; } + .pl-xl-2, + .px-xl-2 { + padding-left: 0.5rem !important; } + .p-xl-3 { + padding: 1rem !important; } + .pt-xl-3, + .py-xl-3 { + padding-top: 1rem !important; } + .pr-xl-3, + .px-xl-3 { + padding-right: 1rem !important; } + .pb-xl-3, + .py-xl-3 { + padding-bottom: 1rem !important; } + .pl-xl-3, + .px-xl-3 { + padding-left: 1rem !important; } + .p-xl-4 { + padding: 1.5rem !important; } + .pt-xl-4, + .py-xl-4 { + padding-top: 1.5rem !important; } + .pr-xl-4, + .px-xl-4 { + padding-right: 1.5rem !important; } + .pb-xl-4, + .py-xl-4 { + padding-bottom: 1.5rem !important; } + .pl-xl-4, + .px-xl-4 { + padding-left: 1.5rem !important; } + .p-xl-5 { + padding: 3rem !important; } + .pt-xl-5, + .py-xl-5 { + padding-top: 3rem !important; } + .pr-xl-5, + .px-xl-5 { + padding-right: 3rem !important; } + .pb-xl-5, + .py-xl-5 { + padding-bottom: 3rem !important; } + .pl-xl-5, + .px-xl-5 { + padding-left: 3rem !important; } + .m-xl-n1 { + margin: -0.25rem !important; } + .mt-xl-n1, + .my-xl-n1 { + margin-top: -0.25rem !important; } + .mr-xl-n1, + .mx-xl-n1 { + margin-right: -0.25rem !important; } + .mb-xl-n1, + .my-xl-n1 { + margin-bottom: -0.25rem !important; } + .ml-xl-n1, + .mx-xl-n1 { + margin-left: -0.25rem !important; } + .m-xl-n2 { + margin: -0.5rem !important; } + .mt-xl-n2, + .my-xl-n2 { + margin-top: -0.5rem !important; } + .mr-xl-n2, + .mx-xl-n2 { + margin-right: -0.5rem !important; } + .mb-xl-n2, + .my-xl-n2 { + margin-bottom: -0.5rem !important; } + .ml-xl-n2, + .mx-xl-n2 { + margin-left: -0.5rem !important; } + .m-xl-n3 { + margin: -1rem !important; } + .mt-xl-n3, + .my-xl-n3 { + margin-top: -1rem !important; } + .mr-xl-n3, + .mx-xl-n3 { + margin-right: -1rem !important; } + .mb-xl-n3, + .my-xl-n3 { + margin-bottom: -1rem !important; } + .ml-xl-n3, + .mx-xl-n3 { + margin-left: -1rem !important; } + .m-xl-n4 { + margin: -1.5rem !important; } + .mt-xl-n4, + .my-xl-n4 { + margin-top: -1.5rem !important; } + .mr-xl-n4, + .mx-xl-n4 { + margin-right: -1.5rem !important; } + .mb-xl-n4, + .my-xl-n4 { + margin-bottom: -1.5rem !important; } + .ml-xl-n4, + .mx-xl-n4 { + margin-left: -1.5rem !important; } + .m-xl-n5 { + margin: -3rem !important; } + .mt-xl-n5, + .my-xl-n5 { + margin-top: -3rem !important; } + .mr-xl-n5, + .mx-xl-n5 { + margin-right: -3rem !important; } + .mb-xl-n5, + .my-xl-n5 { + margin-bottom: -3rem !important; } + .ml-xl-n5, + .mx-xl-n5 { + margin-left: -3rem !important; } + .m-xl-auto { + margin: auto !important; } + .mt-xl-auto, + .my-xl-auto { + margin-top: auto !important; } + .mr-xl-auto, + .mx-xl-auto { + margin-right: auto !important; } + .mb-xl-auto, + .my-xl-auto { + margin-bottom: auto !important; } + .ml-xl-auto, + .mx-xl-auto { + margin-left: auto !important; } } + +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + pointer-events: auto; + content: ""; + background-color: rgba(0, 0, 0, 0); } + +.text-monospace { + font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; } + +.text-justify { + text-align: justify !important; } + +.text-wrap { + white-space: normal !important; } + +.text-nowrap { + white-space: nowrap !important; } + +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + +.text-left { + text-align: left !important; } + +.text-right { + text-align: right !important; } + +.text-center { + text-align: center !important; } + +@media (min-width: 576px) { + .text-sm-left { + text-align: left !important; } + .text-sm-right { + text-align: right !important; } + .text-sm-center { + text-align: center !important; } } + +@media (min-width: 768px) { + .text-md-left { + text-align: left !important; } + .text-md-right { + text-align: right !important; } + .text-md-center { + text-align: center !important; } } + +@media (min-width: 992px) { + .text-lg-left { + text-align: left !important; } + .text-lg-right { + text-align: right !important; } + .text-lg-center { + text-align: center !important; } } + +@media (min-width: 1200px) { + .text-xl-left { + text-align: left !important; } + .text-xl-right { + text-align: right !important; } + .text-xl-center { + text-align: center !important; } } + +.text-lowercase { + text-transform: lowercase !important; } + +.text-uppercase { + text-transform: uppercase !important; } + +.text-capitalize { + text-transform: capitalize !important; } + +.font-weight-light { + font-weight: 300 !important; } + +.font-weight-lighter { + font-weight: lighter !important; } + +.font-weight-normal { + font-weight: 400 !important; } + +.font-weight-bold { + font-weight: 700 !important; } + +.font-weight-bolder { + font-weight: bolder !important; } + +.font-italic { + font-style: italic !important; } + +.text-white { + color: #ffffff !important; } + +.text-primary { + color: #1bdbe0 !important; } + +a.text-primary:hover, a.text-primary:focus { + color: #13989c !important; } + +.text-secondary { + color: #d8d8d8 !important; } + +a.text-secondary:hover, a.text-secondary:focus { + color: #b2b2b2 !important; } + +.text-success { + color: #38ce3c !important; } + +a.text-success:hover, a.text-success:focus { + color: #259528 !important; } + +.text-info { + color: #8e32e9 !important; } + +a.text-info:hover, a.text-info:focus { + color: #6814ba !important; } + +.text-warning { + color: #ffde73 !important; } + +a.text-warning:hover, a.text-warning:focus { + color: #ffcc27 !important; } + +.text-danger { + color: #ff4d6b !important; } + +a.text-danger:hover, a.text-danger:focus { + color: #ff012b !important; } + +.text-light { + color: #f8f9fa !important; } + +a.text-light:hover, a.text-light:focus { + color: #cbd3da !important; } + +.text-dark { + color: #3e4b5b !important; } + +a.text-dark:hover, a.text-dark:focus { + color: #1f262e !important; } + +.text-body { + color: #343a40 !important; } + +.text-muted, .preview-list .preview-item .preview-item-content p .content-category { + color: #9c9fa6 !important; } + +.text-black-50 { + color: rgba(0, 0, 0, 0.5) !important; } + +.text-white-50 { + color: rgba(255, 255, 255, 0.5) !important; } + +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; } + +.text-decoration-none { + text-decoration: none !important; } + +.text-break { + word-break: break-word !important; + word-wrap: break-word !important; } + +.text-reset { + color: inherit !important; } + +.visible { + visibility: visible !important; } + +.invisible { + visibility: hidden !important; } + +@media print { + *, + *::before, + *::after { + text-shadow: none !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; } + a:not(.btn) { + text-decoration: underline; } + abbr[title]::after { + content: " (" attr(title) ")"; } + pre { + white-space: pre-wrap !important; } + pre, + blockquote { + border: 1px solid #adb5bd; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } + @page { + size: a3; } + body { + min-width: 992px !important; } + .container { + min-width: 992px !important; } + .navbar { + display: none; } + .badge { + border: 1px solid #000; } + .table { + border-collapse: collapse !important; } + .table td, + .table th { + background-color: #ffffff !important; } + .table-bordered th, + .table-bordered td { + border: 1px solid #dee2e6 !important; } + .table-dark { + color: inherit; } + .table-dark th, + .table-dark td, + .table-dark thead th, + .table-dark tbody + tbody { + border-color: #e8ecf1; } + .table .thead-dark th { + color: inherit; + border-color: #e8ecf1; } } + +/*-------------------------------------------------------------------*/ +/* === Template mixins === */ +/* Miscellaneous Mixins */ +/* Animation Mixins */ +@-webkit-keyframes dropdownAnimation { + from { + opacity: 0; + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; + -webkit-transform: translate3d(0, 0px, 0); + transform: translate3d(0, 0px, 0); } } +@keyframes dropdownAnimation { + from { + opacity: 0; + -webkit-transform: translate3d(0, -30px, 0); + transform: translate3d(0, -30px, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; + -webkit-transform: translate3d(0, 0px, 0); + transform: translate3d(0, 0px, 0); } } + +.dropdownAnimation, .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu { + -webkit-animation-name: dropdownAnimation; + animation-name: dropdownAnimation; + -webkit-animation-duration: 0.25s; + animation-duration: 0.25s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; } + +@keyframes fadeOut { + from { + opacity: 1; } + to { + opacity: 0; } } + +.fadeOut { + -webkit-animation-name: fadeOut; + animation-name: fadeOut; } + +.infinite-spin { + -webkit-animation-name: spin; + animation-name: spin; + -webkit-animation-duration: 3s; + animation-duration: 3s; + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite; + -webkit-animation-timing-function: linear; + animation-timing-function: linear; } + +@-webkit-keyframes spin { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes spin { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); } } + +@keyframes fadeInUp { + from { + opacity: 0; + -webkit-transform: translate3d(0, 100%, 0); + transform: translate3d(0, 100%, 0); } + to { + opacity: 1; + -webkit-transform: none; + transform: none; } } + +.fadeInUp { + -webkit-animation-name: fadeInUp; + animation-name: fadeInUp; } + +/*-------------------------------------------------------------------*/ +/* === Core Styles === */ +/* Reset Styles */ +body { + padding: 0; + margin: 0; + overflow-x: hidden; } + +.form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead, +.tt-query, +.tt-hint, .form-control:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .typeahead:focus, +.tt-query:focus, +.tt-hint:focus { + -webkit-box-shadow: none; + -moz-box-shadow: none; } + +.form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead, +.tt-query, +.tt-hint { + -webkit-box-shadow: none; + box-shadow: none; } + +.form-control:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .typeahead:focus, +.tt-query:focus, +.tt-hint:focus { + outline: 0; + -webkit-box-shadow: none; + box-shadow: none; } + +a, +div, +h1, +h2, +h3, +h4, +h5, +p, +span { + text-shadow: none; } + +[type=button]:focus, +a:active, +a:focus, +a:visited, +button::-moz-focus-inner, +input[type=reset]::-moz-focus-inner, +input[type=button]::-moz-focus-inner, +input[type=submit]::-moz-focus-inner, +input[type=file] > input[type=button]::-moz-focus-inner, +select::-moz-focus-inner { + outline: 0; } + +input, .form-control:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .typeahead:focus, +.tt-query:focus, +.tt-hint:focus, +input:focus, +select:focus, +textarea:focus, +button:focus { + outline: none; + outline-width: 0; + outline-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; + outline-style: none; } + +textarea { + resize: none; + overflow-x: hidden; } + +.btn, +.btn-group.open .dropdown-toggle, +.btn:active, +.btn:focus, +.btn:hover, +.btn:visited, +a, +a:active, +a:checked, +a:focus, +a:hover, +a:visited, +body, +button, +button:active, +button:hover, +button:visited, +div, +input, +input:active, +input:focus, +input:hover, +input:visited, +select, +select:active, +select:focus, +select:visited, +textarea, +textarea:active, +textarea:focus, +textarea:hover, +textarea:visited { + -webkit-box-shadow: none; + box-shadow: none; } + +.btn.active.focus, +.btn.active:focus, +.btn.focus, +.btn:active.focus, +.btn:active:focus, +.btn:focus, +button, +button:active, +button:checked, +button:focus, +button:hover, +button:visited { + outline: 0; + outline-offset: 0; } + +.bootstrap-select .dropdown-toggle:focus { + outline: 0; + outline-offset: 0; } + +.dropdown-menu > li > a:active, +.dropdown-menu > li > a:focus, +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:visited { + outline: 0; } + +a:focus, +input:focus { + border-color: transparent; + outline: none; } + +/* Typography */ +body { + font-size: 1rem; + font-family: "Open Sans", sans-serif; + font-weight: initial; + line-height: normal; + -webkit-font-smoothing: antialiased; } + +h1, h2, h3, h4, h5, h6, +.h1, .h2, .h3, .h4, .h5, .h6 { + font-family: "Open Sans", sans-serif; + font-weight: 600; } + +p { + font-size: 0.875rem; } + +h1, .h1 { + font-size: 2.19rem; } + +h2, .h2 { + font-size: 1.88rem; } + +h3, .h3 { + font-size: 1.56rem; } + +h4, .h4 { + font-size: 1.13rem; } + +h5, .h5 { + font-size: 1rem; } + +h6, .h6 { + font-size: .9375rem; } + +p { + font-size: .9375rem; + line-height: 1.5; } + +.display-1 { + font-size: 3.75rem; } + @media (max-width: 991px) { + .display-1 { + font-size: 3rem; } } + +.display-2 { + font-size: 3.125rem; } + @media (max-width: 991px) { + .display-2 { + font-size: 2.5rem; } } + +.display-3 { + font-size: 2.5rem; } + @media (max-width: 991px) { + .display-3 { + font-size: 2rem; } } + +.display-4 { + font-size: 1.875rem; } + @media (max-width: 991px) { + .display-4 { + font-size: 1.5rem; } } + +.display-5 { + font-size: 1.25rem; } + @media (max-width: 991px) { + .display-5 { + font-size: 1rem; } } + +.blockquote { + padding: 1.25rem; + border: 1px solid #e8ecf1; } + +address p { + margin-bottom: 0; } + +.blockquote-primary { + border-color: #1bdbe0; } + .blockquote-primary .blockquote-footer { + color: #1bdbe0; } + +.blockquote-secondary { + border-color: #d8d8d8; } + .blockquote-secondary .blockquote-footer { + color: #d8d8d8; } + +.blockquote-success { + border-color: #38ce3c; } + .blockquote-success .blockquote-footer { + color: #38ce3c; } + +.blockquote-info { + border-color: #8e32e9; } + .blockquote-info .blockquote-footer { + color: #8e32e9; } + +.blockquote-warning { + border-color: #ffde73; } + .blockquote-warning .blockquote-footer { + color: #ffde73; } + +.blockquote-danger { + border-color: #ff4d6b; } + .blockquote-danger .blockquote-footer { + color: #ff4d6b; } + +.blockquote-light { + border-color: #f8f9fa; } + .blockquote-light .blockquote-footer { + color: #f8f9fa; } + +.blockquote-dark { + border-color: #3e4b5b; } + .blockquote-dark .blockquote-footer { + color: #3e4b5b; } + +.error-page h1 { + font-size: 12rem; } + @media (max-width: 991px) { + .error-page h1 { + font-size: 8rem; } } + +.icon-lg { + font-size: 3.438rem; } + +.icon-md { + font-size: 1.875rem; } + +.icon-sm { + font-size: 1rem; } + +/* Miscellanoeous */ +body, +html { + overflow-x: hidden; + padding-right: 0 !important; } + +*:-moz-full-screen, +*:-webkit-full-screen, +*:fullscreen *:-ms-fullscreen { + overflow: auto; } + +.container-scroller { + overflow: hidden; } + +pre { + background: #e8eff4; + padding: 15px; + font-size: 14px; } + +code { + padding: 5px; + color: #ff4d6b; + font-family: "Open Sans", sans-serif; + font-weight: 300; + font-size: 0.875rem; + border-radius: 4px; } + +.page-header { + margin: 0 0 1.5rem 0; } + .page-header .breadcrumb { + border: 0; + margin-bottom: 0; } + +.page-title { + color: #343a40; + font-size: 1.125rem; + margin-bottom: 0; } + .page-title .page-title-icon { + display: inline-block; + width: 36px; + height: 36px; + border-radius: 4px; + text-align: center; + -webkit-box-shadow: 0px 3px 8.3px 0.7px rgba(163, 93, 255, 0.35); + box-shadow: 0px 3px 8.3px 0.7px rgba(163, 93, 255, 0.35); } + .page-title .page-title-icon i { + font-size: .9375rem; + line-height: 36px; } + +/* Footer */ +.footer { + background: #ecf0f4; + padding: 0 1.5rem 1.5rem; + transition: all 0.25s ease; + -moz-transition: all 0.25s ease; + -webkit-transition: all 0.25s ease; + -ms-transition: all 0.25s ease; + font-size: calc(0.875rem - 0.05rem); + font-family: "Open Sans", sans-serif; } + .footer a { + color: #38ce3c; + font-size: inherit; } + @media (max-width: 991px) { + .footer { + margin-left: 0; + width: 100%; } } + +/* Utilities */ +.grid-margin { + margin-bottom: 25px; } + +@media (min-width: 576px) { + .grid-margin-sm-0 { + margin-bottom: 0; } } + +@media (min-width: 768px) { + .grid-margin-md-0 { + margin-bottom: 0; } } + +@media (min-width: 992px) { + .grid-margin-lg-0 { + margin-bottom: 0; } } + +@media (min-width: 1200px) { + .grid-margin-xl-0 { + margin-bottom: 0; } } + +.img-lg { + width: 92px; + height: 92px; } + +.img-sm { + width: 43px; + height: 43px; } + +.img-xs { + width: 37px; + height: 37px; } + +.img-ss { + width: 26px; + height: 26px; } + +.stretch-card { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: stretch; + -ms-flex-align: stretch; + align-items: stretch; + -webkit-box-pack: stretch; + -ms-flex-pack: stretch; + justify-content: stretch; } + .stretch-card > .card { + width: 100%; + min-width: 100%; } + +@media (min-width: 576px) { + .border-right-sm { + border-right: 1px solid #e8ecf1; } } + +@media (min-width: 768px) { + .border-right-md { + border-right: 1px solid #e8ecf1; } } + +@media (min-width: 992px) { + .border-right-lg { + border-right: 1px solid #e8ecf1; } } + +@media (min-width: 576px) { + .border-left-sm { + border-left: 1px solid #e8ecf1; } } + +@media (min-width: 768px) { + .border-left-md { + border-left: 1px solid #e8ecf1; } } + +@media (min-width: 992px) { + .border-left-lg { + border-left: 1px solid #e8ecf1; } } + +.text-gray, .card .card-subtitle { + color: #8c8c8c; } + +.text-black { + color: #000; } + +.text-small { + font-size: 12px; } + +.flex-grow { + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; } + +.font-weight-light { + font-family: "Open Sans", sans-serif; + font-weight: 300; } + +.font-weight-medium { + font-family: "Open Sans", sans-serif; + font-weight: 600; } + +.font-weight-semibold { + font-family: "Open Sans", sans-serif; + font-weight: 700; } + +.font-weight-bold { + font-family: "Open Sans", sans-serif; + font-weight: bold; } + +.font-weight-normal { + font-family: "Open Sans", sans-serif; + font-weight: 400; } + +/* Demo Styles */ +.template-demo .slider-wrap { + height: 100px; } + +.template-demo .progress { + margin-top: 1.5rem; } + +.template-demo > h2, +.template-demo > h3, +.template-demo > h4, +.template-demo > h5, +.template-demo > h6, +.template-demo > h1 { + border-top: 1px solid #e8ecf1; + padding: 0.5rem 0 0; } + +.template-demo .ul-slider.noUi-horizontal { + margin-top: 2rem; } + +.template-demo .ul-slider.noUi-vertical { + margin-right: 2rem; } + +.template-demo > .dropdown { + display: inline-block; + margin-bottom: 0.5rem; } + +.template-demo nav .breadcrumb { + margin-bottom: 1.375rem; } + +.template-demo nav:last-child .breadcrumb { + margin-bottom: 0; } + +.template-demo .editable-form > .form-group { + border-bottom: 1px solid #e8ecf1; + padding-bottom: 0.8rem; + margin-bottom: 0.8rem; } + +.template-demo .circle-progress { + padding: 15px; } + +.demo-modal { + position: static; + display: block; } + .demo-modal .modal-dialog.modal-lg { + max-width: 100%; } + +.loader-demo-box { + width: 100%; + height: 200px; } + +.dropdown-menu-static-demo { + height: 250px; + margin-bottom: 20px; } + +.rounded-legend ul li { + list-style-type: none; + color: #9c9fa6; + font-size: .75rem; } + .rounded-legend ul li .legend-dots { + width: 1rem; + height: 1rem; + border-radius: 100%; + display: inline-block; + vertical-align: text-bottom; + margin-right: .5rem; } + .rtl .rounded-legend ul li .legend-dots { + margin-left: .5rem; } + +.rounded-legend.legend-horizontal { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .rounded-legend.legend-horizontal ul li { + display: inline-block; + margin-right: 1.5rem; } + .rtl .rounded-legend.legend-horizontal ul li { + margin-right: auto; + margin-left: 1.5rem; } + +.rounded-legend.legend-top-right ul { + float: right; } + .rtl .rounded-legend.legend-top-right ul { + float: left; } + +.rounded-legend.legend-vertical ul li { + margin-top: 1rem; } + +/*-------------------------------------------------------------------*/ +/* === Components === */ +/* Buttons */ +.btn { + font-size: 0.875rem; + line-height: 1; + font-family: "Open Sans", sans-serif; + font-weight: 600; + /* Buttons with only icons */ + /* Buttons with icon and text */ } + .btn i { + font-size: 1rem; } + .btn.btn-rounded { + border-radius: 50px; } + .btn.btn-fw { + min-width: 150px; } + .btn.btn-sm, .btn-group-sm > .btn { + font-size: 0.875rem; } + .btn.btn-lg, .btn-group-lg > .btn { + font-size: 0.875rem; } + .btn.btn-xs { + padding: 0.5rem 0.75rem; + font-size: 0.625rem; } + .btn.btn-icon { + width: 42px; + height: 42px; + padding: 0; } + .btn.btn-icon-text .btn-icon-prepend { + margin-right: .5rem; } + .btn.btn-icon-text .btn-icon-append { + margin-left: .5rem; } + .btn.btn-social-icon { + width: 50px; + height: 50px; + padding: 0; } + .btn.btn-no-hover-bg:hover, .btn.btn-no-hover-bg:focus, .btn.btn-no-hover-bg:active { + background: transparent; + color: currentColor; } + +.btn-group .btn + .btn { + border-left: 0; } + +/*social buttons*/ +.btn-twitter { + background: #2caae1; + color: #ffffff; } + .btn-twitter:hover, .btn-twitter:focus { + background: #1b8dbf; + color: #ffffff; } + .btn-twitter.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: #59bce7; } + .btn-twitter.btn-social-icon-text i { + background: #2caae1; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; } + +.btn-outline-twitter { + border: 1px solid #2caae1; + color: #2caae1; } + .btn-outline-twitter:hover { + background: #2caae1; + color: #ffffff; } + +.btn-facebook { + background: #3b579d; + color: #ffffff; } + .btn-facebook:hover, .btn-facebook:focus { + background: #2d4278; + color: #ffffff; } + .btn-facebook.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: #4e6ebd; } + .btn-facebook.btn-social-icon-text i { + background: #3b579d; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; } + +.btn-outline-facebook { + border: 1px solid #3b579d; + color: #3b579d; } + .btn-outline-facebook:hover { + background: #3b579d; + color: #ffffff; } + +.btn-google { + background: #dc4a38; + color: #ffffff; } + .btn-google:hover, .btn-google:focus { + background: #bf3322; + color: #ffffff; } + .btn-google.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: #e47163; } + .btn-google.btn-social-icon-text i { + background: #dc4a38; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; } + +.btn-outline-google { + border: 1px solid #dc4a38; + color: #dc4a38; } + .btn-outline-google:hover { + background: #dc4a38; + color: #ffffff; } + +.btn-linkedin { + background: #0177b5; + color: #ffffff; } + .btn-linkedin:hover, .btn-linkedin:focus { + background: #015682; + color: #ffffff; } + .btn-linkedin.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: #0198e8; } + .btn-linkedin.btn-social-icon-text i { + background: #0177b5; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; } + +.btn-outline-linkedin { + border: 1px solid #0177b5; + color: #0177b5; } + .btn-outline-linkedin:hover { + background: #0177b5; + color: #ffffff; } + +.btn-pinterest { + background: #cc2127; + color: #ffffff; } + .btn-pinterest:hover, .btn-pinterest:focus { + background: #a01a1f; + color: #ffffff; } + .btn-pinterest.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: #e04046; } + .btn-pinterest.btn-social-icon-text i { + background: #cc2127; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; } + +.btn-outline-pinterest { + border: 1px solid #cc2127; + color: #cc2127; } + .btn-outline-pinterest:hover { + background: #cc2127; + color: #ffffff; } + +.btn-youtube { + background: #e52d27; + color: #ffffff; } + .btn-youtube:hover, .btn-youtube:focus { + background: #c21d17; + color: #ffffff; } + .btn-youtube.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: #ea5955; } + .btn-youtube.btn-social-icon-text i { + background: #e52d27; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; } + +.btn-outline-youtube { + border: 1px solid #e52d27; + color: #e52d27; } + .btn-outline-youtube:hover { + background: #e52d27; + color: #ffffff; } + +.btn-github { + background: #333333; + color: #ffffff; } + .btn-github:hover, .btn-github:focus { + background: #1a1a1a; + color: #ffffff; } + .btn-github.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: #4d4d4d; } + .btn-github.btn-social-icon-text i { + background: #333333; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; } + +.btn-outline-github { + border: 1px solid #333333; + color: #333333; } + .btn-outline-github:hover { + background: #333333; + color: #ffffff; } + +.btn-behance { + background: #1769ff; + color: #ffffff; } + .btn-behance:hover, .btn-behance:focus { + background: #0050e3; + color: #ffffff; } + .btn-behance.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: #4a8aff; } + .btn-behance.btn-social-icon-text i { + background: #1769ff; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; } + +.btn-outline-behance { + border: 1px solid #1769ff; + color: #1769ff; } + .btn-outline-behance:hover { + background: #1769ff; + color: #ffffff; } + +.btn-dribbble { + background: #ea4c89; + color: #ffffff; } + .btn-dribbble:hover, .btn-dribbble:focus { + background: #e51e6b; + color: #ffffff; } + .btn-dribbble.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: #ef7aa7; } + .btn-dribbble.btn-social-icon-text i { + background: #ea4c89; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; } + +.btn-outline-dribbble { + border: 1px solid #ea4c89; + color: #ea4c89; } + .btn-outline-dribbble:hover { + background: #ea4c89; + color: #ffffff; } + +.btn-reddit { + background: #ff4500; + color: #ffffff; } + .btn-reddit:hover, .btn-reddit:focus { + background: #cc3700; + color: #ffffff; } + .btn-reddit.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: #ff6a33; } + .btn-reddit.btn-social-icon-text i { + background: #ff4500; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; } + +.btn-outline-reddit { + border: 1px solid #ff4500; + color: #ff4500; } + .btn-outline-reddit:hover { + background: #ff4500; + color: #ffffff; } + +/* inverse buttons */ +.btn-inverse-primary { + background-color: rgba(27, 219, 224, 0.2); + background-image: none; + border-color: rgba(27, 219, 224, 0); } + .btn-inverse-primary:not(.btn-inverse-light) { + color: #1bdbe0; } + .btn-inverse-primary:hover { + color: #ffffff; + background-color: #1bdbe0; + border-color: #1bdbe0; } + .btn-inverse-primary.focus, .btn-inverse-primary:focus { + -webkit-box-shadow: 0 0 0 3px rgba(27, 219, 224, 0.5); + box-shadow: 0 0 0 3px rgba(27, 219, 224, 0.5); } + .btn-inverse-primary.disabled, .btn-inverse-primary:disabled { + color: #1bdbe0; + background-color: transparent; } + .btn-inverse-primary.active, .btn-inverse-primary:active, + .show > .btn-inverse-primary.dropdown-toggle { + color: #ffffff; + background-color: #1bdbe0; + border-color: #1bdbe0; } + +.btn-primary:not(.btn-light) { + color: #ffffff; } + .btn-primary:not(.btn-light):hover, .btn-primary:not(.btn-light):focus, .btn-primary:not(.btn-light):active { + color: #ffffff; } + .btn-primary:not(.btn-light):focus, .btn-primary:not(.btn-light):active { + background: #1bdbe0; + border-color: #1bdbe0; } + +.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active { + background: #1bdbe0; + color: #ffffff; } + +.btn-inverse-secondary { + background-color: rgba(216, 216, 216, 0.2); + background-image: none; + border-color: rgba(216, 216, 216, 0); } + .btn-inverse-secondary:not(.btn-inverse-light) { + color: #d8d8d8; } + .btn-inverse-secondary:hover { + color: #ffffff; + background-color: #d8d8d8; + border-color: #d8d8d8; } + .btn-inverse-secondary.focus, .btn-inverse-secondary:focus { + -webkit-box-shadow: 0 0 0 3px rgba(216, 216, 216, 0.5); + box-shadow: 0 0 0 3px rgba(216, 216, 216, 0.5); } + .btn-inverse-secondary.disabled, .btn-inverse-secondary:disabled { + color: #d8d8d8; + background-color: transparent; } + .btn-inverse-secondary.active, .btn-inverse-secondary:active, + .show > .btn-inverse-secondary.dropdown-toggle { + color: #ffffff; + background-color: #d8d8d8; + border-color: #d8d8d8; } + +.btn-secondary:not(.btn-light) { + color: #ffffff; } + .btn-secondary:not(.btn-light):hover, .btn-secondary:not(.btn-light):focus, .btn-secondary:not(.btn-light):active { + color: #ffffff; } + .btn-secondary:not(.btn-light):focus, .btn-secondary:not(.btn-light):active { + background: #d8d8d8; + border-color: #d8d8d8; } + +.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active { + background: #d8d8d8; + color: #ffffff; } + +.btn-inverse-success { + background-color: rgba(56, 206, 60, 0.2); + background-image: none; + border-color: rgba(56, 206, 60, 0); } + .btn-inverse-success:not(.btn-inverse-light) { + color: #38ce3c; } + .btn-inverse-success:hover { + color: #ffffff; + background-color: #38ce3c; + border-color: #38ce3c; } + .btn-inverse-success.focus, .btn-inverse-success:focus { + -webkit-box-shadow: 0 0 0 3px rgba(56, 206, 60, 0.5); + box-shadow: 0 0 0 3px rgba(56, 206, 60, 0.5); } + .btn-inverse-success.disabled, .btn-inverse-success:disabled { + color: #38ce3c; + background-color: transparent; } + .btn-inverse-success.active, .btn-inverse-success:active, + .show > .btn-inverse-success.dropdown-toggle { + color: #ffffff; + background-color: #38ce3c; + border-color: #38ce3c; } + +.btn-success:not(.btn-light) { + color: #ffffff; } + .btn-success:not(.btn-light):hover, .btn-success:not(.btn-light):focus, .btn-success:not(.btn-light):active { + color: #ffffff; } + .btn-success:not(.btn-light):focus, .btn-success:not(.btn-light):active { + background: #38ce3c; + border-color: #38ce3c; } + +.btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success:active { + background: #38ce3c; + color: #ffffff; } + +.btn-inverse-info { + background-color: rgba(142, 50, 233, 0.2); + background-image: none; + border-color: rgba(142, 50, 233, 0); } + .btn-inverse-info:not(.btn-inverse-light) { + color: #8e32e9; } + .btn-inverse-info:hover { + color: #ffffff; + background-color: #8e32e9; + border-color: #8e32e9; } + .btn-inverse-info.focus, .btn-inverse-info:focus { + -webkit-box-shadow: 0 0 0 3px rgba(142, 50, 233, 0.5); + box-shadow: 0 0 0 3px rgba(142, 50, 233, 0.5); } + .btn-inverse-info.disabled, .btn-inverse-info:disabled { + color: #8e32e9; + background-color: transparent; } + .btn-inverse-info.active, .btn-inverse-info:active, + .show > .btn-inverse-info.dropdown-toggle { + color: #ffffff; + background-color: #8e32e9; + border-color: #8e32e9; } + +.btn-info:not(.btn-light) { + color: #ffffff; } + .btn-info:not(.btn-light):hover, .btn-info:not(.btn-light):focus, .btn-info:not(.btn-light):active { + color: #ffffff; } + .btn-info:not(.btn-light):focus, .btn-info:not(.btn-light):active { + background: #8e32e9; + border-color: #8e32e9; } + +.btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info:active { + background: #8e32e9; + color: #ffffff; } + +.btn-inverse-warning { + background-color: rgba(255, 222, 115, 0.2); + background-image: none; + border-color: rgba(255, 222, 115, 0); } + .btn-inverse-warning:not(.btn-inverse-light) { + color: #ffde73; } + .btn-inverse-warning:hover { + color: #ffffff; + background-color: #ffde73; + border-color: #ffde73; } + .btn-inverse-warning.focus, .btn-inverse-warning:focus { + -webkit-box-shadow: 0 0 0 3px rgba(255, 222, 115, 0.5); + box-shadow: 0 0 0 3px rgba(255, 222, 115, 0.5); } + .btn-inverse-warning.disabled, .btn-inverse-warning:disabled { + color: #ffde73; + background-color: transparent; } + .btn-inverse-warning.active, .btn-inverse-warning:active, + .show > .btn-inverse-warning.dropdown-toggle { + color: #ffffff; + background-color: #ffde73; + border-color: #ffde73; } + +.btn-warning:not(.btn-light) { + color: #ffffff; } + .btn-warning:not(.btn-light):hover, .btn-warning:not(.btn-light):focus, .btn-warning:not(.btn-light):active { + color: #ffffff; } + .btn-warning:not(.btn-light):focus, .btn-warning:not(.btn-light):active { + background: #ffde73; + border-color: #ffde73; } + +.btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning:active { + background: #ffde73; + color: #ffffff; } + +.btn-inverse-danger { + background-color: rgba(255, 77, 107, 0.2); + background-image: none; + border-color: rgba(255, 77, 107, 0); } + .btn-inverse-danger:not(.btn-inverse-light) { + color: #ff4d6b; } + .btn-inverse-danger:hover { + color: #ffffff; + background-color: #ff4d6b; + border-color: #ff4d6b; } + .btn-inverse-danger.focus, .btn-inverse-danger:focus { + -webkit-box-shadow: 0 0 0 3px rgba(255, 77, 107, 0.5); + box-shadow: 0 0 0 3px rgba(255, 77, 107, 0.5); } + .btn-inverse-danger.disabled, .btn-inverse-danger:disabled { + color: #ff4d6b; + background-color: transparent; } + .btn-inverse-danger.active, .btn-inverse-danger:active, + .show > .btn-inverse-danger.dropdown-toggle { + color: #ffffff; + background-color: #ff4d6b; + border-color: #ff4d6b; } + +.btn-danger:not(.btn-light) { + color: #ffffff; } + .btn-danger:not(.btn-light):hover, .btn-danger:not(.btn-light):focus, .btn-danger:not(.btn-light):active { + color: #ffffff; } + .btn-danger:not(.btn-light):focus, .btn-danger:not(.btn-light):active { + background: #ff4d6b; + border-color: #ff4d6b; } + +.btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active { + background: #ff4d6b; + color: #ffffff; } + +.btn-inverse-light { + background-color: rgba(248, 249, 250, 0.2); + background-image: none; + border-color: rgba(248, 249, 250, 0); } + .btn-inverse-light:not(.btn-inverse-light) { + color: #f8f9fa; } + .btn-inverse-light:hover { + color: #ffffff; + background-color: #f8f9fa; + border-color: #f8f9fa; } + .btn-inverse-light.focus, .btn-inverse-light:focus { + -webkit-box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5); + box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5); } + .btn-inverse-light.disabled, .btn-inverse-light:disabled { + color: #f8f9fa; + background-color: transparent; } + .btn-inverse-light.active, .btn-inverse-light:active, + .show > .btn-inverse-light.dropdown-toggle { + color: #ffffff; + background-color: #f8f9fa; + border-color: #f8f9fa; } + +.btn-light:not(.btn-light) { + color: #ffffff; } + .btn-light:not(.btn-light):hover, .btn-light:not(.btn-light):focus, .btn-light:not(.btn-light):active { + color: #ffffff; } + .btn-light:not(.btn-light):focus, .btn-light:not(.btn-light):active { + background: #f8f9fa; + border-color: #f8f9fa; } + +.btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-light:active { + background: #f8f9fa; + color: #ffffff; } + +.btn-inverse-dark { + background-color: rgba(62, 75, 91, 0.2); + background-image: none; + border-color: rgba(62, 75, 91, 0); } + .btn-inverse-dark:not(.btn-inverse-light) { + color: #3e4b5b; } + .btn-inverse-dark:hover { + color: #ffffff; + background-color: #3e4b5b; + border-color: #3e4b5b; } + .btn-inverse-dark.focus, .btn-inverse-dark:focus { + -webkit-box-shadow: 0 0 0 3px rgba(62, 75, 91, 0.5); + box-shadow: 0 0 0 3px rgba(62, 75, 91, 0.5); } + .btn-inverse-dark.disabled, .btn-inverse-dark:disabled { + color: #3e4b5b; + background-color: transparent; } + .btn-inverse-dark.active, .btn-inverse-dark:active, + .show > .btn-inverse-dark.dropdown-toggle { + color: #ffffff; + background-color: #3e4b5b; + border-color: #3e4b5b; } + +.btn-dark:not(.btn-light) { + color: #ffffff; } + .btn-dark:not(.btn-light):hover, .btn-dark:not(.btn-light):focus, .btn-dark:not(.btn-light):active { + color: #ffffff; } + .btn-dark:not(.btn-light):focus, .btn-dark:not(.btn-light):active { + background: #3e4b5b; + border-color: #3e4b5b; } + +.btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:active { + background: #3e4b5b; + color: #ffffff; } + +/* Cards */ +.card { + border: 0; } + .card .card-body { + padding: 1.875rem 1.875rem; } + .card .card-body + .card-body { + padding-top: 1rem; } + .card .card-title { + color: #343a40; + margin-bottom: .75rem; + text-transform: capitalize; + font-family: "Open Sans", sans-serif; + font-weight: 600; + font-size: 1.125rem; } + .card .card-subtitle { + font-family: "Open Sans", sans-serif; + margin-top: 0.625rem; + margin-bottom: 0.625rem; } + .card .card-description { + color: #76838f; + margin-bottom: 1.5rem; + font-family: "Open Sans", sans-serif; } + .card.card-outline-success { + border: 1px solid #38ce3c; } + .card.card-outline-primary { + border: 1px solid #1bdbe0; } + .card.card-outline-warning { + border: 1px solid #ffde73; } + .card.card-outline-danger { + border: 1px solid #ff4d6b; } + .card.card-rounded { + border-radius: 5px; } + .card.card-faded { + background: #b5b0b2; + border-color: #b5b0b2; } + .card.card-circle-progress { + color: #ffffff; + text-align: center; } + .card.card-img-holder { + position: relative; } + .card.card-img-holder .card-img-absolute { + position: absolute; + top: 0; + right: 0; + height: 100%; } + +.card-inverse-primary { + background: rgba(27, 219, 224, 0.2); + border: 1px solid #19c9ce; + color: #15a6aa; } + +.card-inverse-secondary { + background: rgba(216, 216, 216, 0.2); + border: 1px solid #c7c7c7; + color: #a4a4a4; } + +.card-inverse-success { + background: rgba(56, 206, 60, 0.2); + border: 1px solid #34be37; + color: #2b9d2e; } + +.card-inverse-info { + background: rgba(142, 50, 233, 0.2); + border: 1px solid #832ed6; + color: #6c26b1; } + +.card-inverse-warning { + background: rgba(255, 222, 115, 0.2); + border: 1px solid #ebcc6a; + color: #c2a957; } + +.card-inverse-danger { + background: rgba(255, 77, 107, 0.2); + border: 1px solid #eb4762; + color: #c23b51; } + +.card-inverse-light { + background: rgba(248, 249, 250, 0.2); + border: 1px solid #e4e5e6; + color: #bcbdbe; } + +.card-inverse-dark { + background: rgba(62, 75, 91, 0.2); + border: 1px solid #394554; + color: #2f3945; } + +/* Checkboxes and Radios */ +.form-check { + position: relative; + display: block; + margin-top: 15px; + margin-bottom: 10px; + padding-left: 0; } + .form-check .form-check-label { + display: block; + margin-left: 1.75rem; + font-size: 0.875rem; + line-height: 1.5; } + .rtl .form-check .form-check-label { + margin-left: 0; + margin-right: 1.75rem; } + .form-check .form-check-label input { + position: absolute; + top: 0; + left: 0; + margin-left: 0; + margin-top: 0; + z-index: 1; + cursor: pointer; + opacity: 0; + filter: alpha(opacity=0); } + .rtl .form-check .form-check-label input { + left: auto; + right: 0; } + .form-check .form-check-label input[type="checkbox"] + .input-helper:before, .form-check .form-check-label input[type="checkbox"] + .input-helper:after { + position: absolute; + top: 0; + left: 0; } + .rtl .form-check .form-check-label input[type="checkbox"] + .input-helper:before, .rtl .form-check .form-check-label input[type="checkbox"] + .input-helper:after { + left: auto; + right: 0; } + .form-check .form-check-label input[type="checkbox"] + .input-helper:before { + content: ""; + width: 18px; + height: 18px; + border-radius: 2px; + border: solid #1bdbe0; + border-width: 2px; + -webkit-transition: all; + transition: all; + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; } + .form-check .form-check-label input[type="checkbox"] + .input-helper:after { + -webkit-transition: all; + transition: all; + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; + opacity: 0; + filter: alpha(opacity=0); + content: ""; + height: 12px; + width: 5px; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + border-style: solid; + border-width: 2px; + border-color: transparent #ffffff #ffffff transparent; + left: 7px; + top: 1px; + font-weight: bold; + color: #ffffff; } + .form-check .form-check-label input[type="checkbox"]:checked + .input-helper:before { + background: #1bdbe0; + border-width: 0; } + .form-check .form-check-label input[type="checkbox"]:checked + .input-helper:after { + opacity: 1; + line-height: 18px; + filter: alpha(opacity=100); } + .form-check .form-check-label input[type="checkbox"]:disabled + .input-helper:before { + border-color: #e8ecf1; } + .form-check .form-check-label input[type="checkbox"]:disabled:checked + .input-helper:after { + border-color: transparent #e8ecf1 #e8ecf1 transparent; } + .form-check .form-check-label input[type="radio"] + .input-helper:before { + position: absolute; + content: ""; + top: 0; + left: 0; + border: solid #1bdbe0; + border-width: 2px; + width: 20px; + height: 20px; + border-radius: 50%; + -webkit-transition: all; + transition: all; + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; } + .rtl .form-check .form-check-label input[type="radio"] + .input-helper:before { + left: auto; + right: 0; } + .form-check .form-check-label input[type="radio"] + .input-helper:after { + content: ""; + width: 8px; + height: 8px; + background: #ffffff; + border-radius: 50%; + top: 6px; + left: 6px; + -webkit-transition: all; + transition: all; + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; + opacity: 0; + filter: alpha(opacity=0); + -webkit-transform: scale(0); + transform: scale(0); + position: absolute; } + .rtl .form-check .form-check-label input[type="radio"] + .input-helper:after { + left: auto; + right: 6px; } + .form-check .form-check-label input[type="radio"]:checked + .input-helper:before { + background: #1bdbe0; + border-width: 0; } + .form-check .form-check-label input[type="radio"]:checked + .input-helper:after { + opacity: 1; + line-height: 1.5; + filter: alpha(opacity=100); + -webkit-transform: scale(1); + transform: scale(1); } + .form-check .form-check-label input[type="radio"]:disabled + .input-helper:before { + border-color: #e8ecf1; } + .form-check .form-check-label input[type="radio"]:disabled:checked + .input-helper:before { + background: #e8ecf1; } + .form-check .form-check-label input[type="radio"]:disabled:checked + .input-helper:after { + background: #ffffff; } + +.form-check-primary.form-check label input[type="checkbox"] + .input-helper:before, +.form-check-primary.form-check label input[type="radio"] + .input-helper:before { + border-color: #1bdbe0; } + +.form-check-primary.form-check label input[type="checkbox"]:checked + .input-helper:before, +.form-check-primary.form-check label input[type="radio"]:checked + .input-helper:before { + background: #1bdbe0; } + +.form-check-secondary.form-check label input[type="checkbox"] + .input-helper:before, +.form-check-secondary.form-check label input[type="radio"] + .input-helper:before { + border-color: #d8d8d8; } + +.form-check-secondary.form-check label input[type="checkbox"]:checked + .input-helper:before, +.form-check-secondary.form-check label input[type="radio"]:checked + .input-helper:before { + background: #d8d8d8; } + +.form-check-success.form-check label input[type="checkbox"] + .input-helper:before, +.form-check-success.form-check label input[type="radio"] + .input-helper:before { + border-color: #38ce3c; } + +.form-check-success.form-check label input[type="checkbox"]:checked + .input-helper:before, +.form-check-success.form-check label input[type="radio"]:checked + .input-helper:before { + background: #38ce3c; } + +.form-check-info.form-check label input[type="checkbox"] + .input-helper:before, +.form-check-info.form-check label input[type="radio"] + .input-helper:before { + border-color: #8e32e9; } + +.form-check-info.form-check label input[type="checkbox"]:checked + .input-helper:before, +.form-check-info.form-check label input[type="radio"]:checked + .input-helper:before { + background: #8e32e9; } + +.form-check-warning.form-check label input[type="checkbox"] + .input-helper:before, +.form-check-warning.form-check label input[type="radio"] + .input-helper:before { + border-color: #ffde73; } + +.form-check-warning.form-check label input[type="checkbox"]:checked + .input-helper:before, +.form-check-warning.form-check label input[type="radio"]:checked + .input-helper:before { + background: #ffde73; } + +.form-check-danger.form-check label input[type="checkbox"] + .input-helper:before, +.form-check-danger.form-check label input[type="radio"] + .input-helper:before { + border-color: #ff4d6b; } + +.form-check-danger.form-check label input[type="checkbox"]:checked + .input-helper:before, +.form-check-danger.form-check label input[type="radio"]:checked + .input-helper:before { + background: #ff4d6b; } + +.form-check-light.form-check label input[type="checkbox"] + .input-helper:before, +.form-check-light.form-check label input[type="radio"] + .input-helper:before { + border-color: #f8f9fa; } + +.form-check-light.form-check label input[type="checkbox"]:checked + .input-helper:before, +.form-check-light.form-check label input[type="radio"]:checked + .input-helper:before { + background: #f8f9fa; } + +.form-check-dark.form-check label input[type="checkbox"] + .input-helper:before, +.form-check-dark.form-check label input[type="radio"] + .input-helper:before { + border-color: #3e4b5b; } + +.form-check-dark.form-check label input[type="checkbox"]:checked + .input-helper:before, +.form-check-dark.form-check label input[type="radio"]:checked + .input-helper:before { + background: #3e4b5b; } + +/* Dropdowns */ +.dropdown .dropdown-toggle:after { + border-top: 0; + border-right: 0; + border-left: 0; + border-bottom: 0; + font-family: "simple-line-icons"; + content: "\e604"; + width: auto; + height: auto; + vertical-align: baseline; + font-size: .75rem; } + +.dropdown .dropdown-menu { + margin-top: .75rem; + font-size: 0.875rem; + -webkit-box-shadow: 0px 1px 15px 1px rgba(230, 234, 236, 0.35); + box-shadow: 0px 1px 15px 1px rgba(230, 234, 236, 0.35); } + .dropdown .dropdown-menu .dropdown-item { + font-size: 1rem; + padding: .25rem 1.5rem; } + .dropdown .dropdown-menu .dropdown-item:active { + background: initial; } + +/* Forms */ +.form-group { + margin-bottom: 1.5rem; } + +.input-group-append, +.input-group-prepend { + color: #c9c8c8; + width: auto; + border: none; } + .input-group-append .input-group-text, + .input-group-prepend .input-group-text { + border-color: #e8ecf1; + padding: 0.94rem 0.75rem; + color: #c9c8c8; } + +.form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead, +.tt-query, +.tt-hint { + border: 1px solid #e8ecf1; + font-family: "Open Sans", sans-serif; + font-size: 0.8125rem; } + +select.form-control, .select2-container--default select.select2-selection--single, .select2-container--default .select2-selection--single select.select2-search__field, select.typeahead, +select.tt-query, +select.tt-hint { + padding: .4375rem .75rem; + border: 0; + outline: 1px solid #e8ecf1; + color: #c9c8c8; } + select.form-control:focus, .select2-container--default select.select2-selection--single:focus, .select2-container--default .select2-selection--single select.select2-search__field:focus, select.typeahead:focus, + select.tt-query:focus, + select.tt-hint:focus { + outline: 1px solid #e8ecf1; } + select.form-control.border-primary, .select2-container--default select.border-primary.select2-selection--single, .select2-container--default .select2-selection--single select.border-primary.select2-search__field, select.border-primary.typeahead, + select.border-primary.tt-query, + select.border-primary.tt-hint { + outline: 1px solid #1bdbe0; } + select.form-control.border-primary:focus, .select2-container--default select.border-primary.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-primary.select2-search__field:focus, select.border-primary.typeahead:focus, + select.border-primary.tt-query:focus, + select.border-primary.tt-hint:focus { + outline: 1px solid #1bdbe0; } + select.form-control.border-secondary, select.form-control.loader-demo-box, .select2-container--default select.loader-demo-box.select2-selection--single, .select2-container--default .select2-selection--single select.loader-demo-box.select2-search__field, select.loader-demo-box.typeahead, + select.loader-demo-box.tt-query, + select.loader-demo-box.tt-hint, .select2-container--default select.border-secondary.select2-selection--single, .select2-container--default .select2-selection--single select.border-secondary.select2-search__field, select.border-secondary.typeahead, + select.border-secondary.tt-query, + select.border-secondary.tt-hint { + outline: 1px solid #d8d8d8; } + select.form-control.border-secondary:focus, select.form-control.loader-demo-box:focus, .select2-container--default select.loader-demo-box.select2-selection--single:focus, .select2-container--default .select2-selection--single select.loader-demo-box.select2-search__field:focus, select.loader-demo-box.typeahead:focus, + select.loader-demo-box.tt-query:focus, + select.loader-demo-box.tt-hint:focus, .select2-container--default select.border-secondary.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-secondary.select2-search__field:focus, select.border-secondary.typeahead:focus, + select.border-secondary.tt-query:focus, + select.border-secondary.tt-hint:focus { + outline: 1px solid #d8d8d8; } + select.form-control.border-success, .select2-container--default select.border-success.select2-selection--single, .select2-container--default .select2-selection--single select.border-success.select2-search__field, select.border-success.typeahead, + select.border-success.tt-query, + select.border-success.tt-hint { + outline: 1px solid #38ce3c; } + select.form-control.border-success:focus, .select2-container--default select.border-success.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-success.select2-search__field:focus, select.border-success.typeahead:focus, + select.border-success.tt-query:focus, + select.border-success.tt-hint:focus { + outline: 1px solid #38ce3c; } + select.form-control.border-info, .select2-container--default select.border-info.select2-selection--single, .select2-container--default .select2-selection--single select.border-info.select2-search__field, select.border-info.typeahead, + select.border-info.tt-query, + select.border-info.tt-hint { + outline: 1px solid #8e32e9; } + select.form-control.border-info:focus, .select2-container--default select.border-info.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-info.select2-search__field:focus, select.border-info.typeahead:focus, + select.border-info.tt-query:focus, + select.border-info.tt-hint:focus { + outline: 1px solid #8e32e9; } + select.form-control.border-warning, .select2-container--default select.border-warning.select2-selection--single, .select2-container--default .select2-selection--single select.border-warning.select2-search__field, select.border-warning.typeahead, + select.border-warning.tt-query, + select.border-warning.tt-hint { + outline: 1px solid #ffde73; } + select.form-control.border-warning:focus, .select2-container--default select.border-warning.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-warning.select2-search__field:focus, select.border-warning.typeahead:focus, + select.border-warning.tt-query:focus, + select.border-warning.tt-hint:focus { + outline: 1px solid #ffde73; } + select.form-control.border-danger, .select2-container--default select.border-danger.select2-selection--single, .select2-container--default .select2-selection--single select.border-danger.select2-search__field, select.border-danger.typeahead, + select.border-danger.tt-query, + select.border-danger.tt-hint { + outline: 1px solid #ff4d6b; } + select.form-control.border-danger:focus, .select2-container--default select.border-danger.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-danger.select2-search__field:focus, select.border-danger.typeahead:focus, + select.border-danger.tt-query:focus, + select.border-danger.tt-hint:focus { + outline: 1px solid #ff4d6b; } + select.form-control.border-light, .select2-container--default select.border-light.select2-selection--single, .select2-container--default .select2-selection--single select.border-light.select2-search__field, select.border-light.typeahead, + select.border-light.tt-query, + select.border-light.tt-hint { + outline: 1px solid #f8f9fa; } + select.form-control.border-light:focus, .select2-container--default select.border-light.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-light.select2-search__field:focus, select.border-light.typeahead:focus, + select.border-light.tt-query:focus, + select.border-light.tt-hint:focus { + outline: 1px solid #f8f9fa; } + select.form-control.border-dark, .select2-container--default select.border-dark.select2-selection--single, .select2-container--default .select2-selection--single select.border-dark.select2-search__field, select.border-dark.typeahead, + select.border-dark.tt-query, + select.border-dark.tt-hint { + outline: 1px solid #3e4b5b; } + select.form-control.border-dark:focus, .select2-container--default select.border-dark.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-dark.select2-search__field:focus, select.border-dark.typeahead:focus, + select.border-dark.tt-query:focus, + select.border-dark.tt-hint:focus { + outline: 1px solid #3e4b5b; } + +.form-group label { + font-size: 0.875rem; + line-height: 1; + vertical-align: top; + margin-bottom: .5rem; } + +.form-group.has-danger .form-control, .form-group.has-danger .select2-container--default .select2-selection--single, .select2-container--default .form-group.has-danger .select2-selection--single, .form-group.has-danger .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .form-group.has-danger .select2-search__field, .form-group.has-danger .typeahead, +.form-group.has-danger .tt-query, +.form-group.has-danger .tt-hint { + border-color: #ff4d6b; } + +.form-group .file-upload-default { + visibility: hidden; + position: absolute; } + +.form-group .file-upload-info { + background: transparent; } + +/* Icons */ +.icons-list { + border-left: 1px solid #e8ecf1; + border-top: 1px solid #e8ecf1; } + .icons-list > div { + background: #fff; + border-bottom: 1px solid #e8ecf1; + border-right: 1px solid #e8ecf1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 15px 15px; + font-family: "Open Sans", sans-serif; + font-size: 0.875rem; } + .icons-list > div i { + display: inline-block; + font-size: 20px; + width: 40px; + text-align: left; + color: #1bdbe0; } + +/* Lists */ +ul, +ol, +dl { + padding-left: 1rem; + font-size: 0.875rem; } + ul li, + ol li, + dl li { + line-height: 1.8; } + +.list-ticked, +.list-arrow, +.list-star { + list-style: none; + padding: 0; } + .list-ticked li, + .list-arrow li, + .list-star li { + padding-left: 1.5rem; } + .list-ticked li:before, + .list-arrow li:before, + .list-star li:before { + font-family: "simple-line-icons"; + margin-left: -1.5rem; + width: 1.5rem; + margin-right: .5rem; } + +.list-ticked li:before { + content: '\e080'; + color: #ff4d6b; } + +.list-arrow li:before { + content: '\e606'; + color: #38ce3c; } + +.list-star li:before { + content: '\e09b'; + color: #ffde73; } + +.gradient-bullet-list { + padding-left: 0; } + .rtl .gradient-bullet-list { + padding-right: 0; } + .gradient-bullet-list li { + position: relative; + list-style-type: none; + padding-left: 25px; + line-height: 1; + padding-bottom: 25px; } + .gradient-bullet-list li:before, .gradient-bullet-list li:after { + content: ""; + position: absolute; } + .gradient-bullet-list li:before { + top: 0; + left: 0; + width: 15px; + height: 15px; + border-radius: 100%; } + .gradient-bullet-list li:after { + width: 11px; + height: 11px; + top: 2px; + left: 2px; + background: #fff; + border-radius: 100%; } + .gradient-bullet-list li:nth-child(1):before { + background: #ff4d6b; } + .gradient-bullet-list li:nth-child(2):before { + background: #8e32e9; } + .gradient-bullet-list li:nth-child(3):before { + background: #ffde73; } + .gradient-bullet-list li:nth-child(4):before { + background: #38ce3c; } + .gradient-bullet-list li:nth-child(5):before { + background: #1bdbe0; } + +/* Modals */ +.modal .modal-dialog { + margin-top: 100px; } + .modal .modal-dialog .modal-content .modal-header { + padding: 25px 26px; } + .modal .modal-dialog .modal-content .modal-header .close span { + font-size: 20px; + font-weight: 400; + color: #6a6a6a; } + .modal .modal-dialog .modal-content .modal-body { + padding: 35px 26px; } + .modal .modal-dialog .modal-content .modal-footer { + padding: 15px 31px; } + +/* Pagination */ +.pagination .page-item .page-link { + border-color: #e8ecf1; + color: #343a40; + font-size: .875rem; + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; } + .pagination .page-item .page-link:focus { + background: inherit; } + .pagination .page-item .page-link i:before { + font-size: inherit; + line-height: 1; + vertical-align: middle; } + +.pagination .page-item.active .page-link, .pagination .page-item:hover .page-link, .pagination .page-item:focus .page-link, .pagination .page-item:active .page-link { + background: #1bdbe0; + border-color: #1bdbe0; + color: #ffffff; } + +.pagination.flat .page-item .page-link { + border: none; + border-radius: 2px; } + +.pagination.separated .page-item { + margin-left: 2px; + margin-right: 2px; } + .pagination.separated .page-item:first-child { + margin-left: 0; } + .pagination.separated .page-item:last-child { + margin-right: 0; } + .pagination.separated .page-item .page-link { + border-radius: 2px; } + +.pagination.rounded .page-item:first-child .page-link, .pagination.loader-demo-box .page-item:first-child .page-link { + border-radius: 25px 0 0 25px; } + +.pagination.rounded .page-item:last-child .page-link, .pagination.loader-demo-box .page-item:last-child .page-link { + border-radius: 0 25px 25px 0; } + +.pagination.rounded-flat .page-item { + margin-right: 3px; + margin-left: 3px; } + .pagination.rounded-flat .page-item .page-link { + border: none; + border-radius: 50px; } + +.pagination.rounded-separated .page-item { + margin-left: 2px; + margin-right: 2px; } + .pagination.rounded-separated .page-item:first-child { + margin-left: 0; } + .pagination.rounded-separated .page-item:first-child .page-link { + border-radius: 10px 0 0 10px; } + .pagination.rounded-separated .page-item:last-child { + margin-right: 0; } + .pagination.rounded-separated .page-item:last-child .page-link { + border-radius: 0 10px 10px 0; } + .pagination.rounded-separated .page-item .page-link { + border-radius: 2px; } + +/* pagination variations */ +.pagination-primary .page-item.active .page-link { + background: #1bdbe0; + border-color: #1bdbe0; } + +.pagination-primary .page-item .page-link:hover { + background: #2fe1e6; + border-color: #1bdbe0; + color: #ffffff; } + +.pagination-secondary .page-item.active .page-link { + background: #d8d8d8; + border-color: #d8d8d8; } + +.pagination-secondary .page-item .page-link:hover { + background: #e5e5e5; + border-color: #d8d8d8; + color: #ffffff; } + +.pagination-success .page-item.active .page-link { + background: #38ce3c; + border-color: #38ce3c; } + +.pagination-success .page-item .page-link:hover { + background: #4cd350; + border-color: #38ce3c; + color: #ffffff; } + +.pagination-info .page-item.active .page-link { + background: #8e32e9; + border-color: #8e32e9; } + +.pagination-info .page-item .page-link:hover { + background: #9b49eb; + border-color: #8e32e9; + color: #ffffff; } + +.pagination-warning .page-item.active .page-link { + background: #ffde73; + border-color: #ffde73; } + +.pagination-warning .page-item .page-link:hover { + background: #ffe48d; + border-color: #ffde73; + color: #ffffff; } + +.pagination-danger .page-item.active .page-link { + background: #ff4d6b; + border-color: #ff4d6b; } + +.pagination-danger .page-item .page-link:hover { + background: #ff6780; + border-color: #ff4d6b; + color: #ffffff; } + +.pagination-light .page-item.active .page-link { + background: #f8f9fa; + border-color: #f8f9fa; } + +.pagination-light .page-item .page-link:hover { + background: white; + border-color: #f8f9fa; + color: #ffffff; } + +.pagination-dark .page-item.active .page-link { + background: #3e4b5b; + border-color: #3e4b5b; } + +.pagination-dark .page-item .page-link:hover { + background: #48586a; + border-color: #3e4b5b; + color: #ffffff; } + +/* Tables */ +.table { + margin-bottom: 0; } + .table thead th { + border-top: 0; + border-bottom-width: 1px; + font-family: "Open Sans", sans-serif; + font-weight: 600; + font-weight: initial; } + .table thead th i { + margin-left: 0.325rem; } + .table th, + .table td { + vertical-align: middle; + font-size: 0.875rem; + line-height: 1; + white-space: nowrap; } + .table th img, + .table td img { + width: 36px; + height: 36px; + border-radius: 100%; } + .table th .badge, + .table td .badge { + margin-bottom: 0; } + .table.table-borderless { + border: none; } + .table.table-borderless tr, + .table.table-borderless td, + .table.table-borderless th { + border: none; } + +/* Preview */ +.preview-list .preview-item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + padding: .75rem 1.5rem; + font-size: .875rem; } + .preview-list .preview-item:last-child { + border-bottom: 0; } + .preview-list .preview-item:hover { + background: #f8f9fa; } + .preview-list .preview-item .form-check { + margin-top: 8px; + margin-right: 1rem; } + .preview-list .preview-item .preview-thumbnail { + color: #ffffff; + position: relative; } + .preview-list .preview-item .preview-thumbnail img, + .preview-list .preview-item .preview-thumbnail .preview-icon { + width: 36px; + height: 36px; + border-radius: 100%; } + .preview-list .preview-item .preview-thumbnail .preview-icon { + padding: 6px; + text-align: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .preview-list .preview-item .preview-thumbnail .preview-icon i { + font-size: 1.125rem; + margin: 0; } + .preview-list .preview-item .preview-thumbnail .badge { + border: 2px solid #ffffff; + border-radius: 100%; + bottom: 5px; + display: block; + height: 14px; + left: -5px; + padding: 0; + position: absolute; + width: 14px; } + .preview-list .preview-item .preview-item-content { + line-height: 1; + padding-left: 15px; } + .preview-list .preview-item .preview-item-content:first-child { + padding-left: 0; } + .preview-list .preview-item .preview-item-content p { + margin-bottom: 10px; } + .preview-list .preview-item .preview-item-content p .content-category { + font-family: 'source-sans-pro-semibold', sans-serif; + padding-right: 15px; + border-right: 1px solid #e8ecf1; } + .rtl .preview-list .preview-item .preview-item-content { + padding-left: 0; + padding-right: 1rem; + margin-right: 0; + margin-left: auto; } + .preview-list .preview-item .preview-actions { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .preview-list .preview-item .preview-actions i { + width: 29px; + color: #e6e9ed; + height: 29px; + border: 2px solid #e6e9ed; + border-radius: 100%; + padding: 3px 6px; + display: inline-block; } + .preview-list .preview-item .preview-actions i:first-child { + margin-right: 10px; } + +.preview-list.comment-preview .preview-item { + padding: .87rem 0; } + .preview-list.comment-preview .preview-item:first-child { + padding-top: 0; } + .preview-list.comment-preview .preview-item p { + line-height: 27px; } + +.preview-list.bordered .preview-item { + border-bottom: 1px solid #e8ecf1; } + .preview-list.bordered .preview-item:last-child { + border-bottom: 0; } + +/*-------------------------------------------------------------------*/ +/* === Plugin overrides === */ +/* Chartist */ +.ct-series-a .ct-line { + stroke: #a29afc; + stroke-width: 3px; + stroke-dasharray: 10px 20px; } + +.ct-series-a .ct-point { + stroke: #6355f9; + stroke-width: 10px; + stroke-linecap: round; } + +.ct-series-b .ct-line { + stroke: #80d691; + stroke-width: 3px; + stroke-dasharray: 10px 20px; } + +.ct-series-b .ct-point { + stroke: #4ac462; + stroke-width: 10px; + stroke-linecap: round; } + +.ct-series-c .ct-line { + stroke: #f7cb9b; + stroke-width: 3px; + stroke-dasharray: 10px 20px; } + +.ct-series-c .ct-point { + stroke: #f2a859; + stroke-width: 10px; + stroke-linecap: round; } + +.ct-series-a .ct-bar { + stroke: #a29afc; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +.ct-series-b .ct-bar { + stroke: #80d691; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +.ct-series-c .ct-bar { + stroke: #f7cb9b; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +.ct-series-d .ct-bar { + stroke: #fcb2b2; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +.ct-series-a .ct-slice-pie { + fill: #a29afc; + stroke-width: 4px; } + +.ct-series-b .ct-slice-pie { + fill: #80d691; + stroke-width: 4px; } + +.ct-series-c .ct-slice-pie { + fill: #fcb2b2; + stroke-width: 4px; } + +.ct-series-d .ct-slice-pie { + fill: #f7cb9b; + stroke-width: 4px; } + +.ct-series-a .ct-slice-donut-solid { + fill: #a29afc; } + +.ct-series-b .ct-slice-donut-solid { + fill: #80d691; } + +.ct-series-c .ct-slice-donut-solid { + fill: #fcb2b2; } + +.ct-series-a .ct-slice-donut-solid { + fill: #f7cb9b; } + +#ct-chart-dash-barChart .ct-series-a .ct-bar { + stroke: #fb9999; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +#ct-chart-dash-barChart .ct-series-b .ct-bar { + stroke: #8b81fb; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +#ct-chart-dash-barChart .ct-series-c .ct-bar { + stroke: #a29afc; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +#ct-chart-dash-barChart .ct-series-d .ct-bar { + stroke: #b9b3fc; + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; } + +/* Select2 */ +.select2-container--default .select2-results__option--highlighted[aria-selected] { + background: #1bdbe0; } + +.select2-container--default .select2-selection--single, +.select2-container--default .select2-dropdown, +.select2-container--default .select2-selection--multiple { + border-color: #e8ecf1; } + .select2-container--default .select2-selection--single .select2-search__field, + .select2-container--default .select2-dropdown .select2-search__field, + .select2-container--default .select2-selection--multiple .select2-search__field { + border-color: #e8ecf1; } + +.select2-container--default .select2-selection--single { + height: auto; } + .select2-container--default .select2-selection--single .select2-selection__rendered { + line-height: 14px; } + +.select2-container--default .select2-dropdown { + font-size: .8125rem; } + +.select2-container--default.select2-container--focus .select2-selection--multiple { + border-color: #e8ecf1; } + +.select2-container--default .select2-selection--multiple .select2-selection__choice { + color: #ffffff; + border: 0; + border-radius: 3px; + padding: 6px; + font-size: .625rem; + font-family: inherit; + line-height: 1; } + .select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove { + color: #ffffff; } + .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+1) { + background: #1bdbe0; } + .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+2) { + background: #38ce3c; } + .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+3) { + background: #8e32e9; } + .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+4) { + background: #ff4d6b; } + .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+5) { + background: #ffde73; } + +/* Typeahead */ +.tt-menu, +.gist { + text-align: left; } + +.twitter-typeahead { + max-width: 100%; } + +.typeahead { + background-color: #ffffff; } + .typeahead:focus { + border-color: #e8ecf1; } + +.tt-query { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } + +.tt-hint { + color: #434a54; } + +.tt-menu { + width: 100%; + margin: 12px 0; + padding: 8px 0; + background-color: #ffffff; + border: 1px solid #e8ecf1; + border-radius: 8px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } + +.tt-suggestion { + padding: 3px 20px; + font-size: inherit; } + .tt-suggestion:hover { + cursor: pointer; + color: #ffffff; + background-color: #1bdbe0; } + .tt-suggestion .tt-cursor { + color: #ffffff; + background-color: #1bdbe0; } + .tt-suggestion p { + margin: 0; } + +/*-------------------------------------------------------------------*/ +/* === Landing screens === */ +/* Auth */ +.auth .login-half-bg { + background: url("../../images/auth/login-bg.jpg"); + background-size: cover; } + +.auth .register-half-bg { + background: url("../../images/auth/register-bg.jpg"); + background-size: cover; } + +.auth.lock-full-bg { + background: url("../../images/auth/lockscreen-bg.jpg"); + background-size: cover; } + +.auth .lock-profile-img { + width: 90px; + height: 90px; + border-radius: 100%; } + +.auth .auth-form-dark { + background: rgba(0, 0, 0, 0.6); + color: #ffffff; } + .auth .auth-form-dark .form-control, .auth .auth-form-dark .select2-container--default .select2-selection--single, .select2-container--default .auth .auth-form-dark .select2-selection--single, .auth .auth-form-dark .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth .auth-form-dark .select2-search__field, .auth .auth-form-dark .typeahead, + .auth .auth-form-dark .tt-query, + .auth .auth-form-dark .tt-hint { + border-color: rgba(255, 255, 255, 0.2); + color: #ffffff; } + .auth .auth-form-dark .form-control:-ms-input-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single:-ms-input-placeholder, .select2-container--default .auth .auth-form-dark .select2-selection--single:-ms-input-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single .select2-search__field:-ms-input-placeholder, .select2-container--default .select2-selection--single .auth .auth-form-dark .select2-search__field:-ms-input-placeholder, .auth .auth-form-dark .typeahead:-ms-input-placeholder, + .auth .auth-form-dark .tt-query:-ms-input-placeholder, + .auth .auth-form-dark .tt-hint:-ms-input-placeholder { + color: #ffffff; } + .auth .auth-form-dark .form-control:-moz-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single:-moz-placeholder, .select2-container--default .auth .auth-form-dark .select2-selection--single:-moz-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single .select2-search__field:-moz-placeholder, .select2-container--default .select2-selection--single .auth .auth-form-dark .select2-search__field:-moz-placeholder, .auth .auth-form-dark .typeahead:-moz-placeholder, + .auth .auth-form-dark .tt-query:-moz-placeholder, + .auth .auth-form-dark .tt-hint:-moz-placeholder { + color: #ffffff; } + .auth .auth-form-dark .form-control::-moz-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single::-moz-placeholder, .select2-container--default .auth .auth-form-dark .select2-selection--single::-moz-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single .select2-search__field::-moz-placeholder, .select2-container--default .select2-selection--single .auth .auth-form-dark .select2-search__field::-moz-placeholder, .auth .auth-form-dark .typeahead::-moz-placeholder, + .auth .auth-form-dark .tt-query::-moz-placeholder, + .auth .auth-form-dark .tt-hint::-moz-placeholder { + color: #ffffff; } + .auth .auth-form-dark .form-control::-webkit-input-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single::-webkit-input-placeholder, .select2-container--default .auth .auth-form-dark .select2-selection--single::-webkit-input-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single .select2-search__field::-webkit-input-placeholder, .select2-container--default .select2-selection--single .auth .auth-form-dark .select2-search__field::-webkit-input-placeholder, .auth .auth-form-dark .typeahead::-webkit-input-placeholder, + .auth .auth-form-dark .tt-query::-webkit-input-placeholder, + .auth .auth-form-dark .tt-hint::-webkit-input-placeholder { + color: #ffffff; } + +.auth .auth-form-light { + background: #ffffff; } + .auth .auth-form-light select { + color: #c9c8c8; } + .auth .auth-form-light .input-group .form-control:focus, .auth .auth-form-light .input-group .select2-container--default .select2-selection--single:focus, .select2-container--default .auth .auth-form-light .input-group .select2-selection--single:focus, .auth .auth-form-light .input-group .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth .auth-form-light .input-group .select2-search__field:focus, .auth .auth-form-light .input-group .typeahead:focus, + .auth .auth-form-light .input-group .tt-query:focus, + .auth .auth-form-light .input-group .tt-hint:focus, .auth .auth-form-light .input-group .form-control:active, .auth .auth-form-light .input-group .select2-container--default .select2-selection--single:active, .select2-container--default .auth .auth-form-light .input-group .select2-selection--single:active, .auth .auth-form-light .input-group .select2-container--default .select2-selection--single .select2-search__field:active, .select2-container--default .select2-selection--single .auth .auth-form-light .input-group .select2-search__field:active, .auth .auth-form-light .input-group .typeahead:active, + .auth .auth-form-light .input-group .tt-query:active, + .auth .auth-form-light .input-group .tt-hint:active { + border-color: #e8ecf1; } + +.auth .auth-form-transparent { + background: transparent; } + .auth .auth-form-transparent .form-control, .auth .auth-form-transparent .select2-container--default .select2-selection--single, .select2-container--default .auth .auth-form-transparent .select2-selection--single, .auth .auth-form-transparent .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth .auth-form-transparent .select2-search__field, .auth .auth-form-transparent .typeahead, + .auth .auth-form-transparent .tt-query, + .auth .auth-form-transparent .tt-hint, + .auth .auth-form-transparent .input-group-text { + border-color: #d8d8d8; } + .auth .auth-form-transparent .form-control:focus, .auth .auth-form-transparent .select2-container--default .select2-selection--single:focus, .select2-container--default .auth .auth-form-transparent .select2-selection--single:focus, .auth .auth-form-transparent .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth .auth-form-transparent .select2-search__field:focus, .auth .auth-form-transparent .typeahead:focus, + .auth .auth-form-transparent .tt-query:focus, + .auth .auth-form-transparent .tt-hint:focus, .auth .auth-form-transparent .form-control:active, .auth .auth-form-transparent .select2-container--default .select2-selection--single:active, .select2-container--default .auth .auth-form-transparent .select2-selection--single:active, .auth .auth-form-transparent .select2-container--default .select2-selection--single .select2-search__field:active, .select2-container--default .select2-selection--single .auth .auth-form-transparent .select2-search__field:active, .auth .auth-form-transparent .typeahead:active, + .auth .auth-form-transparent .tt-query:active, + .auth .auth-form-transparent .tt-hint:active, + .auth .auth-form-transparent .input-group-text:focus, + .auth .auth-form-transparent .input-group-text:active { + border-color: #d8d8d8; } + .auth .auth-form-transparent select { + outline-color: #d8d8d8; } + +.auth.auth-img-bg { + padding: 0; } + @media (min-width: 768px) { + .auth.auth-img-bg .auth-form-transparent { + width: 55%; + margin: auto; } } + +.auth .brand-logo { + margin-bottom: 2rem; } + .auth .brand-logo img { + width: 150px; } + +.auth form .form-group { + margin-bottom: 1.5rem; } + .auth form .form-group label { + font-size: .8125rem; } + .auth form .form-group .form-control, .auth form .form-group .select2-container--default .select2-selection--single, .select2-container--default .auth form .form-group .select2-selection--single, .auth form .form-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth form .form-group .select2-search__field, .auth form .form-group .typeahead, + .auth form .form-group .tt-query, + .auth form .form-group .tt-hint { + background: transparent; + border-radius: 0; + font-size: .9375rem; } + +.auth form .auth-form-btn { + height: 50px; + line-height: 1.5; } + +.auth form .auth-link { + font-size: 0.875rem; } + .auth form .auth-link:hover { + color: initial; } + +/* Navbar */ +.navbar { + font-family: "Open Sans", sans-serif; + font-weight: 300; + background: #fff; + transition: background 0.25s ease; + -webkit-transition: background 0.25s ease; + -moz-transition: background 0.25s ease; + -ms-transition: background 0.25s ease; } + .navbar .navbar-brand { + width: 110px; } + .navbar .navbar-brand-wrapper { + transition: width 0.25s ease, background 0.25s ease; + -webkit-transition: width 0.25s ease, background 0.25s ease; + -moz-transition: width 0.25s ease, background 0.25s ease; + -ms-transition: width 0.25s ease, background 0.25s ease; + background: #181824; + width: 240px; + height: 70px; + padding: 0 1.75rem; } + @media (max-width: 991px) { + .navbar .navbar-brand-wrapper { + width: 55px; + padding-left: 15px; + padding-right: 15px; } } + .navbar .navbar-brand-wrapper .navbar-brand { + color: #27367f; + font-size: 1.5rem; + line-height: 48px; + margin-right: 0; + padding: .25rem 0; } + .navbar .navbar-brand-wrapper .navbar-brand:active, .navbar .navbar-brand-wrapper .navbar-brand:focus, .navbar .navbar-brand-wrapper .navbar-brand:hover { + color: #1b2658; } + .navbar .navbar-brand-wrapper .navbar-brand img { + width: calc(240px - 120px); + max-width: 100%; + height: 28px; + margin: auto; + vertical-align: middle; } + .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini { + display: none; } + @media screen and (max-width: 991px) { + .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } } + .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini img { + width: calc(70px - 35px); + max-width: 100%; + height: 28px; + margin: auto; + display: inline; } + .navbar .navbar-brand-wrapper .navbar-toggler { + color: #626262; + padding: 0; + margin-left: auto; } + @media screen and (max-width: 991px) { + .navbar .navbar-brand-wrapper .navbar-toggler { + display: none; } } + .sidebar-icon-only .navbar .navbar-brand-wrapper .navbar-toggler { + margin-right: auto; + margin-left: auto; } + .navbar .navbar-menu-wrapper { + transition: width 0.25s ease; + -webkit-transition: width 0.25s ease; + -moz-transition: width 0.25s ease; + -ms-transition: width 0.25s ease; + color: #111111; + padding-left: 24px; + padding-right: 24px; + width: calc(100% - 240px); + height: 70px; + -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.11); + box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.11); } + @media (max-width: 991px) { + .navbar .navbar-menu-wrapper { + width: auto; + padding-left: 15px; + padding-right: 15px; } } + .navbar .navbar-menu-wrapper .navbar-toggler { + border: 0; + color: inherit; + height: 70px; + border-radius: 0px; + padding-left: 5px; + padding-right: 20px; } + .navbar .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) { + font-size: 1.5rem; } + @media (max-width: 991px) { + .navbar .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) { + display: none; } } + @media (max-width: 991px) { + .navbar .navbar-menu-wrapper .navbar-toggler.navbar-toggler-right { + padding-left: 15px; + padding-right: 11px; + border-right: none; } } + .navbar .navbar-menu-wrapper .search-form { + position: relative; + margin-right: 15px; } + .navbar .navbar-menu-wrapper .search-form i { + font-size: 20px; + position: absolute; + left: 0; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + color: #626262; } + .navbar .navbar-menu-wrapper .search-form input { + background-color: transparent; + border: none; + cursor: pointer; + width: 0; + height: 35px; + padding: 0 0 0 20px; + position: relative; + -webkit-transition: width 400ms ease, background 400ms ease; + transition: width 400ms ease, background 400ms ease; } + .navbar .navbar-menu-wrapper .search-form input:focus { + background-color: transparent; + border-bottom: 1px solid #626262; + border-radius: 0; + padding-left: 30px; + background-position: 5px 7px; + cursor: text; + outline: 0; + width: 140px; } + .navbar .navbar-menu-wrapper .count-indicator { + position: relative; } + .navbar .navbar-menu-wrapper .count-indicator .count-symbol, + .navbar .navbar-menu-wrapper .count-indicator .count-number { + position: absolute; + border-radius: 100%; + border: 2px solid #ffffff; } + .navbar .navbar-menu-wrapper .count-indicator .count-symbol { + top: 17px; + right: -3px; + width: 10px; + height: 10px; } + .navbar .navbar-menu-wrapper .count-indicator .count-number { + min-width: 14px; + height: 14px; + font-size: .5rem; + color: #ffffff; + bottom: 16px; + right: -5px; + line-height: 1; + text-align: center; } + .navbar .navbar-menu-wrapper .count-indicator:after { + display: none; } + .navbar .navbar-menu-wrapper .navbar-nav { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link { + color: inherit; + font-size: 0.875rem; + margin-left: 15px; + margin-right: 15px; + height: 35px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + @media (max-width: 767px) { + .navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link { + margin-left: .8rem; + margin-right: .8rem; } } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link i { + font-size: 1.25rem; + color: #626262; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown { + height: 70px; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-toggle { + position: relative; + padding: 0 20px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-toggle:after { + position: absolute; + top: 50%; + right: 0; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + font-size: 14px; + color: grey; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu { + border: none; + border-radius: 5px; + -webkit-box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2); + box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2); } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown { + position: absolute; + font-size: 0.9rem; + margin-top: 0; + padding: 0; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-item { + margin-bottom: 0; + padding: 11px 13px; + cursor: pointer; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-item i { + font-size: 17px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-item .ellipsis { + max-width: 200px; + overflow: hidden; + text-overflow: ellipsis; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-divider { + margin: 0; } + @media (max-width: 991px) { + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown { + position: static; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown { + left: 20px; + right: 20px; + top: 70px; + width: calc(100% - 40px); } } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown { + position: relative; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown .dropdown-menu { + min-width: 250px; + margin-top: 9px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown .dropdown-menu .dropdown-header { + padding: 20px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown .dropdown-menu .dropdown-item { + padding: 10px 15px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown .dropdown-menu .dropdown-item .dropdown-item-icon { + margin-right: 15px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown .dropdown-toggle img { + margin-right: 14px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown { + margin-left: 24px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown .dropdown-menu { + width: 170px; + left: -15px !important; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown .dropdown-menu .dropdown-item { + padding-left: 22px; + padding-right: 12px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown .dropdown-menu .dropdown-item i { + margin-right: 15px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown .dropdown-toggle { + margin-right: 0; + margin-left: 0; + border-left: 1px solid #ecf0f4; + padding-left: 44px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown i { + font-size: 14px; } + .navbar .navbar-menu-wrapper .navbar-nav .nav-item .message-dropdown.count-indicator .count { + -webkit-transform: translate(-50%); + transform: translate(-50%); + position: absolute; + width: 10px; + height: 10px; + border-radius: 50%; + background-color: #ff4d6b; + font-size: 6px; + color: #ffffff; + text-align: center; + top: 4px; + left: 50%; } + @media (min-width: 992px) { + .navbar .navbar-menu-wrapper .navbar-nav.navbar-nav-right { + margin-left: auto; } } + +@media (max-width: 991px) { + .navbar { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + .navbar .navbar-brand-wrapper { + width: 75px; } + .navbar .navbar-brand-wrapper .navbar-brand.brand-logo { + display: none; } + .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini { + display: inline-block; } + .navbar-collapse { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin-top: 0.5rem; } } + +@media (max-width: 480px) { + .navbar .navbar-brand-wrapper { + width: 55px; } + .navbar .navbar-brand-wrapper .brand-logo-mini { + padding-top: 0px; } } + +/* Sidebar */ +.sidebar { + min-height: calc(100vh - 70px); + background: #181824; + font-family: "Open Sans", sans-serif; + padding: 0; + width: 240px; + z-index: 11; + transition: width 0.25s ease, background 0.25s ease; + -webkit-transition: width 0.25s ease, background 0.25s ease; + -moz-transition: width 0.25s ease, background 0.25s ease; + -ms-transition: width 0.25s ease, background 0.25s ease; } + .sidebar .nav { + overflow: hidden; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + margin-bottom: 60px; } + .sidebar .nav .nav-item { + padding: 0 1.75rem; + -webkit-transition-duration: 0.25s; + transition-duration: 0.25s; + transition-property: background; + -webkit-transition-property: background; } + .sidebar .nav .nav-item .collapse { + z-index: 999; } + .sidebar .nav .nav-item .nav-link { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + white-space: nowrap; + padding: 0.625rem 0 0.625rem 0; + color: #ffffff; + -webkit-transition-duration: 0.45s; + transition-duration: 0.45s; + transition-property: color; + -webkit-transition-property: color; } + :not(.sub-menu) .sidebar .nav .nav-item .nav-link { + border-top: 1px solid rgba(255, 255, 255, 0.11); } + .sidebar .nav .nav-item .nav-link i { + color: inherit; } + .sidebar .nav .nav-item .nav-link i.menu-icon { + font-size: 1.125rem; + line-height: 1; + margin-left: auto; + color: #626262; } + .sidebar .nav .nav-item .nav-link i.menu-icon:before { + vertical-align: middle; } + .sidebar .nav .nav-item .nav-link .menu-title { + color: inherit; + display: inline-block; + font-size: 0.875rem; + line-height: 1; + vertical-align: middle; } + .sidebar .nav .nav-item .nav-link .badge { + margin-right: auto; + margin-left: 1rem; } + .sidebar .nav .nav-item .nav-link[aria-expanded="true"] .menu-arrow:before { + content: "\f140"; } + .sidebar .nav .nav-item.active:not(.navbar-brand-mini-wrapper) { + background: #282828; } + .sidebar .nav .nav-item.active:not(.navbar-brand-mini-wrapper) > .nav-link .menu-title { + color: #b3b3b3; + font-family: "Open Sans", sans-serif; + font-weight: 600; } + .sidebar .nav .nav-item.active:not(.navbar-brand-mini-wrapper) > .nav-link i { + color: #38ce3c; } + .sidebar .nav .nav-item:not(.nav-category):hover { + background: #2c2c43; } + .sidebar .nav .nav-item.nav-profile { + max-width: 270px; + margin-top: 10px; + margin-bottom: 10px; } + .sidebar .nav .nav-item.nav-profile .nav-link { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + border-top: none; + padding: 10px 0; } + .sidebar .nav .nav-item.nav-profile .nav-link .profile-image { + margin-right: 15px; + position: relative; } + .rtl .sidebar .nav .nav-item.nav-profile .nav-link .profile-image { + margin-right: 0; + margin-left: 15px; } + .sidebar .nav .nav-item.nav-profile .nav-link .dot-indicator { + position: absolute; + top: 50%; + right: 0px; + -webkit-transform: translate(50%, -50%); + transform: translate(50%, -50%); + width: 7px; + height: 7px; + border-radius: 50%; } + .rtl .sidebar .nav .nav-item.nav-profile .nav-link .dot-indicator { + left: 0; + right: auto; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); } + .sidebar .nav .nav-item.nav-profile .nav-link .profile-name { + margin-bottom: 5px; + font-weight: 500; + font-size: 15px; } + .sidebar .nav .nav-item.nav-profile .nav-link .designation { + margin-bottom: 0; + font-weight: 400; + color: #9c9fa6; + font-size: 12px; } + .sidebar .nav .nav-item.nav-profile .nav-link .icon-container { + font-size: 16px; + position: relative; + color: #626262; + margin-left: auto; + -ms-flex-item-align: start; + align-self: flex-start; } + .rtl .sidebar .nav .nav-item.nav-profile .nav-link .icon-container { + margin-left: 0; + margin-right: auto; } + .sidebar-mini .sidebar .nav .nav-item.nav-profile .nav-link .icon-container { + margin-right: auto; } + .sidebar .nav .nav-item.nav-profile .nav-link .icon-container .dot-indicator { + top: 0; + -webkit-transform: none; + transform: none; + color: #626262; } + .sidebar .nav .nav-item.nav-category { + color: #38ce3c; + font-size: 13px; + font-weight: 700; + text-transform: uppercase; } + .sidebar .nav .nav-item.nav-category .nav-link { + border: none; } + .sidebar .nav .nav-item.nav-category ~ .nav-category .nav-link { + border-top: 1px solid rgba(255, 255, 255, 0.11); } + .sidebar .nav .nav-item.nav-category + .nav-item > .nav-link { + border-top: 1px solid rgba(255, 255, 255, 0.11); } + .sidebar .nav .nav-item.nav-category .nav-link { + color: inherit; + padding: 1rem 0 1.125rem; } + .sidebar-dark .sidebar .nav .nav-item.nav-category .nav-link { + color: inherit; } + .sidebar .nav .nav-item.pro-upgrade .nav-link { + padding-top: 2.25rem; } + .sidebar .nav .nav-item.pro-upgrade .nav-link .btn-upgrade { + background-image: -webkit-gradient(linear, right top, left top, from(#a25cff), to(#d78aff)); + background-image: linear-gradient(to left, #a25cff, #d78aff); + background-color: #a25cff; + color: #ffffff; } + .sidebar .nav .nav-item.pro-upgrade:hover { + background-color: transparent !important; } + .sidebar-dark .sidebar .nav .nav-item.pro-upgrade:hover { + background-color: transparent !important; } + .sidebar .nav .nav-item.navbar-brand-mini-wrapper { + display: none; } + .sidebar .nav .nav-item.navbar-brand-mini-wrapper .nav-link { + width: 100%; } + .sidebar-icon-only .sidebar .nav .nav-item.navbar-brand-mini-wrapper .nav-link { + margin: 0; } + .sidebar-icon-only .sidebar .nav .nav-item.navbar-brand-mini-wrapper { + display: block; } + .sidebar .nav:not(.sub-menu) > .nav-item:hover:not(.nav-category):not(.nav-profile) > .nav-link { + color: #ffffff; } + .sidebar .nav.sub-menu { + margin-bottom: 20px; + margin-top: 0; + list-style: none; } + .sidebar .nav.sub-menu .nav-item { + padding: 0; } + .sidebar .nav.sub-menu .nav-item .nav-link { + color: #ffffff; + padding: 0.75rem 2rem 0.75rem 2rem; + position: relative; + font-size: 0.8125rem; + line-height: 1; + height: auto; + border-top: 0; } + .sidebar .nav.sub-menu .nav-item .nav-link:before { + content: "\e606"; + font-family: "simple-line-icons"; + display: block; + position: absolute; + left: 0px; + top: 50%; + -webkit-transform: translateY(-50%); + transform: translateY(-50%); + color: white; + font-size: .75rem; } + .sidebar .nav.sub-menu .nav-item .nav-link.active { + color: #b3b3b3; + background: transparent; } + .sidebar .nav.sub-menu .nav-item .nav-link:hover { + color: #b3b3b3; } + .sidebar .nav.sub-menu .nav-item:hover { + background: transparent; } + +/* style for off-canvas menu*/ +@media screen and (max-width: 991px) { + .sidebar-offcanvas { + position: fixed; + max-height: calc(100vh - 70px); + top: 70px; + bottom: 0; + overflow: auto; + right: -240px; + -webkit-transition: all 0.25s ease-out; + transition: all 0.25s ease-out; } + .sidebar-offcanvas.active { + right: 0; } } + +.page-body-wrapper { + min-height: calc(100vh - 70px); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + padding-left: 0; + padding-right: 0; } + .page-body-wrapper.full-page-wrapper { + width: 100%; + min-height: 100vh; } + +.navbar.fixed-top + .page-body-wrapper { + padding-top: 70px; } + +.main-panel { + -webkit-transition: width 0.25s ease, margin 0.25s ease; + transition: width 0.25s ease, margin 0.25s ease; + width: calc(100% - 240px); + min-height: calc(100vh - 70px); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + @media (max-width: 991px) { + .main-panel { + margin-left: 0; + width: 100%; } } + +.content-wrapper { + background: #ecf0f4; + padding: 2.75rem 1.5rem 0; + width: 100%; + -webkit-box-flex: 1; + -ms-flex-positive: 1; + flex-grow: 1; } + +.purchace-popup .close { + color: inherit; + opacity: 1; } + @media (max-width: 991.98px) { + .purchace-popup .close { + position: absolute; + top: 7px; + right: 10px; } } + +.quick-action-toolbar .card .card-header { + color: #ffffff; + padding: 12px 30px; + background-image: -webkit-gradient(linear, right top, left top, from(#fad961), to(#f76b1c)); + background-image: linear-gradient(to left, #fad961, #f76b1c); + border: 0; + border-radius: 0; } + .quick-action-toolbar .card .card-header h5 { + font-weight: 600; + font-size: 18px; } + .quick-action-toolbar .card .card-header p { + color: inherit; } + .quick-action-toolbar .card .card-header i { + margin-left: 15px; + -ms-flex-item-align: center; + align-self: center; } + +.quick-action-toolbar .card .quick-action-btns .btn-light { + background-color: transparent; + border: none; + font-size: 14px; + color: #111111; + font-weight: 600; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .quick-action-toolbar .card .quick-action-btns .btn-light i { + color: #626262; + margin-right: 15px; + font-size: 18px; } + .rtl .quick-action-toolbar .card .quick-action-btns .btn-light i { + margin-left: 15px; + margin-right: 0; } + +.quick-action-toolbar .card .quick-action-btns .btn-wrapper { + border-right: 1px solid #e8ecf1; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + .quick-action-toolbar .card .quick-action-btns .btn-wrapper button { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + @media screen and (max-width: 767px) { + .quick-action-toolbar .card .quick-action-btns .btn-wrapper:first-child { + border-bottom: 1px solid #e8ecf1; } } + @media screen and (max-width: 576px) { + .quick-action-toolbar .card .quick-action-btns .btn-wrapper:first-child { + border-right: none; } } + @media screen and (max-width: 767px) { + .quick-action-toolbar .card .quick-action-btns .btn-wrapper:nth-child(2) { + border-right: none; + border-bottom: 1px solid #e8ecf1; } } + @media screen and (max-width: 576px) { + .quick-action-toolbar .card .quick-action-btns .btn-wrapper:nth-child(3) { + border-right: none; + border-bottom: 1px solid #e8ecf1; } } + .quick-action-toolbar .card .quick-action-btns .btn-wrapper:last-child { + border: none; } + +.income-expense-summary-chart-text h5 { + font-size: 18px; + font-weight: 600; } + +.income-expense-summary-chart-text h3 { + font-size: 24px; + font-weight: bold; } + +.income-expense-summary-chart-legend { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .income-expense-summary-chart-legend span { + display: inline-block; + width: 14px; + height: 14px; + border: 2px solid transparent; + margin-right: 10px; } + .rtl .income-expense-summary-chart-legend span { + margin-left: 10px; + margin-right: 0; } + +#income-expense-summary-chart-daterange { + width: 280px; + border-radius: 4px; + border: solid 1px #e8ecf1; + background-color: #ffffff; + color: #969696; } + #income-expense-summary-chart-daterange .input-group-text { + background-color: transparent; + color: inherit; + padding: 10px; + border: 0; } + #income-expense-summary-chart-daterange .form-control, #income-expense-summary-chart-daterange .select2-container--default .select2-selection--single, .select2-container--default #income-expense-summary-chart-daterange .select2-selection--single, #income-expense-summary-chart-daterange .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single #income-expense-summary-chart-daterange .select2-search__field, #income-expense-summary-chart-daterange .typeahead, + #income-expense-summary-chart-daterange .tt-query, + #income-expense-summary-chart-daterange .tt-hint { + border: 0; + font-size: 12px; + font-weight: 600; + color: inherit; + padding: 0; } + +.income-expense-summary-chart { + direction: ltr; } + .income-expense-summary-chart .ct-chart .ct-series .ct-line { + stroke-width: 3px; + stroke-dasharray: 0; } + .income-expense-summary-chart .ct-chart .ct-series-a .ct-line { + stroke: #6469df; } + .income-expense-summary-chart .ct-chart .ct-series-a .ct-area { + fill: #6469df; } + .income-expense-summary-chart .ct-chart .ct-series-b .ct-line { + stroke: #33c92d; } + .income-expense-summary-chart .ct-chart .ct-series-b .ct-area { + fill: #33c92d; } + @media screen and (max-width: 480px) { + .income-expense-summary-chart .ct-chart .ct-labels .ct-label.ct-horizontal { + -webkit-transform: rotate(-90deg) translateY(-50%); + transform: rotate(-90deg) translateY(-50%); } } + +.ct-chart .ct-line { + stroke-dasharray: 0; } + +.report-summary-header { + border-bottom: solid 1px #e8ecf1; } + +.report-inner-cards-wrapper { + padding-top: 25px; } + .report-inner-cards-wrapper .report-inner-card { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + border-right: solid 1px #e8ecf1; + padding: 0 40px; } + .rtl .report-inner-cards-wrapper .report-inner-card { + border-right: none; + border-left: solid 1px #e8ecf1; } + @media screen and (max-width: 1199px) { + .report-inner-cards-wrapper .report-inner-card { + padding-top: 12.5px; + padding-bottom: 12.5px; } } + .report-inner-cards-wrapper .report-inner-card:first-child { + padding-left: 15px; } + .rtl .report-inner-cards-wrapper .report-inner-card:first-child { + padding-right: 15px; + padding-left: 40px; } + @media screen and (max-width: 1199px) { + .report-inner-cards-wrapper .report-inner-card:first-child { + border-bottom: solid 1px #e8ecf1; } } + @media screen and (max-width: 767px) { + .report-inner-cards-wrapper .report-inner-card:first-child { + border-right: none; + padding-right: 12.5px; } + .rtl .report-inner-cards-wrapper .report-inner-card:first-child { + border-left: none; + padding-left: 12.5px; } } + @media screen and (max-width: 1199px) { + .report-inner-cards-wrapper .report-inner-card:nth-child(2) { + padding-right: 12.5px; + border-bottom: solid 1px #e8ecf1; + border-right: none; } + .rtl .report-inner-cards-wrapper .report-inner-card:nth-child(2) { + border-left: none; + padding-left: 12.5px; + padding-right: 40px; } } + @media screen and (max-width: 767px) { + .report-inner-cards-wrapper .report-inner-card:nth-child(2) { + padding-left: 12.5px; } + .rtl .report-inner-cards-wrapper .report-inner-card:nth-child(2) { + padding-right: 12.5px; } } + @media screen and (max-width: 1199px) { + .report-inner-cards-wrapper .report-inner-card:nth-child(3) { + padding-left: 12.5px; } + .rtl .report-inner-cards-wrapper .report-inner-card:nth-child(3) { + padding-left: 40px; + padding-right: 12.5px; } } + @media screen and (max-width: 767px) { + .report-inner-cards-wrapper .report-inner-card:nth-child(3) { + border-right: none; + padding-right: 12.5px; + border-bottom: solid 1px #e8ecf1; } + .rtl .report-inner-cards-wrapper .report-inner-card:nth-child(3) { + border-left: none; + padding-left: 12.5px; } } + .report-inner-cards-wrapper .report-inner-card:last-child { + border-right: 0; + padding-right: 15px; } + .rtl .report-inner-cards-wrapper .report-inner-card:last-child { + border-left: none; + padding-left: 15px; + padding-right: 40px; } + @media screen and (max-width: 767px) { + .report-inner-cards-wrapper .report-inner-card:last-child { + border-right: none; + padding-left: 12.5px; } + .rtl .report-inner-cards-wrapper .report-inner-card:last-child { + border-left: none; + padding-right: 12.5px; } } + .report-inner-cards-wrapper .report-inner-card .inner-card-text { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; } + .report-inner-cards-wrapper .report-inner-card .report-title { + font-size: 14px; + font-weight: 600; + color: #111111; } + .report-inner-cards-wrapper .report-inner-card h4 { + font-weight: bold; } + .report-inner-cards-wrapper .report-inner-card .report-count { + font-size: 14px; + color: #8e32e9; } + .report-inner-cards-wrapper .report-inner-card .inner-card-icon { + width: 62px; + height: 62px; + font-size: 25px; + color: #ffffff; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + margin-left: auto; } + .rtl .report-inner-cards-wrapper .report-inner-card .inner-card-icon { + margin-left: 0; + margin-right: auto; } + +.aligner-wrapper { + position: relative; } + .aligner-wrapper .wrapper { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); } + +.square-indicator { + display: inline-block; + width: 13px; + height: 13px; } + .square-indicator + p { + font-size: 12px; + font-weight: 600; + color: #a7afb7; } + +#performance-indicator-chart .ct-series.ct-series-a line { + stroke: #ff4d6b; } + +#performance-indicator-chart .ct-series.ct-series-b line { + stroke: #8e32e9; } + +#performance-indicator-chart .ct-series.ct-series-c line { + stroke: #1bdbe0; } + +#performance-indicator-chart .ct-series .ct-bar { + stroke-width: 8px; + stroke-linecap: round; } + @media screen and (max-width: 480px) { + #performance-indicator-chart .ct-series .ct-bar { + stroke-width: 4px; } } + +@media screen and (max-width: 480px) { + #performance-indicator-chart .ct-labels .ct-label.ct-horizontal { + -webkit-transform: rotate(-90deg) translateY(20%); + transform: rotate(-90deg) translateY(20%); } } + +.performane-indicator-card .data-time-range { + color: #a7afb7; + font-size: 12px; + font-weight: 600; + margin-left: 20px; } + .performane-indicator-card .data-time-range.active { + color: #111111; } + +.table td img.gateway-icon { + width: 20px; + height: 20px; + min-width: 20px; } + +.pagination .page-item .page-link { + font-size: 12px; + font-weight: 600; } + @media screen and (max-width: 576px) { + .pagination .page-item .page-link { + padding: 0.25rem 0.5rem; } } + +/*# sourceMappingURL=style.css.map */ diff --git a/INCUBATE/incubate/incubate/static/css/style.css.map b/INCUBATE/incubate/incubate/static/css/style.css.map new file mode 100644 index 0000000000000000000000000000000000000000..11ca00c9621ae99f23b6949732e4d343a0e9a79a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/css/style.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["style.scss","style.css","shared/_fonts.scss","../node_modules/compass-mixins/lib/animation/_core.scss","../node_modules/compass-mixins/lib/animation/animate/_attention-seekers.scss","../node_modules/compass-mixins/lib/compass/css3/_shared.scss","../node_modules/compass-mixins/lib/compass/css3/_transform.scss","../node_modules/compass-mixins/lib/animation/animate/bouncing/_bouncing-exits.scss","../node_modules/compass-mixins/lib/animation/animate/bouncing/_bouncing-entrances.scss","../node_modules/compass-mixins/lib/animation/animate/fading/_fading-exits.scss","../node_modules/compass-mixins/lib/animation/animate/fading/_fading-entrances.scss","../node_modules/compass-mixins/lib/animation/animate/_flippers.scss","../node_modules/compass-mixins/lib/compass/css3/_opacity.scss","../node_modules/compass-mixins/lib/animation/animate/_lightspeed.scss","../node_modules/compass-mixins/lib/animation/animate/rotating/_rotating-exits.scss","../node_modules/compass-mixins/lib/animation/animate/rotating/_rotating-entrances.scss","../node_modules/compass-mixins/lib/animation/animate/_specials.scss","../node_modules/bootstrap/scss/bootstrap.scss","../node_modules/bootstrap/scss/_root.scss","../node_modules/bootstrap/scss/_reboot.scss","light/_variables.scss","../node_modules/bootstrap/scss/_variables.scss","../node_modules/bootstrap/scss/vendor/_rfs.scss","../node_modules/bootstrap/scss/mixins/_hover.scss","../node_modules/bootstrap/scss/_type.scss","../node_modules/bootstrap/scss/mixins/_lists.scss","../node_modules/bootstrap/scss/_images.scss","../node_modules/bootstrap/scss/mixins/_image.scss","../node_modules/bootstrap/scss/mixins/_border-radius.scss","../node_modules/bootstrap/scss/_code.scss","../node_modules/bootstrap/scss/_grid.scss","../node_modules/bootstrap/scss/mixins/_grid.scss","../node_modules/bootstrap/scss/mixins/_breakpoints.scss","../node_modules/bootstrap/scss/mixins/_grid-framework.scss","../node_modules/bootstrap/scss/_tables.scss","../node_modules/bootstrap/scss/mixins/_table-row.scss","../node_modules/bootstrap/scss/_functions.scss","../node_modules/bootstrap/scss/_forms.scss","../node_modules/bootstrap/scss/mixins/_transition.scss","../node_modules/bootstrap/scss/mixins/_forms.scss","../node_modules/bootstrap/scss/mixins/_gradients.scss","../node_modules/bootstrap/scss/_buttons.scss","../node_modules/bootstrap/scss/mixins/_buttons.scss","../node_modules/bootstrap/scss/_transitions.scss","../node_modules/bootstrap/scss/_dropdown.scss","../node_modules/bootstrap/scss/mixins/_caret.scss","../node_modules/bootstrap/scss/mixins/_nav-divider.scss","../node_modules/bootstrap/scss/_button-group.scss","../node_modules/bootstrap/scss/_input-group.scss","../node_modules/bootstrap/scss/_custom-forms.scss","../node_modules/bootstrap/scss/_nav.scss","../node_modules/bootstrap/scss/_navbar.scss","../node_modules/bootstrap/scss/_card.scss","../node_modules/bootstrap/scss/_breadcrumb.scss","../node_modules/bootstrap/scss/_pagination.scss","../node_modules/bootstrap/scss/mixins/_pagination.scss","../node_modules/bootstrap/scss/_badge.scss","../node_modules/bootstrap/scss/mixins/_badge.scss","../node_modules/bootstrap/scss/_jumbotron.scss","../node_modules/bootstrap/scss/_alert.scss","../node_modules/bootstrap/scss/mixins/_alert.scss","../node_modules/bootstrap/scss/_progress.scss","../node_modules/bootstrap/scss/_media.scss","../node_modules/bootstrap/scss/_list-group.scss","../node_modules/bootstrap/scss/mixins/_list-group.scss","../node_modules/bootstrap/scss/_close.scss","../node_modules/bootstrap/scss/_toasts.scss","../node_modules/bootstrap/scss/_modal.scss","../node_modules/bootstrap/scss/_tooltip.scss","../node_modules/bootstrap/scss/mixins/_reset-text.scss","../node_modules/bootstrap/scss/_popover.scss","../node_modules/bootstrap/scss/_carousel.scss","../node_modules/bootstrap/scss/mixins/_clearfix.scss","../node_modules/bootstrap/scss/_spinners.scss","../node_modules/bootstrap/scss/utilities/_align.scss","../node_modules/bootstrap/scss/mixins/_background-variant.scss","../node_modules/bootstrap/scss/utilities/_background.scss","../node_modules/bootstrap/scss/utilities/_borders.scss","../node_modules/bootstrap/scss/utilities/_display.scss","../node_modules/bootstrap/scss/utilities/_embed.scss","../node_modules/bootstrap/scss/utilities/_flex.scss","../node_modules/bootstrap/scss/utilities/_float.scss","../node_modules/bootstrap/scss/utilities/_interactions.scss","../node_modules/bootstrap/scss/utilities/_overflow.scss","../node_modules/bootstrap/scss/utilities/_position.scss","../node_modules/bootstrap/scss/utilities/_screenreaders.scss","../node_modules/bootstrap/scss/mixins/_screen-reader.scss","../node_modules/bootstrap/scss/utilities/_shadows.scss","../node_modules/bootstrap/scss/utilities/_sizing.scss","../node_modules/bootstrap/scss/utilities/_spacing.scss","../node_modules/bootstrap/scss/utilities/_stretched-link.scss","../node_modules/bootstrap/scss/utilities/_text.scss","../node_modules/bootstrap/scss/mixins/_text-truncate.scss","../node_modules/bootstrap/scss/mixins/_text-emphasis.scss","../node_modules/bootstrap/scss/mixins/_text-hide.scss","../node_modules/bootstrap/scss/utilities/_visibility.scss","../node_modules/bootstrap/scss/_print.scss","shared/mixins/_misc.scss","shared/mixins/_animation.scss","shared/_reset.scss","shared/_typography.scss","shared/mixins/_blockqoute.scss","shared/_misc.scss","shared/_footer.scss","shared/_utilities.scss","shared/_demo.scss","shared/components/_buttons.scss","shared/mixins/_buttons.scss","shared/components/_cards.scss","shared/mixins/_cards.scss","shared/components/_checkbox-radio.scss","shared/components/_dropdown.scss","shared/components/_forms.scss","shared/components/_icons.scss","shared/components/_lists.scss","shared/components/_modals.scss","shared/components/_pagination.scss","shared/mixins/_pagination.scss","shared/components/_tables.scss","shared/components/_preview.scss","light/components/plugin-overrides/_chartist.scss","light/components/plugin-overrides/_select2.scss","light/components/plugin-overrides/_typeahead.scss","shared/landing-screens/_auth.scss","../node_modules/compass-mixins/lib/compass/css3/_user-interface.scss","_navbar.scss","_variables.scss","_sidebar.scss","vertical/_vertical-wrapper.scss","_dashboard.scss"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oECqGoE;ADEpE,sEAAA;AACA,qDAAA;AAIA,sEAAA;AACA,sCAAA;AAIA,sEAAA;AACA,mCAAA;AElFA,6FAAY;;ACoBN;EClDJ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA,EAAA;;AD6DR;ECtEJ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA,EAAA;;ADyCR;ECpCJ;ICFuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EFtZ5B;ICJuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EFpZ5B;ICNuD,oCC0Z3B;IDrZmC,4BCqZnC,EAAA;EFlZ5B;ICRuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EFhZ5B;ICVuD,oCC0Z3B;IDrZmC,4BCqZnC,EAAA;EF9Y5B;ICZuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EF5Y5B;ICduD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA,EAAA;;AHhWxB;ECxDJ;ICFuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EFtZ5B;ICJuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EFpZ5B;ICNuD,oCC0Z3B;IDrZmC,4BCqZnC,EAAA;EFlZ5B;ICRuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EFhZ5B;ICVuD,oCC0Z3B;IDrZmC,4BCqZnC,EAAA;EF9Y5B;ICZuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EF5Y5B;ICduD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA,EAAA;;AHpXxB;EClBJ;ICpBuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA;EFtX5B;ICtBuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EFpX5B;ICxBuD,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EFlX5B;IC1BuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EFhX5B;IC5BuD,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EF9W5B;IC9BuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EF5W5B;IChCuD,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EF1W5B;IClCuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EFxW5B;ICpCuD,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EFtW5B;ICtCuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EFpW5B;ICxCuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA,EAAA;;AHlVxB;ECtCJ;ICpBuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA;EFtX5B;ICtBuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EFpX5B;ICxBuD,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EFlX5B;IC1BuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EFhX5B;IC5BuD,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EF9W5B;IC9BuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EF5W5B;IChCuD,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EF1W5B;IClCuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EFxW5B;ICpCuD,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EFtW5B;ICtCuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EFpW5B;ICxCuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA,EAAA;;AHtWxB;ECQJ;IC9CuD,8BCuOtB;IDlO8B,sBCkO9B,EAAA;EFvLjC;IChDuD,2CDiDV;IC5CkB,mCD4ClB,EAAA;EAC7C;IClDuD,2CDmDV;IC9CkB,mCD8ClB,EAAA;EAC7C;ICpDuD,0CDqDX;IChDmB,kCDgDnB,EAAA;EAC5C;ICtDuD,2CDuDV;IClDkB,mCDkDlB,EAAA;EAC7C;ICxDuD,0CDyDX;ICpDmB,kCDoDnB,EAAA;EAC5C;IC1DuD,2CD2DV;ICtDkB,mCDsDlB,EAAA;EAC7C;IC5DuD,0CD6DX;ICxDmB,kCDwDnB,EAAA;EAC5C;IC9DuD,2CD+DV;IC1DkB,mCD0DlB,EAAA;EAC7C;IChEuD,0CDiEX;IC5DmB,kCD4DnB,EAAA;EAC5C;IClEuD,qCDmEhB;IC9DwB,6BD8DxB,EAAA,EAAA;;ADTnC;ECZJ;IC9CuD,8BCuOtB;IDlO8B,sBCkO9B,EAAA;EFvLjC;IChDuD,2CDiDV;IC5CkB,mCD4ClB,EAAA;EAC7C;IClDuD,2CDmDV;IC9CkB,mCD8ClB,EAAA;EAC7C;ICpDuD,0CDqDX;IChDmB,kCDgDnB,EAAA;EAC5C;ICtDuD,2CDuDV;IClDkB,mCDkDlB,EAAA;EAC7C;ICxDuD,0CDyDX;ICpDmB,kCDoDnB,EAAA;EAC5C;IC1DuD,2CD2DV;ICtDkB,mCDsDlB,EAAA;EAC7C;IC5DuD,0CD6DX;ICxDmB,kCDwDnB,EAAA;EAC5C;IC9DuD,2CD+DV;IC1DkB,mCD0DlB,EAAA;EAC7C;IChEuD,0CDiEX;IC5DmB,kCD4DnB,EAAA;EAC5C;IClEuD,qCDmEhB;IC9DwB,6BD8DxB,EAAA,EAAA;;AD7BnC;ECkCJ;ICxEuD,wCCsC/B;IDjCuC,gCCiCvC,EAAA;EFoCxB;IC1EuD,gCCkThC;ID7SwC,wBC6SxC,EAAA;EFtOvB;IC5EuD,iCCkThC;ID7SwC,yBC6SxC,EAAA;EFpOvB;IC9EuD,+BCkThC;ID7SwC,uBC6SxC,EAAA;EFlOvB;IChFuD,gCCkThC;ID7SwC,wBC6SxC,EAAA;EFhOvB;IClFuD,+BCkThC;ID7SwC,uBC6SxC,EAAA,EAAA;;AHxPnB;ECcJ;ICxEuD,wCCsC/B;IDjCuC,gCCiCvC,EAAA;EFoCxB;IC1EuD,gCCkThC;ID7SwC,wBC6SxC,EAAA;EFtOvB;IC5EuD,iCCkThC;ID7SwC,yBC6SxC,EAAA;EFpOvB;IC9EuD,+BCkThC;ID7SwC,uBC6SxC,EAAA;EFlOvB;IChFuD,gCCkThC;ID7SwC,wBC6SxC,EAAA;EFhOvB;IClFuD,+BCkThC;ID7SwC,uBC6SxC,EAAA,EAAA;;AH5QnB;ECkDJ;ICxFuD,iCC4Y3B;IDvYmC,yBCuYnC,EAAA;EFlT5B;IC1FuD,iDD2FJ;ICtFY,yCDsFZ,EAAA;EACnD;IC5FuD,+CD6FN;ICxFc,uCDwFd,EAAA;EACjD;IC9FuD,iDD+FJ;IC1FY,yCD0FZ,EAAA;EACnD;IChGuD,+CDiGN;IC5Fc,uCD4Fd,EAAA;EACjD;IClGuD,gDDmGL;IC9Fa,wCD8Fb,EAAA;EAClD;ICpGuD,iCDqGpB;IChG4B,yBDgG5B,EAAA,EAAA;;AD3C/B;EC8BJ;ICxFuD,iCC4Y3B;IDvYmC,yBCuYnC,EAAA;EFlT5B;IC1FuD,iDD2FJ;ICtFY,yCDsFZ,EAAA;EACnD;IC5FuD,+CD6FN;ICxFc,uCDwFd,EAAA;EACjD;IC9FuD,iDD+FJ;IC1FY,yCD0FZ,EAAA;EACnD;IChGuD,+CDiGN;IC5Fc,uCD4Fd,EAAA;EACjD;IClGuD,gDDmGL;IC9Fa,wCD8Fb,EAAA;EAClD;ICpGuD,iCDqGpB;IChG4B,yBDgG5B,EAAA,EAAA;;AD/D/B;ECoEJ;IC1GuD,8BCuOtB;IDlO8B,sBCkO9B,EAAA;EF3HjC;IC5GuD,kCCuOtB;IDlO8B,0BCkO9B,EAAA;EFzHjC;IC9GuD,8BCuOtB;IDlO8B,sBCkO9B,EAAA,EAAA;;AH7K7B;ECgDJ;IC1GuD,8BCuOtB;IDlO8B,sBCkO9B,EAAA;EF3HjC;IC5GuD,kCCuOtB;IDlO8B,0BCkO9B,EAAA;EFzHjC;IC9GuD,8BCuOtB;IDlO8B,sBCkO9B,EAAA,EAAA;;AHjM7B;EC8EJ;ICpHuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EFlWtB;ICtHuD,+BCwdjC;IDndyC,uBCmdzC,EAAA;EFhWtB;ICxHuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EF9VtB;IC1HuD,+BCwdjC;IDndyC,uBCmdzC,EAAA;EF5VtB;IC5HuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EF1VtB;IC9HuD,+BCwdjC;IDndyC,uBCmdzC,EAAA;EFxVtB;IChIuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EFtVtB;IClIuD,+BCwdjC;IDndyC,uBCmdzC,EAAA;EFpVtB;ICpIuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EFlVtB;ICtIuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EFhVtB;ICxIuD,8BCwdjC;IDndyC,sBCmdzC,EAAA,EAAA;;AH9ZlB;EC0DJ;ICpHuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EFlWtB;ICtHuD,+BCwdjC;IDndyC,uBCmdzC,EAAA;EFhWtB;ICxHuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EF9VtB;IC1HuD,+BCwdjC;IDndyC,uBCmdzC,EAAA;EF5VtB;IC5HuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EF1VtB;IC9HuD,+BCwdjC;IDndyC,uBCmdzC,EAAA;EFxVtB;IChIuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EFtVtB;IClIuD,+BCwdjC;IDndyC,uBCmdzC,EAAA;EFpVtB;ICpIuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EFlVtB;ICtIuD,8BCwdjC;IDndyC,sBCmdzC,EAAA;EFhVtB;ICxIuD,8BCwdjC;IDndyC,sBCmdzC,EAAA,EAAA;;AHlblB;EIlDJ;IFYuD,8BCuOtB;IDlO8B,sBCkO9B,EAAA;ECjPjC;IFUuD,oCCuOtB;IDlO8B,4BCkO9B,EAAA;EC/OjC;IACE,UAAU;IFO2C,kCCuOtB;IDlO8B,0BCkO9B,EAAA;EC5OjC;IACE,UAAU;IFI2C,kCCuOtB;IDlO8B,0BCkO9B,EAAA,EAAA;;AH7K7B;EItEJ;IFYuD,8BCuOtB;IDlO8B,sBCkO9B,EAAA;ECjPjC;IFUuD,oCCuOtB;IDlO8B,4BCkO9B,EAAA;EC/OjC;IACE,UAAU;IFO2C,kCCuOtB;IDlO8B,0BCkO9B,EAAA;EC5OjC;IACE,UAAU;IFI2C,kCCuOtB;IDlO8B,0BCkO9B,EAAA,EAAA;;AHjM7B;EIpCJ;IFFuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;ECtZ5B;IACE,UAAU;IFL2C,mCC0Z3B;IDrZmC,2BCqZnC,EAAA;ECnZ5B;IACE,UAAU;IFR2C,sCC0Z3B;IDrZmC,8BCqZnC,EAAA,EAAA;;AHhWxB;EIxDJ;IFFuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;ECtZ5B;IACE,UAAU;IFL2C,mCC0Z3B;IDrZmC,2BCqZnC,EAAA;ECnZ5B;IACE,UAAU;IFR2C,sCC0Z3B;IDrZmC,8BCqZnC,EAAA,EAAA;;AHpXxB;EIxBJ;IFduD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EC1Y5B;IACE,UAAU;IFjB2C,oCC0Z3B;IDrZmC,4BCqZnC,EAAA;ECvY5B;IACE,UAAU;IFpB2C,qCC0Z3B;IDrZmC,6BCqZnC,EAAA,EAAA;;AHhWxB;EI5CJ;IFduD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EC1Y5B;IACE,UAAU;IFjB2C,oCC0Z3B;IDrZmC,4BCqZnC,EAAA;ECvY5B;IACE,UAAU;IFpB2C,qCC0Z3B;IDrZmC,6BCqZnC,EAAA,EAAA;;AHpXxB;EIZJ;IF1BuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA;EChX5B;IACE,UAAU;IF7B2C,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EC7W5B;IACE,UAAU;IFhC2C,sCC4Y3B;IDvYmC,8BCuYnC,EAAA,EAAA;;AHlVxB;EIhCJ;IF1BuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA;EChX5B;IACE,UAAU;IF7B2C,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EC7W5B;IACE,UAAU;IFhC2C,sCC4Y3B;IDvYmC,8BCuYnC,EAAA,EAAA;;AHtWxB;EIAJ;IFtCuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA;ECpW5B;IACE,UAAU;IFzC2C,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;ECjW5B;IACE,UAAU;IF5C2C,qCC4Y3B;IDvYmC,6BCuYnC,EAAA,EAAA;;AHlVxB;EIpBJ;IFtCuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA;ECpW5B;IACE,UAAU;IFzC2C,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;ECjW5B;IACE,UAAU;IF5C2C,qCC4Y3B;IDvYmC,6BCuYnC,EAAA,EAAA;;AHtWxB;EKlDJ;IACE,UAAU;IHW2C,kCCuOtB;IDlO8B,0BCkO9B,EAAA;EEhPjC;IACE,UAAU;IHQ2C,oCCuOtB;IDlO8B,4BCkO9B,EAAA;EE7OjC;IHMuD,kCCuOtB;IDlO8B,0BCkO9B,EAAA;EE3OjC;IHIuD,8BCuOtB;IDlO8B,sBCkO9B,EAAA,EAAA;;AH7K7B;EKtEJ;IACE,UAAU;IHW2C,kCCuOtB;IDlO8B,0BCkO9B,EAAA;EEhPjC;IACE,UAAU;IHQ2C,oCCuOtB;IDlO8B,4BCkO9B,EAAA;EE7OjC;IHMuD,kCCuOtB;IDlO8B,0BCkO9B,EAAA;EE3OjC;IHIuD,8BCuOtB;IDlO8B,sBCkO9B,EAAA,EAAA;;AHjM7B;EKpCJ;IACE,UAAU;IHH2C,sCC0Z3B;IDrZmC,8BCqZnC,EAAA;EErZ5B;IACE,UAAU;IHN2C,mCC0Z3B;IDrZmC,2BCqZnC,EAAA;EElZ5B;IHRuD,oCC0Z3B;IDrZmC,4BCqZnC,EAAA;EEhZ5B;IHVuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA,EAAA;;AHhWxB;EKxDJ;IACE,UAAU;IHH2C,sCC0Z3B;IDrZmC,8BCqZnC,EAAA;EErZ5B;IACE,UAAU;IHN2C,mCC0Z3B;IDrZmC,2BCqZnC,EAAA;EElZ5B;IHRuD,oCC0Z3B;IDrZmC,4BCqZnC,EAAA;EEhZ5B;IHVuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA,EAAA;;AHpXxB;EKtBJ;IACE,UAAU;IHjB2C,qCC0Z3B;IDrZmC,6BCqZnC,EAAA;EEvY5B;IACE,UAAU;IHpB2C,oCC0Z3B;IDrZmC,4BCqZnC,EAAA;EEpY5B;IHtBuD,mCC0Z3B;IDrZmC,2BCqZnC,EAAA;EElY5B;IHxBuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA,EAAA;;AHhWxB;EK1CJ;IACE,UAAU;IHjB2C,qCC0Z3B;IDrZmC,6BCqZnC,EAAA;EEvY5B;IACE,UAAU;IHpB2C,oCC0Z3B;IDrZmC,4BCqZnC,EAAA;EEpY5B;IHtBuD,mCC0Z3B;IDrZmC,2BCqZnC,EAAA;EElY5B;IHxBuD,gCC0Z3B;IDrZmC,wBCqZnC,EAAA,EAAA;;AHpXxB;EKRJ;IACE,UAAU;IH/B2C,qCC4Y3B;IDvYmC,6BCuYnC,EAAA;EE3W5B;IACE,UAAU;IHlC2C,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EExW5B;IHpCuD,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EEtW5B;IHtCuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA,EAAA;;AHlVxB;EK5BJ;IACE,UAAU;IH/B2C,qCC4Y3B;IDvYmC,6BCuYnC,EAAA;EE3W5B;IACE,UAAU;IHlC2C,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EExW5B;IHpCuD,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EEtW5B;IHtCuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA,EAAA;;AHtWxB;EKMJ;IACE,UAAU;IH7C2C,sCC4Y3B;IDvYmC,8BCuYnC,EAAA;EE7V5B;IACE,UAAU;IHhD2C,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EE1V5B;IHlDuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EExV5B;IHpDuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA,EAAA;;AHlVxB;EKdJ;IACE,UAAU;IH7C2C,sCC4Y3B;IDvYmC,8BCuYnC,EAAA;EE7V5B;IACE,UAAU;IHhD2C,mCC4Y3B;IDvYmC,2BCuYnC,EAAA;EE1V5B;IHlDuD,oCC4Y3B;IDvYmC,4BCuYnC,EAAA;EExV5B;IHpDuD,gCC4Y3B;IDvYmC,wBCuYnC,EAAA,EAAA;;AHtWxB;EMlDJ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA,EAAA;;ANmER;EMtEJ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA,EAAA;;AN+CR;EM1CJ;IJIuD,gCC0Z3B;IDrZmC,wBCqZnC;IG5Z1B,UAAU,EAAA;EACZ;IJCuD,oCC0Z3B;IDrZmC,4BCqZnC;IGzZ1B,UAAU,EAAA,EAAA;;ANyDR;EM9DJ;IJIuD,gCC0Z3B;IDrZmC,wBCqZnC;IG5Z1B,UAAU,EAAA;EACZ;IJCuD,oCC0Z3B;IDrZmC,4BCqZnC;IGzZ1B,UAAU,EAAA,EAAA;;ANqCR;EMhCJ;IJNuD,gCC0Z3B;IDrZmC,wBCqZnC;IGlZ1B,UAAU,EAAA;EACZ;IJTuD,mCC0Z3B;IDrZmC,2BCqZnC;IG/Y1B,UAAU,EAAA,EAAA;;AN+CR;EMpDJ;IJNuD,gCC0Z3B;IDrZmC,wBCqZnC;IGlZ1B,UAAU,EAAA;EACZ;IJTuD,mCC0Z3B;IDrZmC,2BCqZnC;IG/Y1B,UAAU,EAAA,EAAA;;AN2BR;EMtBJ;IJhBuD,gCC4Y3B;IDvYmC,wBCuYnC;IG1X1B,UAAU,EAAA;EACZ;IJnBuD,mCC4Y3B;IDvYmC,2BCuYnC;IGvX1B,UAAU,EAAA,EAAA;;ANqCR;EM1CJ;IJhBuD,gCC4Y3B;IDvYmC,wBCuYnC;IG1X1B,UAAU,EAAA;EACZ;IJnBuD,mCC4Y3B;IDvYmC,2BCuYnC;IGvX1B,UAAU,EAAA,EAAA;;ANiBR;EMZJ;IJ1BuD,gCC4Y3B;IDvYmC,wBCuYnC;IGhX1B,UAAU,EAAA;EACZ;IJ7BuD,oCC4Y3B;IDvYmC,4BCuYnC;IG7W1B,UAAU,EAAA,EAAA;;AN2BR;EMhCJ;IJ1BuD,gCC4Y3B;IDvYmC,wBCuYnC;IGhX1B,UAAU,EAAA;EACZ;IJ7BuD,oCC4Y3B;IDvYmC,4BCuYnC;IG7W1B,UAAU,EAAA,EAAA;;ANOR;EMFJ;IJpCuD,gCC0Z3B;IDrZmC,wBCqZnC;IGpX1B,UAAU,EAAA;EACZ;IJvCuD,sCC0Z3B;IDrZmC,8BCqZnC;IGjX1B,UAAU,EAAA,EAAA;;ANiBR;EMtBJ;IJpCuD,gCC0Z3B;IDrZmC,wBCqZnC;IGpX1B,UAAU,EAAA;EACZ;IJvCuD,sCC0Z3B;IDrZmC,8BCqZnC;IGjX1B,UAAU,EAAA,EAAA;;ANHR;EMQJ;IACE,UAAU;IJ/C2C,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EGzW5B;IACE,UAAU;IJlD2C,qCC0Z3B;IDrZmC,6BCqZnC,EAAA,EAAA;;AHhWxB;EMZJ;IACE,UAAU;IJ/C2C,gCC0Z3B;IDrZmC,wBCqZnC,EAAA;EGzW5B;IACE,UAAU;IJlD2C,qCC0Z3B;IDrZmC,6BCqZnC,EAAA,EAAA;;AHpXxB;EMkBJ;IACE,UAAU;IJzD2C,gCC4Y3B;IDvYmC,wBCuYnC,EAAA;EGjV5B;IACE,UAAU;IJ5D2C,qCC4Y3B;IDvYmC,6BCuYnC,EAAA,EAAA;;AHlVxB;EMFJ;IACE,UAAU;IJzD2C,gCC4Y3B;IDvYmC,wBCuYnC,EAAA;EGjV5B;IACE,UAAU;IJ5D2C,qCC4Y3B;IDvYmC,6BCuYnC,EAAA,EAAA;;AHtWxB;EM4BJ;IACE,UAAU;IJnE2C,gCC4Y3B;IDvYmC,wBCuYnC,EAAA;EGvU5B;IACE,UAAU;IJtE2C,sCC4Y3B;IDvYmC,8BCuYnC,EAAA,EAAA;;AHlVxB;EMQJ;IACE,UAAU;IJnE2C,gCC4Y3B;IDvYmC,wBCuYnC,EAAA;EGvU5B;IACE,UAAU;IJtE2C,sCC4Y3B;IDvYmC,8BCuYnC,EAAA,EAAA;;AHtWxB;EOlDJ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA,EAAA;;APmER;EOtEJ;IACE,UAAU,EAAA;EACZ;IACE,UAAU,EAAA,EAAA;;AP+CR;EO1CJ;ILIuD,mCC0Z3B;IDrZmC,2BCqZnC;II5Z1B,UAAU,EAAA;EACZ;ILCuD,gCC0Z3B;IDrZmC,wBCqZnC;IIzZ1B,UAAU,EAAA,EAAA;;APyDR;EO9DJ;ILIuD,mCC0Z3B;IDrZmC,2BCqZnC;II5Z1B,UAAU,EAAA;EACZ;ILCuD,gCC0Z3B;IDrZmC,wBCqZnC;IIzZ1B,UAAU,EAAA,EAAA;;APqCR;EOhCJ;ILNuD,oCC0Z3B;IDrZmC,4BCqZnC;IIlZ1B,UAAU,EAAA;EACZ;ILTuD,gCC0Z3B;IDrZmC,wBCqZnC;II/Y1B,UAAU,EAAA,EAAA;;AP+CR;EOpDJ;ILNuD,oCC0Z3B;IDrZmC,4BCqZnC;IIlZ1B,UAAU,EAAA;EACZ;ILTuD,gCC0Z3B;IDrZmC,wBCqZnC;II/Y1B,UAAU,EAAA,EAAA;;AP2BR;EOtBJ;ILhBuD,mCC4Y3B;IDvYmC,2BCuYnC;II1X1B,UAAU,EAAA;EACZ;ILnBuD,gCC4Y3B;IDvYmC,wBCuYnC;IIvX1B,UAAU,EAAA,EAAA;;APqCR;EO1CJ;ILhBuD,mCC4Y3B;IDvYmC,2BCuYnC;II1X1B,UAAU,EAAA;EACZ;ILnBuD,gCC4Y3B;IDvYmC,wBCuYnC;IIvX1B,UAAU,EAAA,EAAA;;APiBR;EOZJ;IL1BuD,oCC4Y3B;IDvYmC,4BCuYnC;IIhX1B,UAAU,EAAA;EACZ;IL7BuD,gCC4Y3B;IDvYmC,wBCuYnC;II7W1B,UAAU,EAAA,EAAA;;AP2BR;EOhCJ;IL1BuD,oCC4Y3B;IDvYmC,4BCuYnC;IIhX1B,UAAU,EAAA;EACZ;IL7BuD,gCC4Y3B;IDvYmC,wBCuYnC;II7W1B,UAAU,EAAA,EAAA;;APOR;EOFJ;ILpCuD,qCC0Z3B;IDrZmC,6BCqZnC;IIpX1B,UAAU,EAAA;EACZ;ILvCuD,gCC0Z3B;IDrZmC,wBCqZnC;IIjX1B,UAAU,EAAA,EAAA;;APiBR;EOtBJ;ILpCuD,qCC0Z3B;IDrZmC,6BCqZnC;IIpX1B,UAAU,EAAA;EACZ;ILvCuD,gCC0Z3B;IDrZmC,wBCqZnC;IIjX1B,UAAU,EAAA,EAAA;;APHR;EOQJ;IACE,UAAU;IL/C2C,sCC0Z3B;IDrZmC,8BCqZnC,EAAA;EIzW5B;IACE,UAAU;ILlD2C,gCC0Z3B;IDrZmC,wBCqZnC,EAAA,EAAA;;AHhWxB;EOZJ;IACE,UAAU;IL/C2C,sCC0Z3B;IDrZmC,8BCqZnC,EAAA;EIzW5B;IACE,UAAU;ILlD2C,gCC0Z3B;IDrZmC,wBCqZnC,EAAA,EAAA;;AHpXxB;EOkBJ;IACE,UAAU;ILzD2C,qCC4Y3B;IDvYmC,6BCuYnC,EAAA;EIjV5B;IACE,UAAU;IL5D2C,gCC4Y3B;IDvYmC,wBCuYnC,EAAA,EAAA;;AHlVxB;EOFJ;IACE,UAAU;ILzD2C,qCC4Y3B;IDvYmC,6BCuYnC,EAAA;EIjV5B;IACE,UAAU;IL5D2C,gCC4Y3B;IDvYmC,wBCuYnC,EAAA,EAAA;;AHtWxB;EO4BJ;IACE,UAAU;ILnE2C,sCC4Y3B;IDvYmC,8BCuYnC,EAAA;EIvU5B;IACE,UAAU;ILtE2C,gCC4Y3B;IDvYmC,wBCuYnC,EAAA,EAAA;;AHlVxB;EOQJ;IACE,UAAU;ILnE2C,sCC4Y3B;IDvYmC,8BCuYnC,EAAA;EIvU5B;IACE,UAAU;ILtE2C,gCC4Y3B;IDvYmC,wBCuYnC,EAAA,EAAA;;AHtWxB;EQlDJ;INYuD,gDMXL;INgBa,wCMhBb;INWK,2CMVV;INekB,mCMflB,EAAA;EAE7C;INQuD,uEMPkB;INYV,+DMZU;INOlB,2CMNV;INWkB,mCMXlB,EAAA;EAE7C;INIuD,gFMH2B;INQnB,wEMRmB;ING3B,0CMFX;INOmB,kCMPnB,EAAA;EAE5C;INAuD,iEMCY;INIJ,yDMJI;INDZ,0CMEX;INGmB,kCMHnB,EAAA;EAE5C;INJuD,8CMKP;INAe,sCMAf;INLO,0CMMX;INDmB,kCMCnB,EAAA,EAAA;;ARoDxC;EQtEJ;INYuD,gDMXL;INgBa,wCMhBb;INWK,2CMVV;INekB,mCMflB,EAAA;EAE7C;INQuD,uEMPkB;INYV,+DMZU;INOlB,2CMNV;INWkB,mCMXlB,EAAA;EAE7C;INIuD,gFMH2B;INQnB,wEMRmB;ING3B,0CMFX;INOmB,kCMPnB,EAAA;EAE5C;INAuD,iEMCY;INIJ,yDMJI;INDZ,0CMEX;INGmB,kCMHnB,EAAA;EAE5C;INJuD,8CMKP;INAe,sCMAf;INLO,0CMMX;INDmB,kCMCnB,EAAA,EAAA;;ARgCxC;EQzBJ;INbuD,oDMcD;INTS,4CMST;ICnBpD,0DAA4F;IAE9F,UDkBoB,EAAA;EAEpB;INjBuD,qDMkBA;INbQ,6CMaR,EAAA;EAEvD;INpBuD,oDMqBD;INhBS,4CMgBT,EAAA;EAEtD;INvBuD,mDMwBF;INnBU,2CMmBV;IC7BnD,4DAA4F;IAE9F,UD4BoB,EAAA,EAAA;;ARiChB;EQ7CJ;INbuD,oDMcD;INTS,4CMST;ICnBpD,0DAA4F;IAE9F,UDkBoB,EAAA;EAEpB;INjBuD,qDMkBA;INbQ,6CMaR,EAAA;EAEvD;INpBuD,oDMqBD;INhBS,4CMgBT,EAAA;EAEtD;INvBuD,mDMwBF;INnBU,2CMmBV;IC7BnD,4DAA4F;IAE9F,UD4BoB,EAAA,EAAA;;ARahB;EQNJ;INhCuD,mDMiCF;IN5BU,2CM4BV;ICtCnD,4DAA4F;IAE9F,UDqCoB,EAAA;EAEpB;INpCuD,oDMqCD;INhCS,4CMgCT;IC1CpD,0DAA4F;IAE9F,UDyCoB,EAAA,EAAA;;ARoBhB;EQ1BJ;INhCuD,mDMiCF;IN5BU,2CM4BV;ICtCnD,4DAA4F;IAE9F,UDqCoB,EAAA;EAEpB;INpCuD,oDMqCD;INhCS,4CMgCT;IC1CpD,0DAA4F;IAE9F,UDyCoB,EAAA,EAAA;;ARAhB;EQOJ;IN7CuD,oDM8CD;INzCS,4CMyCT;ICnDpD,0DAA4F;IAE9F,UDkDoB,EAAA;EAEpB;INjDuD,qDMkDA;IN7CQ,6CM6CR,EAAA;EAEvD;INpDuD,oDMqDD;INhDS,4CMgDT,EAAA;EAEtD;INvDuD,mDMwDF;INnDU,2CMmDV;IC7DnD,4DAA4F;IAE9F,UD4DoB,EAAA,EAAA;;ARChB;EQbJ;IN7CuD,oDM8CD;INzCS,4CMyCT;ICnDpD,0DAA4F;IAE9F,UDkDoB,EAAA;EAEpB;INjDuD,qDMkDA;IN7CQ,6CM6CR,EAAA;EAEvD;INpDuD,oDMqDD;INhDS,4CMgDT,EAAA;EAEtD;INvDuD,mDMwDF;INnDU,2CMmDV;IC7DnD,4DAA4F;IAE9F,UD4DoB,EAAA,EAAA;;ARnBhB;EQ0BJ;INhEuD,mDMiEF;IN5DU,2CM4DV;ICtEnD,4DAA4F;IAE9F,UDqEoB,EAAA;EAEpB;INpEuD,oDMqED;INhES,4CMgET;IC1EpD,0DAA4F;IAE9F,UDyEoB,EAAA,EAAA;;ARZhB;EQMJ;INhEuD,mDMiEF;IN5DU,2CM4DV;ICtEnD,4DAA4F;IAE9F,UDqEoB,EAAA;EAEpB;INpEuD,oDMqED;INhES,4CMgET;IC1EpD,0DAA4F;IAE9F,UDyEoB,EAAA,EAAA;;ARhChB;EUlDJ;IRYuD,iDQXJ;IRgBY,yCQhBZ;IDMjD,0DAA4F;IAE9F,UCPoB,EAAA;EACpB;IRSuD,gDQRL;IRaa,wCQbb;IDGhD,4DAA4F;IAE9F,UCJoB,EAAA;EACpB;IRMuD,+CQLN;IRUc,uCQVd;IDA/C,4DAA4F;IAE9F,UCDoB,EAAA;EACpB;IRGuD,6CQFR;IROgB,qCQPhB;IDH7C,4DAA4F;IAE9F,UCEoB,EAAA,EAAA;;AV2DhB;EUtEJ;IRYuD,iDQXJ;IRgBY,yCQhBZ;IDMjD,0DAA4F;IAE9F,UCPoB,EAAA;EACpB;IRSuD,gDQRL;IRaa,wCQbb;IDGhD,4DAA4F;IAE9F,UCJoB,EAAA;EACpB;IRMuD,+CQLN;IRUc,uCQVd;IDA/C,4DAA4F;IAE9F,UCDoB,EAAA;EACpB;IRGuD,6CQFR;IROgB,qCQPhB;IDH7C,4DAA4F;IAE9F,UCEoB,EAAA,EAAA;;AVuChB;EUlCJ;IRJuD,6CQKR;IRAgB,qCQAhB;IDV7C,4DAA4F;IAE9F,UCSoB,EAAA;EACpB;IRPuD,iDQQJ;IRHY,yCQGZ;IDbjD,0DAA4F;IAE9F,UCYoB,EAAA,EAAA;;AViDhB;EUtDJ;IRJuD,6CQKR;IRAgB,qCQAhB;IDV7C,4DAA4F;IAE9F,UCSoB,EAAA;EACpB;IRPuD,iDQQJ;IRHY,yCQGZ;IDbjD,0DAA4F;IAE9F,UCYoB,EAAA,EAAA;;AV6BhB;EWlDJ;ITYuD,2CCsC/B;IDjCuC,mCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IQ3TrB,UAAU,EAAA;EACZ;ITQuD,2CCsC/B;IDjCuC,mCCiCvC;IDtC+B,iCCkThC;ID7SwC,yBC6SxC;IQvTrB,UAAU,EAAA,EAAA;;AX+DR;EWtEJ;ITYuD,2CCsC/B;IDjCuC,mCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IQ3TrB,UAAU,EAAA;EACZ;ITQuD,2CCsC/B;IDjCuC,mCCiCvC;IDtC+B,iCCkThC;ID7SwC,yBC6SxC;IQvTrB,UAAU,EAAA,EAAA;;AX2CR;EWtCJ;ITAuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IQ/SrB,UAAU,EAAA;EACZ;ITJuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,gCCkThC;ID7SwC,wBC6SxC;IQ3SrB,UAAU,EAAA,EAAA;;AXmDR;EW1DJ;ITAuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IQ/SrB,UAAU,EAAA;EACZ;ITJuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,gCCkThC;ID7SwC,wBC6SxC;IQ3SrB,UAAU,EAAA,EAAA;;AX+BR;EW1BJ;ITZuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IQnSrB,UAAU,EAAA;EACZ;IThBuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,iCCkThC;ID7SwC,yBC6SxC;IQ/RrB,UAAU,EAAA,EAAA;;AXuCR;EW9CJ;ITZuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IQnSrB,UAAU,EAAA;EACZ;IThBuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,iCCkThC;ID7SwC,yBC6SxC;IQ/RrB,UAAU,EAAA,EAAA;;AXmBR;EWdJ;ITxBuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IQvRrB,UAAU,EAAA;EACZ;IT5BuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,iCCkThC;ID7SwC,yBC6SxC;IQnRrB,UAAU,EAAA,EAAA;;AX2BR;EWlCJ;ITxBuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IQvRrB,UAAU,EAAA;EACZ;IT5BuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,iCCkThC;ID7SwC,yBC6SxC;IQnRrB,UAAU,EAAA,EAAA;;AXOR;EWFJ;ITpCuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IQ3QrB,UAAU,EAAA;EACZ;ITxCuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,gCCkThC;ID7SwC,wBC6SxC;IQvQrB,UAAU,EAAA,EAAA;;AXeR;EWtBJ;ITpCuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IQ3QrB,UAAU,EAAA;EACZ;ITxCuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,gCCkThC;ID7SwC,wBC6SxC;IQvQrB,UAAU,EAAA,EAAA;;AXLR;EYlDJ;IVYuD,2CCsC/B;IDjCuC,mCCiCvC;IDtC+B,kCCkThC;ID7SwC,0BC6SxC;IS3TrB,UAAU,EAAA;EACZ;IVQuD,2CCsC/B;IDjCuC,mCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;ISvTrB,UAAU,EAAA,EAAA;;AZ+DR;EYtEJ;IVYuD,2CCsC/B;IDjCuC,mCCiCvC;IDtC+B,kCCkThC;ID7SwC,0BC6SxC;IS3TrB,UAAU,EAAA;EACZ;IVQuD,2CCsC/B;IDjCuC,mCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;ISvTrB,UAAU,EAAA,EAAA;;AZ2CR;EYtCJ;IVAuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,iCCkThC;ID7SwC,yBC6SxC;IS/SrB,UAAU,EAAA;EACZ;IVJuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IS3SrB,UAAU,EAAA,EAAA;;AZmDR;EY1DJ;IVAuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,iCCkThC;ID7SwC,yBC6SxC;IS/SrB,UAAU,EAAA;EACZ;IVJuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IS3SrB,UAAU,EAAA,EAAA;;AZ+BR;EY1BJ;IVZuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,gCCkThC;ID7SwC,wBC6SxC;ISnSrB,UAAU,EAAA;EACZ;IVhBuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IS/RrB,UAAU,EAAA,EAAA;;AZuCR;EY9CJ;IVZuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,gCCkThC;ID7SwC,wBC6SxC;ISnSrB,UAAU,EAAA;EACZ;IVhBuD,yCCsC/B;IDjCuC,iCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;IS/RrB,UAAU,EAAA,EAAA;;AZmBR;EYdJ;IVxBuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,iCCkThC;ID7SwC,yBC6SxC;ISvRrB,UAAU,EAAA;EACZ;IV5BuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;ISnRrB,UAAU,EAAA,EAAA;;AZ2BR;EYlCJ;IVxBuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,iCCkThC;ID7SwC,yBC6SxC;ISvRrB,UAAU,EAAA;EACZ;IV5BuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;ISnRrB,UAAU,EAAA,EAAA;;AZOR;EYFJ;IVpCuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,gCCkThC;ID7SwC,wBC6SxC;IS3QrB,UAAU,EAAA;EACZ;IVxCuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;ISvQrB,UAAU,EAAA,EAAA;;AZeR;EYtBJ;IVpCuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,gCCkThC;ID7SwC,wBC6SxC;IS3QrB,UAAU,EAAA;EACZ;IVxCuD,0CCsC/B;IDjCuC,kCCiCvC;IDtC+B,4BCkThC;ID7SwC,oBC6SxC;ISvQrB,UAAU,EAAA,EAAA;;AZLR;EalDJ;IXYuD,4BCkThC;ID7SwC,oBC6SxC;IDlTgC,sCCsC/B;IDjCuC,8BCiCvC;IDtC+B,8CWTP;IXce,sCWdf,EAAA;EAChD;IXQuD,gCCkThC;ID7SwC,wBC6SxC;IDlTgC,sCCsC/B;IDjCuC,8BCiCvC;IDtC+B,8CWLP;IXUe,sCWVf,EAAA;EAChD;IXIuD,gCCkThC;ID7SwC,wBC6SxC;IDlTgC,sCCsC/B;IDjCuC,8BCiCvC;IDtC+B,8CWDP;IXMe,sCWNf,EAAA;EAChD;IXAuD,8CWCP;IXIe,sCWJf;IJN9C,4DAA4F;IAE9F,UIKoB;IXFmC,sCCsC/B;IDjCuC,8BCiCvC;IDtC+B,8CWIP;IXCe,sCWDf,EAAA;EAChD;IXLuD,oCC0Z3B;IDrZmC,4BCqZnC;IM/Z1B,0DAA4F;IAE9F,UIUoB,EAAA,EAAA;;AbmDhB;EatEJ;IXYuD,4BCkThC;ID7SwC,oBC6SxC;IDlTgC,sCCsC/B;IDjCuC,8BCiCvC;IDtC+B,8CWTP;IXce,sCWdf,EAAA;EAChD;IXQuD,gCCkThC;ID7SwC,wBC6SxC;IDlTgC,sCCsC/B;IDjCuC,8BCiCvC;IDtC+B,8CWLP;IXUe,sCWVf,EAAA;EAChD;IXIuD,gCCkThC;ID7SwC,wBC6SxC;IDlTgC,sCCsC/B;IDjCuC,8BCiCvC;IDtC+B,8CWDP;IXMe,sCWNf,EAAA;EAChD;IXAuD,8CWCP;IXIe,sCWJf;IJN9C,4DAA4F;IAE9F,UIKoB;IXFmC,sCCsC/B;IDjCuC,8BCiCvC;IDtC+B,8CWIP;IXCe,sCWDf,EAAA;EAChD;IXLuD,oCC0Z3B;IDrZmC,4BCqZnC;IM/Z1B,0DAA4F;IAE9F,UIUoB,EAAA,EAAA;;Ab+BhB;Ea1BJ;IJjBE,0DAA4F;IAE9F,UIgBoB;IXbmC,oDWcD;IXTS,4CWST,EAAA;EACtD;IJpBE,4DAA4F;IAE9F,UImBoB;IXhBmC,+CWiBN;IXZc,uCWYd,EAAA,EAAA;;AbyC7C;Ea9CJ;IJjBE,0DAA4F;IAE9F,UIgBoB;IXbmC,oDWcD;IXTS,4CWST,EAAA;EACtD;IJpBE,4DAA4F;IAE9F,UImBoB;IXhBmC,+CWiBN;IXZc,uCWYd,EAAA,EAAA;;AbqB7C;EahBJ;IJ3BE,4DAA4F;IAE9F,UI0BoB;IXvBmC,+CWwBN;IXnBc,uCWmBd,EAAA;EACjD;IJ9BE,0DAA4F;IAE9F,UI6BoB;IX1BmC,oDW2BD;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IkByET,gDlBzES,EAAA;;AkBVb;EA2FI,clBjFS,EAAA;;AkBVb;;;EAgGI,cAAc,EAAA;;AAhGlB;EAwGI,clB9FS,EAAA;EkBVb;IA2GM,qBlBjGO,EAAA;;AkBVb;EAiHM,qBAAkC;EC3IxC,yBD4I+C,EAAA;;AAlH/C;EAwHM,wDlB9GO;EkB8GP,gDlB9GO,EAAA;;AkBVb;EA4HM,qBlBlHO,EAAA;;AkBVb;EAsII,qBlB5HS,EAAA;;AkBVb;EA2IM,qBlBjIO;EkBkIP,wDlBlIO;EkBkIP,gDlBlIO,EAAA;;AkBEf;EACE,aAAa;EACb,WAAW;EACX,mBlB0c0C;ECjb1C,cAAW;EiBvBX,clBVa,EAAA;;AkBaf;EACE,kBAAkB;EAClB,SAAS;EACT,OAAO;EACP,UAAU;EACV,aAAa;EACb,eAAe;EACf,uBlBgyBqC;EkB/xBrC,iBAAiB;EjBmEf,mBAtCY;EiB3Bd,gBlBsO6B;EkBrO7B,WlBxDW;EkByDX,wClBzBa;EOrBb,sBP6NgC,EAAA;;AkB/MhC;;;;EAuCE,cAAc,EAAA;;AAvChB;;;;;EA6CE,qBlBtCW;EkByCT,oCH0CwD;EGzCxD,4UHpB0E;EGqB1E,4BAA4B;EAC5B,2DAA6D;EAC7D,gEHsCwD,EAAA;EG1F5D;;;;;IAwDI,qBlBjDS;IkBkDT,wDlBlDS;IkBkDT,gDlBlDS,EAAA;;AkBPb;;;;;EAkEI,oCHwBwD;EGvBxD,kFHuBwD,EAAA;;AG1F5D;EA0EE,qBlBnEW;EkBsET,uCHawD;EGZxD,knBAA8J,EAAA;EA9ElK;IAkFI,qBlB3ES;IkB4ET,wDlB5ES;IkB4ET,gDlB5ES,EAAA;;AkBPb;EA2FI,clBpFS,EAAA;;AkBPb;;;EAgGI,cAAc,EAAA;;AAhGlB;EAwGI,clBjGS,EAAA;EkBPb;IA2GM,qBlBpGO,EAAA;;AkBPb;EAiHM,qBAAkC;EC3IxC,yBD4I+C,EAAA;;AAlH/C;EAwHM,wDlBjHO;EkBiHP,gDlBjHO,EAAA;;AkBPb;EA4HM,qBlBrHO,EAAA;;AkBPb;EAsII,qBlB/HS,EAAA;;AkBPb;EA2IM,qBlBpIO;EkBqIP,wDlBrIO;EkBqIP,gDlBrIO,EAAA;;AgB2OjB;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,8BAAmB;EAAnB,6BAAmB;EAAnB,uBAAmB;EAAnB,mBAAmB;EACnB,yBAAmB;EAAnB,sBAAmB;EAAnB,mBAAmB,EAAA;EAHrB;IASI,WAAW,EAAA;EL/NX;IKsNJ;MAeM,oBAAa;MAAb,oBAAa;MAAb,aAAa;MACb,yBAAmB;MAAnB,sBAAmB;MAAnB,mBAAmB;MACnB,wBAAuB;MAAvB,qBAAuB;MAAvB,uBAAuB;MACvB,gBAAgB,EAAA;IAlBtB;MAuBM,oBAAa;MAAb,oBAAa;MAAb,aAAa;MACb,mBAAc;MAAd,kBAAc;MAAd,cAAc;MACd,8BAAmB;MAAnB,6BAAmB;MAAnB,uBAAmB;MAAnB,mBAAmB;MACnB,yBAAmB;MAAnB,sBAAmB;MAAnB,mBAAmB;MACnB,gBAAgB,EAAA;IA3BtB;;;MAgCM,qBAAqB;MACrB,WAAW;MACX,sBAAsB,EAAA;IAlC5B;MAuCM,qBAAqB,EAAA;IAvC3B;;MA4CM,WAAW,EAAA;IA5CjB;MAkDM,oBAAa;MAAb,oBAAa;MAAb,aAAa;MACb,yBAAmB;MAAnB,sBAAmB;MAAnB,mBAAmB;MACnB,wBAAuB;MAAvB,qBAAuB;MAAvB,uBAAuB;MACvB,WAAW;MACX,eAAe,EAAA;IAtDrB;MAyDM,kBAAkB;MAClB,oBAAc;MAAd,cAAc;MACd,aAAa;MACb,qBhB+KwC;MgB9KxC,cAAc,EAAA;IA7DpB;MAiEM,yBAAmB;MAAnB,sBAAmB;MAAnB,mBAAmB;MACnB,wBAAuB;MAAvB,qBAAuB;MAAvB,uBAAuB,EAAA;IAlE7B;MAqEM,gBAAgB,EAAA,EACjB;;AIlVL;EACE,qBAAqB;EAErB,gBpBsR+B;EoBrR/B,crB4EkB;EqB3ElB,kBAAkB;EAGlB,sBAAsB;EACtB,yBAAiB;EAAjB,sBAAiB;EAAjB,qBAAiB;EAAjB,iBAAiB;EACjB,6BAA6B;EAC7B,6BAA2C;ECuF3C,wBtBsBoB;EEChB,mBAtCY;EoBiBhB,ctBqBiB;EQ7Gf,wBR6HwB;EkB/HtB,qJjBgb6I;EiBhb7I,6IjBgb6I;EiBhb7I,qIjBgb6I;EiBhb7I,2KjBgb6I,EAAA;EiB5a7I;IGdN;MHeQ,wBAAgB;MAAhB,gBAAgB,EAAA,EG8BvB;ElBvCC;IkBUE,crBgEgB;IqB/DhB,qBAAqB,EAAA;EAjBzB;IAsBI,UAAU;IACV,wDpBMa;IoBNb,gDpBMa,EAAA;EoB7BjB;IA6BI,apBiZ6B,EAAA;EoB9ajC;IAkCI,eAAsD,EAAA;;AAc1D;;EAEE,oBAAoB,EAAA;;AASpB;EC3DA,crBUgB;EmBVd,yBpBiC4B;EsB/B9B,qBtB+B8B,EAAA;EG3B9B;ImBAE,WrBLW;ImBDX,yBEDoF;IASpF,qBATyH,EAAA;EAY3H;IAEE,WrBZW;ImBDX,yBEDoF;IAgBpF,qBAhByH;IAqBvH,wDAAiF;IAAjF,gDAAiF,EAAA;EAKrF;IAEE,crBjBc;IqBkBd,yBtBK4B;IsBJ5B,qBtBI4B,EAAA;EsBG9B;;IAGE,WrBtCW;IqBuCX,yBAzCuK;IA6CvK,qBA7C+M,EAAA;IA+C/M;;MAKI,wDAAiF;MAAjF,gDAAiF,EAAA;;ADQvF;EC3DA,crBUgB;EmBVd,yBpBkCc;EsBhChB,qBtBgCgB,EAAA;EG5BhB;ImBAE,crBIc;ImBVd,yBEDoF;IASpF,qBATyH,EAAA;EAY3H;IAEE,crBHc;ImBVd,yBEDoF;IAgBpF,qBAhByH;IAqBvH,yDAAiF;IAAjF,iDAAiF,EAAA;EAKrF;IAEE,crBjBc;IqBkBd,yBtBMc;IsBLd,qBtBKc,EAAA;EsBEhB;;IAGE,crB7Bc;IqB8Bd,yBAzCuK;IA6CvK,qBA7C+M,EAAA;IA+C/M;;MAKI,yDAAiF;MAAjF,iDAAiF,EAAA;;ADQvF;EC3DA,WrBCa;EmBDX,yBpBmCY;EsBjCd,qBtBiCc,EAAA;EG7Bd;ImBAE,WrBLW;ImBDX,yBEDoF;IASpF,qBATyH,EAAA;EAY3H;IAEE,WrBZW;ImBDX,yBEDoF;IAgBpF,qBAhByH;IAqBvH,uDAAiF;IAAjF,+CAAiF,EAAA;EAKrF;IAEE,WrB1BW;IqB2BX,yBtBOY;IsBNZ,qBtBMY,EAAA;EsBCd;;IAGE,WrBtCW;IqBuCX,yBAzCuK;IA6CvK,qBA7C+M,EAAA;IA+C/M;;MAKI,uDAAiF;MAAjF,+CAAiF,EAAA;;ADQvF;EC3DA,WrBCa;EmBDX,yBpBoCS;EsBlCX,qBtBkCW,EAAA;EG9BX;ImBAE,WrBLW;ImBDX,yBEDoF;IASpF,qBATyH,EAAA;EAY3H;IAEE,WrBZW;ImBDX,yBEDoF;IAgBpF,qBAhByH;IAqBvH,wDAAiF;IAAjF,gDAAiF,EAAA;EAKrF;IAEE,WrB1BW;IqB2BX,yBtBQS;IsBPT,qBtBOS,EAAA;EsBAX;;IAGE,WrBtCW;IqBuCX,yBAzCuK;IA6CvK,qBA7C+M,EAAA;IA+C/M;;MAKI,wDAAiF;MAAjF,gDAAiF,EAAA;;ADQvF;EC3DA,crBUgB;EmBVd,yBpBqCY;EsBnCd,qBtBmCc,EAAA;EG/Bd;ImBAE,crBIc;ImBVd,yBEDoF;IASpF,qBATyH,EAAA;EAY3H;IAEE,crBHc;ImBVd,yBEDoF;IAgBpF,qBAhByH;IAqBvH,yDAAiF;IAAjF,iDAAiF,EAAA;EAKrF;IAEE,crBjBc;IqBkBd,yBtBSY;IsBRZ,qBtBQY,EAAA;EsBDd;;IAGE,crB7Bc;IqB8Bd,yBAzCuK;IA6CvK,qBA7C+M,EAAA;IA+C/M;;MAKI,yDAAiF;MAAjF,iDAAiF,EAAA;;ADQvF;EC3DA,WrBCa;EmBDX,yBpBsCW;EsBpCb,qBtBoCa,EAAA;EGhCb;ImBAE,WrBLW;ImBDX,yBEDoF;IASpF,qBATyH,EAAA;EAY3H;IAEE,WrBZW;ImBDX,yBEDoF;IAgBpF,qBAhByH;IAqBvH,yDAAiF;IAAjF,iDAAiF,EAAA;EAKrF;IAEE,WrB1BW;IqB2BX,yBtBUW;IsBTX,qBtBSW,EAAA;EsBFb;;IAGE,WrBtCW;IqBuCX,yBAzCuK;IA6CvK,qBA7C+M,EAAA;IA+C/M;;MAKI,yDAAiF;MAAjF,iDAAiF,EAAA;;ADQvF;EC3DA,crBUgB;EmBVd,yBpBuCU;EsBrCZ,qBtBqCY,EAAA;EGjCZ;ImBAE,crBIc;ImBVd,yBEDoF;IASpF,qBATyH,EAAA;EAY3H;IAEE,crBHc;ImBVd,yBEDoF;IAgBpF,qBAhByH;IAqBvH,yDAAiF;IAAjF,iDAAiF,EAAA;EAKrF;IAEE,crBjBc;IqBkBd,yBtBWU;IsBVV,qBtBUU,EAAA;EsBHZ;;IAGE,crB7Bc;IqB8Bd,yBAzCuK;IA6CvK,qBA7C+M,EAAA;IA+C/M;;MAKI,yDAAiF;MAAjF,iDAAiF,EAAA;;ADQvF;EC3DA,WrBCa;EmBDX,yBpBwCS;EsBtCX,qBtBsCW,EAAA;EGlCX;ImBAE,WrBLW;ImBDX,yBEDoF;IASpF,qBATyH,EAAA;EAY3H;IAEE,WrBZW;ImBDX,yBEDoF;IAgBpF,qBAhByH;IAqBvH,wDAAiF;IAAjF,gDAAiF,EAAA;EAKrF;IAEE,WrB1BW;IqB2BX,yBtBYS;IsBXT,qBtBWS,EAAA;EsBJX;;IAGE,WrBtCW;IqBuCX,yBAzCuK;IA6CvK,qBA7C+M,EAAA;IA+C/M;;MAKI,wDAAiF;MAAjF,gDAAiF,EAAA;;ADcvF;ECPA,ctBzB8B;EsB0B9B,qBtB1B8B,EAAA;EG3B9B;ImBwDE,crBpDc;IqBqDd,yBtB9B4B;IsB+B5B,qBtB/B4B,EAAA;EsBkC9B;IAEE,wDtBpC4B;IsBoC5B,gDtBpC4B,EAAA;EsBuC9B;IAEE,ctBzC4B;IsB0C5B,6BAA6B,EAAA;EAG/B;;IAGE,crBvEc;IqBwEd,yBtBjD4B;IsBkD5B,qBtBlD4B,EAAA;IsBoD5B;;MAKI,wDtBzDwB;MsByDxB,gDtBzDwB,EAAA;;AqBgC9B;ECPA,ctBxBgB;EsByBhB,qBtBzBgB,EAAA;EG5BhB;ImBwDE,crBpDc;IqBqDd,yBtB7Bc;IsB8Bd,qBtB9Bc,EAAA;EsBiChB;IAEE,yDtBnCc;IsBmCd,iDtBnCc,EAAA;EsBsChB;IAEE,ctBxCc;IsByCd,6BAA6B,EAAA;EAG/B;;IAGE,crBvEc;IqBwEd,yBtBhDc;IsBiDd,qBtBjDc,EAAA;IsBmDd;;MAKI,yDtBxDU;MsBwDV,iDtBxDU,EAAA;;AqB+BhB;ECPA,ctBvBc;EsBwBd,qBtBxBc,EAAA;EG7Bd;ImBwDE,WrB7DW;IqB8DX,yBtB5BY;IsB6BZ,qBtB7BY,EAAA;EsBgCd;IAEE,uDtBlCY;IsBkCZ,+CtBlCY,EAAA;EsBqCd;IAEE,ctBvCY;IsBwCZ,6BAA6B,EAAA;EAG/B;;IAGE,WrBhFW;IqBiFX,yBtB/CY;IsBgDZ,qBtBhDY,EAAA;IsBkDZ;;MAKI,uDtBvDQ;MsBuDR,+CtBvDQ,EAAA;;AqB8Bd;ECPA,ctBtBW;EsBuBX,qBtBvBW,EAAA;EG9BX;ImBwDE,WrB7DW;IqB8DX,yBtB3BS;IsB4BT,qBtB5BS,EAAA;EsB+BX;IAEE,wDtBjCS;IsBiCT,gDtBjCS,EAAA;EsBoCX;IAEE,ctBtCS;IsBuCT,6BAA6B,EAAA;EAG/B;;IAGE,WrBhFW;IqBiFX,yBtB9CS;IsB+CT,qBtB/CS,EAAA;IsBiDT;;MAKI,wDtBtDK;MsBsDL,gDtBtDK,EAAA;;AqB6BX;ECPA,ctBrBc;EsBsBd,qBtBtBc,EAAA;EG/Bd;ImBwDE,crBpDc;IqBqDd,yBtB1BY;IsB2BZ,qBtB3BY,EAAA;EsB8Bd;IAEE,yDtBhCY;IsBgCZ,iDtBhCY,EAAA;EsBmCd;IAEE,ctBrCY;IsBsCZ,6BAA6B,EAAA;EAG/B;;IAGE,crBvEc;IqBwEd,yBtB7CY;IsB8CZ,qBtB9CY,EAAA;IsBgDZ;;MAKI,yDtBrDQ;MsBqDR,iDtBrDQ,EAAA;;AqB4Bd;ECPA,ctBpBa;EsBqBb,qBtBrBa,EAAA;EGhCb;ImBwDE,WrB7DW;IqB8DX,yBtBzBW;IsB0BX,qBtB1BW,EAAA;EsB6Bb;IAEE,wDtB/BW;IsB+BX,gDtB/BW,EAAA;EsBkCb;IAEE,ctBpCW;IsBqCX,6BAA6B,EAAA;EAG/B;;IAGE,WrBhFW;IqBiFX,yBtB5CW;IsB6CX,qBtB7CW,EAAA;IsB+CX;;MAKI,wDtBpDO;MsBoDP,gDtBpDO,EAAA;;AqB2Bb;ECPA,ctBnBY;EsBoBZ,qBtBpBY,EAAA;EGjCZ;ImBwDE,crBpDc;IqBqDd,yBtBxBU;IsByBV,qBtBzBU,EAAA;EsB4BZ;IAEE,yDtB9BU;IsB8BV,iDtB9BU,EAAA;EsBiCZ;IAEE,ctBnCU;IsBoCV,6BAA6B,EAAA;EAG/B;;IAGE,crBvEc;IqBwEd,yBtB3CU;IsB4CV,qBtB5CU,EAAA;IsB8CV;;MAKI,yDtBnDM;MsBmDN,iDtBnDM,EAAA;;AqB0BZ;ECPA,ctBlBW;EsBmBX,qBtBnBW,EAAA;EGlCX;ImBwDE,WrB7DW;IqB8DX,yBtBvBS;IsBwBT,qBtB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;IAwBI,kBAAkB;IAClB,YAA+E;IAC/E,aAA+D;IAC/D,cAAc;IACd,W5BwawC;I4BvaxC,Y5BuawC;I4BtaxC,WAAW;IACX,mCAAgE,EAAA;;AASpE;ErBjGI,sBP6NgC,EAAA;;A4B5HpC;EAOM,kOb7D4E,EAAA;;AasDlF;EAaM,qB5B7FW;EmB7Bb,yBnB6Ba,EAAA;;A4BgFjB;EAkBM,+KbxE4E,EAAA;;AasDlF;ET7GI,wCnB6Ba,EAAA;;A4BgFjB;ET7GI,wCnB6Ba,EAAA;;A4BoHjB;EAGI,kB5ByZ+C,EAAA;;A4B5ZnD;EAQM,8KblG4E,EAAA;;Aa0FlF;ETjJI,wCnB6Ba,EAAA;;A4B4IjB;EACE,qBAA2D,EAAA;EAD7D;IAKM,cAAqD;IACrD,c5BiY+E;I4BhY/E,mBAAmB;IAEnB,qB5B+X4E,EAAA;E4BxYlF;IAaM,wBblE0D;IamE1D,0BbnE0D;IaoE1D,uBbhD0D;IaiD1D,wBbjD0D;IakD1D,yB5BpLY;I4BsLZ,qB5BqX4E;IiBviB5E,iKjByf+H;IiBzf/H,yJjByf+H;IiBzf/H,yIjByf+H;IiBzf/H,oNjByf+H,EAAA;IiBrf/H;MW2JN;QX1JQ,wBAAgB;QAAhB,gBAAgB,EAAA,EW+KnB;EArBL;IA0BM,sB5BlMS;I4BmMT,sCAA4E;IAA5E,8BAA4E,EAAA;EA3BlF;ITzKI,wCnB6Ba,EAAA;;A4ByLjB;EACE,qBAAqB;EACrB,WAAW;EACX,mCbrG8D;EasG9D,0C5BmKkC;ECpQ9B,eAtCY;E2B0IhB,gB5B4D+B;E4B3D/B,gB5BgE+B;E4B/D/B,c5BvNgB;E4BwNhB,sBAAsB;EACtB,uO5BkW+I;E4BjW/I,yB5B7NgB;EOOd,sBP6NgC;E4BJlC,wBAAgB;EAAhB,qBAAgB;EAAhB,gBAAgB,EAAA;EAflB;IAkBI,qB5BuPsE;I4BtPtE,UAAU;IAKR,wD5BjNW;I4BiNX,gD5BjNW,EAAA;I4ByLjB;MAiCM,c5B/OY;M4BgPZ,yB7BjPS,EAAA;E6B+Mf;IAwCI,YAAY;IACZ,sB5B8HgC;I4B7HhC,sBAAsB,EAAA;EA1C1B;IA8CI,c5B7Pc;I4B8Pd,yB5BlQc,EAAA;E4BmNlB;IAoDI,aAAa,EAAA;EApDjB;IAyDI,kBAAkB;IAClB,0B5BxQc,EAAA;;A4B4QlB;EACE,kCbjK8D;EakK9D,oB5BgHkC;E4B/GlC,uB5B+GkC;E4B9GlC,oB5B+GiC;EC9Q7B,mBAtCY,EAAA;;A2ByMlB;EACE,gCbzK8D;Ea0K9D,mB5B6GiC;E4B5GjC,sB5B4GiC;E4B3GjC,kB5B4GgC;ECnR5B,kBAtCY,EAAA;;A2BsNlB;EACE,kBAAkB;EAClB,qBAAqB;EACrB,WAAW;EACX,mCbzL8D;Ea0L9D,gBAAgB,EAAA;;AAGlB;EACE,kBAAkB;EAClB,UAAU;EACV,WAAW;EACX,mCbjM8D;EakM9D,SAAS;EACT,UAAU,EAAA;EANZ;IASI,qB5BqKsE;I4BpKtE,wD5B9Ra;I4B8Rb,gD5B9Ra,EAAA;E4BoRjB;;IAgBI,yB5B9Tc,EAAA;E4B8SlB;IAqBM,iB5B4TQ,EAAA;E4BjVd;IA0BI,0BAA0B,EAAA;;AAI9B;EACE,kBAAkB;EAClB,MAAM;EACN,QAAQ;EACR,OAAO;EACP,UAAU;EACV,mCbjO8D;EakO9D,yB5BuCkC;E4BrClC,gB5B/D+B;E4BgE/B,gB5B3D+B;E4B4D/B,c5BlVgB;E4BmVhB,sB5B1Va;E4B2Vb,yB5BvVgB;EOOd,sBP6NgC,EAAA;E4BsGpC;IAkBI,kBAAkB;IAClB,MAAM;IACN,QAAQ;IACR,SAAS;IACT,UAAU;IACV,cAAc;IACd,6BbnP4D;IaoP5D,yB5BqBgC;I4BpBhC,gB5B3E6B;I4B4E7B,c5BlWc;I4BmWd,iBAAiB;IT3WjB,yBnBGc;I4B0Wd,oBAAoB;IrBjWpB,kCqBkWgF,EAAA;;AAUpF;EACE,WAAW;EACX,cbzQ2B;Ea0Q3B,UAAU;EACV,6BAA6B;EAC7B,wBAAgB;EAAhB,qBAAgB;EAAhB,gBAAgB,EAAA;EALlB;IAQI,aAAa,EAAA;IARjB;MAY8B,wE5BvWb;M4BuWa,gE5BvWb,EAAA;I4B2VjB;MAa8B,gE5BxWb,EAAA;I4B2VjB;MAc8B,gE5BzWb,EAAA;E4B2VjB;IAkBI,SAAS,EAAA;EAlBb;IAsBI,W5BqN6C;I4BpN7C,Y5BoN6C;I4BnN7C,oBAAyE;IThZzE,yBnB6Ba;I4BqXb,S5BoN0C;IO1lB1C,mBP2lB6C;IiB7lB3C,4HjByf+H;IiBzf/H,oHjByf+H;IiBzf/H,4GjByf+H;IiBzf/H,kJjByf+H;I4B7GjI,wBAAgB;IAAhB,gBAAgB,EAAA;IXxYd;MW0WN;QXzWQ,wBAAgB;QAAhB,gBAAgB,EAAA,EW4YrB;IAnCH;MTxXI,yBnB2mB2E,EAAA;E4BnP/E;IAsCI,W5B8LoC;I4B7LpC,c5B8LqC;I4B7LrC,kBAAkB;IAClB,e5B6LuC;I4B5LvC,yB5B9Zc;I4B+Zd,yBAAyB;IrBvZzB,mBPolBoC,EAAA;E4BxOxC;IAiDI,W5B0L6C;I4BzL7C,Y5ByL6C;ImBnmB7C,yBnB6Ba;I4B+Yb,S5B0L0C;IO1lB1C,mBP2lB6C;IiB7lB3C,iHjByf+H;IiBzf/H,4GjByf+H;I4BnFjI,qBAAgB;IAAhB,gBAAgB,EAAA;IXlad;MW0WN;QXzWQ,qBAAgB;QAAhB,gBAAgB,EAAA,EWsarB;IA7DH;MTxXI,yBnB2mB2E,EAAA;E4BnP/E;IAgEI,W5BoKoC;I4BnKpC,c5BoKqC;I4BnKrC,kBAAkB;IAClB,e5BmKuC;I4BlKvC,yB5Bxbc;I4Bybd,yBAAyB;IrBjbzB,mBPolBoC,EAAA;E4BxOxC;IA2EI,W5BgK6C;I4B/J7C,Y5B+J6C;I4B9J7C,aAAa;IACb,oB5BpE+B;I4BqE/B,mB5BrE+B;ImBlY/B,yBnB6Ba;I4B4ab,S5B6J0C;IO1lB1C,mBP2lB6C;IiB7lB3C,gHjByf+H;IiBzf/H,4GjByf+H;I4BtDjI,gBAAgB,EAAA;IX/bd;MW0WN;QXzWQ,oBAAgB;QAAhB,gBAAgB,EAAA,EWmcrB;IA1FH;MTxXI,yBnB2mB2E,EAAA;E4BnP/E;IA6FI,W5BuIoC;I4BtIpC,c5BuIqC;I4BtIrC,kBAAkB;IAClB,e5BsIuC;I4BrIvC,6BAA6B;IAC7B,yBAAyB;IACzB,oBAA4C,EAAA;EAnGhD;IAwGI,yB5B5dc;IOQd,mBPolBoC,EAAA;E4BxOxC;IA6GI,kBAAkB;IAClB,yB5Blec;IOQd,mBPolBoC,EAAA;E4BxOxC;IAoHM,yB5BteY,EAAA;E4BkXlB;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P6NgC,EAAA;;AgCpOpC;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa,EAAA;EADf;IAKI,oBjC2M2B,EAAA;IiChN/B;MAQM,qBAAqB;MACrB,qBjCuMyB;MiCtMzB,chCRY;MgCSZ,YjC4MkB,EAAA;EiCvNxB;IAsBI,0BAA0B,EAAA;EAtB9B;IA0BI,qBAAqB,EAAA;EA1BzB;IA8BI,chC3Bc,EAAA;;AiCdlB;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;E7BGb,eAAe;EACf,gBAAgB;EGad,sBP6NgC,EAAA;;AiCzOpC;EACE,kBAAkB;EAClB,cAAc;EACd,uBjC8wBwC;EiC7wBxC,iBjCkO+B;EiCjO/B,iBjCixBsC;EiChxBtC,cjCuBe;EiCrBf,sBjCPa;EiCQb,yBjCLgB,EAAA;EiCJlB;IAYI,UAAU;IACV,cjC8J8D;IiC7J9D,qBAAqB;IACrB,yBjCZc;IiCad,qBjCZc,EAAA;EiCJlB;IAoBI,UAAU;IACV,UjCywBiC;IiCxwBjC,wDjCOa;IiCPb,gDjCOa,EAAA;;AiCHjB;EAGM,cAAc;E1BahB,+BP+LgC;EO9LhC,kCP8LgC,EAAA;;AiC/MpC;E1BEI,gCP6MgC;EO5MhC,mCP4MgC,EAAA;;AiC/MpC;EAcI,UAAU;EACV,WjCxCW;EiCyCX,yBjCba;EiCcb,qBjCda,EAAA;;AiCHjB;EAqBI,cjCxCc;EiCyCd,oBAAoB;EAEpB,YAAY;EACZ,sBjClDW;EiCmDX,qBjChDc,EAAA;;AkCPhB;EACE,uBlCuxBsC;EC5pBpC,kBAtCY;EiCnFd,gBlCmO6B,EAAA;;AkC9N3B;E3BqCF,8BPgM+B;EO/L/B,iCP+L+B,EAAA;;AkChO7B;E3BkBF,+BP8M+B;EO7M/B,kCP6M+B,EAAA;;AkC7OjC;EACE,uBlCqxBqC;EC1pBnC,mBAtCY;EiCnFd,gBlCoO6B,EAAA;;AkC/N3B;E3BqCF,8BPiM+B;EOhM/B,iCPgM+B,EAAA;;AkCjO7B;E3BkBF,+BP+M+B;EO9M/B,kCP8M+B,EAAA;;AmC5OnC;EACE,qBAAqB;EACrB,qBnCs5BsC;ECr1BpC,cAAW;EkC/Db,gBnCuR+B;EmCtR/B,cAAc;EACd,kBAAkB;EAClB,mBAAmB;EACnB,wBAAwB;E5BKtB,sBP6NgC;EiB/N9B,qJjBgb6I;EiBhb7I,6IjBgb6I;EiBhb7I,qIjBgb6I;EiBhb7I,2KjBgb6I,EAAA;EiB5a7I;IkBfN;MlBgBQ,wBAAgB;MAAhB,gBAAgB,EAAA,EkBMvB;EjCXC;IiCGI,qBAAqB,EAAA;EAd3B;IAoBI,aAAa,EAAA;;AAKjB;EACE,kBAAkB;EAClB,SAAS,EAAA;;AAOX;EACE,oBnC23BsC;EmC13BtC,mBnC03BsC;EOj5BpC,oBPo5BqC,EAAA;;AmCp3BvC;ECjDA,cpCegB;EoCdhB,yBrCqC8B,EAAA;EGvB9B;IkCVI,cpCUY;IoCTZ,yBAAkC,EAAA;EAH9B;IAQJ,UAAU;IACV,wDrC0B0B;IqC1B1B,gDrC0B0B,EAAA;;AoCW9B;ECjDA,cpCegB;EoCdhB,yBrCsCgB,EAAA;EGxBhB;IkCVI,cpCUY;IoCTZ,yBAAkC,EAAA;EAH9B;IAQJ,UAAU;IACV,yDrC2BY;IqC3BZ,iDrC2BY,EAAA;;AoCUhB;ECjDA,WpCMa;EoCLb,yBrCuCc,EAAA;EGzBd;IkCVI,WpCCS;IoCAT,yBAAkC,EAAA;EAH9B;IAQJ,UAAU;IACV,uDrC4BU;IqC5BV,+CrC4BU,EAAA;;AoCSd;ECjDA,WpCMa;EoCLb,yBrCwCW,EAAA;EG1BX;IkCVI,WpCCS;IoCAT,yBAAkC,EAAA;EAH9B;IAQJ,UAAU;IACV,wDrC6BO;IqC7BP,gDrC6BO,EAAA;;AoCQX;ECjDA,cpCegB;EoCdhB,yBrCyCc,EAAA;EG3Bd;IkCVI,cpCUY;IoCTZ,yBAAkC,EAAA;EAH9B;IAQJ,UAAU;IACV,yDrC8BU;IqC9BV,iDrC8BU,EAAA;;AoCOd;ECjDA,WpCMa;EoCLb,yBrC0Ca,EAAA;EG5Bb;IkCVI,WpCCS;IoCAT,yBAAkC,EAAA;EAH9B;IAQJ,UAAU;IACV,wDrC+BS;IqC/BT,gDrC+BS,EAAA;;AoCMb;ECjDA,cpCegB;EoCdhB,yBrC2CY,EAAA;EG7BZ;IkCVI,cpCUY;IoCTZ,yBAAkC,EAAA;EAH9B;IAQJ,UAAU;IACV,yDrCgCQ;IqChCR,iDrCgCQ,EAAA;;AoCK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B;;A/B5DP;E+BmCA;IACE,8BAAmB;IAAnB,6BAAmB;IAAnB,uBAAmB;IAAnB,mBAAmB,EAAA;IADrB;MnCtBA,kCPsKgC;MOlLhC,0BmCwCwC,EAAA;IANxC;MnClCA,gCPkLgC;MOtKhC,4BmCiC0C,EAAA;IAX1C;MAeM,aAAa,EAAA;IAfnB;MAmBM,qB1C0HuB;M0CzHvB,oBAAoB,EAAA;MApB1B;QAuBQ,iB1CsHqB;Q0CrHrB,sB1CqHqB,EAAA,E0CpHtB;;A/B5DP;E+BmCA;IACE,8BAAmB;IAAnB,6BAAmB;IAAnB,uBAAmB;IAAnB,mBAAmB,EAAA;IADrB;MnCtBA,kCPsKgC;MOlLhC,0BmCwCwC,EAAA;IANxC;MnClCA,gCPkLgC;MOtKhC,4BmCiC0C,EAAA;IAX1C;MAeM,aAAa,EAAA;IAfnB;MAmBM,qB1C0HuB;M0CzHvB,oBAAoB,EAAA;MApB1B;QAuBQ,iB1CsHqB;Q0CrHrB,sB1CqHqB,EAAA,E0CpHtB;;AAaX;EnCnHI,gBmCoHsB,EAAA;EAD1B;IAII,qB1CmG6B,EAAA;I0CvGjC;MAOM,sBAAsB,EAAA;;ACzI1B;EACE,c5BqG8D;E4BpG9D,yB5BoG8D,EAAA;EbzFhE;IyCPM,c5BgG0D;I4B/F1D,yBAAyC,EAAA;EAP/C;IAWM,c5CDO;I4CEP,yB5B0F0D;I4BzF1D,qB5ByF0D,EAAA;;A4BtGhE;EACE,c5BqG8D;E4BpG9D,yB5BoG8D,EAAA;EbzFhE;IyCPM,c5BgG0D;I4B/F1D,yBAAyC,EAAA;EAP/C;IAWM,c5CDO;I4CEP,yB5B0F0D;I4BzF1D,qB5ByF0D,EAAA;;A4BtGhE;EACE,c5BqG8D;E4BpG9D,yB5BoG8D,EAAA;EbzFhE;IyCPM,c5BgG0D;I4B/F1D,yBAAyC,EAAA;EAP/C;IAWM,c5CDO;I4CEP,yB5B0F0D;I4BzF1D,qB5ByF0D,EAAA;;A4BtGhE;EACE,c5BqG8D;E4BpG9D,yB5BoG8D,EAAA;EbzFhE;IyCPM,c5BgG0D;I4B/F1D,yBAAyC,EAAA;EAP/C;IAWM,c5CDO;I4CEP,yB5B0F0D;I4BzF1D,qB5ByF0D,EAAA;;A4BtGhE;EACE,c5BqG8D;E4BpG9D,yB5BoG8D,EAAA;EbzFhE;IyCPM,c5BgG0D;I4B/F1D,yBAAyC,EAAA;EAP/C;IAWM,c5CDO;I4CEP,yB5B0F0D;I4BzF1D,qB5ByF0D,EAAA;;A4BtGhE;EACE,c5BqG8D;E4BpG9D,yB5BoG8D,EAAA;EbzFhE;IyCPM,c5BgG0D;I4B/F1D,yBAAyC,EAAA;EAP/C;IAWM,c5CDO;I4CEP,yB5B0F0D;I4BzF1D,qB5ByF0D,EAAA;;A4BtGhE;EACE,c5BqG8D;E4BpG9D,yB5BoG8D,EAAA;EbzFhE;IyCPM,c5BgG0D;I4B/F1D,yBAAyC,EAAA;EAP/C;IAWM,c5CDO;I4CEP,yB5B0F0D;I4BzF1D,qB5ByF0D,EAAA;;A4BtGhE;EACE,c5BqG8D;E4BpG9D,yB5BoG8D,EAAA;EbzFhE;IyCPM,c5BgG0D;I4B/F1D,yBAAyC,EAAA;EAP/C;IAWM,c5CDO;I4CEP,yB5B0F0D;I4BzF1D,qB5ByF0D,EAAA;;A6BzGlE;EACE,YAAY;E3C8HR,iBAtCY;E2CtFhB,gB5C6R+B;E4C5R/B,cAAc;EACd,W5CYa;E4CXb,yB5CCa;E4CAb,WAAW,EAAA;E1CKX;I0CDE,W5CMW;I4CLX,qBAAqB,EAAA;E1CIvB;I0CCI,YAAY,EAAA;;AAWlB;EACE,UAAU;EACV,6BAA6B;EAC7B,SAAS,EAAA;;AAMX;EACE,oBAAoB,EAAA;;ACtCtB;EAGE,8B7Cq4BuC;E6Cr4BvC,iB7Cq4BuC;E6Cp4BvC,gB7Co4BuC;ECzwBnC,mBAtCY;E4ClFhB,2C7CAa;E6CCb,4BAA4B;EAC5B,oC7Cs4BmD;E6Cr4BnD,wD7COa;E6CPb,gD7COa;E6CNb,UAAU;EtCOR,sBP83BsC,EAAA;E6Ch5B1C;IAeI,sB7C03BsC,EAAA;E6Cz4B1C;IAmBI,UAAU,EAAA;EAnBd;IAuBI,cAAc;IACd,UAAU,EAAA;EAxBd;IA4BI,aAAa,EAAA;;AAIjB;EACE,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,yBAAmB;EAAnB,sBAAmB;EAAnB,mBAAmB;EACnB,wB7Cs2BwC;E6Cr2BxC,c7CvBgB;E6CwBhB,2C7C9Ba;E6C+Bb,4BAA4B;EAC5B,4C7C82Bo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,oBAAA;AAEE;ECrDE,yCvFU4B;EuFT5B,sBAAsB;EACtB,mCvFQ4B,EAAA;EuFP5B;IACE,cvFM0B,EAAA;EG3B9B;IoFwBI,cvFvBS;IuFwBT,yBvFE0B;IuFD1B,qBvFC0B,EAAA;EuFE5B;IAEE,qDvFJ0B;IuFI1B,6CvFJ0B,EAAA;EuFO5B;IAEE,cvFT0B;IuFU1B,6BAA6B,EAAA;EAG/B;;IAGE,cvF1CS;IuF2CT,yBvFjB0B;IuFkB1B,qBvFlB0B,EAAA;;AsF8C9B;EACE,ctFzEW,EAAA;EsFwEb;IAKI,ctF7ES,EAAA;EsFwEb;IASI,mBtFvD0B;IsFwD1B,qBtFxD0B,EAAA;;AsF2D9B;EAII,mBtF/D0B;EsFgE1B,ctF1FS,EAAA;;AsFqEb;ECrDE,0CvFWc;EuFVd,sBAAsB;EACtB,oCvFSc,EAAA;EuFRd;IACE,cvFOY,EAAA;EG5BhB;IoFwBI,cvFvBS;IuFwBT,yBvFGY;IuFFZ,qBvFEY,EAAA;EuFCd;IAEE,sDvFHY;IuFGZ,8CvFHY,EAAA;EuFMd;IAEE,cvFRY;IuFSZ,6BAA6B,EAAA;EAG/B;;IAGE,cvF1CS;IuF2CT,yBvFhBY;IuFiBZ,qBvFjBY,EAAA;;AsF6ChB;EACE,ctFzEW,EAAA;EsFwEb;IAKI,ctF7ES,EAAA;EsFwEb;IASI,mBtFtDY;IsFuDZ,qBtFvDY,EAAA;;AsF0DhB;EAII,mBtF9DY;EsF+DZ,ctF1FS,EAAA;;AsFqEb;ECrDE,wCvFYY;EuFXZ,sBAAsB;EACtB,kCvFUY,EAAA;EuFTZ;IACE,cvFQU,EAAA;EG7Bd;IoFwBI,cvFvBS;IuFwBT,yBvFIU;IuFHV,qBvFGU,EAAA;EuFAZ;IAEE,oDvFFU;IuFEV,4CvFFU,EAAA;EuFKZ;IAEE,cvFPU;IuFQV,6BAA6B,EAAA;EAG/B;;IAGE,cvF1CS;IuF2CT,yBvFfU;IuFgBV,qBvFhBU,EAAA;;AsF4Cd;EACE,ctFzEW,EAAA;EsFwEb;IAKI,ctF7ES,EAAA;EsFwEb;IASI,mBtFrDU;IsFsDV,qBtFtDU,EAAA;;AsFyDd;EAII,mBtF7DU;EsF8DV,ctF1FS,EAAA;;AsFqEb;ECrDE,yCvFaS;EuFZT,sBAAsB;EACtB,mCvFWS,EAAA;EuFVT;IACE,cvFSO,EAAA;EG9BX;IoFwBI,cvFvBS;IuFwBT,yBvFKO;IuFJP,qBvFIO,EAAA;EuFDT;IAEE,qDvFDO;IuFCP,6CvFDO,EAAA;EuFIT;IAEE,cvFNO;IuFOP,6BAA6B,EAAA;EAG/B;;IAGE,cvF1CS;IuF2CT,yBvFdO;IuFeP,qBvFfO,EAAA;;AsF2CX;EACE,ctFzEW,EAAA;EsFwEb;IAKI,ctF7ES,EAAA;EsFwEb;IASI,mBtFpDO;IsFqDP,qBtFrDO,EAAA;;AsFwDX;EAII,mBtF5DO;EsF6DP,ctF1FS,EAAA;;AsFqEb;ECrDE,0CvFcY;EuFbZ,sBAAsB;EACtB,oCvFYY,EAAA;EuFXZ;IACE,cvFUU,EAAA;EG/Bd;IoFwBI,cvFvBS;IuFwBT,yBvFMU;IuFLV,qBvFKU,EAAA;EuFFZ;IAEE,sDvFAU;IuFAV,8CvFAU,EAAA;EuFGZ;IAEE,cvFLU;IuFMV,6BAA6B,EAAA;EAG/B;;IAGE,cvF1CS;IuF2CT,yBvFbU;IuFcV,qBvFdU,EAAA;;AsF0Cd;EACE,ctFzEW,EAAA;EsFwEb;IAKI,ctF7ES,EAAA;EsFwEb;IASI,mBtFnDU;IsFoDV,qBtFpDU,EAAA;;AsFuDd;EAII,mBtF3DU;EsF4DV,ctF1FS,EAAA;;AsFqEb;ECrDE,yCvFeW;EuFdX,sBAAsB;EACtB,mCvFaW,EAAA;EuFZX;IACE,cvFWS,EAAA;EGhCb;IoFwBI,cvFvBS;IuFwBT,yBvFOS;IuFNT,qBvFMS,EAAA;EuFHX;IAEE,qDvFCS;IuFDT,6CvFCS,EAAA;EuFEX;IAEE,cvFJS;IuFKT,6BAA6B,EAAA;EAG/B;;IAGE,cvF1CS;IuF2CT,yBvFZS;IuFaT,qBvFbS,EAAA;;AsFyCb;EACE,ctFzEW,EAAA;EsFwEb;IAKI,ctF7ES,EAAA;EsFwEb;IASI,mBtFlDS;IsFmDT,qBtFnDS,EAAA;;AsFsDb;EAII,mBtF1DS;EsF2DT,ctF1FS,EAAA;;AuFmBV;EAHD,0CvFgBU;EuFfV,sBAAsB;EACtB,oCvFcU,EAAA;EuFbV;IACE,cvFYQ,EAAA;EGjCZ;IoFwBI,cvFvBS;IuFwBT,yBvFQQ;IuFPR,qBvFOQ,EAAA;EuFJV;IAEE,sDvFEQ;IuFFR,8CvFEQ,EAAA;EuFCV;IAEE,cvFHQ;IuFIR,6BAA6B,EAAA;EAG/B;;IAGE,cvF1CS;IuF2CT,yBvFXQ;IuFYR,qBvFZQ,EAAA;;AsFwCZ;EACE,ctFzEW,EAAA;EsFwEb;IAKI,ctF7ES,EAAA;EsFwEb;IASI,mBtFjDQ;IsFkDR,qBtFlDQ,EAAA;;AsFqDZ;EAII,mBtFzDQ;EsF0DR,ctF1FS,EAAA;;AsFqEb;ECrDE,uCvFiBS;EuFhBT,sBAAsB;EACtB,iCvFeS,EAAA;EuFdT;IACE,cvFaO,EAAA;EGlCX;IoFwBI,cvFvBS;IuFwBT,yBvFSO;IuFRP,qBvFQO,EAAA;EuFLT;IAEE,mDvFGO;IuFHP,2CvFGO,EAAA;EuFAT;IAEE,cvFFO;IuFGP,6BAA6B,EAAA;EAG/B;;IAGE,cvF1CS;IuF2CT,yBvFVO;IuFWP,qBvFXO,EAAA;;AsFuCX;EACE,ctFzEW,EAAA;EsFwEb;IAKI,ctF7ES,EAAA;EsFwEb;IASI,mBtFhDO;IsFiDP,qBtFjDO,EAAA;;AsFoDX;EAII,mBtFxDO;EsFyDP,ctF1FS,EAAA;;AwFbf,UAAA;AxDIA;EwDDE,SAAS,EAAA;EADX;IAGI,0BxFwMqB,EAAA;IwF3MzB;MAKM,iBAAiB,EAAA;EALvB;IASI,cxF2EgB;IwF1EhB,qBAAqB;IACrB,0BAA0B;IAC1B,oCxF8DM;IwF7DN,gBxFiEoB;IwFhEpB,mBAAmB,EAAA;EAdvB;IAkBI,oCxFwDM;IwFvDN,oBAAoB;IACpB,uBAAuB,EAAA;EApB3B;IAwBI,cxFkE4B;IwFjE5B,qBAAqB;IACrB,oCxFgDM,EAAA;EwF1EV;IA6BE,yBxFUc,EAAA;EwFvChB;IAgCE,yBxFK8B,EAAA;EwFrChC;IAmCE,yBxFMc,EAAA;EwFzChB;IAsCE,yBxFIa,EAAA;EwF1Cf;IhFgBI,kBgFyBwB,EAAA;EAzC5B;IA6CI,mBAAmB;IACnB,qBAAqB,EAAA;EA9CzB;IAiDI,cxFtCW;IwFuCX,kBAAkB,EAAA;EAlDtB;IAqDI,kBAAkB,EAAA;IArDtB;MAuDM,kBAAkB;MAClB,MAAK;MACL,QAAQ;MACR,YAAY,EAAA;;AAMhB;EC/DA,mCzFoC8B;EyFnC9B,yBzEqGgE;EyEpGhE,czEoGgE,EAAA;;AwEvChE;EC/DA,oCzFqCgB;EyFpChB,yBzEqGgE;EyEpGhE,czEoGgE,EAAA;;AwEvChE;EC/DA,kCzFsCc;EyFrCd,yBzEqGgE;EyEpGhE,czEoGgE,EAAA;;AwEvChE;EC/DA,mCzFuCW;EyFtCX,yBzEqGgE;EyEpGhE,czEoGgE,EAAA;;AwEvChE;EC/DA,oCzFwCc;EyFvCd,yBzEqGgE;EyEpGhE,czEoGgE,EAAA;;AwEvChE;EC/DA,mCzFyCa;EyFxCb,yBzEqGgE;EyEpGhE,czEoGgE,EAAA;;AwEvChE;EC/DA,oCzF0CY;EyFzCZ,yBzEqGgE;EyEpGhE,czEoGgE,EAAA;;AwEvChE;EC/DA,iCzF2CW;EyF1CX,yBzEqGgE;EyEpGhE,czEoGgE,EAAA;;A0EzGlE,0BAAA;AzEwNA;EyErNE,kBAAkB;EAClB,cAAc;EACd,gBAAgB;EAChB,mBAAmB;EACnB,eAAe,EAAA;EALjB;IAQI,cAAc;IACd,oBAAoB;IACpB,mB1FuEuB;I0FtEvB,gBAAgB,EAAA;IAChB;MACE,cAAc;MACd,qBAAqB,EAAA;IAd3B;MAkBM,kBAAkB;MAClB,MAAM;MACN,OAAO;MAKP,cAAc;MACd,aAAa;MACb,UAAU;MACV,eAAe;MACf,UAAU;MACV,wBAAwB,EAAA;MATxB;QACE,UAAU;QACV,QAAQ,EAAA;IAvBhB;MAoCU,kBAAkB;MAClB,MAAM;MACN,OAAO,EAAA;MACP;QACE,UAAU;QACV,QAAQ,EAAA;IAzCpB;MA6CU,WAAW;MACX,WAAW;MACX,YAAY;MACZ,kBAAkB;MAClB,qB1FZsB;M0FatB,iBAAiB;MZhCzB,uBYiC+B;MZ7B/B,eY6B+B;MACvB,uBAAuB;MACvB,kCAAkC;MAClC,0BAA0B,EAAA;IAtDpC;MZkBE,uBYwC+B;MZpC/B,eYoC+B;MACvB,uBAAuB;MACvB,kCAAkC;MAClC,0BAA0B;MAC1B,UAAU;MACV,wBAAwB;MACxB,WAAW;MACX,YAAY;MACZ,UAAU;MACV,gCAAgC;MAChC,wBAAwB;MACxB,mBAAmB;MACnB,iBAAiB;MACjB,qDAAqD;MACrD,SAAS;MACT,QAAQ;MACR,iBAAiB;MACjB,c1FhEK,EAAA;I0FXf;MAiFY,mB1F5CoB;M0F6CpB,eAAe,EAAA;IAlF3B;MAqFY,UAAU;MACV,iBAAiB;MACjB,0BAA0B,EAAA;IAvFtC;MA+FY,qB1F1CU,EAAA;I0FrDtB;MAsGc,qDAAiE,EAAA;IAtG/E;MA+GU,kBAAkB;MAClB,WAAW;MACX,MAAM;MACN,OAAO;MAKP,qB1FlFsB;M0FmFtB,iBAAiB;MACjB,WAAW;MACX,YAAY;MACZ,kBAAkB;MZzG1B,uBY0G+B;MZtG/B,eYsG+B;MACvB,uBAAuB;MACvB,kCAAkC;MAClC,0BAA0B,EAAA;MAZ1B;QACE,UAAU;QACV,QAAQ,EAAA;IArHpB;MAmIU,WAAW;MACX,UAAU;MACV,WAAW;MACX,mB1F3HK;M0F4HL,kBAAkB;MAClB,QAAQ;MACR,SAAS;MAKT,uBAAuB;MAEvB,eAAe;MACf,uBAAuB;MACvB,kCAAkC;MAClC,0BAA0B;MAC1B,UAAU;MACV,wBAAwB;MACxB,2BAA2B;MAG3B,mBAAmB;MACnB,kBAAkB,EAAA;MAhBlB;QACE,UAAU;QACV,UAAU,EAAA;IA5ItB;MAiKY,mB1F5HoB;M0F6HpB,eAAe,EAAA;IAlK3B;MAsKY,UAAU;MACV,gBAAgB;MAChB,0BAA0B;MAC1B,2BAA2B;MAG3B,mBAAmB,EAAA;IA5K/B;MAoLY,qB1F/HU,EAAA;I0FrDtB;MA2Lc,mB1FtIQ,EAAA;I0FrDtB;MA+Lc,mB1FpLC,EAAA;;A0F8Lb;;EAOY,qB1F3KkB,EAAA;;A0FoK9B;;EAac,mB1FjLgB,EAAA;;A0FoK9B;;EAOY,qB1F1KI,EAAA;;A0FmKhB;;EAac,mB1FhLE,EAAA;;A0FmKhB;;EAOY,qB1FzKE,EAAA;;A0FkKd;;EAac,mB1F/KA,EAAA;;A0FkKd;;EAOY,qB1FxKD,EAAA;;A0FiKX;;EAac,mB1F9KH,EAAA;;A0FiKX;;EAOY,qB1FvKE,EAAA;;A0FgKd;;EAac,mB1F7KA,EAAA;;A0FgKd;;EAOY,qB1FtKC,EAAA;;A0F+Jb;;EAac,mB1F5KD,EAAA;;A0F+Jb;;EAOY,qB1FrKA,EAAA;;A0F8JZ;;EAac,mB1F3KF,EAAA;;A0F8JZ;;EAOY,qB1FpKD,EAAA;;A0F6JX;;EAac,mB1F1KH,EAAA;;A2F9Cb,cAAA;AAEA;EAGM,aAAa;EACb,eAAe;EACf,cAAc;EACd,gBAAgB;EAChB,gCAAgC;EAChC,gBAAgB;EAChB,WAAW;EACX,YAAY;EACZ,wBAAwB;EACxB,iBAAiB,EAAA;;AAZvB;EAgBI,kBAAkB;EAClB,mB3FgEuB;E2F/DvB,8D3F+KiE;E2F/KjE,sD3F+KiE,EAAA;E2FjMrE;IAoBM,eAAe;IACf,sBAAsB,EAAA;IArB5B;MAuBQ,mBAAmB,EAAA;;ACzB3B,UAAA;A3EwLA;E2ErLE,qBAAqB,EAAA;;AAEvB;;EAEE,c5FiK+B;E4FhK/B,WAAW;EACX,YAAY,EAAA;EAJd;;IAOI,qB5F2CkB;I4F1ClB,wBAAgC;IAChC,c5F0J6B,EAAA;;AiBlKjC;;;E2EYE,yB5FqCoB;E4FpCpB,oC5FyDQ;E4FxDR,oB5FqJwB,EAAA;;A4FlJ1B;;;EAEI,wBAAwB;EACxB,SAAS;EACT,0B5F4BkB;E4F3BlB,c5F4I6B,EAAA;E4FjJjC;;;IAOM,0B5FyBgB,EAAA;E4FhCtB;;;IAWQ,0B5FKwB,EAAA;I4FhBhC;;;MAaU,0B5FGsB,EAAA;E4FhBhC;;;;;IAWQ,0B5FMU,EAAA;I4FjBlB;;;;;MAaU,0B5FIQ,EAAA;E4FjBlB;;;IAWQ,0B5FOQ,EAAA;I4FlBhB;;;MAaU,0B5FKM,EAAA;E4FlBhB;;;IAWQ,0B5FQK,EAAA;I4FnBb;;;MAaU,0B5FMG,EAAA;E4FnBb;;;IAWQ,0B5FSQ,EAAA;I4FpBhB;;;MAaU,0B5FOM,EAAA;E4FpBhB;;;IAWQ,0B5FUO,EAAA;I4FrBf;;;MAaU,0B5FQK,EAAA;E4FrBf;;;IAWQ,0B5FWM,EAAA;I4FtBd;;;MAaU,0B5FSI,EAAA;E4FtBd;;;IAWQ,0B5FYK,EAAA;I4FvBb;;;MAaU,0B5FUG,EAAA;;A4FJb;EAEI,mB5FuCuB;E4FtCvB,cAAc;EACd,mBAAmB;EACnB,oBAAoB,EAAA;;AALxB;;;EASM,qB5FPS,EAAA;;A4FFf;EAaI,kBAAkB;EAClB,kBAAkB,EAAA;;AAdtB;EAiBI,uBAAuB,EAAA;;AC3D3B,UAAA;AAEA;EACE,8B7FoDoB;E6FnDpB,6B7FmDoB,EAAA;E6FrDtB;IAKI,gB7FoFU;I6FnFV,gC7F+CkB;I6F9ClB,+B7F8CkB;IfnBmC,oBAAuB;IAAvB,oBAAuB;IAAvB,aAAuB;IAjBf,yB4GRlC;I5GQkC,sB4GRlC;I5GQkC,mB4GRlC;IAC3B,kBAAiB;IACjB,oC7F+DM;I6F9DN,mB7FqEuB,EAAA;I6FjF3B;MAeM,qBAAqB;MACrB,eAAe;MACf,WAAW;MACX,gBAAgB;MAChB,c7FkB0B,EAAA;;A8FvChC,UAAA;AAEA;;;EAGE,kBAAkB;EAClB,mB9F6EyB,EAAA;E8FjF3B;;;IAMI,gBAAgB,EAAA;;AAIpB;;;EAGE,gBAAgB;EAChB,UAAU,EAAA;EAJZ;;;IAMI,oBAAoB,EAAA;IANxB;;;MAQM,gCAAgC;MAChC,oBAAoB;MACpB,aAAa;MACb,mBAAmB,EAAA;;AAKzB;EAGM,gBAAgB;EAChB,c9FYS,EAAA;;A8FPf;EAGM,gBAAgB;EAChB,c9FAU,EAAA;;A8FKhB;EAGM,gBAAgB;EAChB,c9FPU,EAAA;;A8FYhB;EACE,eAAe,EAAA;EACf;IACE,gBAAgB,EAAA;EAHpB;IAMI,kBAAkB;IAClB,qBAAqB;IACrB,kBAAkB;IAClB,cAAc;IACd,oBAAoB,EAAA;IAVxB;MAaM,WAAU;MACV,kBAAkB,EAAA;IAdxB;MAiBM,MAAM;MACN,OAAO;MACP,WAAW;MACX,YAAY;MACZ,mBAAmB,EAAA;IArBzB;MAwBM,WAAW;MACX,YAAY;MACZ,QAAQ;MACR,SAAS;MACT,gB9FQQ;M8FPR,mBAAmB,EAAA;IA7BzB;MAiCQ,mB9F5CO,EAAA;I8FWf;MAsCQ,mB9FnDK,EAAA;I8Fab;MA2CQ,mB9FvDQ,EAAA;I8FYhB;MAgDQ,mB9F9DQ,EAAA;I8FchB;MAqDQ,mB9FrEwB,EAAA;;A+FvChC,WAAA;AAEA;EAEI,iBAAiB,EAAA;EAFrB;IAKQ,kB/F0PqB,EAAA;I+F/P7B;MAQY,eAAe;MACf,gBAAgB;MAChB,cAAc,EAAA;EAV1B;IAeQ,kB/FmPmB,EAAA;E+FlQ3B;IAkBQ,kB/FmPqB,EAAA;;AgGvQ7B,eAAA;AAEA;EAGM,qBhGkDgB;EgGjDhB,chGgFc;EgG/Ed,kBAAkB;E/GOiC,iC+GNlB;E/GW0B,yB+GX1B,EAAA;EANvC;IAQQ,mBAAmB,EAAA;EAR3B;IAYU,kBAAkB;IAClB,cAAc;IACd,sBAAsB,EAAA;;AAdhC;EAuBQ,mBhGcwB;EgGbxB,qBhGawB;EgGZxB,chGdO,EAAA;;AgGXf;EAgCQ,YAAY;ExFhBhB,kBwFiB8B,EAAA;;AAjClC;EAuCM,gBAAgB;EAChB,iBAAiB,EAAA;EAxCvB;IA0CQ,cAAc,EAAA;EA1CtB;IA6CQ,eAAe,EAAA;EA7CvB;IxFgBI,kBwFgC8B,EAAA;;AAhDlC;ExFgBI,4BwFyC0C,EAAA;;AAzD9C;ExFgBI,4BwF8C0C,EAAA;;AA9D9C;EAqEM,iBAAiB;EACjB,gBAAgB,EAAA;EAtEtB;IAwEQ,YAAY;IxFxDhB,mBwFyD+B,EAAA;;AAzEnC;EAgFM,gBAAgB;EAChB,iBAAiB,EAAA;EAjFvB;IAmFQ,cAAc,EAAA;IAnFtB;MxFgBI,4BwFqE0C,EAAA;EArF9C;IAyFQ,eAAe,EAAA;IAzFvB;MxFgBI,4BwF2E0C,EAAA;EA3F9C;IxFgBI,kBwF+E8B,EAAA;;AAOlC,0BAAA;ACpGM;EACE,mBjGkCwB;EiGjCxB,qBjGiCwB,EAAA;;AiG5B1B;EACE,mBAA8B;EAC9B,qBjG0BwB;EiGzBxB,cjGDO,EAAA;;AiGTT;EACE,mBjGmCU;EiGlCV,qBjGkCU,EAAA;;AiG7BZ;EACE,mBAA8B;EAC9B,qBjG2BU;EiG1BV,cjGDO,EAAA;;AiGTT;EACE,mBjGoCQ;EiGnCR,qBjGmCQ,EAAA;;AiG9BV;EACE,mBAA8B;EAC9B,qBjG4BQ;EiG3BR,cjGDO,EAAA;;AiGTT;EACE,mBjGqCK;EiGpCL,qBjGoCK,EAAA;;AiG/BP;EACE,mBAA8B;EAC9B,qBjG6BK;EiG5BL,cjGDO,EAAA;;AiGTT;EACE,mBjGsCQ;EiGrCR,qBjGqCQ,EAAA;;AiGhCV;EACE,mBAA8B;EAC9B,qBjG8BQ;EiG7BR,cjGDO,EAAA;;AiGTT;EACE,mBjGuCO;EiGtCP,qBjGsCO,EAAA;;AiGjCT;EACE,mBAA8B;EAC9B,qBjG+BO;EiG9BP,cjGDO,EAAA;;AiGTT;EACE,mBjGwCM;EiGvCN,qBjGuCM,EAAA;;AiGlCR;EACE,iBAA8B;EAC9B,qBjGgCM;EiG/BN,cjGDO,EAAA;;AiGTT;EACE,mBjGyCK;EiGxCL,qBjGwCK,EAAA;;AiGnCP;EACE,mBAA8B;EAC9B,qBjGiCK;EiGhCL,cjGDO,EAAA;;AkGbf,WAAA;ApFIA;EoFDE,gBAAgB,EAAA;EpFClB;IoFGM,aAAa;IACb,wBAAwB;IACxB,oClGmEI;IkGlEJ,gBlGsEkB;IkGrElB,oBAAoB,EAAA;IAT1B;MAYQ,qBAAqB,EAAA;EpFV7B;;IoFiBI,sBAAsB;IACtB,mBlG6DuB;IkG5DvB,cAAc;IACd,mBAAmB,EAAA;IAtBvB;;MAyBM,WAAW;MACX,YAAY;MACZ,mBAAmB,EAAA;IA3BzB;;MA+BM,gBAAgB,EAAA;EA/BtB;IAoCI,YAAY,EAAA;IApChB;;;MAyCM,YAAY,EAAA;;AC3ClB,YAAA;AAEA;ElHkCyD,oBAAuB;EAAvB,oBAAuB;EAAvB,aAAuB;EAjBf,8BkHdlC;ElHckC,6BkHdlC;ElHckC,uBkHdlC;ElHckC,mBkHdlC;ElHckC,wBkHb9B;ElHa8B,qBkHb9B;ElHa8B,uBkHb9B;EAC/B,sBAAsB;EACtB,kBAAkB,EAAA;EANtB;IAQM,gBAAgB,EAAA;EARtB;IAWM,mBlGLY,EAAA;EkGNlB;IAcM,eAAe;IACf,kBAAkB,EAAA;EAfxB;IAkBM,cnGPS;ImGQT,kBAAkB,EAAA;IAnBxB;;MAsBQ,WAAW;MACX,YAAY;MACZ,mBAAmB,EAAA;IAxB3B;MA2BQ,YAAY;MACZ,kBAAkB;MlHM+B,oBAAuB;MAAvB,oBAAuB;MAAvB,aAAuB;MAjBf,yBkHa9B;MlHb8B,sBkHa9B;MlHb8B,mBkHa9B;MlHb8B,wBkHc1B;MlHd0B,qBkHc1B;MlHd0B,uBkHc1B,EAAA;MA/BvC;QAiCU,mBAAmB;QACnB,SAAS,EAAA;IAlCnB;MAyCQ,yBnG9BO;MmG+BP,mBAAmB;MACnB,WAAW;MACX,cAAc;MACd,YAAY;MACZ,UAAU;MACV,UAAU;MACV,kBAAkB;MAClB,WAAW,EAAA;EAjDnB;IA8DM,cAAc;IACd,kBAAkB,EAAA;IA/DxB;MAiEQ,eAAe,EAAA;IAjEvB;MAoEQ,mBAAmB,EAAA;MApE3B;QAsEU,mDAAmD;QACnD,mBAAmB;QACnB,+BnGnBY,EAAA;ImGuBhB;MACE,eAAe;MACf,mBAAmB;MACnB,eAAe;MACf,iBAAiB,EAAA;EAhFzB;IlHkCyD,oBAAuB;IAAvB,oBAAuB;IAAvB,aAAuB;IAjBf,8BkHoEhC;IlHpEgC,6BkHoEhC;IlHpEgC,uBkHoEhC;IlHpEgC,mBkHoEhC,EAAA;IArFjC;MAuFQ,WAAW;MACX,cnGxDc;MmGyDd,YAAY;MACZ,yBnG1Dc;MmG2Dd,mBAAmB;MACnB,gBAAgB;MAChB,qBAAqB,EAAA;MA7F7B;QA+FU,kBAAkB,EAAA;;AA/F5B;EAsGM,iBAAiB,EAAA;EAtGvB;IAwGQ,cAAc,EAAA;EAxGtB;IA2GQ,iBAAiB,EAAA;;AA3GzB;EAiHM,gCnG5DgB,EAAA;EmGrDtB;IAmHQ,gBAAgB,EAAA;;AvHuCxB,sEAAA;AACA,6BAAA;AwH7JA,aAAA;AAKA;EACE,eAA0B;EAC1B,iBAAiB;EACjB,2BAA2B,EAAA;;AAG7B;EACE,eAAyB;EACzB,kBAAkB;EAClB,qBAAqB,EAAA;;AAIvB;EACE,eAA2B;EAC3B,iBAAiB;EACjB,2BAA2B,EAAA;;AAG7B;EACE,eAA0B;EAC1B,kBAAkB;EAClB,qBAAqB,EAAA;;AAIvB;EACE,eAA4B;EAC5B,iBAAiB;EACjB,2BAA2B,EAAA;;AAG7B;EACE,eAA2B;EAC3B,kBAAkB;EAClB,qBAAqB,EAAA;;AAMvB;EACE,eAA0B;EAC1B,kBAAkB;EAClB,mBAAmB;EACnB,qBAAqB,EAAA;;AAIvB;EACE,eAA2B;EAC3B,kBAAkB;EAClB,mBAAmB;EACnB,qBAAqB,EAAA;;AAIvB;EACE,eAA4B;EAC5B,kBAAkB;EAClB,mBAAmB;EACnB,qBAAqB,EAAA;;AAIvB;EACE,eAAyB;EACzB,kBAAkB;EAClB,mBAAmB;EACnB,qBAAqB,EAAA;;AAKvB;EACE,aAAwB;EACxB,iBAAiB,EAAA;;AAInB;EACE,aAAyB;EACzB,iBAAiB,EAAA;;AAInB;EACE,aAAuB;EACvB,iBAAiB,EAAA;;AAInB;EACE,aAA0B;EAC1B,iBAAiB,EAAA;;AAKnB;EACE,aAAwB,EAAA;;AAI1B;EACE,aAAyB,EAAA;;AAI3B;EACE,aAAuB,EAAA;;AAXzB;EAgBE,aAA0B,EAAA;;AAI5B;EAGI,eAAyB;EACzB,kBAAkB;EAClB,mBAAmB;EACnB,qBAAqB,EAAA;;AANzB;EAUI,eAA0B;EAC1B,kBAAkB;EAClB,mBAAmB;EACnB,qBAAqB,EAAA;;AAbzB;EAiBI,eAA0B;EAC1B,kBAAkB;EAClB,mBAAmB;EACnB,qBAAqB,EAAA;;AApBzB;EAwBI,eAA0B;EAC1B,kBAAkB;EAClB,mBAAmB;EACnB,qBAAqB,EAAA;;ACvJzB,YAAA;AAEA;EAEI,mBrGmC4B,EAAA;;AqGrChC;;;EAOI,qBrG8CkB,EAAA;EqGrDtB;;;IASM,qBrG4CgB,EAAA;;AqGrDtB;EAaI,YAAY,EAAA;EAbhB;IAmBM,iBAAiB,EAAA;;AAnBvB;EAuBI,mBAAmB,EAAA;;AAvBvB;EA2BM,qBrG0BgB,EAAA;;AqGrDtB;EAgCM,crGrBS;EqGsBT,SAAS;EACT,kBAAkB;EAClB,YAAY;EACZ,kBAAkB;EAClB,oBAAoB;EACpB,cAAc,EAAA;EAtCpB;IAwCQ,crG7BO,EAAA;EqGXf;IA2CQ,mBrGNwB,EAAA;EqGrChC;IA8CQ,mBrGPQ,EAAA;EqGvChB;IAiDQ,mBrGTK,EAAA;EqGxCb;IAoDQ,mBrGVO,EAAA;EqG1Cf;IAuDQ,mBrGdQ,EAAA;;AsG3ChB,cAAA;AAEA;;EAEE,gBAAgB,EAAA;;AAGlB;EACE,eAAe,EAAA;;AASjB;EACE,yBtGLa,EAAA;EsGIf;IAGI,qBtGmCkB,EAAA;;AsG9BtB;EACE,wDAAwD;EAEhD,gDAAgD,EAAA;;AAG1D;EACE,ctGDW,EAAA;;AsGIb;EACE,WAAW;EACX,cAAc;EACd,cAAc;EACd,yBtG1Ba;EsG2Bb,yBtGeoB;EsGZZ,kBAAkB;EAC1B,iDAA6C;EAErC,yCAAqC,EAAA;;AAG/C;EACE,iBAAiB;EACjB,kBAAkB,EAAA;EAFpB;IAII,eAAe;IACf,ctGzCW;IsG0CX,yBtGhB4B,EAAA;EsGUhC;IASI,ctG7CW;IsG8CX,yBtGpB4B,EAAA;EsGUhC;IAaI,SAAS,EAAA;;A1HoGb,sEAAA;AACA,4BAAA;A2HnKA,SAAA;AAEA;EAEE,iDAAiD;EACjD,sBAAsB,EAAA;;AAHxB;EAME,oDAAoD;EACpD,sBAAsB,EAAA;;AAPxB;EAUE,sDAAsD;EACtD,sBAAsB,EAAA;;AAXxB;EAcE,WAAW;EACX,YAAY;EACZ,mBAAmB,EAAA;;AAhBrB;EAmBE,8BvGTU;EuGUV,cvGTa,EAAA;EuGXf;;;IAsBG,sCvGXY;IuGYZ,cvGZY,EAAA;IwG6Bb;;;MDfE,cvGdW,EAAA;IwG8Bb;;;MDhBE,cvGdW,EAAA;IwG+Bb;;;MDjBE,cvGdW,EAAA;IwGgCb;;;MDlBE,cvGdW,EAAA;;AuGXf;EA8BE,mBvGnBa,EAAA;EuGXf;IAgCG,cvGsI8B,EAAA;EuGtKjC;;;;;IAsCK,qBvGeiB,EAAA;;AuGrDtB;EA4CE,uBAAuB,EAAA;EA5CzB;;;;IA+CG,qBvGTe,EAAA;IuGtClB;;;;;;;MAkDI,qBvGZc,EAAA;EuGtClB;IAsDG,sBvGhBe,EAAA;;AuGtClB;EA0DE,UAAU,EAAA;EAET;IA5DH;MA6DI,UAAU;MACV,YAAY,EAAA,EAEb;;AAhEH;EAmEE,mBAAmB,EAAA;EAnErB;IAqEG,YAAY,EAAA;;AArEf;EA0EG,qBAAqB,EAAA;EA1ExB;IA4EI,mBAAmB,EAAA;EA5EvB;;;IA+EI,uBAAuB;IACvB,gBAAgB;IAChB,mBAAmB,EAAA;;AAjFvB;EAqFG,YAAY;EACZ,gBAAgB,EAAA;;AAtFnB;EAyFG,mBvGRwB,EAAA;EuGjF3B;IA2FI,cAAc,EAAA;;AE7FlB,WAAA;A1EiBA;E0EdE,oCzGyEQ;EyGxER,gBzG0EqB;EyGzErB,gBzGyGc;EyGxGd,iCzG2MsC;EyG1MtC,yCzG0MsC;EyGzMtC,sCzGyMsC;EyGxMtC,qCzGwMsC,EAAA;EyG/MxC;IAUI,YAAY,EAAA;EAVhB;IAaI,mDzGkMoC;IyGjMpC,2DzGiMoC;IyGhMpC,wDzGgMoC;IyG/LpC,uDzG+LoC;IyG9LpC,mBCDqB;IDErB,YClBoB;IDmBpB,YzG0FgB;IyGzFhB,kBCe4B,EAAA;IDb5B;MAtBJ;QAuBM,WAAW;QACX,kBAAkB;QAClB,mBAAmB,EAAA,EAiDtB;IA1EH;MA6BM,cAAqC;MACrC,iBAAiB;MACjB,iBAAiB;MACjB,eAAe;MACf,iBAAiB,EAAA;MAjCvB;QAsCQ,cAAqC,EAAA;MAtC7C;QA0CQ,0BAA0C;QAC1C,eAAe;QACf,YAAY;QACZ,YAAY;QACZ,sBAAsB,EAAA;MA9C9B;QAiDQ,aAAa,EAAA;QACb;UAlDR;YAmDU,oBAAa;YAAb,oBAAa;YAAb,aAAa,EAAA,EAShB;QA5DP;UAsDU,wBAA2C;UAC3C,eAAe;UACf,YAAY;UACZ,YAAY;UACZ,eAAe,EAAA;IA1DzB;MA+DM,cCtCgC;MDuChC,UAAU;MACV,iBAAiB,EAAA;MACjB;QAlEN;UAmEQ,aAAY,EAAA,EAMf;MAJC;QACE,kBAAkB;QAClB,iBAAiB,EAAA;EAvEzB;IA6EI,4BzGkIoC;IyGjIpC,oCzGiIoC;IyGhIpC,iCzGgIoC;IyG/HpC,gCzG+HoC;IyG9HpC,czG6BuB;IyG5BvB,kBAAkB;IAClB,mBAAmB;IACnB,yBAAwC;IACxC,YzGwBgB;IyGvBhB,mDAA2C;IAA3C,2CAA2C,EAAA;IAC3C;MAvFJ;QAwFM,WAAW;QACX,kBAAkB;QAClB,mBAAmB,EAAA,EA4PtB;IAtVH;MA8FM,SAAS;MACT,cAAc;MACd,YzGac;MQ7FhB,kBiGiF4B;MAC1B,iBAAiB;MACjB,mBAAmB,EAAA;MAnGzB;QAqGQ,iBAAiB,EAAA;QACjB;UAtGR;YAuGU,aAAa,EAAA,EAEhB;MAEC;QA3GR;UA4GU,kBAAkB;UAClB,mBAAmB;UACnB,kBAAkB,EAAA,EAErB;IAhHP;MAmHM,kBAAkB;MAClB,kBAAkB,EAAA;MApHxB;QAuHQ,eAAe;QACf,kBAAkB;QAClB,OAAO;QACP,QAAQ;QACR,mCAA2B;QAA3B,2BAA2B;QAC3B,czGbwB,EAAA;MyG/GhC;QAgIQ,6BAA6B;QAC7B,YAAY;QACZ,eAAe;QACf,QAAQ;QACR,YAAY;QACZ,mBAAmB;QACnB,kBAAkB;QAClB,2DAAmD;QAAnD,mDAAmD,EAAA;QAvI3D;UA0IU,6BAA6B;UAC7B,gCzG5BsB;UyG6BtB,gBAAgB;UAChB,kBAAkB;UAClB,4BAA4B;UAC5B,YAAY;UACZ,UAAU;UACV,YAAY,EAAA;IAjJtB;MAuJM,kBAAkB,EAAA;MAvJxB;;QA2JQ,kBAAkB;QAClB,mBAAmB;QACnB,yBzGlJO,EAAA;MyGXf;QAgKQ,SAAS;QACT,WAAW;QACX,WAAW;QACX,YAAY,EAAA;MAnKpB;QAsKQ,eAAe;QACf,YAAY;QACZ,gBAAgB;QAChB,czG9JO;QyG+JP,YAAY;QACZ,WAAW;QACX,cAAc;QACd,kBAAkB,EAAA;MA7K1B;QAgLQ,aAAa,EAAA;IAhLrB;MAoLM,8BAAmB;MAAnB,6BAAmB;MAAnB,uBAAmB;MAAnB,mBAAmB;MACnB,yBAAmB;MAAnB,sBAAmB;MAAnB,mBAAmB,EAAA;MArLzB;QAwLU,cAAc;QACd,mBzGxEgB;QyGyEhB,iBAAiB;QACjB,kBAAkB;QAClB,YAA0B;QxH1JqB,oBAAuB;QAAvB,oBAAuB;QAAvB,aAAuB;QAjBf,yBwH6K5B;QxH7K4B,sBwH6K5B;QxH7K4B,mBwH6K5B,EAAA;QAC3B;UA/LV;YAgMY,kBAAkB;YAClB,mBAAmB,EAAA,EAMtB;QAvMT;UAoMY,kBzGlFmB;UyGmFnB,czGtFoB,EAAA;MyG/GhC;QAyMU,YzG5FU;QyG6FV,oBAAa;QAAb,oBAAa;QAAb,aAAa;QACb,yBAAmB;QAAnB,sBAAmB;QAAnB,mBAAmB,EAAA;QA3M7B;UA6MY,kBAAkB;UAClB,eAAe,EAAA;UA9M3B;YAiNc,kBAAkB;YAClB,QAAQ;YACR,QAAQ;YACR,mCAA2B;YAA3B,2BAA2B;YAC3B,eAAe;YACf,WAAW,EAAA;QAtNzB;UA2NY,YAAY;UjG3MpB,kBiG4MkC;UAC1B,uDAAuD;UAEvD,+CAA+C,EAAA;UA/N3D;YAiOc,kBAAkB;YAClB,iBAAiB;YACjB,aAAa;YACb,UAAU,EAAA;YApOxB;cAyOgB,gBAAgB;cAChB,kBAAkB;cAClB,eAAe,EAAA;cA3O/B;gBA8OkB,eAAe,EAAA;cA9OjC;gBAkPkB,gBAAgB;gBAChB,gBAAgB;gBAChB,uBAAuB,EAAA;YApPzC;cAyPgB,SAAS,EAAA;QAIf;UA7PV;YA8PY,gBAAgB,EAAA;YA9P5B;cAgQc,UAAU;cACV,WAAW;cACX,SzGrJM;cyGsJN,wBAAwB,EAAA,EACzB;MApQb;QAwQU,kBAAkB,EAAA;QAxQ5B;UA2QY,gBAAgB;UAChB,eAAe,EAAA;UA5Q3B;YA+Qc,aAAa,EAAA;UA/Q3B;YAmRc,kBAAkB,EAAA;YAnRhC;cAsRgB,kBAAkB,EAAA;QAtRlC;UA6Rc,kBAAkB,EAAA;MA7RhC;QAmSU,iBAAiB,EAAA;QAnS3B;UAsSY,YAAY;UACZ,sBAAsB,EAAA;UAvSlC;YA0Sc,kBAAkB;YAClB,mBAAmB,EAAA;YA3SjC;cA8SgB,kBAAkB,EAAA;QA9SlC;UAoTY,eAAe;UACf,cAAc;UACd,8BAA8B;UAC9B,kBAAkB,EAAA;QAvT9B;UA2TY,eAAe,EAAA;MA3T3B;QAkUY,kCAA0B;QAA1B,0BAA0B;QAC1B,kBAAkB;QAClB,WAAW;QACX,YAAY;QACZ,kBAAkB;QAClB,yBzG7RG;QyG8RH,cAAc;QACd,czG9TG;QyG+TH,kBAAkB;QAClB,QAAQ;QACR,SAAS,EAAA;MAKb;QAjVR;UAkVU,iBAAiB,EAAA,EAEpB;;AAIP;E1EzUA;I0E2UI,8BAAmB;IAAnB,6BAAmB;IAAnB,uBAAmB;IAAnB,mBAAmB,EAAA;IA1VvB;MA4VM,WAAW,EAAA;MAHf;QAMQ,aAAa,EAAA;MA/VvB;QAkWU,qBAAqB,EAAA;E1ExP/B;I0E+PI,oBAAa;IAAb,oBAAa;IAAb,aAAa;IACb,kBAAkB,EAAA,EACnB;;AAGH;EA9WA;IAiXM,WAAW,EAAA;IAFf;MAIM,gBAAgB,EAAA,EACjB;;AEtXP,YAAA;AAEA;EACE,8BAA2C;EAC3C,mBDcuB;ECbvB,oC3GuEQ;E2GtER,UAAU;EACV,YDLsB;ECMtB,WAAW;EACX,mD3GwMsC;E2GvMtC,2D3GuMsC;E2GtMtC,wD3GsMsC;E2GrMtC,uD3GqMsC,EAAA;E2G/MxC;IAaI,gBAAgB;IAChB,qBAAiB;IAAjB,iBAAiB;IACjB,4BAAsB;IAAtB,6BAAsB;IAAtB,0BAAsB;IAAtB,sBAAsB;IACtB,mBAAmB,EAAA;IAhBvB;MAmBM,kBDgB0B;MzHvByB,kC0HQjB;M1HHyB,0B0HGzB;MAClC,+BAA+B;MAC/B,uCAAuC,EAAA;MAtB7C;QAwBQ,YAAY,EAAA;MAxBpB;Q1HkCyD,oBAAuB;QAAvB,oBAAuB;QAAvB,aAAuB;QAjBf,yB0HY9B;Q1HZ8B,sB0HY9B;Q1HZ8B,mB0HY9B;QAC3B,mBAAmB;QACnB,8BAA2D;QAC3D,c3GrBO;QfC0C,kC0HqBf;Q1HhBuB,0B0HgBvB;QAClC,0BAA0B;QAC1B,kCAAkC,EAAA;QAElC;UACE,+C3G3BK,EAAA;Q2GXf;UA0CU,cAAc,EAAA;UA1CxB;YA6CY,mBDLqB;YCMrB,cAAc;YACd,iBAAiB;YACjB,cDvB0B,EAAA;YCzBtC;cAkDc,sBAAsB,EAAA;QAlDpC;UAwDU,cAAc;UACd,qBAAqB;UACrB,mB3GuBiB;U2GtBjB,cAAc;UACd,sBAAsB,EAAA;QA5DhC;UAgEU,kBAAkB;UAClB,iBAAiB,EAAA;QAjE3B;UAuEc,gBAAgB,EAAA;MAvE9B;QA8EQ,mBD5D6B,EAAA;QClBrC;UAiFY,cD9DwC;UC+DxC,oC3GRF;U2GSE,gB3GLY,EAAA;Q2G9ExB;UAsFY,c3G/CI,EAAA;M2GvChB;QA2FQ,mBDvEmD,EAAA;MCpB3D;QA8FQ,gBAAgB;QAChB,gBAAgB;QAChB,mBAAmB,EAAA;QAhG3B;UAmGU,oBAAa;UAAb,oBAAa;UAAb,aAAa;UACb,gBAAgB;UAChB,eAAe,EAAA;UArGzB;YAwGY,kBAAkB;YAClB,kBAAkB,EAAA;YAElB;cACE,eAAe;cACf,iBAAiB,EAAA;UA7G/B;YAkHY,kBAAkB;YAClB,QAAQ;YACR,UAAU;YACV,uCAA8B;YAA9B,+BAA8B;YAC9B,UAAU;YACV,WAAW;YACX,kBAAkB,EAAA;YAElB;cACE,OAAO;cACP,WAAW;cACX,wCAA+B;cAA/B,gCAA+B,EAAA;UA7H7C;YAkIY,kBAAkB;YAClB,gBAAgB;YAChB,eAAe,EAAA;UApI3B;YAwIY,gBAAgB;YAChB,gBAAgB;YAChB,c3GvDQ;Y2GwDR,eAAe,EAAA;UA3I3B;YA+IY,eAAe;YACf,kBAAkB;YAClB,cDxH0B;YCyH1B,iBAAiB;YACjB,0BAAsB;YAAtB,sBAAsB,EAAA;YAEtB;cACE,cAAc;cACd,kBAAkB,EAAA;YAGpB;cACE,kBAAkB,EAAA;YA3JhC;cA+Jc,MAAM;cACN,uBAAe;cAAf,eAAe;cACf,cDxIwB,EAAA;MCzBtC;QAwKQ,c3GjIQ;Q2GkIR,eAAe;QACf,gBAAgB;QAChB,yBAAyB,EAAA;QA3KjC;UA8KU,YAAY,EAAA;QA9KtB;UAoLY,+C3GzKG,EAAA;Q2GXf;UA0LY,+C3G/KG,EAAA;Q2GXf;UAgMU,cAAc;UACd,wBDpKoC,EAAA;UCsKpC;YACE,cAAc,EAAA;MApM1B;QA2MU,oBAAoB,EAAA;QA3M9B;UA6MY,2FAA4D;UAA5D,4DAA4D;UAC5D,yBAAyB;UACzB,c3GpMG,EAAA;M2GXf;QAmNU,wCAAwC,EAAA;QAExC;UACE,wCAAwC,EAAA;MAtNpD;QA4NQ,aAAa,EAAA;QA5NrB;UA+NU,WAAW,EAAA;UAEX;YACE,SAAS,EAAA;QAIb;UACE,cAAc,EAAA;IAvOxB;MAkPc,c3GvOC,EAAA;I2GXf;MAyPM,mBAAmB;MACnB,aAAY;MACZ,gBAAgB,EAAA;MA3PtB;QA8PQ,UAAU,EAAA;QA9PlB;UAgQU,c3GrPK;U2GsPL,kCD3N4C;UC4N5C,kBAAkB;UAClB,oBD9N0B;UC+N1B,cAAc;UACd,YAAY;UACZ,aAAa,EAAA;UAtQvB;YAwQY,gBAAgB;YAChB,gCAAgC;YAChC,cAAc;YACd,kBAAkB;YAClB,SAAQ;YACR,QAAO;Y9BxQlB,mC8ByQ8C;Y9BxQrC,2B8BwQqC;YACnC,YAAgD;YAChD,iBAAiB,EAAA;UAhR7B;YAmRY,cDhQwC;YCiQxC,uBAAuB,EAAA;UApRnC;YAuRY,cD/P+D,EAAA;QCxB3E;UA2RU,uBAAuB,EAAA;;AAOjC,6BAAA;AACA;EACE;IACE,eAAe;IACf,8BAA2C;IAC3C,S3G1LgB;I2G2LhB,SAAS;IACT,cAAc;IACd,aD1SoB;IC2SpB,sCAAsC;IAEtC,8BAA8B,EAAA;IAThC;MAWI,QAAQ,EAAA,EACT;;AClTL;EACE,8BAA2C;E3HmCY,oBAAuB;EAAvB,oBAAuB;EAAvB,aAAuB;EAjBf,8B2HhBpC;E3HgBoC,6B2HhBpC;E3HgBoC,uB2HhBpC;E3HgBoC,mB2HhBpC;EAC3B,eAAe;EACf,gBAAgB,EAAA;EALlB;IAQI,WAAW;IACX,iBAAiB,EAAA;;AAIrB;EAGM,iB5G+Fc,EAAA;;A4G1FpB;EACE,uD5G2LsC;E4G3LtC,+C5G2LsC;E4G1LtC,yBAAwC;EACxC,8BAA2C;E3HYY,oBAAuB;EAAvB,oBAAuB;EAAvB,aAAuB;EAjBf,4B2HOjC;E3HPiC,6B2HOjC;E3HPiC,0B2HOjC;E3HPiC,sB2HOjC,EAAA;EAC9B;IANF;MAOI,cAAc;MACd,WAAW,EAAA,EAEd;;AAED;EACE,mB5GkBkB;E4GjBlB,yBAAyB;EACzB,WAAW;E3HjBoD,mB2HkB3C;E3HlB2C,oB2HkB3C;E3HlB2C,Y2HkB3C,EAAA;;ACpCtB;EAEQ,cAAc;EACd,UAAU,EAAA;EjGqEd;IiGxEJ;MAMY,kBAAkB;MAClB,QAAQ;MACR,WAAW,EAAA,EAElB;;AAGL;EAGY,c7GJG;E6GKH,kBAAkB;EAClB,2FAA4D;EAA5D,4DAA4D;EAC5D,SAAS;EACT,gBAAgB,EAAA;EAP5B;IASgB,gBAAgB;IAChB,eAAe,EAAA;EAV/B;IAcgB,cAAc,EAAA;EAd9B;IAiBgB,iBAAiB;IACjB,2BAAkB;IAAlB,kBAAkB,EAAA;;AAlBlC;EAwBgB,6BAA6B;EAC7B,YAAY;EACZ,eAAe;EACf,cAAc;EACd,gBAAgB;EAChB,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,yBAAmB;EAAnB,sBAAmB;EAAnB,mBAAmB,EAAA;EA9BnC;IAiCoB,cAAc;IACd,kBAAkB;IAClB,eAAe,EAAA;IACf;MACI,iBAAiB;MACjB,eAAe,EAAA;;AAtCvC;EA2CgB,+B7GFM;E6GGN,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,wBAAuB;EAAvB,qBAAuB;EAAvB,uBAAuB,EAAA;EA7CvC;IAgDoB,oBAAa;IAAb,oBAAa;IAAb,aAAa;IACb,yBAAmB;IAAnB,sBAAmB;IAAnB,mBAAmB,EAAA;EAInB;IArDpB;MAsDwB,gC7GbF,EAAA,E6GkBL;EAHG;IAxDpB;MAyDwB,kBAAkB,EAAA,EAEzB;EAGG;IA9DpB;MA+DwB,kBAAkB;MAClB,gC7GvBF,EAAA,E6GyBL;EAGG;IArEpB;MAsEwB,kBAAkB;MAClB,gC7G9BF,EAAA,E6GgCL;EAzEjB;IA4EoB,YAAY,EAAA;;AAOhC;EAEQ,eAAe;EACf,gBAAgB,EAAA;;AAHxB;EAMQ,eAAe;EACf,iBAAiB,EAAA;;AAIzB;EACI,oBAAa;EAAb,oBAAa;EAAb,aAAa;EACb,yBAAmB;EAAnB,sBAAmB;EAAnB,mBAAmB,EAAA;EAFvB;IAKQ,qBAAqB;IACrB,WAAW;IACX,YAAY;IACZ,6BAA6B;IAC7B,kBAAkB,EAAA;IAElB;MACI,iBAAiB;MACjB,eAAe,EAAA;;AAK3B;EACI,YAAY;EACZ,kBAAkB;EAClB,yB7G1EkB;E6G2ElB,yB7GrHW;E6GsHX,cAAc,EAAA;EALlB;IAQQ,6BAA6B;IAC7B,cAAc;IACd,aAAa;IACb,SAAS,EAAA;EAXjB;;;IAcQ,SAAS;IACT,eAAe;IACf,gBAAgB;IAChB,cAAc;IACd,UAAU,EAAA;;AAIlB;EACI,cAAc,EAAA;EADlB;IAKgB,iBAAiB;IACjB,mBAAmB,EAAA;EANnC;IAWoB,eAAe,EAAA;EAXnC;IAcoB,aAAa,EAAA;EAdjC;IAoBoB,eAAe,EAAA;EApBnC;IAuBoB,aAAa,EAAA;EAQb;IA/BpB;MAgCwB,kDAAyC;MAAzC,0CAAyC,EAAA,EAEhD;;AAMjB;EAEQ,mBAAmB,EAAA;;AAI3B;EACI,gC7G5IkB,EAAA;;A6G+ItB;EACI,iBAAiB,EAAA;EADrB;IAIQ,oBAAa;IAAb,oBAAa;IAAb,aAAa;IACb,+B7GpJc;I6GqJd,eAAe,EAAA;IAEf;MACI,kBAAkB;MAClB,8B7GzJU,EAAA;I6G4Jd;MAbR;QAcY,mBAAmB;QACnB,sBAAsB,EAAA,EAgI7B;IA/IL;MAmBY,kBAAkB,EAAA;MAElB;QACI,mBAAmB;QACnB,kBAAkB,EAAA;MAGtB;QA1BZ;UA2BgB,gC7G1KM,EAAA,E6GsLb;MATG;QA9BZ;UA+BgB,kBAAkB;UAClB,qBAAqB,EAAA;UAXzB;YAcQ,iBAAiB;YACjB,oBAAoB,EAAA,EACvB;IAML;MA3CZ;QA4CgB,qBAAqB;QACrB,gC7G5LM;Q6G6LN,kBAAkB,EAAA;QAElB;UACI,iBAAiB;UACjB,oBAAoB;UACpB,mBAAmB,EAAA,EACtB;IAGL;MAvDZ;QAwDgB,oBAAoB,EAAA;QARpB;UAWI,qBAAqB,EAAA,EACxB;IAML;MAlEZ;QAmEgB,oBAAoB,EAAA;QAEpB;UACI,kBAAkB;UAClB,qBAAqB,EAAA,EACxB;IAEL;MA1EZ;QA2EgB,kBAAkB;QAClB,qBAAqB;QACrB,gC7G5NM,EAAA;Q6GoNN;UAWI,iBAAiB;UACjB,oBAAoB,EAAA,EACvB;IAlFjB;MAuFY,eAAe;MACf,mBAAmB,EAAA;MAEnB;QACI,iBAAiB;QACjB,kBAAkB;QAClB,mBAAmB,EAAA;MAGvB;QAhGZ;UAiGgB,kBAAkB;UAClB,oBAAoB,EAAA;UARxB;YAWQ,iBAAiB;YACjB,qBAAqB,EAAA,EACxB;IAvGjB;MA4GY,oBAAa;MAAb,oBAAa;MAAb,aAAa;MACb,4BAAsB;MAAtB,6BAAsB;MAAtB,0BAAsB;MAAtB,sBAAsB;MACtB,qBAAyB;MAAzB,kBAAyB;MAAzB,yBAAyB,EAAA;IA9GrC;MAkHY,eAAe;MACf,gBAAgB;MAChB,cAAc,EAAA;IApH1B;MAwHY,iBAAiB,EAAA;IAxH7B;MA4HY,eAAe;MACf,cAAc,EAAA;IA7H1B;MAiIY,WAAW;MACX,YAAY;MACZ,eAAe;MACf,c7G7TG;M6G8TH,oBAAa;MAAb,oBAAa;MAAb,aAAa;MACb,yBAAmB;MAAnB,sBAAmB;MAAnB,mBAAmB;MACnB,wBAAuB;MAAvB,qBAAuB;MAAvB,uBAAuB;MACvB,iBAAiB,EAAA;MAEjB;QACI,cAAc;QACd,kBAAkB,EAAA;;AAMlC;EACI,kBAAkB,EAAA;EADtB;IAGQ,kBAAkB;IAClB,QAAQ;IACR,SAAS;IACT,wCAAgC;IAAhC,gCAAgC,EAAA;;AAIxC;EACI,qBAAqB;EACrB,WAAW;EACX,YAAY,EAAA;EAHhB;IAMQ,eAAe;IACf,gBAAgB;IAChB,cAAc,EAAA;;AAItB;EAKgB,e7GvUD,EAAA;;A6GkUf;EAWgB,e7G/UH,EAAA;;A6GoUb;EAiBgB,e7GxVgB,EAAA;;A6GuUhC;EAsBY,iBAAiB;EACjB,qBAAqB,EAAA;EAErB;IAzBZ;MA0BgB,iBAAiB,EAAA,EAExB;;AAOO;EAnChB;IAoCoB,iDAAwC;IAAxC,yCAAwC,EAAA,EAE/C;;AAKb;EAEQ,cAAc;EACd,eAAe;EACf,gBAAgB;EAChB,iBAAiB,EAAA;EALzB;IAQY,cAAc,EAAA;;AAI1B;EAIgB,WAAW;EACX,YAAY;EACZ,eAAe,EAAA;;Abza/B;EakbY,eAAe;EACf,gBAAgB,EAAA;EAEhB;IbrbZ;MasbgB,uBAAuB,EAAA,EAE9B","file":"style.css","sourcesContent":["/*-------------------------------------------------------------------\n ===== Table of Contents =====\n\n * Bootstrap functions\n * Template variables\n * SCSS Compass Functions\n * Boostrap Main SCSS\n * Template mixins\n + Animation Mixins\n + Background Mixins\n + Badge Mixins\n + Button Mixins\n + Miscellaneous Mixins\n + BlockQuote Mixins\n + Cards Mixins\n + Color Functions Mixins\n + Tooltips\n + popovers\n * Core Styles\n + Reset Styles\n + Fonts\n + Functions\n + Backgrounds\n + Typography\n + Miscellaneous\n + Footer\n + Layouts\n + Utilities\n + Demo styles\n * Components\n + Accordions\n + Badges\n + Bootstrap Alerts\n + Boostrap Progress\n + Buttons\n + Breadcrumbs\n + Cards\n + Checkboxes and Radios\n + Dropdowns\n + Forms\n + Google maps\n + Icons\n + Loaders\n + Lists\n + Modals\n + Pagination\n + Popover\n + Preview\n + Tables\n + Tabs\n + Timeline\n + Todo List\n + Tooltips\n + User Profile\n + Pricing table\n * Email\n + Mail Sidebar\n + Mail List Container\n + Message Content\n * Plugin Overrides\n + Ace Editor\n + Avgrund Popup\n + Bootstrap Tour\n + Chartist\n + CodeMirror\n + Colcade\n + Colorpicker\n + Context Menu\n + Data Tables\n + Datepicker\n + Dropify\n + Dropzone\n + Flot chart\n + Full Calendar\n + Google Charts\n + Icheck\n + Jquery File Upload\n + Js-grid\n + Jvectormap\n + Light Gallery\n + Listify\n + No-ui-slider\n + Owl-carousel\n + Progressbar-js\n + Pws-tabs\n + Quill Editor\n + Rating\n + Select2\n + Summernote Editor\n + SweetAlert\n + Switchery\n + Tags\n + TinyMCE Editor\n + Toast\n + Typeahead\n + Wysi Editor\n + X-editable\n + Wizard\n * Landing screens\n + Auth\n + Lock Screen\n-------------------------------------------------------------------*/\n\n/*-------------------------------------------------------------------*/\n/* === Import Bootstrap functions and variables === */\n@import \"../node_modules/bootstrap/scss/functions\";\n@import \"../node_modules/bootstrap/scss/variables\";\n\n/*-------------------------------------------------------------------*/\n/* === Import template variables === */\n@import \"./light/variables\";\n@import 'variables';\n\n/*-------------------------------------------------------------------*/\n/* === SCSS Compass Functions === */\n@import \"../node_modules/compass-mixins/lib/compass\";\n@import \"../node_modules/compass-mixins/lib/animate\";\n\n/*-------------------------------------------------------------------*/\n/* === Boostrap Main SCSS === */\n@import \"../node_modules/bootstrap/scss/bootstrap\";\n\n/*-------------------------------------------------------------------*/\n/* === Template mixins === */\n@import \"./shared/mixins/misc\";\n@import \"./shared/mixins/animation\";\n@import \"./shared/mixins/blockqoute\";\n@import \"./shared/mixins/buttons\";\n@import \"./shared/mixins/cards\";\n@import \"./shared/mixins/pagination\";\n\n/*-------------------------------------------------------------------*/\n/* === Core Styles === */\n@import \"./shared/reset\";\n@import \"./shared/fonts\";\n@import \"./shared/functions\";\n@import \"./shared/typography\";\n@import \"./shared/misc\";\n@import \"./shared/footer\";\n@import \"./shared/utilities\";\n@import \"./shared/demo\";\n\n/*-------------------------------------------------------------------*/\n/* === Components === */\n@import \"./shared/components/buttons\";\n@import \"./shared/components/cards\";\n@import \"./shared/components/checkbox-radio\";\n@import \"./shared/components/dropdown\";\n@import \"./shared/components/forms\";\n@import \"./shared/components/icons\";\n@import \"./shared/components/lists\";\n@import \"./shared/components/modals\";\n@import \"./shared/components/pagination\";\n@import \"./shared/components/tables\";\n@import \"./shared/components/preview\";\n\n/*-------------------------------------------------------------------*/\n/* === Plugin overrides === */\n@import \"./light/components/plugin-overrides/chartist\";\n@import \"./light/components/plugin-overrides/select2\";\n@import \"./light/components/plugin-overrides/typeahead\";\n\n/*-------------------------------------------------------------------*/\n/* === Landing screens === */\n@import \"./shared/landing-screens/auth\";\n\n@import 'navbar';\n@import 'sidebar';\n//@import './layouts';\n@import './vertical/vertical-wrapper';\n@import 'dashboard';","/*-------------------------------------------------------------------\n ===== Table of Contents =====\n\n * Bootstrap functions\n * Template variables\n * SCSS Compass Functions\n * Boostrap Main SCSS\n * Template mixins\n + Animation Mixins\n + Background Mixins\n + Badge Mixins\n + Button Mixins\n + Miscellaneous Mixins\n + BlockQuote Mixins\n + Cards Mixins\n + Color Functions Mixins\n + Tooltips\n + popovers\n * Core Styles\n + Reset Styles\n + Fonts\n + Functions\n + Backgrounds\n + Typography\n + Miscellaneous\n + Footer\n + Layouts\n + Utilities\n + Demo styles\n * Components\n + Accordions\n + Badges\n + Bootstrap Alerts\n + Boostrap Progress\n + Buttons\n + Breadcrumbs\n + Cards\n + Checkboxes and Radios\n + Dropdowns\n + Forms\n + Google maps\n + Icons\n + Loaders\n + Lists\n + Modals\n + Pagination\n + Popover\n + Preview\n + Tables\n + Tabs\n + Timeline\n + Todo List\n + Tooltips\n + User Profile\n + Pricing table\n * Email\n + Mail Sidebar\n + Mail List Container\n + Message Content\n * Plugin Overrides\n + Ace Editor\n + Avgrund Popup\n + Bootstrap Tour\n + Chartist\n + CodeMirror\n + Colcade\n + Colorpicker\n + Context Menu\n + Data Tables\n + Datepicker\n + Dropify\n + Dropzone\n + Flot chart\n + Full Calendar\n + Google Charts\n + Icheck\n + Jquery File Upload\n + Js-grid\n + Jvectormap\n + Light Gallery\n + Listify\n + No-ui-slider\n + Owl-carousel\n + Progressbar-js\n + Pws-tabs\n + Quill Editor\n + Rating\n + Select2\n + Summernote Editor\n + SweetAlert\n + Switchery\n + Tags\n + TinyMCE Editor\n + Toast\n + Typeahead\n + Wysi Editor\n + X-editable\n + Wizard\n * Landing screens\n + Auth\n + Lock Screen\n-------------------------------------------------------------------*/\n/*-------------------------------------------------------------------*/\n/* === Import Bootstrap functions and variables === */\n/*-------------------------------------------------------------------*/\n/* === Import template variables === */\n/*-------------------------------------------------------------------*/\n/* === SCSS Compass Functions === */\n@import url(\"https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap\");\n@-moz-keyframes flash {\n 0% {\n opacity: 1; }\n 25% {\n opacity: 0; }\n 50% {\n opacity: 1; }\n 75% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@-webkit-keyframes flash {\n 0% {\n opacity: 1; }\n 25% {\n opacity: 0; }\n 50% {\n opacity: 1; }\n 75% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@-o-keyframes flash {\n 0% {\n opacity: 1; }\n 25% {\n opacity: 0; }\n 50% {\n opacity: 1; }\n 75% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@-ms-keyframes flash {\n 0% {\n opacity: 1; }\n 25% {\n opacity: 0; }\n 50% {\n opacity: 1; }\n 75% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@keyframes flash {\n 0% {\n opacity: 1; }\n 25% {\n opacity: 0; }\n 50% {\n opacity: 1; }\n 75% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@-moz-keyframes bounce {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 40% {\n -webkit-transform: translateY(-30px);\n -moz-transform: translateY(-30px);\n -ms-transform: translateY(-30px);\n -o-transform: translateY(-30px);\n transform: translateY(-30px); }\n 50% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 60% {\n -webkit-transform: translateY(-15px);\n -moz-transform: translateY(-15px);\n -ms-transform: translateY(-15px);\n -o-transform: translateY(-15px);\n transform: translateY(-15px); }\n 80% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-webkit-keyframes bounce {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 40% {\n -webkit-transform: translateY(-30px);\n -moz-transform: translateY(-30px);\n -ms-transform: translateY(-30px);\n -o-transform: translateY(-30px);\n transform: translateY(-30px); }\n 50% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 60% {\n -webkit-transform: translateY(-15px);\n -moz-transform: translateY(-15px);\n -ms-transform: translateY(-15px);\n -o-transform: translateY(-15px);\n transform: translateY(-15px); }\n 80% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-o-keyframes bounce {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 40% {\n -webkit-transform: translateY(-30px);\n -moz-transform: translateY(-30px);\n -ms-transform: translateY(-30px);\n -o-transform: translateY(-30px);\n transform: translateY(-30px); }\n 50% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 60% {\n -webkit-transform: translateY(-15px);\n -moz-transform: translateY(-15px);\n -ms-transform: translateY(-15px);\n -o-transform: translateY(-15px);\n transform: translateY(-15px); }\n 80% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-ms-keyframes bounce {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 40% {\n -webkit-transform: translateY(-30px);\n -moz-transform: translateY(-30px);\n -ms-transform: translateY(-30px);\n -o-transform: translateY(-30px);\n transform: translateY(-30px); }\n 50% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 60% {\n -webkit-transform: translateY(-15px);\n -moz-transform: translateY(-15px);\n -ms-transform: translateY(-15px);\n -o-transform: translateY(-15px);\n transform: translateY(-15px); }\n 80% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@keyframes bounce {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 40% {\n -webkit-transform: translateY(-30px);\n -moz-transform: translateY(-30px);\n -ms-transform: translateY(-30px);\n -o-transform: translateY(-30px);\n transform: translateY(-30px); }\n 50% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 60% {\n -webkit-transform: translateY(-15px);\n -moz-transform: translateY(-15px);\n -ms-transform: translateY(-15px);\n -o-transform: translateY(-15px);\n transform: translateY(-15px); }\n 80% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-moz-keyframes shake {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 10% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 20% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 30% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 40% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 50% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 60% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 70% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 80% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 90% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-webkit-keyframes shake {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 10% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 20% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 30% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 40% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 50% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 60% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 70% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 80% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 90% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-o-keyframes shake {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 10% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 20% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 30% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 40% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 50% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 60% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 70% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 80% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 90% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-ms-keyframes shake {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 10% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 20% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 30% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 40% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 50% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 60% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 70% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 80% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 90% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@keyframes shake {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 10% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 20% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 30% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 40% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 50% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 60% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 70% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 80% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 90% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-moz-keyframes tada {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 10% {\n -webkit-transform: scale(0.9) rotate(-3deg);\n -moz-transform: scale(0.9) rotate(-3deg);\n -ms-transform: scale(0.9) rotate(-3deg);\n -o-transform: scale(0.9) rotate(-3deg);\n transform: scale(0.9) rotate(-3deg); }\n 20% {\n -webkit-transform: scale(0.9) rotate(-3deg);\n -moz-transform: scale(0.9) rotate(-3deg);\n -ms-transform: scale(0.9) rotate(-3deg);\n -o-transform: scale(0.9) rotate(-3deg);\n transform: scale(0.9) rotate(-3deg); }\n 30% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 40% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 50% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 60% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 70% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 80% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 90% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 100% {\n -webkit-transform: scale(1) rotate(0);\n -moz-transform: scale(1) rotate(0);\n -ms-transform: scale(1) rotate(0);\n -o-transform: scale(1) rotate(0);\n transform: scale(1) rotate(0); } }\n\n@-webkit-keyframes tada {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 10% {\n -webkit-transform: scale(0.9) rotate(-3deg);\n -moz-transform: scale(0.9) rotate(-3deg);\n -ms-transform: scale(0.9) rotate(-3deg);\n -o-transform: scale(0.9) rotate(-3deg);\n transform: scale(0.9) rotate(-3deg); }\n 20% {\n -webkit-transform: scale(0.9) rotate(-3deg);\n -moz-transform: scale(0.9) rotate(-3deg);\n -ms-transform: scale(0.9) rotate(-3deg);\n -o-transform: scale(0.9) rotate(-3deg);\n transform: scale(0.9) rotate(-3deg); }\n 30% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 40% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 50% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 60% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 70% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 80% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 90% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 100% {\n -webkit-transform: scale(1) rotate(0);\n -moz-transform: scale(1) rotate(0);\n -ms-transform: scale(1) rotate(0);\n -o-transform: scale(1) rotate(0);\n transform: scale(1) rotate(0); } }\n\n@-o-keyframes tada {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 10% {\n -webkit-transform: scale(0.9) rotate(-3deg);\n -moz-transform: scale(0.9) rotate(-3deg);\n -ms-transform: scale(0.9) rotate(-3deg);\n -o-transform: scale(0.9) rotate(-3deg);\n transform: scale(0.9) rotate(-3deg); }\n 20% {\n -webkit-transform: scale(0.9) rotate(-3deg);\n -moz-transform: scale(0.9) rotate(-3deg);\n -ms-transform: scale(0.9) rotate(-3deg);\n -o-transform: scale(0.9) rotate(-3deg);\n transform: scale(0.9) rotate(-3deg); }\n 30% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 40% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 50% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 60% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 70% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 80% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 90% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 100% {\n -webkit-transform: scale(1) rotate(0);\n -moz-transform: scale(1) rotate(0);\n -ms-transform: scale(1) rotate(0);\n -o-transform: scale(1) rotate(0);\n transform: scale(1) rotate(0); } }\n\n@-ms-keyframes tada {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 10% {\n -webkit-transform: scale(0.9) rotate(-3deg);\n -moz-transform: scale(0.9) rotate(-3deg);\n -ms-transform: scale(0.9) rotate(-3deg);\n -o-transform: scale(0.9) rotate(-3deg);\n transform: scale(0.9) rotate(-3deg); }\n 20% {\n -webkit-transform: scale(0.9) rotate(-3deg);\n -moz-transform: scale(0.9) rotate(-3deg);\n -ms-transform: scale(0.9) rotate(-3deg);\n -o-transform: scale(0.9) rotate(-3deg);\n transform: scale(0.9) rotate(-3deg); }\n 30% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 40% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 50% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 60% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 70% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 80% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 90% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 100% {\n -webkit-transform: scale(1) rotate(0);\n -moz-transform: scale(1) rotate(0);\n -ms-transform: scale(1) rotate(0);\n -o-transform: scale(1) rotate(0);\n transform: scale(1) rotate(0); } }\n\n@keyframes tada {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 10% {\n -webkit-transform: scale(0.9) rotate(-3deg);\n -moz-transform: scale(0.9) rotate(-3deg);\n -ms-transform: scale(0.9) rotate(-3deg);\n -o-transform: scale(0.9) rotate(-3deg);\n transform: scale(0.9) rotate(-3deg); }\n 20% {\n -webkit-transform: scale(0.9) rotate(-3deg);\n -moz-transform: scale(0.9) rotate(-3deg);\n -ms-transform: scale(0.9) rotate(-3deg);\n -o-transform: scale(0.9) rotate(-3deg);\n transform: scale(0.9) rotate(-3deg); }\n 30% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 40% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 50% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 60% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 70% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 80% {\n -webkit-transform: scale(1.1) rotate(-3deg);\n -moz-transform: scale(1.1) rotate(-3deg);\n -ms-transform: scale(1.1) rotate(-3deg);\n -o-transform: scale(1.1) rotate(-3deg);\n transform: scale(1.1) rotate(-3deg); }\n 90% {\n -webkit-transform: scale(1.1) rotate(3deg);\n -moz-transform: scale(1.1) rotate(3deg);\n -ms-transform: scale(1.1) rotate(3deg);\n -o-transform: scale(1.1) rotate(3deg);\n transform: scale(1.1) rotate(3deg); }\n 100% {\n -webkit-transform: scale(1) rotate(0);\n -moz-transform: scale(1) rotate(0);\n -ms-transform: scale(1) rotate(0);\n -o-transform: scale(1) rotate(0);\n transform: scale(1) rotate(0); } }\n\n@-moz-keyframes swing {\n 20%, 40%, 60%, 80%, 100% {\n -webkit-transform-origin: top center 50%;\n -moz-transform-origin: top center 50%;\n -ms-transform-origin: top center 50%;\n -o-transform-origin: top center 50%;\n transform-origin: top center 50%; }\n 20% {\n -webkit-transform: rotate(15deg);\n -moz-transform: rotate(15deg);\n -ms-transform: rotate(15deg);\n -o-transform: rotate(15deg);\n transform: rotate(15deg); }\n 40% {\n -webkit-transform: rotate(-10deg);\n -moz-transform: rotate(-10deg);\n -ms-transform: rotate(-10deg);\n -o-transform: rotate(-10deg);\n transform: rotate(-10deg); }\n 60% {\n -webkit-transform: rotate(5deg);\n -moz-transform: rotate(5deg);\n -ms-transform: rotate(5deg);\n -o-transform: rotate(5deg);\n transform: rotate(5deg); }\n 80% {\n -webkit-transform: rotate(-5deg);\n -moz-transform: rotate(-5deg);\n -ms-transform: rotate(-5deg);\n -o-transform: rotate(-5deg);\n transform: rotate(-5deg); }\n 100% {\n -webkit-transform: rotate(0deg);\n -moz-transform: rotate(0deg);\n -ms-transform: rotate(0deg);\n -o-transform: rotate(0deg);\n transform: rotate(0deg); } }\n\n@-webkit-keyframes swing {\n 20%, 40%, 60%, 80%, 100% {\n -webkit-transform-origin: top center 50%;\n -moz-transform-origin: top center 50%;\n -ms-transform-origin: top center 50%;\n -o-transform-origin: top center 50%;\n transform-origin: top center 50%; }\n 20% {\n -webkit-transform: rotate(15deg);\n -moz-transform: rotate(15deg);\n -ms-transform: rotate(15deg);\n -o-transform: rotate(15deg);\n transform: rotate(15deg); }\n 40% {\n -webkit-transform: rotate(-10deg);\n -moz-transform: rotate(-10deg);\n -ms-transform: rotate(-10deg);\n -o-transform: rotate(-10deg);\n transform: rotate(-10deg); }\n 60% {\n -webkit-transform: rotate(5deg);\n -moz-transform: rotate(5deg);\n -ms-transform: rotate(5deg);\n -o-transform: rotate(5deg);\n transform: rotate(5deg); }\n 80% {\n -webkit-transform: rotate(-5deg);\n -moz-transform: rotate(-5deg);\n -ms-transform: rotate(-5deg);\n -o-transform: rotate(-5deg);\n transform: rotate(-5deg); }\n 100% {\n -webkit-transform: rotate(0deg);\n -moz-transform: rotate(0deg);\n -ms-transform: rotate(0deg);\n -o-transform: rotate(0deg);\n transform: rotate(0deg); } }\n\n@-o-keyframes swing {\n 20%, 40%, 60%, 80%, 100% {\n -webkit-transform-origin: top center 50%;\n -moz-transform-origin: top center 50%;\n -ms-transform-origin: top center 50%;\n -o-transform-origin: top center 50%;\n transform-origin: top center 50%; }\n 20% {\n -webkit-transform: rotate(15deg);\n -moz-transform: rotate(15deg);\n -ms-transform: rotate(15deg);\n -o-transform: rotate(15deg);\n transform: rotate(15deg); }\n 40% {\n -webkit-transform: rotate(-10deg);\n -moz-transform: rotate(-10deg);\n -ms-transform: rotate(-10deg);\n -o-transform: rotate(-10deg);\n transform: rotate(-10deg); }\n 60% {\n -webkit-transform: rotate(5deg);\n -moz-transform: rotate(5deg);\n -ms-transform: rotate(5deg);\n -o-transform: rotate(5deg);\n transform: rotate(5deg); }\n 80% {\n -webkit-transform: rotate(-5deg);\n -moz-transform: rotate(-5deg);\n -ms-transform: rotate(-5deg);\n -o-transform: rotate(-5deg);\n transform: rotate(-5deg); }\n 100% {\n -webkit-transform: rotate(0deg);\n -moz-transform: rotate(0deg);\n -ms-transform: rotate(0deg);\n -o-transform: rotate(0deg);\n transform: rotate(0deg); } }\n\n@-ms-keyframes swing {\n 20%, 40%, 60%, 80%, 100% {\n -webkit-transform-origin: top center 50%;\n -moz-transform-origin: top center 50%;\n -ms-transform-origin: top center 50%;\n -o-transform-origin: top center 50%;\n transform-origin: top center 50%; }\n 20% {\n -webkit-transform: rotate(15deg);\n -moz-transform: rotate(15deg);\n -ms-transform: rotate(15deg);\n -o-transform: rotate(15deg);\n transform: rotate(15deg); }\n 40% {\n -webkit-transform: rotate(-10deg);\n -moz-transform: rotate(-10deg);\n -ms-transform: rotate(-10deg);\n -o-transform: rotate(-10deg);\n transform: rotate(-10deg); }\n 60% {\n -webkit-transform: rotate(5deg);\n -moz-transform: rotate(5deg);\n -ms-transform: rotate(5deg);\n -o-transform: rotate(5deg);\n transform: rotate(5deg); }\n 80% {\n -webkit-transform: rotate(-5deg);\n -moz-transform: rotate(-5deg);\n -ms-transform: rotate(-5deg);\n -o-transform: rotate(-5deg);\n transform: rotate(-5deg); }\n 100% {\n -webkit-transform: rotate(0deg);\n -moz-transform: rotate(0deg);\n -ms-transform: rotate(0deg);\n -o-transform: rotate(0deg);\n transform: rotate(0deg); } }\n\n@keyframes swing {\n 20%, 40%, 60%, 80%, 100% {\n -webkit-transform-origin: top center 50%;\n -moz-transform-origin: top center 50%;\n -ms-transform-origin: top center 50%;\n -o-transform-origin: top center 50%;\n transform-origin: top center 50%; }\n 20% {\n -webkit-transform: rotate(15deg);\n -moz-transform: rotate(15deg);\n -ms-transform: rotate(15deg);\n -o-transform: rotate(15deg);\n transform: rotate(15deg); }\n 40% {\n -webkit-transform: rotate(-10deg);\n -moz-transform: rotate(-10deg);\n -ms-transform: rotate(-10deg);\n -o-transform: rotate(-10deg);\n transform: rotate(-10deg); }\n 60% {\n -webkit-transform: rotate(5deg);\n -moz-transform: rotate(5deg);\n -ms-transform: rotate(5deg);\n -o-transform: rotate(5deg);\n transform: rotate(5deg); }\n 80% {\n -webkit-transform: rotate(-5deg);\n -moz-transform: rotate(-5deg);\n -ms-transform: rotate(-5deg);\n -o-transform: rotate(-5deg);\n transform: rotate(-5deg); }\n 100% {\n -webkit-transform: rotate(0deg);\n -moz-transform: rotate(0deg);\n -ms-transform: rotate(0deg);\n -o-transform: rotate(0deg);\n transform: rotate(0deg); } }\n\n@-moz-keyframes wobble {\n 0% {\n -webkit-transform: translateX(0%);\n -moz-transform: translateX(0%);\n -ms-transform: translateX(0%);\n -o-transform: translateX(0%);\n transform: translateX(0%); }\n 15% {\n -webkit-transform: translateX(-25%) rotate(-5deg);\n -moz-transform: translateX(-25%) rotate(-5deg);\n -ms-transform: translateX(-25%) rotate(-5deg);\n -o-transform: translateX(-25%) rotate(-5deg);\n transform: translateX(-25%) rotate(-5deg); }\n 30% {\n -webkit-transform: translateX(20%) rotate(3deg);\n -moz-transform: translateX(20%) rotate(3deg);\n -ms-transform: translateX(20%) rotate(3deg);\n -o-transform: translateX(20%) rotate(3deg);\n transform: translateX(20%) rotate(3deg); }\n 45% {\n -webkit-transform: translateX(-15%) rotate(-3deg);\n -moz-transform: translateX(-15%) rotate(-3deg);\n -ms-transform: translateX(-15%) rotate(-3deg);\n -o-transform: translateX(-15%) rotate(-3deg);\n transform: translateX(-15%) rotate(-3deg); }\n 60% {\n -webkit-transform: translateX(10%) rotate(2deg);\n -moz-transform: translateX(10%) rotate(2deg);\n -ms-transform: translateX(10%) rotate(2deg);\n -o-transform: translateX(10%) rotate(2deg);\n transform: translateX(10%) rotate(2deg); }\n 75% {\n -webkit-transform: translateX(-5%) rotate(-1deg);\n -moz-transform: translateX(-5%) rotate(-1deg);\n -ms-transform: translateX(-5%) rotate(-1deg);\n -o-transform: translateX(-5%) rotate(-1deg);\n transform: translateX(-5%) rotate(-1deg); }\n 100% {\n -webkit-transform: translateX(0%);\n -moz-transform: translateX(0%);\n -ms-transform: translateX(0%);\n -o-transform: translateX(0%);\n transform: translateX(0%); } }\n\n@-webkit-keyframes wobble {\n 0% {\n -webkit-transform: translateX(0%);\n -moz-transform: translateX(0%);\n -ms-transform: translateX(0%);\n -o-transform: translateX(0%);\n transform: translateX(0%); }\n 15% {\n -webkit-transform: translateX(-25%) rotate(-5deg);\n -moz-transform: translateX(-25%) rotate(-5deg);\n -ms-transform: translateX(-25%) rotate(-5deg);\n -o-transform: translateX(-25%) rotate(-5deg);\n transform: translateX(-25%) rotate(-5deg); }\n 30% {\n -webkit-transform: translateX(20%) rotate(3deg);\n -moz-transform: translateX(20%) rotate(3deg);\n -ms-transform: translateX(20%) rotate(3deg);\n -o-transform: translateX(20%) rotate(3deg);\n transform: translateX(20%) rotate(3deg); }\n 45% {\n -webkit-transform: translateX(-15%) rotate(-3deg);\n -moz-transform: translateX(-15%) rotate(-3deg);\n -ms-transform: translateX(-15%) rotate(-3deg);\n -o-transform: translateX(-15%) rotate(-3deg);\n transform: translateX(-15%) rotate(-3deg); }\n 60% {\n -webkit-transform: translateX(10%) rotate(2deg);\n -moz-transform: translateX(10%) rotate(2deg);\n -ms-transform: translateX(10%) rotate(2deg);\n -o-transform: translateX(10%) rotate(2deg);\n transform: translateX(10%) rotate(2deg); }\n 75% {\n -webkit-transform: translateX(-5%) rotate(-1deg);\n -moz-transform: translateX(-5%) rotate(-1deg);\n -ms-transform: translateX(-5%) rotate(-1deg);\n -o-transform: translateX(-5%) rotate(-1deg);\n transform: translateX(-5%) rotate(-1deg); }\n 100% {\n -webkit-transform: translateX(0%);\n -moz-transform: translateX(0%);\n -ms-transform: translateX(0%);\n -o-transform: translateX(0%);\n transform: translateX(0%); } }\n\n@-o-keyframes wobble {\n 0% {\n -webkit-transform: translateX(0%);\n -moz-transform: translateX(0%);\n -ms-transform: translateX(0%);\n -o-transform: translateX(0%);\n transform: translateX(0%); }\n 15% {\n -webkit-transform: translateX(-25%) rotate(-5deg);\n -moz-transform: translateX(-25%) rotate(-5deg);\n -ms-transform: translateX(-25%) rotate(-5deg);\n -o-transform: translateX(-25%) rotate(-5deg);\n transform: translateX(-25%) rotate(-5deg); }\n 30% {\n -webkit-transform: translateX(20%) rotate(3deg);\n -moz-transform: translateX(20%) rotate(3deg);\n -ms-transform: translateX(20%) rotate(3deg);\n -o-transform: translateX(20%) rotate(3deg);\n transform: translateX(20%) rotate(3deg); }\n 45% {\n -webkit-transform: translateX(-15%) rotate(-3deg);\n -moz-transform: translateX(-15%) rotate(-3deg);\n -ms-transform: translateX(-15%) rotate(-3deg);\n -o-transform: translateX(-15%) rotate(-3deg);\n transform: translateX(-15%) rotate(-3deg); }\n 60% {\n -webkit-transform: translateX(10%) rotate(2deg);\n -moz-transform: translateX(10%) rotate(2deg);\n -ms-transform: translateX(10%) rotate(2deg);\n -o-transform: translateX(10%) rotate(2deg);\n transform: translateX(10%) rotate(2deg); }\n 75% {\n -webkit-transform: translateX(-5%) rotate(-1deg);\n -moz-transform: translateX(-5%) rotate(-1deg);\n -ms-transform: translateX(-5%) rotate(-1deg);\n -o-transform: translateX(-5%) rotate(-1deg);\n transform: translateX(-5%) rotate(-1deg); }\n 100% {\n -webkit-transform: translateX(0%);\n -moz-transform: translateX(0%);\n -ms-transform: translateX(0%);\n -o-transform: translateX(0%);\n transform: translateX(0%); } }\n\n@-ms-keyframes wobble {\n 0% {\n -webkit-transform: translateX(0%);\n -moz-transform: translateX(0%);\n -ms-transform: translateX(0%);\n -o-transform: translateX(0%);\n transform: translateX(0%); }\n 15% {\n -webkit-transform: translateX(-25%) rotate(-5deg);\n -moz-transform: translateX(-25%) rotate(-5deg);\n -ms-transform: translateX(-25%) rotate(-5deg);\n -o-transform: translateX(-25%) rotate(-5deg);\n transform: translateX(-25%) rotate(-5deg); }\n 30% {\n -webkit-transform: translateX(20%) rotate(3deg);\n -moz-transform: translateX(20%) rotate(3deg);\n -ms-transform: translateX(20%) rotate(3deg);\n -o-transform: translateX(20%) rotate(3deg);\n transform: translateX(20%) rotate(3deg); }\n 45% {\n -webkit-transform: translateX(-15%) rotate(-3deg);\n -moz-transform: translateX(-15%) rotate(-3deg);\n -ms-transform: translateX(-15%) rotate(-3deg);\n -o-transform: translateX(-15%) rotate(-3deg);\n transform: translateX(-15%) rotate(-3deg); }\n 60% {\n -webkit-transform: translateX(10%) rotate(2deg);\n -moz-transform: translateX(10%) rotate(2deg);\n -ms-transform: translateX(10%) rotate(2deg);\n -o-transform: translateX(10%) rotate(2deg);\n transform: translateX(10%) rotate(2deg); }\n 75% {\n -webkit-transform: translateX(-5%) rotate(-1deg);\n -moz-transform: translateX(-5%) rotate(-1deg);\n -ms-transform: translateX(-5%) rotate(-1deg);\n -o-transform: translateX(-5%) rotate(-1deg);\n transform: translateX(-5%) rotate(-1deg); }\n 100% {\n -webkit-transform: translateX(0%);\n -moz-transform: translateX(0%);\n -ms-transform: translateX(0%);\n -o-transform: translateX(0%);\n transform: translateX(0%); } }\n\n@keyframes wobble {\n 0% {\n -webkit-transform: translateX(0%);\n -moz-transform: translateX(0%);\n -ms-transform: translateX(0%);\n -o-transform: translateX(0%);\n transform: translateX(0%); }\n 15% {\n -webkit-transform: translateX(-25%) rotate(-5deg);\n -moz-transform: translateX(-25%) rotate(-5deg);\n -ms-transform: translateX(-25%) rotate(-5deg);\n -o-transform: translateX(-25%) rotate(-5deg);\n transform: translateX(-25%) rotate(-5deg); }\n 30% {\n -webkit-transform: translateX(20%) rotate(3deg);\n -moz-transform: translateX(20%) rotate(3deg);\n -ms-transform: translateX(20%) rotate(3deg);\n -o-transform: translateX(20%) rotate(3deg);\n transform: translateX(20%) rotate(3deg); }\n 45% {\n -webkit-transform: translateX(-15%) rotate(-3deg);\n -moz-transform: translateX(-15%) rotate(-3deg);\n -ms-transform: translateX(-15%) rotate(-3deg);\n -o-transform: translateX(-15%) rotate(-3deg);\n transform: translateX(-15%) rotate(-3deg); }\n 60% {\n -webkit-transform: translateX(10%) rotate(2deg);\n -moz-transform: translateX(10%) rotate(2deg);\n -ms-transform: translateX(10%) rotate(2deg);\n -o-transform: translateX(10%) rotate(2deg);\n transform: translateX(10%) rotate(2deg); }\n 75% {\n -webkit-transform: translateX(-5%) rotate(-1deg);\n -moz-transform: translateX(-5%) rotate(-1deg);\n -ms-transform: translateX(-5%) rotate(-1deg);\n -o-transform: translateX(-5%) rotate(-1deg);\n transform: translateX(-5%) rotate(-1deg); }\n 100% {\n -webkit-transform: translateX(0%);\n -moz-transform: translateX(0%);\n -ms-transform: translateX(0%);\n -o-transform: translateX(0%);\n transform: translateX(0%); } }\n\n@-moz-keyframes pulse {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 50% {\n -webkit-transform: scale(1.1, 1.1);\n -moz-transform: scale(1.1, 1.1);\n -ms-transform: scale(1.1, 1.1);\n -o-transform: scale(1.1, 1.1);\n transform: scale(1.1, 1.1); }\n 100% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); } }\n\n@-webkit-keyframes pulse {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 50% {\n -webkit-transform: scale(1.1, 1.1);\n -moz-transform: scale(1.1, 1.1);\n -ms-transform: scale(1.1, 1.1);\n -o-transform: scale(1.1, 1.1);\n transform: scale(1.1, 1.1); }\n 100% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); } }\n\n@-o-keyframes pulse {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 50% {\n -webkit-transform: scale(1.1, 1.1);\n -moz-transform: scale(1.1, 1.1);\n -ms-transform: scale(1.1, 1.1);\n -o-transform: scale(1.1, 1.1);\n transform: scale(1.1, 1.1); }\n 100% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); } }\n\n@-ms-keyframes pulse {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 50% {\n -webkit-transform: scale(1.1, 1.1);\n -moz-transform: scale(1.1, 1.1);\n -ms-transform: scale(1.1, 1.1);\n -o-transform: scale(1.1, 1.1);\n transform: scale(1.1, 1.1); }\n 100% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); } }\n\n@keyframes pulse {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 50% {\n -webkit-transform: scale(1.1, 1.1);\n -moz-transform: scale(1.1, 1.1);\n -ms-transform: scale(1.1, 1.1);\n -o-transform: scale(1.1, 1.1);\n transform: scale(1.1, 1.1); }\n 100% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); } }\n\n@-moz-keyframes wiggle {\n 0% {\n -webkit-transform: skewX(9deg);\n -moz-transform: skewX(9deg);\n -ms-transform: skewX(9deg);\n -o-transform: skewX(9deg);\n transform: skewX(9deg); }\n 10% {\n -webkit-transform: skewX(-8deg);\n -moz-transform: skewX(-8deg);\n -ms-transform: skewX(-8deg);\n -o-transform: skewX(-8deg);\n transform: skewX(-8deg); }\n 20% {\n -webkit-transform: skewX(7deg);\n -moz-transform: skewX(7deg);\n -ms-transform: skewX(7deg);\n -o-transform: skewX(7deg);\n transform: skewX(7deg); }\n 30% {\n -webkit-transform: skewX(-6deg);\n -moz-transform: skewX(-6deg);\n -ms-transform: skewX(-6deg);\n -o-transform: skewX(-6deg);\n transform: skewX(-6deg); }\n 40% {\n -webkit-transform: skewX(5deg);\n -moz-transform: skewX(5deg);\n -ms-transform: skewX(5deg);\n -o-transform: skewX(5deg);\n transform: skewX(5deg); }\n 50% {\n -webkit-transform: skewX(-4deg);\n -moz-transform: skewX(-4deg);\n -ms-transform: skewX(-4deg);\n -o-transform: skewX(-4deg);\n transform: skewX(-4deg); }\n 60% {\n -webkit-transform: skewX(3deg);\n -moz-transform: skewX(3deg);\n -ms-transform: skewX(3deg);\n -o-transform: skewX(3deg);\n transform: skewX(3deg); }\n 70% {\n -webkit-transform: skewX(-2deg);\n -moz-transform: skewX(-2deg);\n -ms-transform: skewX(-2deg);\n -o-transform: skewX(-2deg);\n transform: skewX(-2deg); }\n 80% {\n -webkit-transform: skewX(1deg);\n -moz-transform: skewX(1deg);\n -ms-transform: skewX(1deg);\n -o-transform: skewX(1deg);\n transform: skewX(1deg); }\n 90% {\n -webkit-transform: skewX(0deg);\n -moz-transform: skewX(0deg);\n -ms-transform: skewX(0deg);\n -o-transform: skewX(0deg);\n transform: skewX(0deg); }\n 100% {\n -webkit-transform: skewX(0deg);\n -moz-transform: skewX(0deg);\n -ms-transform: skewX(0deg);\n -o-transform: skewX(0deg);\n transform: skewX(0deg); } }\n\n@-webkit-keyframes wiggle {\n 0% {\n -webkit-transform: skewX(9deg);\n -moz-transform: skewX(9deg);\n -ms-transform: skewX(9deg);\n -o-transform: skewX(9deg);\n transform: skewX(9deg); }\n 10% {\n -webkit-transform: skewX(-8deg);\n -moz-transform: skewX(-8deg);\n -ms-transform: skewX(-8deg);\n -o-transform: skewX(-8deg);\n transform: skewX(-8deg); }\n 20% {\n -webkit-transform: skewX(7deg);\n -moz-transform: skewX(7deg);\n -ms-transform: skewX(7deg);\n -o-transform: skewX(7deg);\n transform: skewX(7deg); }\n 30% {\n -webkit-transform: skewX(-6deg);\n -moz-transform: skewX(-6deg);\n -ms-transform: skewX(-6deg);\n -o-transform: skewX(-6deg);\n transform: skewX(-6deg); }\n 40% {\n -webkit-transform: skewX(5deg);\n -moz-transform: skewX(5deg);\n -ms-transform: skewX(5deg);\n -o-transform: skewX(5deg);\n transform: skewX(5deg); }\n 50% {\n -webkit-transform: skewX(-4deg);\n -moz-transform: skewX(-4deg);\n -ms-transform: skewX(-4deg);\n -o-transform: skewX(-4deg);\n transform: skewX(-4deg); }\n 60% {\n -webkit-transform: skewX(3deg);\n -moz-transform: skewX(3deg);\n -ms-transform: skewX(3deg);\n -o-transform: skewX(3deg);\n transform: skewX(3deg); }\n 70% {\n -webkit-transform: skewX(-2deg);\n -moz-transform: skewX(-2deg);\n -ms-transform: skewX(-2deg);\n -o-transform: skewX(-2deg);\n transform: skewX(-2deg); }\n 80% {\n -webkit-transform: skewX(1deg);\n -moz-transform: skewX(1deg);\n -ms-transform: skewX(1deg);\n -o-transform: skewX(1deg);\n transform: skewX(1deg); }\n 90% {\n -webkit-transform: skewX(0deg);\n -moz-transform: skewX(0deg);\n -ms-transform: skewX(0deg);\n -o-transform: skewX(0deg);\n transform: skewX(0deg); }\n 100% {\n -webkit-transform: skewX(0deg);\n -moz-transform: skewX(0deg);\n -ms-transform: skewX(0deg);\n -o-transform: skewX(0deg);\n transform: skewX(0deg); } }\n\n@-o-keyframes wiggle {\n 0% {\n -webkit-transform: skewX(9deg);\n -moz-transform: skewX(9deg);\n -ms-transform: skewX(9deg);\n -o-transform: skewX(9deg);\n transform: skewX(9deg); }\n 10% {\n -webkit-transform: skewX(-8deg);\n -moz-transform: skewX(-8deg);\n -ms-transform: skewX(-8deg);\n -o-transform: skewX(-8deg);\n transform: skewX(-8deg); }\n 20% {\n -webkit-transform: skewX(7deg);\n -moz-transform: skewX(7deg);\n -ms-transform: skewX(7deg);\n -o-transform: skewX(7deg);\n transform: skewX(7deg); }\n 30% {\n -webkit-transform: skewX(-6deg);\n -moz-transform: skewX(-6deg);\n -ms-transform: skewX(-6deg);\n -o-transform: skewX(-6deg);\n transform: skewX(-6deg); }\n 40% {\n -webkit-transform: skewX(5deg);\n -moz-transform: skewX(5deg);\n -ms-transform: skewX(5deg);\n -o-transform: skewX(5deg);\n transform: skewX(5deg); }\n 50% {\n -webkit-transform: skewX(-4deg);\n -moz-transform: skewX(-4deg);\n -ms-transform: skewX(-4deg);\n -o-transform: skewX(-4deg);\n transform: skewX(-4deg); }\n 60% {\n -webkit-transform: skewX(3deg);\n -moz-transform: skewX(3deg);\n -ms-transform: skewX(3deg);\n -o-transform: skewX(3deg);\n transform: skewX(3deg); }\n 70% {\n -webkit-transform: skewX(-2deg);\n -moz-transform: skewX(-2deg);\n -ms-transform: skewX(-2deg);\n -o-transform: skewX(-2deg);\n transform: skewX(-2deg); }\n 80% {\n -webkit-transform: skewX(1deg);\n -moz-transform: skewX(1deg);\n -ms-transform: skewX(1deg);\n -o-transform: skewX(1deg);\n transform: skewX(1deg); }\n 90% {\n -webkit-transform: skewX(0deg);\n -moz-transform: skewX(0deg);\n -ms-transform: skewX(0deg);\n -o-transform: skewX(0deg);\n transform: skewX(0deg); }\n 100% {\n -webkit-transform: skewX(0deg);\n -moz-transform: skewX(0deg);\n -ms-transform: skewX(0deg);\n -o-transform: skewX(0deg);\n transform: skewX(0deg); } }\n\n@-ms-keyframes wiggle {\n 0% {\n -webkit-transform: skewX(9deg);\n -moz-transform: skewX(9deg);\n -ms-transform: skewX(9deg);\n -o-transform: skewX(9deg);\n transform: skewX(9deg); }\n 10% {\n -webkit-transform: skewX(-8deg);\n -moz-transform: skewX(-8deg);\n -ms-transform: skewX(-8deg);\n -o-transform: skewX(-8deg);\n transform: skewX(-8deg); }\n 20% {\n -webkit-transform: skewX(7deg);\n -moz-transform: skewX(7deg);\n -ms-transform: skewX(7deg);\n -o-transform: skewX(7deg);\n transform: skewX(7deg); }\n 30% {\n -webkit-transform: skewX(-6deg);\n -moz-transform: skewX(-6deg);\n -ms-transform: skewX(-6deg);\n -o-transform: skewX(-6deg);\n transform: skewX(-6deg); }\n 40% {\n -webkit-transform: skewX(5deg);\n -moz-transform: skewX(5deg);\n -ms-transform: skewX(5deg);\n -o-transform: skewX(5deg);\n transform: skewX(5deg); }\n 50% {\n -webkit-transform: skewX(-4deg);\n -moz-transform: skewX(-4deg);\n -ms-transform: skewX(-4deg);\n -o-transform: skewX(-4deg);\n transform: skewX(-4deg); }\n 60% {\n -webkit-transform: skewX(3deg);\n -moz-transform: skewX(3deg);\n -ms-transform: skewX(3deg);\n -o-transform: skewX(3deg);\n transform: skewX(3deg); }\n 70% {\n -webkit-transform: skewX(-2deg);\n -moz-transform: skewX(-2deg);\n -ms-transform: skewX(-2deg);\n -o-transform: skewX(-2deg);\n transform: skewX(-2deg); }\n 80% {\n -webkit-transform: skewX(1deg);\n -moz-transform: skewX(1deg);\n -ms-transform: skewX(1deg);\n -o-transform: skewX(1deg);\n transform: skewX(1deg); }\n 90% {\n -webkit-transform: skewX(0deg);\n -moz-transform: skewX(0deg);\n -ms-transform: skewX(0deg);\n -o-transform: skewX(0deg);\n transform: skewX(0deg); }\n 100% {\n -webkit-transform: skewX(0deg);\n -moz-transform: skewX(0deg);\n -ms-transform: skewX(0deg);\n -o-transform: skewX(0deg);\n transform: skewX(0deg); } }\n\n@keyframes wiggle {\n 0% {\n -webkit-transform: skewX(9deg);\n -moz-transform: skewX(9deg);\n -ms-transform: skewX(9deg);\n -o-transform: skewX(9deg);\n transform: skewX(9deg); }\n 10% {\n -webkit-transform: skewX(-8deg);\n -moz-transform: skewX(-8deg);\n -ms-transform: skewX(-8deg);\n -o-transform: skewX(-8deg);\n transform: skewX(-8deg); }\n 20% {\n -webkit-transform: skewX(7deg);\n -moz-transform: skewX(7deg);\n -ms-transform: skewX(7deg);\n -o-transform: skewX(7deg);\n transform: skewX(7deg); }\n 30% {\n -webkit-transform: skewX(-6deg);\n -moz-transform: skewX(-6deg);\n -ms-transform: skewX(-6deg);\n -o-transform: skewX(-6deg);\n transform: skewX(-6deg); }\n 40% {\n -webkit-transform: skewX(5deg);\n -moz-transform: skewX(5deg);\n -ms-transform: skewX(5deg);\n -o-transform: skewX(5deg);\n transform: skewX(5deg); }\n 50% {\n -webkit-transform: skewX(-4deg);\n -moz-transform: skewX(-4deg);\n -ms-transform: skewX(-4deg);\n -o-transform: skewX(-4deg);\n transform: skewX(-4deg); }\n 60% {\n -webkit-transform: skewX(3deg);\n -moz-transform: skewX(3deg);\n -ms-transform: skewX(3deg);\n -o-transform: skewX(3deg);\n transform: skewX(3deg); }\n 70% {\n -webkit-transform: skewX(-2deg);\n -moz-transform: skewX(-2deg);\n -ms-transform: skewX(-2deg);\n -o-transform: skewX(-2deg);\n transform: skewX(-2deg); }\n 80% {\n -webkit-transform: skewX(1deg);\n -moz-transform: skewX(1deg);\n -ms-transform: skewX(1deg);\n -o-transform: skewX(1deg);\n transform: skewX(1deg); }\n 90% {\n -webkit-transform: skewX(0deg);\n -moz-transform: skewX(0deg);\n -ms-transform: skewX(0deg);\n -o-transform: skewX(0deg);\n transform: skewX(0deg); }\n 100% {\n -webkit-transform: skewX(0deg);\n -moz-transform: skewX(0deg);\n -ms-transform: skewX(0deg);\n -o-transform: skewX(0deg);\n transform: skewX(0deg); } }\n\n@-moz-keyframes bounceOut {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 25% {\n -webkit-transform: scale(0.95, 0.95);\n -moz-transform: scale(0.95, 0.95);\n -ms-transform: scale(0.95, 0.95);\n -o-transform: scale(0.95, 0.95);\n transform: scale(0.95, 0.95); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(1.1, 1.1);\n -moz-transform: scale(1.1, 1.1);\n -ms-transform: scale(1.1, 1.1);\n -o-transform: scale(1.1, 1.1);\n transform: scale(1.1, 1.1); }\n 100% {\n opacity: 0;\n -webkit-transform: scale(0.3, 0.3);\n -moz-transform: scale(0.3, 0.3);\n -ms-transform: scale(0.3, 0.3);\n -o-transform: scale(0.3, 0.3);\n transform: scale(0.3, 0.3); } }\n\n@-webkit-keyframes bounceOut {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 25% {\n -webkit-transform: scale(0.95, 0.95);\n -moz-transform: scale(0.95, 0.95);\n -ms-transform: scale(0.95, 0.95);\n -o-transform: scale(0.95, 0.95);\n transform: scale(0.95, 0.95); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(1.1, 1.1);\n -moz-transform: scale(1.1, 1.1);\n -ms-transform: scale(1.1, 1.1);\n -o-transform: scale(1.1, 1.1);\n transform: scale(1.1, 1.1); }\n 100% {\n opacity: 0;\n -webkit-transform: scale(0.3, 0.3);\n -moz-transform: scale(0.3, 0.3);\n -ms-transform: scale(0.3, 0.3);\n -o-transform: scale(0.3, 0.3);\n transform: scale(0.3, 0.3); } }\n\n@-o-keyframes bounceOut {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 25% {\n -webkit-transform: scale(0.95, 0.95);\n -moz-transform: scale(0.95, 0.95);\n -ms-transform: scale(0.95, 0.95);\n -o-transform: scale(0.95, 0.95);\n transform: scale(0.95, 0.95); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(1.1, 1.1);\n -moz-transform: scale(1.1, 1.1);\n -ms-transform: scale(1.1, 1.1);\n -o-transform: scale(1.1, 1.1);\n transform: scale(1.1, 1.1); }\n 100% {\n opacity: 0;\n -webkit-transform: scale(0.3, 0.3);\n -moz-transform: scale(0.3, 0.3);\n -ms-transform: scale(0.3, 0.3);\n -o-transform: scale(0.3, 0.3);\n transform: scale(0.3, 0.3); } }\n\n@-ms-keyframes bounceOut {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 25% {\n -webkit-transform: scale(0.95, 0.95);\n -moz-transform: scale(0.95, 0.95);\n -ms-transform: scale(0.95, 0.95);\n -o-transform: scale(0.95, 0.95);\n transform: scale(0.95, 0.95); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(1.1, 1.1);\n -moz-transform: scale(1.1, 1.1);\n -ms-transform: scale(1.1, 1.1);\n -o-transform: scale(1.1, 1.1);\n transform: scale(1.1, 1.1); }\n 100% {\n opacity: 0;\n -webkit-transform: scale(0.3, 0.3);\n -moz-transform: scale(0.3, 0.3);\n -ms-transform: scale(0.3, 0.3);\n -o-transform: scale(0.3, 0.3);\n transform: scale(0.3, 0.3); } }\n\n@keyframes bounceOut {\n 0% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); }\n 25% {\n -webkit-transform: scale(0.95, 0.95);\n -moz-transform: scale(0.95, 0.95);\n -ms-transform: scale(0.95, 0.95);\n -o-transform: scale(0.95, 0.95);\n transform: scale(0.95, 0.95); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(1.1, 1.1);\n -moz-transform: scale(1.1, 1.1);\n -ms-transform: scale(1.1, 1.1);\n -o-transform: scale(1.1, 1.1);\n transform: scale(1.1, 1.1); }\n 100% {\n opacity: 0;\n -webkit-transform: scale(0.3, 0.3);\n -moz-transform: scale(0.3, 0.3);\n -ms-transform: scale(0.3, 0.3);\n -o-transform: scale(0.3, 0.3);\n transform: scale(0.3, 0.3); } }\n\n@-moz-keyframes bounceOutUp {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); } }\n\n@-webkit-keyframes bounceOutUp {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); } }\n\n@-o-keyframes bounceOutUp {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); } }\n\n@-ms-keyframes bounceOutUp {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); } }\n\n@keyframes bounceOutUp {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); } }\n\n@-moz-keyframes bounceOutDown {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); } }\n\n@-webkit-keyframes bounceOutDown {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); } }\n\n@-o-keyframes bounceOutDown {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); } }\n\n@-ms-keyframes bounceOutDown {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); } }\n\n@keyframes bounceOutDown {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); } }\n\n@-moz-keyframes bounceOutLeft {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); } }\n\n@-webkit-keyframes bounceOutLeft {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); } }\n\n@-o-keyframes bounceOutLeft {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); } }\n\n@-ms-keyframes bounceOutLeft {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); } }\n\n@keyframes bounceOutLeft {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); } }\n\n@-moz-keyframes bounceOutRight {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); } }\n\n@-webkit-keyframes bounceOutRight {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); } }\n\n@-o-keyframes bounceOutRight {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); } }\n\n@-ms-keyframes bounceOutRight {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); } }\n\n@keyframes bounceOutRight {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 20% {\n opacity: 1;\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); } }\n\n@-moz-keyframes bounceIn {\n 0% {\n opacity: 0;\n -webkit-transform: scale(0.3, 0.3);\n -moz-transform: scale(0.3, 0.3);\n -ms-transform: scale(0.3, 0.3);\n -o-transform: scale(0.3, 0.3);\n transform: scale(0.3, 0.3); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(1.05, 1.05);\n -moz-transform: scale(1.05, 1.05);\n -ms-transform: scale(1.05, 1.05);\n -o-transform: scale(1.05, 1.05);\n transform: scale(1.05, 1.05); }\n 70% {\n -webkit-transform: scale(0.9, 0.9);\n -moz-transform: scale(0.9, 0.9);\n -ms-transform: scale(0.9, 0.9);\n -o-transform: scale(0.9, 0.9);\n transform: scale(0.9, 0.9); }\n 100% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); } }\n\n@-webkit-keyframes bounceIn {\n 0% {\n opacity: 0;\n -webkit-transform: scale(0.3, 0.3);\n -moz-transform: scale(0.3, 0.3);\n -ms-transform: scale(0.3, 0.3);\n -o-transform: scale(0.3, 0.3);\n transform: scale(0.3, 0.3); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(1.05, 1.05);\n -moz-transform: scale(1.05, 1.05);\n -ms-transform: scale(1.05, 1.05);\n -o-transform: scale(1.05, 1.05);\n transform: scale(1.05, 1.05); }\n 70% {\n -webkit-transform: scale(0.9, 0.9);\n -moz-transform: scale(0.9, 0.9);\n -ms-transform: scale(0.9, 0.9);\n -o-transform: scale(0.9, 0.9);\n transform: scale(0.9, 0.9); }\n 100% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); } }\n\n@-o-keyframes bounceIn {\n 0% {\n opacity: 0;\n -webkit-transform: scale(0.3, 0.3);\n -moz-transform: scale(0.3, 0.3);\n -ms-transform: scale(0.3, 0.3);\n -o-transform: scale(0.3, 0.3);\n transform: scale(0.3, 0.3); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(1.05, 1.05);\n -moz-transform: scale(1.05, 1.05);\n -ms-transform: scale(1.05, 1.05);\n -o-transform: scale(1.05, 1.05);\n transform: scale(1.05, 1.05); }\n 70% {\n -webkit-transform: scale(0.9, 0.9);\n -moz-transform: scale(0.9, 0.9);\n -ms-transform: scale(0.9, 0.9);\n -o-transform: scale(0.9, 0.9);\n transform: scale(0.9, 0.9); }\n 100% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); } }\n\n@-ms-keyframes bounceIn {\n 0% {\n opacity: 0;\n -webkit-transform: scale(0.3, 0.3);\n -moz-transform: scale(0.3, 0.3);\n -ms-transform: scale(0.3, 0.3);\n -o-transform: scale(0.3, 0.3);\n transform: scale(0.3, 0.3); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(1.05, 1.05);\n -moz-transform: scale(1.05, 1.05);\n -ms-transform: scale(1.05, 1.05);\n -o-transform: scale(1.05, 1.05);\n transform: scale(1.05, 1.05); }\n 70% {\n -webkit-transform: scale(0.9, 0.9);\n -moz-transform: scale(0.9, 0.9);\n -ms-transform: scale(0.9, 0.9);\n -o-transform: scale(0.9, 0.9);\n transform: scale(0.9, 0.9); }\n 100% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); } }\n\n@keyframes bounceIn {\n 0% {\n opacity: 0;\n -webkit-transform: scale(0.3, 0.3);\n -moz-transform: scale(0.3, 0.3);\n -ms-transform: scale(0.3, 0.3);\n -o-transform: scale(0.3, 0.3);\n transform: scale(0.3, 0.3); }\n 50% {\n opacity: 1;\n -webkit-transform: scale(1.05, 1.05);\n -moz-transform: scale(1.05, 1.05);\n -ms-transform: scale(1.05, 1.05);\n -o-transform: scale(1.05, 1.05);\n transform: scale(1.05, 1.05); }\n 70% {\n -webkit-transform: scale(0.9, 0.9);\n -moz-transform: scale(0.9, 0.9);\n -ms-transform: scale(0.9, 0.9);\n -o-transform: scale(0.9, 0.9);\n transform: scale(0.9, 0.9); }\n 100% {\n -webkit-transform: scale(1, 1);\n -moz-transform: scale(1, 1);\n -ms-transform: scale(1, 1);\n -o-transform: scale(1, 1);\n transform: scale(1, 1); } }\n\n@-moz-keyframes bounceInDown {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateY(30px);\n -moz-transform: translateY(30px);\n -ms-transform: translateY(30px);\n -o-transform: translateY(30px);\n transform: translateY(30px); }\n 80% {\n -webkit-transform: translateY(-10px);\n -moz-transform: translateY(-10px);\n -ms-transform: translateY(-10px);\n -o-transform: translateY(-10px);\n transform: translateY(-10px); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-webkit-keyframes bounceInDown {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateY(30px);\n -moz-transform: translateY(30px);\n -ms-transform: translateY(30px);\n -o-transform: translateY(30px);\n transform: translateY(30px); }\n 80% {\n -webkit-transform: translateY(-10px);\n -moz-transform: translateY(-10px);\n -ms-transform: translateY(-10px);\n -o-transform: translateY(-10px);\n transform: translateY(-10px); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-o-keyframes bounceInDown {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateY(30px);\n -moz-transform: translateY(30px);\n -ms-transform: translateY(30px);\n -o-transform: translateY(30px);\n transform: translateY(30px); }\n 80% {\n -webkit-transform: translateY(-10px);\n -moz-transform: translateY(-10px);\n -ms-transform: translateY(-10px);\n -o-transform: translateY(-10px);\n transform: translateY(-10px); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-ms-keyframes bounceInDown {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateY(30px);\n -moz-transform: translateY(30px);\n -ms-transform: translateY(30px);\n -o-transform: translateY(30px);\n transform: translateY(30px); }\n 80% {\n -webkit-transform: translateY(-10px);\n -moz-transform: translateY(-10px);\n -ms-transform: translateY(-10px);\n -o-transform: translateY(-10px);\n transform: translateY(-10px); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@keyframes bounceInDown {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateY(30px);\n -moz-transform: translateY(30px);\n -ms-transform: translateY(30px);\n -o-transform: translateY(30px);\n transform: translateY(30px); }\n 80% {\n -webkit-transform: translateY(-10px);\n -moz-transform: translateY(-10px);\n -ms-transform: translateY(-10px);\n -o-transform: translateY(-10px);\n transform: translateY(-10px); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-moz-keyframes bounceInUp {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateY(-30px);\n -moz-transform: translateY(-30px);\n -ms-transform: translateY(-30px);\n -o-transform: translateY(-30px);\n transform: translateY(-30px); }\n 80% {\n -webkit-transform: translateY(10px);\n -moz-transform: translateY(10px);\n -ms-transform: translateY(10px);\n -o-transform: translateY(10px);\n transform: translateY(10px); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-webkit-keyframes bounceInUp {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateY(-30px);\n -moz-transform: translateY(-30px);\n -ms-transform: translateY(-30px);\n -o-transform: translateY(-30px);\n transform: translateY(-30px); }\n 80% {\n -webkit-transform: translateY(10px);\n -moz-transform: translateY(10px);\n -ms-transform: translateY(10px);\n -o-transform: translateY(10px);\n transform: translateY(10px); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-o-keyframes bounceInUp {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateY(-30px);\n -moz-transform: translateY(-30px);\n -ms-transform: translateY(-30px);\n -o-transform: translateY(-30px);\n transform: translateY(-30px); }\n 80% {\n -webkit-transform: translateY(10px);\n -moz-transform: translateY(10px);\n -ms-transform: translateY(10px);\n -o-transform: translateY(10px);\n transform: translateY(10px); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-ms-keyframes bounceInUp {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateY(-30px);\n -moz-transform: translateY(-30px);\n -ms-transform: translateY(-30px);\n -o-transform: translateY(-30px);\n transform: translateY(-30px); }\n 80% {\n -webkit-transform: translateY(10px);\n -moz-transform: translateY(10px);\n -ms-transform: translateY(10px);\n -o-transform: translateY(10px);\n transform: translateY(10px); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@keyframes bounceInUp {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateY(-30px);\n -moz-transform: translateY(-30px);\n -ms-transform: translateY(-30px);\n -o-transform: translateY(-30px);\n transform: translateY(-30px); }\n 80% {\n -webkit-transform: translateY(10px);\n -moz-transform: translateY(10px);\n -ms-transform: translateY(10px);\n -o-transform: translateY(10px);\n transform: translateY(10px); }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-moz-keyframes bounceInRight {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateX(-30px);\n -moz-transform: translateX(-30px);\n -ms-transform: translateX(-30px);\n -o-transform: translateX(-30px);\n transform: translateX(-30px); }\n 80% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-webkit-keyframes bounceInRight {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateX(-30px);\n -moz-transform: translateX(-30px);\n -ms-transform: translateX(-30px);\n -o-transform: translateX(-30px);\n transform: translateX(-30px); }\n 80% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-o-keyframes bounceInRight {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateX(-30px);\n -moz-transform: translateX(-30px);\n -ms-transform: translateX(-30px);\n -o-transform: translateX(-30px);\n transform: translateX(-30px); }\n 80% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-ms-keyframes bounceInRight {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateX(-30px);\n -moz-transform: translateX(-30px);\n -ms-transform: translateX(-30px);\n -o-transform: translateX(-30px);\n transform: translateX(-30px); }\n 80% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@keyframes bounceInRight {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateX(-30px);\n -moz-transform: translateX(-30px);\n -ms-transform: translateX(-30px);\n -o-transform: translateX(-30px);\n transform: translateX(-30px); }\n 80% {\n -webkit-transform: translateX(10px);\n -moz-transform: translateX(10px);\n -ms-transform: translateX(10px);\n -o-transform: translateX(10px);\n transform: translateX(10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-moz-keyframes bounceInLeft {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateX(30px);\n -moz-transform: translateX(30px);\n -ms-transform: translateX(30px);\n -o-transform: translateX(30px);\n transform: translateX(30px); }\n 80% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-webkit-keyframes bounceInLeft {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateX(30px);\n -moz-transform: translateX(30px);\n -ms-transform: translateX(30px);\n -o-transform: translateX(30px);\n transform: translateX(30px); }\n 80% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-o-keyframes bounceInLeft {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateX(30px);\n -moz-transform: translateX(30px);\n -ms-transform: translateX(30px);\n -o-transform: translateX(30px);\n transform: translateX(30px); }\n 80% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-ms-keyframes bounceInLeft {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateX(30px);\n -moz-transform: translateX(30px);\n -ms-transform: translateX(30px);\n -o-transform: translateX(30px);\n transform: translateX(30px); }\n 80% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@keyframes bounceInLeft {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); }\n 60% {\n opacity: 1;\n -webkit-transform: translateX(30px);\n -moz-transform: translateX(30px);\n -ms-transform: translateX(30px);\n -o-transform: translateX(30px);\n transform: translateX(30px); }\n 80% {\n -webkit-transform: translateX(-10px);\n -moz-transform: translateX(-10px);\n -ms-transform: translateX(-10px);\n -o-transform: translateX(-10px);\n transform: translateX(-10px); }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-moz-keyframes fadeOut {\n 0% {\n opacity: 1; }\n 100% {\n opacity: 0; } }\n\n@-webkit-keyframes fadeOut {\n 0% {\n opacity: 1; }\n 100% {\n opacity: 0; } }\n\n@-o-keyframes fadeOut {\n 0% {\n opacity: 1; }\n 100% {\n opacity: 0; } }\n\n@-ms-keyframes fadeOut {\n 0% {\n opacity: 1; }\n 100% {\n opacity: 0; } }\n\n@keyframes fadeOut {\n 0% {\n opacity: 1; }\n 100% {\n opacity: 0; } }\n\n@-moz-keyframes fadeOutUp {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px);\n opacity: 0; } }\n\n@-webkit-keyframes fadeOutUp {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px);\n opacity: 0; } }\n\n@-o-keyframes fadeOutUp {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px);\n opacity: 0; } }\n\n@-ms-keyframes fadeOutUp {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px);\n opacity: 0; } }\n\n@keyframes fadeOutUp {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px);\n opacity: 0; } }\n\n@-moz-keyframes fadeOutDown {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px);\n opacity: 0; } }\n\n@-webkit-keyframes fadeOutDown {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px);\n opacity: 0; } }\n\n@-o-keyframes fadeOutDown {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px);\n opacity: 0; } }\n\n@-ms-keyframes fadeOutDown {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px);\n opacity: 0; } }\n\n@keyframes fadeOutDown {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px);\n opacity: 0; } }\n\n@-moz-keyframes fadeOutRight {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px);\n opacity: 0; } }\n\n@-webkit-keyframes fadeOutRight {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px);\n opacity: 0; } }\n\n@-o-keyframes fadeOutRight {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px);\n opacity: 0; } }\n\n@-ms-keyframes fadeOutRight {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px);\n opacity: 0; } }\n\n@keyframes fadeOutRight {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px);\n opacity: 0; } }\n\n@-moz-keyframes fadeOutLeft {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px);\n opacity: 0; } }\n\n@-webkit-keyframes fadeOutLeft {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px);\n opacity: 0; } }\n\n@-o-keyframes fadeOutLeft {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px);\n opacity: 0; } }\n\n@-ms-keyframes fadeOutLeft {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px);\n opacity: 0; } }\n\n@keyframes fadeOutLeft {\n 0% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px);\n opacity: 0; } }\n\n@-moz-keyframes fadeOutUpBig {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px);\n opacity: 0; } }\n\n@-webkit-keyframes fadeOutUpBig {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px);\n opacity: 0; } }\n\n@-o-keyframes fadeOutUpBig {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px);\n opacity: 0; } }\n\n@-ms-keyframes fadeOutUpBig {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px);\n opacity: 0; } }\n\n@keyframes fadeOutUpBig {\n 0% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; }\n 100% {\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px);\n opacity: 0; } }\n\n@-moz-keyframes fadeOutDownBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); } }\n\n@-webkit-keyframes fadeOutDownBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); } }\n\n@-o-keyframes fadeOutDownBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); } }\n\n@-ms-keyframes fadeOutDownBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); } }\n\n@keyframes fadeOutDownBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px); } }\n\n@-moz-keyframes fadeOutRightBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); } }\n\n@-webkit-keyframes fadeOutRightBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); } }\n\n@-o-keyframes fadeOutRightBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); } }\n\n@-ms-keyframes fadeOutRightBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); } }\n\n@keyframes fadeOutRightBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); } }\n\n@-moz-keyframes fadeOutLeftBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); } }\n\n@-webkit-keyframes fadeOutLeftBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); } }\n\n@-o-keyframes fadeOutLeftBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); } }\n\n@-ms-keyframes fadeOutLeftBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); } }\n\n@keyframes fadeOutLeftBig {\n 0% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); }\n 100% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); } }\n\n@-moz-keyframes fadeIn {\n 0% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@-webkit-keyframes fadeIn {\n 0% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@-o-keyframes fadeIn {\n 0% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@-ms-keyframes fadeIn {\n 0% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@keyframes fadeIn {\n 0% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n@-moz-keyframes fadeInUp {\n 0% {\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-webkit-keyframes fadeInUp {\n 0% {\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-o-keyframes fadeInUp {\n 0% {\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-ms-keyframes fadeInUp {\n 0% {\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@keyframes fadeInUp {\n 0% {\n -webkit-transform: translateY(20px);\n -moz-transform: translateY(20px);\n -ms-transform: translateY(20px);\n -o-transform: translateY(20px);\n transform: translateY(20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-moz-keyframes fadeInDown {\n 0% {\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-webkit-keyframes fadeInDown {\n 0% {\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-o-keyframes fadeInDown {\n 0% {\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-ms-keyframes fadeInDown {\n 0% {\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@keyframes fadeInDown {\n 0% {\n -webkit-transform: translateY(-20px);\n -moz-transform: translateY(-20px);\n -ms-transform: translateY(-20px);\n -o-transform: translateY(-20px);\n transform: translateY(-20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-moz-keyframes fadeInRight {\n 0% {\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; } }\n\n@-webkit-keyframes fadeInRight {\n 0% {\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; } }\n\n@-o-keyframes fadeInRight {\n 0% {\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; } }\n\n@-ms-keyframes fadeInRight {\n 0% {\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; } }\n\n@keyframes fadeInRight {\n 0% {\n -webkit-transform: translateX(20px);\n -moz-transform: translateX(20px);\n -ms-transform: translateX(20px);\n -o-transform: translateX(20px);\n transform: translateX(20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; } }\n\n@-moz-keyframes fadeInLeft {\n 0% {\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; } }\n\n@-webkit-keyframes fadeInLeft {\n 0% {\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; } }\n\n@-o-keyframes fadeInLeft {\n 0% {\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; } }\n\n@-ms-keyframes fadeInLeft {\n 0% {\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; } }\n\n@keyframes fadeInLeft {\n 0% {\n -webkit-transform: translateX(-20px);\n -moz-transform: translateX(-20px);\n -ms-transform: translateX(-20px);\n -o-transform: translateX(-20px);\n transform: translateX(-20px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0);\n opacity: 1; } }\n\n@-moz-keyframes fadeInUpBig {\n 0% {\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-webkit-keyframes fadeInUpBig {\n 0% {\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-o-keyframes fadeInUpBig {\n 0% {\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-ms-keyframes fadeInUpBig {\n 0% {\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@keyframes fadeInUpBig {\n 0% {\n -webkit-transform: translateY(2000px);\n -moz-transform: translateY(2000px);\n -ms-transform: translateY(2000px);\n -o-transform: translateY(2000px);\n transform: translateY(2000px);\n opacity: 0; }\n 100% {\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0);\n opacity: 1; } }\n\n@-moz-keyframes fadeInDownBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-webkit-keyframes fadeInDownBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-o-keyframes fadeInDownBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-ms-keyframes fadeInDownBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@keyframes fadeInDownBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateY(-2000px);\n -moz-transform: translateY(-2000px);\n -ms-transform: translateY(-2000px);\n -o-transform: translateY(-2000px);\n transform: translateY(-2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateY(0);\n -moz-transform: translateY(0);\n -ms-transform: translateY(0);\n -o-transform: translateY(0);\n transform: translateY(0); } }\n\n@-moz-keyframes fadeInRightBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-webkit-keyframes fadeInRightBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-o-keyframes fadeInRightBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-ms-keyframes fadeInRightBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@keyframes fadeInRightBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(2000px);\n -moz-transform: translateX(2000px);\n -ms-transform: translateX(2000px);\n -o-transform: translateX(2000px);\n transform: translateX(2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-moz-keyframes fadeInLeftBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-webkit-keyframes fadeInLeftBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-o-keyframes fadeInLeftBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-ms-keyframes fadeInLeftBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@keyframes fadeInLeftBig {\n 0% {\n opacity: 0;\n -webkit-transform: translateX(-2000px);\n -moz-transform: translateX(-2000px);\n -ms-transform: translateX(-2000px);\n -o-transform: translateX(-2000px);\n transform: translateX(-2000px); }\n 100% {\n opacity: 1;\n -webkit-transform: translateX(0);\n -moz-transform: translateX(0);\n -ms-transform: translateX(0);\n -o-transform: translateX(0);\n transform: translateX(0); } }\n\n@-moz-keyframes flip {\n 0% {\n -webkit-transform: perspective(400px) rotateY(0);\n -moz-transform: perspective(400px) rotateY(0);\n -ms-transform: perspective(400px) rotateY(0);\n -o-transform: perspective(400px) rotateY(0);\n transform: perspective(400px) rotateY(0);\n -webkit-animation-timing-function: ease-out;\n -moz-animation-timing-function: ease-out;\n -ms-animation-timing-function: ease-out;\n -o-animation-timing-function: ease-out;\n animation-timing-function: ease-out; }\n 40% {\n -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -webkit-animation-timing-function: ease-out;\n -moz-animation-timing-function: ease-out;\n -ms-animation-timing-function: ease-out;\n -o-animation-timing-function: ease-out;\n animation-timing-function: ease-out; }\n 50% {\n -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; }\n 80% {\n -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -ms-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -o-transform: perspective(400px) rotateY(360deg) scale(0.95);\n transform: perspective(400px) rotateY(360deg) scale(0.95);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; }\n 100% {\n -webkit-transform: perspective(400px) scale(1);\n -moz-transform: perspective(400px) scale(1);\n -ms-transform: perspective(400px) scale(1);\n -o-transform: perspective(400px) scale(1);\n transform: perspective(400px) scale(1);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; } }\n\n@-webkit-keyframes flip {\n 0% {\n -webkit-transform: perspective(400px) rotateY(0);\n -moz-transform: perspective(400px) rotateY(0);\n -ms-transform: perspective(400px) rotateY(0);\n -o-transform: perspective(400px) rotateY(0);\n transform: perspective(400px) rotateY(0);\n -webkit-animation-timing-function: ease-out;\n -moz-animation-timing-function: ease-out;\n -ms-animation-timing-function: ease-out;\n -o-animation-timing-function: ease-out;\n animation-timing-function: ease-out; }\n 40% {\n -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -webkit-animation-timing-function: ease-out;\n -moz-animation-timing-function: ease-out;\n -ms-animation-timing-function: ease-out;\n -o-animation-timing-function: ease-out;\n animation-timing-function: ease-out; }\n 50% {\n -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; }\n 80% {\n -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -ms-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -o-transform: perspective(400px) rotateY(360deg) scale(0.95);\n transform: perspective(400px) rotateY(360deg) scale(0.95);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; }\n 100% {\n -webkit-transform: perspective(400px) scale(1);\n -moz-transform: perspective(400px) scale(1);\n -ms-transform: perspective(400px) scale(1);\n -o-transform: perspective(400px) scale(1);\n transform: perspective(400px) scale(1);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; } }\n\n@-o-keyframes flip {\n 0% {\n -webkit-transform: perspective(400px) rotateY(0);\n -moz-transform: perspective(400px) rotateY(0);\n -ms-transform: perspective(400px) rotateY(0);\n -o-transform: perspective(400px) rotateY(0);\n transform: perspective(400px) rotateY(0);\n -webkit-animation-timing-function: ease-out;\n -moz-animation-timing-function: ease-out;\n -ms-animation-timing-function: ease-out;\n -o-animation-timing-function: ease-out;\n animation-timing-function: ease-out; }\n 40% {\n -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -webkit-animation-timing-function: ease-out;\n -moz-animation-timing-function: ease-out;\n -ms-animation-timing-function: ease-out;\n -o-animation-timing-function: ease-out;\n animation-timing-function: ease-out; }\n 50% {\n -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; }\n 80% {\n -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -ms-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -o-transform: perspective(400px) rotateY(360deg) scale(0.95);\n transform: perspective(400px) rotateY(360deg) scale(0.95);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; }\n 100% {\n -webkit-transform: perspective(400px) scale(1);\n -moz-transform: perspective(400px) scale(1);\n -ms-transform: perspective(400px) scale(1);\n -o-transform: perspective(400px) scale(1);\n transform: perspective(400px) scale(1);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; } }\n\n@-ms-keyframes flip {\n 0% {\n -webkit-transform: perspective(400px) rotateY(0);\n -moz-transform: perspective(400px) rotateY(0);\n -ms-transform: perspective(400px) rotateY(0);\n -o-transform: perspective(400px) rotateY(0);\n transform: perspective(400px) rotateY(0);\n -webkit-animation-timing-function: ease-out;\n -moz-animation-timing-function: ease-out;\n -ms-animation-timing-function: ease-out;\n -o-animation-timing-function: ease-out;\n animation-timing-function: ease-out; }\n 40% {\n -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -webkit-animation-timing-function: ease-out;\n -moz-animation-timing-function: ease-out;\n -ms-animation-timing-function: ease-out;\n -o-animation-timing-function: ease-out;\n animation-timing-function: ease-out; }\n 50% {\n -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; }\n 80% {\n -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -ms-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -o-transform: perspective(400px) rotateY(360deg) scale(0.95);\n transform: perspective(400px) rotateY(360deg) scale(0.95);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; }\n 100% {\n -webkit-transform: perspective(400px) scale(1);\n -moz-transform: perspective(400px) scale(1);\n -ms-transform: perspective(400px) scale(1);\n -o-transform: perspective(400px) scale(1);\n transform: perspective(400px) scale(1);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; } }\n\n@keyframes flip {\n 0% {\n -webkit-transform: perspective(400px) rotateY(0);\n -moz-transform: perspective(400px) rotateY(0);\n -ms-transform: perspective(400px) rotateY(0);\n -o-transform: perspective(400px) rotateY(0);\n transform: perspective(400px) rotateY(0);\n -webkit-animation-timing-function: ease-out;\n -moz-animation-timing-function: ease-out;\n -ms-animation-timing-function: ease-out;\n -o-animation-timing-function: ease-out;\n animation-timing-function: ease-out; }\n 40% {\n -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);\n transform: perspective(400px) translateZ(150px) rotateY(170deg);\n -webkit-animation-timing-function: ease-out;\n -moz-animation-timing-function: ease-out;\n -ms-animation-timing-function: ease-out;\n -o-animation-timing-function: ease-out;\n animation-timing-function: ease-out; }\n 50% {\n -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; }\n 80% {\n -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -ms-transform: perspective(400px) rotateY(360deg) scale(0.95);\n -o-transform: perspective(400px) rotateY(360deg) scale(0.95);\n transform: perspective(400px) rotateY(360deg) scale(0.95);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; }\n 100% {\n -webkit-transform: perspective(400px) scale(1);\n -moz-transform: perspective(400px) scale(1);\n -ms-transform: perspective(400px) scale(1);\n -o-transform: perspective(400px) scale(1);\n transform: perspective(400px) scale(1);\n -webkit-animation-timing-function: ease-in;\n -moz-animation-timing-function: ease-in;\n -ms-animation-timing-function: ease-in;\n -o-animation-timing-function: ease-in;\n animation-timing-function: ease-in; } }\n\n@-moz-keyframes flipInX {\n 0% {\n -webkit-transform: perspective(400px) rotateX(90deg);\n -moz-transform: perspective(400px) rotateX(90deg);\n -ms-transform: perspective(400px) rotateX(90deg);\n -o-transform: perspective(400px) rotateX(90deg);\n transform: perspective(400px) rotateX(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 40% {\n -webkit-transform: perspective(400px) rotateX(-10deg);\n -moz-transform: perspective(400px) rotateX(-10deg);\n -ms-transform: perspective(400px) rotateX(-10deg);\n -o-transform: perspective(400px) rotateX(-10deg);\n transform: perspective(400px) rotateX(-10deg); }\n 70% {\n -webkit-transform: perspective(400px) rotateX(10deg);\n -moz-transform: perspective(400px) rotateX(10deg);\n -ms-transform: perspective(400px) rotateX(10deg);\n -o-transform: perspective(400px) rotateX(10deg);\n transform: perspective(400px) rotateX(10deg); }\n 100% {\n -webkit-transform: perspective(400px) rotateX(0deg);\n -moz-transform: perspective(400px) rotateX(0deg);\n -ms-transform: perspective(400px) rotateX(0deg);\n -o-transform: perspective(400px) rotateX(0deg);\n transform: perspective(400px) rotateX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-webkit-keyframes flipInX {\n 0% {\n -webkit-transform: perspective(400px) rotateX(90deg);\n -moz-transform: perspective(400px) rotateX(90deg);\n -ms-transform: perspective(400px) rotateX(90deg);\n -o-transform: perspective(400px) rotateX(90deg);\n transform: perspective(400px) rotateX(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 40% {\n -webkit-transform: perspective(400px) rotateX(-10deg);\n -moz-transform: perspective(400px) rotateX(-10deg);\n -ms-transform: perspective(400px) rotateX(-10deg);\n -o-transform: perspective(400px) rotateX(-10deg);\n transform: perspective(400px) rotateX(-10deg); }\n 70% {\n -webkit-transform: perspective(400px) rotateX(10deg);\n -moz-transform: perspective(400px) rotateX(10deg);\n -ms-transform: perspective(400px) rotateX(10deg);\n -o-transform: perspective(400px) rotateX(10deg);\n transform: perspective(400px) rotateX(10deg); }\n 100% {\n -webkit-transform: perspective(400px) rotateX(0deg);\n -moz-transform: perspective(400px) rotateX(0deg);\n -ms-transform: perspective(400px) rotateX(0deg);\n -o-transform: perspective(400px) rotateX(0deg);\n transform: perspective(400px) rotateX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-o-keyframes flipInX {\n 0% {\n -webkit-transform: perspective(400px) rotateX(90deg);\n -moz-transform: perspective(400px) rotateX(90deg);\n -ms-transform: perspective(400px) rotateX(90deg);\n -o-transform: perspective(400px) rotateX(90deg);\n transform: perspective(400px) rotateX(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 40% {\n -webkit-transform: perspective(400px) rotateX(-10deg);\n -moz-transform: perspective(400px) rotateX(-10deg);\n -ms-transform: perspective(400px) rotateX(-10deg);\n -o-transform: perspective(400px) rotateX(-10deg);\n transform: perspective(400px) rotateX(-10deg); }\n 70% {\n -webkit-transform: perspective(400px) rotateX(10deg);\n -moz-transform: perspective(400px) rotateX(10deg);\n -ms-transform: perspective(400px) rotateX(10deg);\n -o-transform: perspective(400px) rotateX(10deg);\n transform: perspective(400px) rotateX(10deg); }\n 100% {\n -webkit-transform: perspective(400px) rotateX(0deg);\n -moz-transform: perspective(400px) rotateX(0deg);\n -ms-transform: perspective(400px) rotateX(0deg);\n -o-transform: perspective(400px) rotateX(0deg);\n transform: perspective(400px) rotateX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-ms-keyframes flipInX {\n 0% {\n -webkit-transform: perspective(400px) rotateX(90deg);\n -moz-transform: perspective(400px) rotateX(90deg);\n -ms-transform: perspective(400px) rotateX(90deg);\n -o-transform: perspective(400px) rotateX(90deg);\n transform: perspective(400px) rotateX(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 40% {\n -webkit-transform: perspective(400px) rotateX(-10deg);\n -moz-transform: perspective(400px) rotateX(-10deg);\n -ms-transform: perspective(400px) rotateX(-10deg);\n -o-transform: perspective(400px) rotateX(-10deg);\n transform: perspective(400px) rotateX(-10deg); }\n 70% {\n -webkit-transform: perspective(400px) rotateX(10deg);\n -moz-transform: perspective(400px) rotateX(10deg);\n -ms-transform: perspective(400px) rotateX(10deg);\n -o-transform: perspective(400px) rotateX(10deg);\n transform: perspective(400px) rotateX(10deg); }\n 100% {\n -webkit-transform: perspective(400px) rotateX(0deg);\n -moz-transform: perspective(400px) rotateX(0deg);\n -ms-transform: perspective(400px) rotateX(0deg);\n -o-transform: perspective(400px) rotateX(0deg);\n transform: perspective(400px) rotateX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@keyframes flipInX {\n 0% {\n -webkit-transform: perspective(400px) rotateX(90deg);\n -moz-transform: perspective(400px) rotateX(90deg);\n -ms-transform: perspective(400px) rotateX(90deg);\n -o-transform: perspective(400px) rotateX(90deg);\n transform: perspective(400px) rotateX(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 40% {\n -webkit-transform: perspective(400px) rotateX(-10deg);\n -moz-transform: perspective(400px) rotateX(-10deg);\n -ms-transform: perspective(400px) rotateX(-10deg);\n -o-transform: perspective(400px) rotateX(-10deg);\n transform: perspective(400px) rotateX(-10deg); }\n 70% {\n -webkit-transform: perspective(400px) rotateX(10deg);\n -moz-transform: perspective(400px) rotateX(10deg);\n -ms-transform: perspective(400px) rotateX(10deg);\n -o-transform: perspective(400px) rotateX(10deg);\n transform: perspective(400px) rotateX(10deg); }\n 100% {\n -webkit-transform: perspective(400px) rotateX(0deg);\n -moz-transform: perspective(400px) rotateX(0deg);\n -ms-transform: perspective(400px) rotateX(0deg);\n -o-transform: perspective(400px) rotateX(0deg);\n transform: perspective(400px) rotateX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-moz-keyframes flipOutX {\n 0% {\n -webkit-transform: perspective(400px) rotateX(0deg);\n -moz-transform: perspective(400px) rotateX(0deg);\n -ms-transform: perspective(400px) rotateX(0deg);\n -o-transform: perspective(400px) rotateX(0deg);\n transform: perspective(400px) rotateX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: perspective(400px) rotateX(90deg);\n -moz-transform: perspective(400px) rotateX(90deg);\n -ms-transform: perspective(400px) rotateX(90deg);\n -o-transform: perspective(400px) rotateX(90deg);\n transform: perspective(400px) rotateX(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-webkit-keyframes flipOutX {\n 0% {\n -webkit-transform: perspective(400px) rotateX(0deg);\n -moz-transform: perspective(400px) rotateX(0deg);\n -ms-transform: perspective(400px) rotateX(0deg);\n -o-transform: perspective(400px) rotateX(0deg);\n transform: perspective(400px) rotateX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: perspective(400px) rotateX(90deg);\n -moz-transform: perspective(400px) rotateX(90deg);\n -ms-transform: perspective(400px) rotateX(90deg);\n -o-transform: perspective(400px) rotateX(90deg);\n transform: perspective(400px) rotateX(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-o-keyframes flipOutX {\n 0% {\n -webkit-transform: perspective(400px) rotateX(0deg);\n -moz-transform: perspective(400px) rotateX(0deg);\n -ms-transform: perspective(400px) rotateX(0deg);\n -o-transform: perspective(400px) rotateX(0deg);\n transform: perspective(400px) rotateX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: perspective(400px) rotateX(90deg);\n -moz-transform: perspective(400px) rotateX(90deg);\n -ms-transform: perspective(400px) rotateX(90deg);\n -o-transform: perspective(400px) rotateX(90deg);\n transform: perspective(400px) rotateX(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-ms-keyframes flipOutX {\n 0% {\n -webkit-transform: perspective(400px) rotateX(0deg);\n -moz-transform: perspective(400px) rotateX(0deg);\n -ms-transform: perspective(400px) rotateX(0deg);\n -o-transform: perspective(400px) rotateX(0deg);\n transform: perspective(400px) rotateX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: perspective(400px) rotateX(90deg);\n -moz-transform: perspective(400px) rotateX(90deg);\n -ms-transform: perspective(400px) rotateX(90deg);\n -o-transform: perspective(400px) rotateX(90deg);\n transform: perspective(400px) rotateX(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@keyframes flipOutX {\n 0% {\n -webkit-transform: perspective(400px) rotateX(0deg);\n -moz-transform: perspective(400px) rotateX(0deg);\n -ms-transform: perspective(400px) rotateX(0deg);\n -o-transform: perspective(400px) rotateX(0deg);\n transform: perspective(400px) rotateX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: perspective(400px) rotateX(90deg);\n -moz-transform: perspective(400px) rotateX(90deg);\n -ms-transform: perspective(400px) rotateX(90deg);\n -o-transform: perspective(400px) rotateX(90deg);\n transform: perspective(400px) rotateX(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-moz-keyframes flipInY {\n 0% {\n -webkit-transform: perspective(400px) rotateY(90deg);\n -moz-transform: perspective(400px) rotateY(90deg);\n -ms-transform: perspective(400px) rotateY(90deg);\n -o-transform: perspective(400px) rotateY(90deg);\n transform: perspective(400px) rotateY(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 40% {\n -webkit-transform: perspective(400px) rotateY(-10deg);\n -moz-transform: perspective(400px) rotateY(-10deg);\n -ms-transform: perspective(400px) rotateY(-10deg);\n -o-transform: perspective(400px) rotateY(-10deg);\n transform: perspective(400px) rotateY(-10deg); }\n 70% {\n -webkit-transform: perspective(400px) rotateY(10deg);\n -moz-transform: perspective(400px) rotateY(10deg);\n -ms-transform: perspective(400px) rotateY(10deg);\n -o-transform: perspective(400px) rotateY(10deg);\n transform: perspective(400px) rotateY(10deg); }\n 100% {\n -webkit-transform: perspective(400px) rotateY(0deg);\n -moz-transform: perspective(400px) rotateY(0deg);\n -ms-transform: perspective(400px) rotateY(0deg);\n -o-transform: perspective(400px) rotateY(0deg);\n transform: perspective(400px) rotateY(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-webkit-keyframes flipInY {\n 0% {\n -webkit-transform: perspective(400px) rotateY(90deg);\n -moz-transform: perspective(400px) rotateY(90deg);\n -ms-transform: perspective(400px) rotateY(90deg);\n -o-transform: perspective(400px) rotateY(90deg);\n transform: perspective(400px) rotateY(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 40% {\n -webkit-transform: perspective(400px) rotateY(-10deg);\n -moz-transform: perspective(400px) rotateY(-10deg);\n -ms-transform: perspective(400px) rotateY(-10deg);\n -o-transform: perspective(400px) rotateY(-10deg);\n transform: perspective(400px) rotateY(-10deg); }\n 70% {\n -webkit-transform: perspective(400px) rotateY(10deg);\n -moz-transform: perspective(400px) rotateY(10deg);\n -ms-transform: perspective(400px) rotateY(10deg);\n -o-transform: perspective(400px) rotateY(10deg);\n transform: perspective(400px) rotateY(10deg); }\n 100% {\n -webkit-transform: perspective(400px) rotateY(0deg);\n -moz-transform: perspective(400px) rotateY(0deg);\n -ms-transform: perspective(400px) rotateY(0deg);\n -o-transform: perspective(400px) rotateY(0deg);\n transform: perspective(400px) rotateY(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-o-keyframes flipInY {\n 0% {\n -webkit-transform: perspective(400px) rotateY(90deg);\n -moz-transform: perspective(400px) rotateY(90deg);\n -ms-transform: perspective(400px) rotateY(90deg);\n -o-transform: perspective(400px) rotateY(90deg);\n transform: perspective(400px) rotateY(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 40% {\n -webkit-transform: perspective(400px) rotateY(-10deg);\n -moz-transform: perspective(400px) rotateY(-10deg);\n -ms-transform: perspective(400px) rotateY(-10deg);\n -o-transform: perspective(400px) rotateY(-10deg);\n transform: perspective(400px) rotateY(-10deg); }\n 70% {\n -webkit-transform: perspective(400px) rotateY(10deg);\n -moz-transform: perspective(400px) rotateY(10deg);\n -ms-transform: perspective(400px) rotateY(10deg);\n -o-transform: perspective(400px) rotateY(10deg);\n transform: perspective(400px) rotateY(10deg); }\n 100% {\n -webkit-transform: perspective(400px) rotateY(0deg);\n -moz-transform: perspective(400px) rotateY(0deg);\n -ms-transform: perspective(400px) rotateY(0deg);\n -o-transform: perspective(400px) rotateY(0deg);\n transform: perspective(400px) rotateY(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-ms-keyframes flipInY {\n 0% {\n -webkit-transform: perspective(400px) rotateY(90deg);\n -moz-transform: perspective(400px) rotateY(90deg);\n -ms-transform: perspective(400px) rotateY(90deg);\n -o-transform: perspective(400px) rotateY(90deg);\n transform: perspective(400px) rotateY(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 40% {\n -webkit-transform: perspective(400px) rotateY(-10deg);\n -moz-transform: perspective(400px) rotateY(-10deg);\n -ms-transform: perspective(400px) rotateY(-10deg);\n -o-transform: perspective(400px) rotateY(-10deg);\n transform: perspective(400px) rotateY(-10deg); }\n 70% {\n -webkit-transform: perspective(400px) rotateY(10deg);\n -moz-transform: perspective(400px) rotateY(10deg);\n -ms-transform: perspective(400px) rotateY(10deg);\n -o-transform: perspective(400px) rotateY(10deg);\n transform: perspective(400px) rotateY(10deg); }\n 100% {\n -webkit-transform: perspective(400px) rotateY(0deg);\n -moz-transform: perspective(400px) rotateY(0deg);\n -ms-transform: perspective(400px) rotateY(0deg);\n -o-transform: perspective(400px) rotateY(0deg);\n transform: perspective(400px) rotateY(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@keyframes flipInY {\n 0% {\n -webkit-transform: perspective(400px) rotateY(90deg);\n -moz-transform: perspective(400px) rotateY(90deg);\n -ms-transform: perspective(400px) rotateY(90deg);\n -o-transform: perspective(400px) rotateY(90deg);\n transform: perspective(400px) rotateY(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 40% {\n -webkit-transform: perspective(400px) rotateY(-10deg);\n -moz-transform: perspective(400px) rotateY(-10deg);\n -ms-transform: perspective(400px) rotateY(-10deg);\n -o-transform: perspective(400px) rotateY(-10deg);\n transform: perspective(400px) rotateY(-10deg); }\n 70% {\n -webkit-transform: perspective(400px) rotateY(10deg);\n -moz-transform: perspective(400px) rotateY(10deg);\n -ms-transform: perspective(400px) rotateY(10deg);\n -o-transform: perspective(400px) rotateY(10deg);\n transform: perspective(400px) rotateY(10deg); }\n 100% {\n -webkit-transform: perspective(400px) rotateY(0deg);\n -moz-transform: perspective(400px) rotateY(0deg);\n -ms-transform: perspective(400px) rotateY(0deg);\n -o-transform: perspective(400px) rotateY(0deg);\n transform: perspective(400px) rotateY(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-moz-keyframes flipOutY {\n 0% {\n -webkit-transform: perspective(400px) rotateY(0deg);\n -moz-transform: perspective(400px) rotateY(0deg);\n -ms-transform: perspective(400px) rotateY(0deg);\n -o-transform: perspective(400px) rotateY(0deg);\n transform: perspective(400px) rotateY(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: perspective(400px) rotateY(90deg);\n -moz-transform: perspective(400px) rotateY(90deg);\n -ms-transform: perspective(400px) rotateY(90deg);\n -o-transform: perspective(400px) rotateY(90deg);\n transform: perspective(400px) rotateY(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-webkit-keyframes flipOutY {\n 0% {\n -webkit-transform: perspective(400px) rotateY(0deg);\n -moz-transform: perspective(400px) rotateY(0deg);\n -ms-transform: perspective(400px) rotateY(0deg);\n -o-transform: perspective(400px) rotateY(0deg);\n transform: perspective(400px) rotateY(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: perspective(400px) rotateY(90deg);\n -moz-transform: perspective(400px) rotateY(90deg);\n -ms-transform: perspective(400px) rotateY(90deg);\n -o-transform: perspective(400px) rotateY(90deg);\n transform: perspective(400px) rotateY(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-o-keyframes flipOutY {\n 0% {\n -webkit-transform: perspective(400px) rotateY(0deg);\n -moz-transform: perspective(400px) rotateY(0deg);\n -ms-transform: perspective(400px) rotateY(0deg);\n -o-transform: perspective(400px) rotateY(0deg);\n transform: perspective(400px) rotateY(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: perspective(400px) rotateY(90deg);\n -moz-transform: perspective(400px) rotateY(90deg);\n -ms-transform: perspective(400px) rotateY(90deg);\n -o-transform: perspective(400px) rotateY(90deg);\n transform: perspective(400px) rotateY(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-ms-keyframes flipOutY {\n 0% {\n -webkit-transform: perspective(400px) rotateY(0deg);\n -moz-transform: perspective(400px) rotateY(0deg);\n -ms-transform: perspective(400px) rotateY(0deg);\n -o-transform: perspective(400px) rotateY(0deg);\n transform: perspective(400px) rotateY(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: perspective(400px) rotateY(90deg);\n -moz-transform: perspective(400px) rotateY(90deg);\n -ms-transform: perspective(400px) rotateY(90deg);\n -o-transform: perspective(400px) rotateY(90deg);\n transform: perspective(400px) rotateY(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@keyframes flipOutY {\n 0% {\n -webkit-transform: perspective(400px) rotateY(0deg);\n -moz-transform: perspective(400px) rotateY(0deg);\n -ms-transform: perspective(400px) rotateY(0deg);\n -o-transform: perspective(400px) rotateY(0deg);\n transform: perspective(400px) rotateY(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: perspective(400px) rotateY(90deg);\n -moz-transform: perspective(400px) rotateY(90deg);\n -ms-transform: perspective(400px) rotateY(90deg);\n -o-transform: perspective(400px) rotateY(90deg);\n transform: perspective(400px) rotateY(90deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-moz-keyframes lightSpeedIn {\n 0% {\n -webkit-transform: translateX(100%) skewX(-30deg);\n -moz-transform: translateX(100%) skewX(-30deg);\n -ms-transform: translateX(100%) skewX(-30deg);\n -o-transform: translateX(100%) skewX(-30deg);\n transform: translateX(100%) skewX(-30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 60% {\n -webkit-transform: translateX(-20%) skewX(30deg);\n -moz-transform: translateX(-20%) skewX(30deg);\n -ms-transform: translateX(-20%) skewX(30deg);\n -o-transform: translateX(-20%) skewX(30deg);\n transform: translateX(-20%) skewX(30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 80% {\n -webkit-transform: translateX(0%) skewX(-15deg);\n -moz-transform: translateX(0%) skewX(-15deg);\n -ms-transform: translateX(0%) skewX(-15deg);\n -o-transform: translateX(0%) skewX(-15deg);\n transform: translateX(0%) skewX(-15deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(0%) skewX(0deg);\n -moz-transform: translateX(0%) skewX(0deg);\n -ms-transform: translateX(0%) skewX(0deg);\n -o-transform: translateX(0%) skewX(0deg);\n transform: translateX(0%) skewX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-webkit-keyframes lightSpeedIn {\n 0% {\n -webkit-transform: translateX(100%) skewX(-30deg);\n -moz-transform: translateX(100%) skewX(-30deg);\n -ms-transform: translateX(100%) skewX(-30deg);\n -o-transform: translateX(100%) skewX(-30deg);\n transform: translateX(100%) skewX(-30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 60% {\n -webkit-transform: translateX(-20%) skewX(30deg);\n -moz-transform: translateX(-20%) skewX(30deg);\n -ms-transform: translateX(-20%) skewX(30deg);\n -o-transform: translateX(-20%) skewX(30deg);\n transform: translateX(-20%) skewX(30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 80% {\n -webkit-transform: translateX(0%) skewX(-15deg);\n -moz-transform: translateX(0%) skewX(-15deg);\n -ms-transform: translateX(0%) skewX(-15deg);\n -o-transform: translateX(0%) skewX(-15deg);\n transform: translateX(0%) skewX(-15deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(0%) skewX(0deg);\n -moz-transform: translateX(0%) skewX(0deg);\n -ms-transform: translateX(0%) skewX(0deg);\n -o-transform: translateX(0%) skewX(0deg);\n transform: translateX(0%) skewX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-o-keyframes lightSpeedIn {\n 0% {\n -webkit-transform: translateX(100%) skewX(-30deg);\n -moz-transform: translateX(100%) skewX(-30deg);\n -ms-transform: translateX(100%) skewX(-30deg);\n -o-transform: translateX(100%) skewX(-30deg);\n transform: translateX(100%) skewX(-30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 60% {\n -webkit-transform: translateX(-20%) skewX(30deg);\n -moz-transform: translateX(-20%) skewX(30deg);\n -ms-transform: translateX(-20%) skewX(30deg);\n -o-transform: translateX(-20%) skewX(30deg);\n transform: translateX(-20%) skewX(30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 80% {\n -webkit-transform: translateX(0%) skewX(-15deg);\n -moz-transform: translateX(0%) skewX(-15deg);\n -ms-transform: translateX(0%) skewX(-15deg);\n -o-transform: translateX(0%) skewX(-15deg);\n transform: translateX(0%) skewX(-15deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(0%) skewX(0deg);\n -moz-transform: translateX(0%) skewX(0deg);\n -ms-transform: translateX(0%) skewX(0deg);\n -o-transform: translateX(0%) skewX(0deg);\n transform: translateX(0%) skewX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-ms-keyframes lightSpeedIn {\n 0% {\n -webkit-transform: translateX(100%) skewX(-30deg);\n -moz-transform: translateX(100%) skewX(-30deg);\n -ms-transform: translateX(100%) skewX(-30deg);\n -o-transform: translateX(100%) skewX(-30deg);\n transform: translateX(100%) skewX(-30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 60% {\n -webkit-transform: translateX(-20%) skewX(30deg);\n -moz-transform: translateX(-20%) skewX(30deg);\n -ms-transform: translateX(-20%) skewX(30deg);\n -o-transform: translateX(-20%) skewX(30deg);\n transform: translateX(-20%) skewX(30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 80% {\n -webkit-transform: translateX(0%) skewX(-15deg);\n -moz-transform: translateX(0%) skewX(-15deg);\n -ms-transform: translateX(0%) skewX(-15deg);\n -o-transform: translateX(0%) skewX(-15deg);\n transform: translateX(0%) skewX(-15deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(0%) skewX(0deg);\n -moz-transform: translateX(0%) skewX(0deg);\n -ms-transform: translateX(0%) skewX(0deg);\n -o-transform: translateX(0%) skewX(0deg);\n transform: translateX(0%) skewX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@keyframes lightSpeedIn {\n 0% {\n -webkit-transform: translateX(100%) skewX(-30deg);\n -moz-transform: translateX(100%) skewX(-30deg);\n -ms-transform: translateX(100%) skewX(-30deg);\n -o-transform: translateX(100%) skewX(-30deg);\n transform: translateX(100%) skewX(-30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; }\n 60% {\n -webkit-transform: translateX(-20%) skewX(30deg);\n -moz-transform: translateX(-20%) skewX(30deg);\n -ms-transform: translateX(-20%) skewX(30deg);\n -o-transform: translateX(-20%) skewX(30deg);\n transform: translateX(-20%) skewX(30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 80% {\n -webkit-transform: translateX(0%) skewX(-15deg);\n -moz-transform: translateX(0%) skewX(-15deg);\n -ms-transform: translateX(0%) skewX(-15deg);\n -o-transform: translateX(0%) skewX(-15deg);\n transform: translateX(0%) skewX(-15deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(0%) skewX(0deg);\n -moz-transform: translateX(0%) skewX(0deg);\n -ms-transform: translateX(0%) skewX(0deg);\n -o-transform: translateX(0%) skewX(0deg);\n transform: translateX(0%) skewX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; } }\n\n@-moz-keyframes lightSpeedOut {\n 0% {\n -webkit-transform: translateX(0%) skewX(0deg);\n -moz-transform: translateX(0%) skewX(0deg);\n -ms-transform: translateX(0%) skewX(0deg);\n -o-transform: translateX(0%) skewX(0deg);\n transform: translateX(0%) skewX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(100%) skewX(-30deg);\n -moz-transform: translateX(100%) skewX(-30deg);\n -ms-transform: translateX(100%) skewX(-30deg);\n -o-transform: translateX(100%) skewX(-30deg);\n transform: translateX(100%) skewX(-30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-webkit-keyframes lightSpeedOut {\n 0% {\n -webkit-transform: translateX(0%) skewX(0deg);\n -moz-transform: translateX(0%) skewX(0deg);\n -ms-transform: translateX(0%) skewX(0deg);\n -o-transform: translateX(0%) skewX(0deg);\n transform: translateX(0%) skewX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(100%) skewX(-30deg);\n -moz-transform: translateX(100%) skewX(-30deg);\n -ms-transform: translateX(100%) skewX(-30deg);\n -o-transform: translateX(100%) skewX(-30deg);\n transform: translateX(100%) skewX(-30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-o-keyframes lightSpeedOut {\n 0% {\n -webkit-transform: translateX(0%) skewX(0deg);\n -moz-transform: translateX(0%) skewX(0deg);\n -ms-transform: translateX(0%) skewX(0deg);\n -o-transform: translateX(0%) skewX(0deg);\n transform: translateX(0%) skewX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(100%) skewX(-30deg);\n -moz-transform: translateX(100%) skewX(-30deg);\n -ms-transform: translateX(100%) skewX(-30deg);\n -o-transform: translateX(100%) skewX(-30deg);\n transform: translateX(100%) skewX(-30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-ms-keyframes lightSpeedOut {\n 0% {\n -webkit-transform: translateX(0%) skewX(0deg);\n -moz-transform: translateX(0%) skewX(0deg);\n -ms-transform: translateX(0%) skewX(0deg);\n -o-transform: translateX(0%) skewX(0deg);\n transform: translateX(0%) skewX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(100%) skewX(-30deg);\n -moz-transform: translateX(100%) skewX(-30deg);\n -ms-transform: translateX(100%) skewX(-30deg);\n -o-transform: translateX(100%) skewX(-30deg);\n transform: translateX(100%) skewX(-30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@keyframes lightSpeedOut {\n 0% {\n -webkit-transform: translateX(0%) skewX(0deg);\n -moz-transform: translateX(0%) skewX(0deg);\n -ms-transform: translateX(0%) skewX(0deg);\n -o-transform: translateX(0%) skewX(0deg);\n transform: translateX(0%) skewX(0deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1; }\n 100% {\n -webkit-transform: translateX(100%) skewX(-30deg);\n -moz-transform: translateX(100%) skewX(-30deg);\n -ms-transform: translateX(100%) skewX(-30deg);\n -o-transform: translateX(100%) skewX(-30deg);\n transform: translateX(100%) skewX(-30deg);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-moz-keyframes rotateOut {\n 0% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(200deg);\n -moz-transform: rotate(200deg);\n -ms-transform: rotate(200deg);\n -o-transform: rotate(200deg);\n transform: rotate(200deg);\n opacity: 0; } }\n\n@-webkit-keyframes rotateOut {\n 0% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(200deg);\n -moz-transform: rotate(200deg);\n -ms-transform: rotate(200deg);\n -o-transform: rotate(200deg);\n transform: rotate(200deg);\n opacity: 0; } }\n\n@-o-keyframes rotateOut {\n 0% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(200deg);\n -moz-transform: rotate(200deg);\n -ms-transform: rotate(200deg);\n -o-transform: rotate(200deg);\n transform: rotate(200deg);\n opacity: 0; } }\n\n@-ms-keyframes rotateOut {\n 0% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(200deg);\n -moz-transform: rotate(200deg);\n -ms-transform: rotate(200deg);\n -o-transform: rotate(200deg);\n transform: rotate(200deg);\n opacity: 0; } }\n\n@keyframes rotateOut {\n 0% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(200deg);\n -moz-transform: rotate(200deg);\n -ms-transform: rotate(200deg);\n -o-transform: rotate(200deg);\n transform: rotate(200deg);\n opacity: 0; } }\n\n@-moz-keyframes rotateOutDownLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; } }\n\n@-webkit-keyframes rotateOutDownLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; } }\n\n@-o-keyframes rotateOutDownLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; } }\n\n@-ms-keyframes rotateOutDownLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; } }\n\n@keyframes rotateOutDownLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; } }\n\n@-moz-keyframes rotateOutUpLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; } }\n\n@-webkit-keyframes rotateOutUpLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; } }\n\n@-o-keyframes rotateOutUpLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; } }\n\n@-ms-keyframes rotateOutUpLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; } }\n\n@keyframes rotateOutUpLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; } }\n\n@-moz-keyframes rotateOutDownRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; } }\n\n@-webkit-keyframes rotateOutDownRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; } }\n\n@-o-keyframes rotateOutDownRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; } }\n\n@-ms-keyframes rotateOutDownRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; } }\n\n@keyframes rotateOutDownRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; } }\n\n@-moz-keyframes rotateOutUpRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; } }\n\n@-webkit-keyframes rotateOutUpRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; } }\n\n@-o-keyframes rotateOutUpRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; } }\n\n@-ms-keyframes rotateOutUpRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; } }\n\n@keyframes rotateOutUpRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; } }\n\n@-moz-keyframes rotateIn {\n 0% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(-200deg);\n -moz-transform: rotate(-200deg);\n -ms-transform: rotate(-200deg);\n -o-transform: rotate(-200deg);\n transform: rotate(-200deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-webkit-keyframes rotateIn {\n 0% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(-200deg);\n -moz-transform: rotate(-200deg);\n -ms-transform: rotate(-200deg);\n -o-transform: rotate(-200deg);\n transform: rotate(-200deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-o-keyframes rotateIn {\n 0% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(-200deg);\n -moz-transform: rotate(-200deg);\n -ms-transform: rotate(-200deg);\n -o-transform: rotate(-200deg);\n transform: rotate(-200deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-ms-keyframes rotateIn {\n 0% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(-200deg);\n -moz-transform: rotate(-200deg);\n -ms-transform: rotate(-200deg);\n -o-transform: rotate(-200deg);\n transform: rotate(-200deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@keyframes rotateIn {\n 0% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(-200deg);\n -moz-transform: rotate(-200deg);\n -ms-transform: rotate(-200deg);\n -o-transform: rotate(-200deg);\n transform: rotate(-200deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: center center 50%;\n -moz-transform-origin: center center 50%;\n -ms-transform-origin: center center 50%;\n -o-transform-origin: center center 50%;\n transform-origin: center center 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-moz-keyframes rotateInDownLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-webkit-keyframes rotateInDownLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-o-keyframes rotateInDownLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-ms-keyframes rotateInDownLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@keyframes rotateInDownLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-moz-keyframes rotateInUpLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-webkit-keyframes rotateInUpLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-o-keyframes rotateInUpLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-ms-keyframes rotateInUpLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@keyframes rotateInUpLeft {\n 0% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: left bottom 50%;\n -moz-transform-origin: left bottom 50%;\n -ms-transform-origin: left bottom 50%;\n -o-transform-origin: left bottom 50%;\n transform-origin: left bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-moz-keyframes rotateInUpRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-webkit-keyframes rotateInUpRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-o-keyframes rotateInUpRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-ms-keyframes rotateInUpRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@keyframes rotateInUpRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(-90deg);\n -moz-transform: rotate(-90deg);\n -ms-transform: rotate(-90deg);\n -o-transform: rotate(-90deg);\n transform: rotate(-90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-moz-keyframes rotateInDownRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-webkit-keyframes rotateInDownRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-o-keyframes rotateInDownRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-ms-keyframes rotateInDownRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@keyframes rotateInDownRight {\n 0% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(90deg);\n -moz-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n -o-transform: rotate(90deg);\n transform: rotate(90deg);\n opacity: 0; }\n 100% {\n -webkit-transform-origin: right bottom 50%;\n -moz-transform-origin: right bottom 50%;\n -ms-transform-origin: right bottom 50%;\n -o-transform-origin: right bottom 50%;\n transform-origin: right bottom 50%;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n opacity: 1; } }\n\n@-moz-keyframes hinge {\n 0% {\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 20%, 60% {\n -webkit-transform: rotate(80deg);\n -moz-transform: rotate(80deg);\n -ms-transform: rotate(80deg);\n -o-transform: rotate(80deg);\n transform: rotate(80deg);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 40% {\n -webkit-transform: rotate(60deg);\n -moz-transform: rotate(60deg);\n -ms-transform: rotate(60deg);\n -o-transform: rotate(60deg);\n transform: rotate(60deg);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 80% {\n -webkit-transform: rotate(60deg) translateY(0);\n -moz-transform: rotate(60deg) translateY(0);\n -ms-transform: rotate(60deg) translateY(0);\n -o-transform: rotate(60deg) translateY(0);\n transform: rotate(60deg) translateY(0);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 100% {\n -webkit-transform: translateY(700px);\n -moz-transform: translateY(700px);\n -ms-transform: translateY(700px);\n -o-transform: translateY(700px);\n transform: translateY(700px);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-webkit-keyframes hinge {\n 0% {\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 20%, 60% {\n -webkit-transform: rotate(80deg);\n -moz-transform: rotate(80deg);\n -ms-transform: rotate(80deg);\n -o-transform: rotate(80deg);\n transform: rotate(80deg);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 40% {\n -webkit-transform: rotate(60deg);\n -moz-transform: rotate(60deg);\n -ms-transform: rotate(60deg);\n -o-transform: rotate(60deg);\n transform: rotate(60deg);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 80% {\n -webkit-transform: rotate(60deg) translateY(0);\n -moz-transform: rotate(60deg) translateY(0);\n -ms-transform: rotate(60deg) translateY(0);\n -o-transform: rotate(60deg) translateY(0);\n transform: rotate(60deg) translateY(0);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 100% {\n -webkit-transform: translateY(700px);\n -moz-transform: translateY(700px);\n -ms-transform: translateY(700px);\n -o-transform: translateY(700px);\n transform: translateY(700px);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-o-keyframes hinge {\n 0% {\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 20%, 60% {\n -webkit-transform: rotate(80deg);\n -moz-transform: rotate(80deg);\n -ms-transform: rotate(80deg);\n -o-transform: rotate(80deg);\n transform: rotate(80deg);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 40% {\n -webkit-transform: rotate(60deg);\n -moz-transform: rotate(60deg);\n -ms-transform: rotate(60deg);\n -o-transform: rotate(60deg);\n transform: rotate(60deg);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 80% {\n -webkit-transform: rotate(60deg) translateY(0);\n -moz-transform: rotate(60deg) translateY(0);\n -ms-transform: rotate(60deg) translateY(0);\n -o-transform: rotate(60deg) translateY(0);\n transform: rotate(60deg) translateY(0);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 100% {\n -webkit-transform: translateY(700px);\n -moz-transform: translateY(700px);\n -ms-transform: translateY(700px);\n -o-transform: translateY(700px);\n transform: translateY(700px);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-ms-keyframes hinge {\n 0% {\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 20%, 60% {\n -webkit-transform: rotate(80deg);\n -moz-transform: rotate(80deg);\n -ms-transform: rotate(80deg);\n -o-transform: rotate(80deg);\n transform: rotate(80deg);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 40% {\n -webkit-transform: rotate(60deg);\n -moz-transform: rotate(60deg);\n -ms-transform: rotate(60deg);\n -o-transform: rotate(60deg);\n transform: rotate(60deg);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 80% {\n -webkit-transform: rotate(60deg) translateY(0);\n -moz-transform: rotate(60deg) translateY(0);\n -ms-transform: rotate(60deg) translateY(0);\n -o-transform: rotate(60deg) translateY(0);\n transform: rotate(60deg) translateY(0);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 100% {\n -webkit-transform: translateY(700px);\n -moz-transform: translateY(700px);\n -ms-transform: translateY(700px);\n -o-transform: translateY(700px);\n transform: translateY(700px);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@keyframes hinge {\n 0% {\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 20%, 60% {\n -webkit-transform: rotate(80deg);\n -moz-transform: rotate(80deg);\n -ms-transform: rotate(80deg);\n -o-transform: rotate(80deg);\n transform: rotate(80deg);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 40% {\n -webkit-transform: rotate(60deg);\n -moz-transform: rotate(60deg);\n -ms-transform: rotate(60deg);\n -o-transform: rotate(60deg);\n transform: rotate(60deg);\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 80% {\n -webkit-transform: rotate(60deg) translateY(0);\n -moz-transform: rotate(60deg) translateY(0);\n -ms-transform: rotate(60deg) translateY(0);\n -o-transform: rotate(60deg) translateY(0);\n transform: rotate(60deg) translateY(0);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform-origin: top left 50%;\n -moz-transform-origin: top left 50%;\n -ms-transform-origin: top left 50%;\n -o-transform-origin: top left 50%;\n transform-origin: top left 50%;\n -webkit-animation-timing-function: ease-in-out;\n -moz-animation-timing-function: ease-in-out;\n -ms-animation-timing-function: ease-in-out;\n -o-animation-timing-function: ease-in-out;\n animation-timing-function: ease-in-out; }\n 100% {\n -webkit-transform: translateY(700px);\n -moz-transform: translateY(700px);\n -ms-transform: translateY(700px);\n -o-transform: translateY(700px);\n transform: translateY(700px);\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0; } }\n\n@-moz-keyframes rollIn {\n 0% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transform: translateX(-100%) rotate(-120deg);\n -moz-transform: translateX(-100%) rotate(-120deg);\n -ms-transform: translateX(-100%) rotate(-120deg);\n -o-transform: translateX(-100%) rotate(-120deg);\n transform: translateX(-100%) rotate(-120deg); }\n 100% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform: translateX(0px) rotate(0deg);\n -moz-transform: translateX(0px) rotate(0deg);\n -ms-transform: translateX(0px) rotate(0deg);\n -o-transform: translateX(0px) rotate(0deg);\n transform: translateX(0px) rotate(0deg); } }\n\n@-webkit-keyframes rollIn {\n 0% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transform: translateX(-100%) rotate(-120deg);\n -moz-transform: translateX(-100%) rotate(-120deg);\n -ms-transform: translateX(-100%) rotate(-120deg);\n -o-transform: translateX(-100%) rotate(-120deg);\n transform: translateX(-100%) rotate(-120deg); }\n 100% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform: translateX(0px) rotate(0deg);\n -moz-transform: translateX(0px) rotate(0deg);\n -ms-transform: translateX(0px) rotate(0deg);\n -o-transform: translateX(0px) rotate(0deg);\n transform: translateX(0px) rotate(0deg); } }\n\n@-o-keyframes rollIn {\n 0% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transform: translateX(-100%) rotate(-120deg);\n -moz-transform: translateX(-100%) rotate(-120deg);\n -ms-transform: translateX(-100%) rotate(-120deg);\n -o-transform: translateX(-100%) rotate(-120deg);\n transform: translateX(-100%) rotate(-120deg); }\n 100% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform: translateX(0px) rotate(0deg);\n -moz-transform: translateX(0px) rotate(0deg);\n -ms-transform: translateX(0px) rotate(0deg);\n -o-transform: translateX(0px) rotate(0deg);\n transform: translateX(0px) rotate(0deg); } }\n\n@-ms-keyframes rollIn {\n 0% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transform: translateX(-100%) rotate(-120deg);\n -moz-transform: translateX(-100%) rotate(-120deg);\n -ms-transform: translateX(-100%) rotate(-120deg);\n -o-transform: translateX(-100%) rotate(-120deg);\n transform: translateX(-100%) rotate(-120deg); }\n 100% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform: translateX(0px) rotate(0deg);\n -moz-transform: translateX(0px) rotate(0deg);\n -ms-transform: translateX(0px) rotate(0deg);\n -o-transform: translateX(0px) rotate(0deg);\n transform: translateX(0px) rotate(0deg); } }\n\n@keyframes rollIn {\n 0% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transform: translateX(-100%) rotate(-120deg);\n -moz-transform: translateX(-100%) rotate(-120deg);\n -ms-transform: translateX(-100%) rotate(-120deg);\n -o-transform: translateX(-100%) rotate(-120deg);\n transform: translateX(-100%) rotate(-120deg); }\n 100% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform: translateX(0px) rotate(0deg);\n -moz-transform: translateX(0px) rotate(0deg);\n -ms-transform: translateX(0px) rotate(0deg);\n -o-transform: translateX(0px) rotate(0deg);\n transform: translateX(0px) rotate(0deg); } }\n\n@-moz-keyframes rollOut {\n 0% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform: translateX(0px) rotate(0deg);\n -moz-transform: translateX(0px) rotate(0deg);\n -ms-transform: translateX(0px) rotate(0deg);\n -o-transform: translateX(0px) rotate(0deg);\n transform: translateX(0px) rotate(0deg); }\n 100% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transform: translateX(-100%) rotate(-120deg);\n -moz-transform: translateX(-100%) rotate(-120deg);\n -ms-transform: translateX(-100%) rotate(-120deg);\n -o-transform: translateX(-100%) rotate(-120deg);\n transform: translateX(-100%) rotate(-120deg); } }\n\n@-webkit-keyframes rollOut {\n 0% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform: translateX(0px) rotate(0deg);\n -moz-transform: translateX(0px) rotate(0deg);\n -ms-transform: translateX(0px) rotate(0deg);\n -o-transform: translateX(0px) rotate(0deg);\n transform: translateX(0px) rotate(0deg); }\n 100% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transform: translateX(-100%) rotate(-120deg);\n -moz-transform: translateX(-100%) rotate(-120deg);\n -ms-transform: translateX(-100%) rotate(-120deg);\n -o-transform: translateX(-100%) rotate(-120deg);\n transform: translateX(-100%) rotate(-120deg); } }\n\n@-o-keyframes rollOut {\n 0% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform: translateX(0px) rotate(0deg);\n -moz-transform: translateX(0px) rotate(0deg);\n -ms-transform: translateX(0px) rotate(0deg);\n -o-transform: translateX(0px) rotate(0deg);\n transform: translateX(0px) rotate(0deg); }\n 100% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transform: translateX(-100%) rotate(-120deg);\n -moz-transform: translateX(-100%) rotate(-120deg);\n -ms-transform: translateX(-100%) rotate(-120deg);\n -o-transform: translateX(-100%) rotate(-120deg);\n transform: translateX(-100%) rotate(-120deg); } }\n\n@-ms-keyframes rollOut {\n 0% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform: translateX(0px) rotate(0deg);\n -moz-transform: translateX(0px) rotate(0deg);\n -ms-transform: translateX(0px) rotate(0deg);\n -o-transform: translateX(0px) rotate(0deg);\n transform: translateX(0px) rotate(0deg); }\n 100% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transform: translateX(-100%) rotate(-120deg);\n -moz-transform: translateX(-100%) rotate(-120deg);\n -ms-transform: translateX(-100%) rotate(-120deg);\n -o-transform: translateX(-100%) rotate(-120deg);\n transform: translateX(-100%) rotate(-120deg); } }\n\n@keyframes rollOut {\n 0% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);\n opacity: 1;\n -webkit-transform: translateX(0px) rotate(0deg);\n -moz-transform: translateX(0px) rotate(0deg);\n -ms-transform: translateX(0px) rotate(0deg);\n -o-transform: translateX(0px) rotate(0deg);\n transform: translateX(0px) rotate(0deg); }\n 100% {\n filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);\n opacity: 0;\n -webkit-transform: translateX(-100%) rotate(-120deg);\n -moz-transform: translateX(-100%) rotate(-120deg);\n -ms-transform: translateX(-100%) rotate(-120deg);\n -o-transform: translateX(-100%) rotate(-120deg);\n transform: translateX(-100%) rotate(-120deg); } }\n\n/*-------------------------------------------------------------------*/\n/* === Boostrap Main SCSS === */\n/*!\n * Bootstrap v4.5.3 (https://getbootstrap.com/)\n * Copyright 2011-2020 The Bootstrap Authors\n * Copyright 2011-2020 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n:root {\n --blue: #5E50F9;\n --indigo: #6610f2;\n --purple: #6a008a;\n --pink: #E91E63;\n --red: #f96868;\n --orange: #f2a654;\n --yellow: #f6e84e;\n --green: #46c35f;\n --teal: #58d8a3;\n --cyan: #57c7d4;\n --white: #ffffff;\n --gray: #6c757d;\n --gray-dark: #0f1531;\n --blue: #5E50F9;\n --indigo: #6610f2;\n --purple: #6a008a;\n --pink: #E91E63;\n --red: #f96868;\n --orange: #f2a654;\n --yellow: #f6e84e;\n --green: #46c35f;\n --teal: #58d8a3;\n --cyan: #57c7d4;\n --white: #ffffff;\n --gray: #434a54;\n --gray-light: #aab2bd;\n --gray-lighter: #e8eff4;\n --gray-lightest: #e6e9ed;\n --black: #000000;\n --primary: #1bdbe0;\n --secondary: #d8d8d8;\n --success: #38ce3c;\n --info: #8e32e9;\n --warning: #ffde73;\n --danger: #ff4d6b;\n --light: #f8f9fa;\n --dark: #3e4b5b;\n --breakpoint-xs: 0;\n --breakpoint-sm: 576px;\n --breakpoint-md: 768px;\n --breakpoint-lg: 992px;\n --breakpoint-xl: 1200px;\n --font-family-sans-serif: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace; }\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; }\n\nhtml {\n font-family: sans-serif;\n line-height: 1.15;\n -webkit-text-size-adjust: 100%;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }\n\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block; }\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #343a40;\n text-align: left;\n background-color: #fff; }\n\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important; }\n\nhr {\n box-sizing: content-box;\n height: 0;\n overflow: visible; }\n\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: 0.5rem; }\n\np {\n margin-top: 0;\n margin-bottom: 1rem; }\n\nabbr[title],\nabbr[data-original-title] {\n text-decoration: underline;\n text-decoration: underline dotted;\n cursor: help;\n border-bottom: 0;\n text-decoration-skip-ink: none; }\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit; }\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem; }\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0; }\n\ndt {\n font-weight: 700; }\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; }\n\nblockquote {\n margin: 0 0 1rem; }\n\nb,\nstrong {\n font-weight: bolder; }\n\nsmall {\n font-size: 80%; }\n\nsub,\nsup {\n position: relative;\n font-size: 75%;\n line-height: 0;\n vertical-align: baseline; }\n\nsub {\n bottom: -.25em; }\n\nsup {\n top: -.5em; }\n\na {\n color: #007bff;\n text-decoration: none;\n background-color: transparent; }\n a:hover {\n color: #0056b3;\n text-decoration: underline; }\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none; }\n a:not([href]):not([class]):hover {\n color: inherit;\n text-decoration: none; }\n\npre,\ncode,\nkbd,\nsamp {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace;\n font-size: 1em; }\n\npre {\n margin-top: 0;\n margin-bottom: 1rem;\n overflow: auto;\n -ms-overflow-style: scrollbar; }\n\nfigure {\n margin: 0 0 1rem; }\n\nimg {\n vertical-align: middle;\n border-style: none; }\n\nsvg {\n overflow: hidden;\n vertical-align: middle; }\n\ntable {\n border-collapse: collapse; }\n\ncaption {\n padding-top: 0.9375rem;\n padding-bottom: 0.9375rem;\n color: #6c757d;\n text-align: left;\n caption-side: bottom; }\n\nth {\n text-align: inherit;\n text-align: -webkit-match-parent; }\n\nlabel {\n display: inline-block;\n margin-bottom: 0.5rem; }\n\nbutton {\n border-radius: 0; }\n\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color; }\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0;\n font-family: inherit;\n font-size: inherit;\n line-height: inherit; }\n\nbutton,\ninput {\n overflow: visible; }\n\nbutton,\nselect {\n text-transform: none; }\n\n[role=\"button\"] {\n cursor: pointer; }\n\nselect {\n word-wrap: normal; }\n\nbutton,\n[type=\"button\"],\n[type=\"reset\"],\n[type=\"submit\"] {\n -webkit-appearance: button; }\n\nbutton:not(:disabled),\n[type=\"button\"]:not(:disabled),\n[type=\"reset\"]:not(:disabled),\n[type=\"submit\"]:not(:disabled) {\n cursor: pointer; }\n\nbutton::-moz-focus-inner,\n[type=\"button\"]::-moz-focus-inner,\n[type=\"reset\"]::-moz-focus-inner,\n[type=\"submit\"]::-moz-focus-inner {\n padding: 0;\n border-style: none; }\n\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n box-sizing: border-box;\n padding: 0; }\n\ntextarea {\n overflow: auto;\n resize: vertical; }\n\nfieldset {\n min-width: 0;\n padding: 0;\n margin: 0;\n border: 0; }\n\nlegend {\n display: block;\n width: 100%;\n max-width: 100%;\n padding: 0;\n margin-bottom: .5rem;\n font-size: 1.5rem;\n line-height: inherit;\n color: inherit;\n white-space: normal; }\n\nprogress {\n vertical-align: baseline; }\n\n[type=\"number\"]::-webkit-inner-spin-button,\n[type=\"number\"]::-webkit-outer-spin-button {\n height: auto; }\n\n[type=\"search\"] {\n outline-offset: -2px;\n -webkit-appearance: none; }\n\n[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none; }\n\n::-webkit-file-upload-button {\n font: inherit;\n -webkit-appearance: button; }\n\noutput {\n display: inline-block; }\n\nsummary {\n display: list-item;\n cursor: pointer; }\n\ntemplate {\n display: none; }\n\n[hidden] {\n display: none !important; }\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n margin-bottom: 0.5rem;\n font-weight: 500;\n line-height: 1.2; }\n\nh1, .h1 {\n font-size: 2.5rem; }\n\nh2, .h2 {\n font-size: 2rem; }\n\nh3, .h3 {\n font-size: 1.75rem; }\n\nh4, .h4 {\n font-size: 1.5rem; }\n\nh5, .h5 {\n font-size: 1.25rem; }\n\nh6, .h6 {\n font-size: 1rem; }\n\n.lead {\n font-size: 1.25rem;\n font-weight: 300; }\n\n.display-1 {\n font-size: 6rem;\n font-weight: 300;\n line-height: 1.2; }\n\n.display-2 {\n font-size: 5.5rem;\n font-weight: 300;\n line-height: 1.2; }\n\n.display-3 {\n font-size: 4.5rem;\n font-weight: 300;\n line-height: 1.2; }\n\n.display-4 {\n font-size: 3.5rem;\n font-weight: 300;\n line-height: 1.2; }\n\nhr {\n margin-top: 1rem;\n margin-bottom: 1rem;\n border: 0;\n border-top: 1px solid rgba(0, 0, 0, 0.1); }\n\nsmall,\n.small {\n font-size: 80%;\n font-weight: 400; }\n\nmark,\n.mark {\n padding: 0.2em;\n background-color: #fcf8e3; }\n\n.list-unstyled {\n padding-left: 0;\n list-style: none; }\n\n.list-inline {\n padding-left: 0;\n list-style: none; }\n\n.list-inline-item {\n display: inline-block; }\n .list-inline-item:not(:last-child) {\n margin-right: 0.5rem; }\n\n.initialism {\n font-size: 90%;\n text-transform: uppercase; }\n\n.blockquote {\n margin-bottom: 1rem;\n font-size: 1.25rem; }\n\n.blockquote-footer {\n display: block;\n font-size: 80%;\n color: #6c757d; }\n .blockquote-footer::before {\n content: \"\\2014\\00A0\"; }\n\n.img-fluid {\n max-width: 100%;\n height: auto; }\n\n.img-thumbnail {\n padding: 0.25rem;\n background-color: #fff;\n border: 1px solid #dee2e6;\n border-radius: 0.25rem;\n max-width: 100%;\n height: auto; }\n\n.figure {\n display: inline-block; }\n\n.figure-img {\n margin-bottom: 0.5rem;\n line-height: 1; }\n\n.figure-caption {\n font-size: 90%;\n color: #6c757d; }\n\ncode {\n font-size: 87.5%;\n color: #e83e8c;\n word-wrap: break-word; }\n a > code {\n color: inherit; }\n\nkbd {\n padding: 0.2rem 0.4rem;\n font-size: 87.5%;\n color: #fff;\n background-color: #212529;\n border-radius: 0.2rem; }\n kbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: 700; }\n\npre {\n display: block;\n font-size: 87.5%;\n color: #212529; }\n pre code {\n font-size: inherit;\n color: inherit;\n word-break: normal; }\n\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll; }\n\n.container,\n.container-fluid,\n.container-sm,\n.container-md,\n.container-lg,\n.container-xl {\n width: 100%;\n padding-right: 10px;\n padding-left: 10px;\n margin-right: auto;\n margin-left: auto; }\n\n@media (min-width: 576px) {\n .container, .container-sm {\n max-width: 540px; } }\n\n@media (min-width: 768px) {\n .container, .container-sm, .container-md {\n max-width: 720px; } }\n\n@media (min-width: 992px) {\n .container, .container-sm, .container-md, .container-lg {\n max-width: 960px; } }\n\n@media (min-width: 1200px) {\n .container, .container-sm, .container-md, .container-lg, .container-xl {\n max-width: 1140px; } }\n\n.row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -10px;\n margin-left: -10px; }\n\n.no-gutters {\n margin-right: 0;\n margin-left: 0; }\n .no-gutters > .col,\n .no-gutters > [class*=\"col-\"] {\n padding-right: 0;\n padding-left: 0; }\n\n.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,\n.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,\n.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,\n.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,\n.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,\n.col-xl-auto {\n position: relative;\n width: 100%;\n padding-right: 10px;\n padding-left: 10px; }\n\n.col {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%; }\n\n.row-cols-1 > * {\n flex: 0 0 100%;\n max-width: 100%; }\n\n.row-cols-2 > * {\n flex: 0 0 50%;\n max-width: 50%; }\n\n.row-cols-3 > * {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n\n.row-cols-4 > * {\n flex: 0 0 25%;\n max-width: 25%; }\n\n.row-cols-5 > * {\n flex: 0 0 20%;\n max-width: 20%; }\n\n.row-cols-6 > * {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n\n.col-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%; }\n\n.col-1 {\n flex: 0 0 8.33333%;\n max-width: 8.33333%; }\n\n.col-2 {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n\n.col-3 {\n flex: 0 0 25%;\n max-width: 25%; }\n\n.col-4 {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n\n.col-5 {\n flex: 0 0 41.66667%;\n max-width: 41.66667%; }\n\n.col-6 {\n flex: 0 0 50%;\n max-width: 50%; }\n\n.col-7 {\n flex: 0 0 58.33333%;\n max-width: 58.33333%; }\n\n.col-8 {\n flex: 0 0 66.66667%;\n max-width: 66.66667%; }\n\n.col-9 {\n flex: 0 0 75%;\n max-width: 75%; }\n\n.col-10 {\n flex: 0 0 83.33333%;\n max-width: 83.33333%; }\n\n.col-11 {\n flex: 0 0 91.66667%;\n max-width: 91.66667%; }\n\n.col-12 {\n flex: 0 0 100%;\n max-width: 100%; }\n\n.order-first {\n order: -1; }\n\n.order-last {\n order: 13; }\n\n.order-0 {\n order: 0; }\n\n.order-1 {\n order: 1; }\n\n.order-2 {\n order: 2; }\n\n.order-3 {\n order: 3; }\n\n.order-4 {\n order: 4; }\n\n.order-5 {\n order: 5; }\n\n.order-6 {\n order: 6; }\n\n.order-7 {\n order: 7; }\n\n.order-8 {\n order: 8; }\n\n.order-9 {\n order: 9; }\n\n.order-10 {\n order: 10; }\n\n.order-11 {\n order: 11; }\n\n.order-12 {\n order: 12; }\n\n.offset-1 {\n margin-left: 8.33333%; }\n\n.offset-2 {\n margin-left: 16.66667%; }\n\n.offset-3 {\n margin-left: 25%; }\n\n.offset-4 {\n margin-left: 33.33333%; }\n\n.offset-5 {\n margin-left: 41.66667%; }\n\n.offset-6 {\n margin-left: 50%; }\n\n.offset-7 {\n margin-left: 58.33333%; }\n\n.offset-8 {\n margin-left: 66.66667%; }\n\n.offset-9 {\n margin-left: 75%; }\n\n.offset-10 {\n margin-left: 83.33333%; }\n\n.offset-11 {\n margin-left: 91.66667%; }\n\n@media (min-width: 576px) {\n .col-sm {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%; }\n .row-cols-sm-1 > * {\n flex: 0 0 100%;\n max-width: 100%; }\n .row-cols-sm-2 > * {\n flex: 0 0 50%;\n max-width: 50%; }\n .row-cols-sm-3 > * {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .row-cols-sm-4 > * {\n flex: 0 0 25%;\n max-width: 25%; }\n .row-cols-sm-5 > * {\n flex: 0 0 20%;\n max-width: 20%; }\n .row-cols-sm-6 > * {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-sm-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%; }\n .col-sm-1 {\n flex: 0 0 8.33333%;\n max-width: 8.33333%; }\n .col-sm-2 {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-sm-3 {\n flex: 0 0 25%;\n max-width: 25%; }\n .col-sm-4 {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .col-sm-5 {\n flex: 0 0 41.66667%;\n max-width: 41.66667%; }\n .col-sm-6 {\n flex: 0 0 50%;\n max-width: 50%; }\n .col-sm-7 {\n flex: 0 0 58.33333%;\n max-width: 58.33333%; }\n .col-sm-8 {\n flex: 0 0 66.66667%;\n max-width: 66.66667%; }\n .col-sm-9 {\n flex: 0 0 75%;\n max-width: 75%; }\n .col-sm-10 {\n flex: 0 0 83.33333%;\n max-width: 83.33333%; }\n .col-sm-11 {\n flex: 0 0 91.66667%;\n max-width: 91.66667%; }\n .col-sm-12 {\n flex: 0 0 100%;\n max-width: 100%; }\n .order-sm-first {\n order: -1; }\n .order-sm-last {\n order: 13; }\n .order-sm-0 {\n order: 0; }\n .order-sm-1 {\n order: 1; }\n .order-sm-2 {\n order: 2; }\n .order-sm-3 {\n order: 3; }\n .order-sm-4 {\n order: 4; }\n .order-sm-5 {\n order: 5; }\n .order-sm-6 {\n order: 6; }\n .order-sm-7 {\n order: 7; }\n .order-sm-8 {\n order: 8; }\n .order-sm-9 {\n order: 9; }\n .order-sm-10 {\n order: 10; }\n .order-sm-11 {\n order: 11; }\n .order-sm-12 {\n order: 12; }\n .offset-sm-0 {\n margin-left: 0; }\n .offset-sm-1 {\n margin-left: 8.33333%; }\n .offset-sm-2 {\n margin-left: 16.66667%; }\n .offset-sm-3 {\n margin-left: 25%; }\n .offset-sm-4 {\n margin-left: 33.33333%; }\n .offset-sm-5 {\n margin-left: 41.66667%; }\n .offset-sm-6 {\n margin-left: 50%; }\n .offset-sm-7 {\n margin-left: 58.33333%; }\n .offset-sm-8 {\n margin-left: 66.66667%; }\n .offset-sm-9 {\n margin-left: 75%; }\n .offset-sm-10 {\n margin-left: 83.33333%; }\n .offset-sm-11 {\n margin-left: 91.66667%; } }\n\n@media (min-width: 768px) {\n .col-md {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%; }\n .row-cols-md-1 > * {\n flex: 0 0 100%;\n max-width: 100%; }\n .row-cols-md-2 > * {\n flex: 0 0 50%;\n max-width: 50%; }\n .row-cols-md-3 > * {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .row-cols-md-4 > * {\n flex: 0 0 25%;\n max-width: 25%; }\n .row-cols-md-5 > * {\n flex: 0 0 20%;\n max-width: 20%; }\n .row-cols-md-6 > * {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-md-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%; }\n .col-md-1 {\n flex: 0 0 8.33333%;\n max-width: 8.33333%; }\n .col-md-2 {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-md-3 {\n flex: 0 0 25%;\n max-width: 25%; }\n .col-md-4 {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .col-md-5 {\n flex: 0 0 41.66667%;\n max-width: 41.66667%; }\n .col-md-6 {\n flex: 0 0 50%;\n max-width: 50%; }\n .col-md-7 {\n flex: 0 0 58.33333%;\n max-width: 58.33333%; }\n .col-md-8 {\n flex: 0 0 66.66667%;\n max-width: 66.66667%; }\n .col-md-9 {\n flex: 0 0 75%;\n max-width: 75%; }\n .col-md-10 {\n flex: 0 0 83.33333%;\n max-width: 83.33333%; }\n .col-md-11 {\n flex: 0 0 91.66667%;\n max-width: 91.66667%; }\n .col-md-12 {\n flex: 0 0 100%;\n max-width: 100%; }\n .order-md-first {\n order: -1; }\n .order-md-last {\n order: 13; }\n .order-md-0 {\n order: 0; }\n .order-md-1 {\n order: 1; }\n .order-md-2 {\n order: 2; }\n .order-md-3 {\n order: 3; }\n .order-md-4 {\n order: 4; }\n .order-md-5 {\n order: 5; }\n .order-md-6 {\n order: 6; }\n .order-md-7 {\n order: 7; }\n .order-md-8 {\n order: 8; }\n .order-md-9 {\n order: 9; }\n .order-md-10 {\n order: 10; }\n .order-md-11 {\n order: 11; }\n .order-md-12 {\n order: 12; }\n .offset-md-0 {\n margin-left: 0; }\n .offset-md-1 {\n margin-left: 8.33333%; }\n .offset-md-2 {\n margin-left: 16.66667%; }\n .offset-md-3 {\n margin-left: 25%; }\n .offset-md-4 {\n margin-left: 33.33333%; }\n .offset-md-5 {\n margin-left: 41.66667%; }\n .offset-md-6 {\n margin-left: 50%; }\n .offset-md-7 {\n margin-left: 58.33333%; }\n .offset-md-8 {\n margin-left: 66.66667%; }\n .offset-md-9 {\n margin-left: 75%; }\n .offset-md-10 {\n margin-left: 83.33333%; }\n .offset-md-11 {\n margin-left: 91.66667%; } }\n\n@media (min-width: 992px) {\n .col-lg {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%; }\n .row-cols-lg-1 > * {\n flex: 0 0 100%;\n max-width: 100%; }\n .row-cols-lg-2 > * {\n flex: 0 0 50%;\n max-width: 50%; }\n .row-cols-lg-3 > * {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .row-cols-lg-4 > * {\n flex: 0 0 25%;\n max-width: 25%; }\n .row-cols-lg-5 > * {\n flex: 0 0 20%;\n max-width: 20%; }\n .row-cols-lg-6 > * {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-lg-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%; }\n .col-lg-1 {\n flex: 0 0 8.33333%;\n max-width: 8.33333%; }\n .col-lg-2 {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-lg-3 {\n flex: 0 0 25%;\n max-width: 25%; }\n .col-lg-4 {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .col-lg-5 {\n flex: 0 0 41.66667%;\n max-width: 41.66667%; }\n .col-lg-6 {\n flex: 0 0 50%;\n max-width: 50%; }\n .col-lg-7 {\n flex: 0 0 58.33333%;\n max-width: 58.33333%; }\n .col-lg-8 {\n flex: 0 0 66.66667%;\n max-width: 66.66667%; }\n .col-lg-9 {\n flex: 0 0 75%;\n max-width: 75%; }\n .col-lg-10 {\n flex: 0 0 83.33333%;\n max-width: 83.33333%; }\n .col-lg-11 {\n flex: 0 0 91.66667%;\n max-width: 91.66667%; }\n .col-lg-12 {\n flex: 0 0 100%;\n max-width: 100%; }\n .order-lg-first {\n order: -1; }\n .order-lg-last {\n order: 13; }\n .order-lg-0 {\n order: 0; }\n .order-lg-1 {\n order: 1; }\n .order-lg-2 {\n order: 2; }\n .order-lg-3 {\n order: 3; }\n .order-lg-4 {\n order: 4; }\n .order-lg-5 {\n order: 5; }\n .order-lg-6 {\n order: 6; }\n .order-lg-7 {\n order: 7; }\n .order-lg-8 {\n order: 8; }\n .order-lg-9 {\n order: 9; }\n .order-lg-10 {\n order: 10; }\n .order-lg-11 {\n order: 11; }\n .order-lg-12 {\n order: 12; }\n .offset-lg-0 {\n margin-left: 0; }\n .offset-lg-1 {\n margin-left: 8.33333%; }\n .offset-lg-2 {\n margin-left: 16.66667%; }\n .offset-lg-3 {\n margin-left: 25%; }\n .offset-lg-4 {\n margin-left: 33.33333%; }\n .offset-lg-5 {\n margin-left: 41.66667%; }\n .offset-lg-6 {\n margin-left: 50%; }\n .offset-lg-7 {\n margin-left: 58.33333%; }\n .offset-lg-8 {\n margin-left: 66.66667%; }\n .offset-lg-9 {\n margin-left: 75%; }\n .offset-lg-10 {\n margin-left: 83.33333%; }\n .offset-lg-11 {\n margin-left: 91.66667%; } }\n\n@media (min-width: 1200px) {\n .col-xl {\n flex-basis: 0;\n flex-grow: 1;\n max-width: 100%; }\n .row-cols-xl-1 > * {\n flex: 0 0 100%;\n max-width: 100%; }\n .row-cols-xl-2 > * {\n flex: 0 0 50%;\n max-width: 50%; }\n .row-cols-xl-3 > * {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .row-cols-xl-4 > * {\n flex: 0 0 25%;\n max-width: 25%; }\n .row-cols-xl-5 > * {\n flex: 0 0 20%;\n max-width: 20%; }\n .row-cols-xl-6 > * {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-xl-auto {\n flex: 0 0 auto;\n width: auto;\n max-width: 100%; }\n .col-xl-1 {\n flex: 0 0 8.33333%;\n max-width: 8.33333%; }\n .col-xl-2 {\n flex: 0 0 16.66667%;\n max-width: 16.66667%; }\n .col-xl-3 {\n flex: 0 0 25%;\n max-width: 25%; }\n .col-xl-4 {\n flex: 0 0 33.33333%;\n max-width: 33.33333%; }\n .col-xl-5 {\n flex: 0 0 41.66667%;\n max-width: 41.66667%; }\n .col-xl-6 {\n flex: 0 0 50%;\n max-width: 50%; }\n .col-xl-7 {\n flex: 0 0 58.33333%;\n max-width: 58.33333%; }\n .col-xl-8 {\n flex: 0 0 66.66667%;\n max-width: 66.66667%; }\n .col-xl-9 {\n flex: 0 0 75%;\n max-width: 75%; }\n .col-xl-10 {\n flex: 0 0 83.33333%;\n max-width: 83.33333%; }\n .col-xl-11 {\n flex: 0 0 91.66667%;\n max-width: 91.66667%; }\n .col-xl-12 {\n flex: 0 0 100%;\n max-width: 100%; }\n .order-xl-first {\n order: -1; }\n .order-xl-last {\n order: 13; }\n .order-xl-0 {\n order: 0; }\n .order-xl-1 {\n order: 1; }\n .order-xl-2 {\n order: 2; }\n .order-xl-3 {\n order: 3; }\n .order-xl-4 {\n order: 4; }\n .order-xl-5 {\n order: 5; }\n .order-xl-6 {\n order: 6; }\n .order-xl-7 {\n order: 7; }\n .order-xl-8 {\n order: 8; }\n .order-xl-9 {\n order: 9; }\n .order-xl-10 {\n order: 10; }\n .order-xl-11 {\n order: 11; }\n .order-xl-12 {\n order: 12; }\n .offset-xl-0 {\n margin-left: 0; }\n .offset-xl-1 {\n margin-left: 8.33333%; }\n .offset-xl-2 {\n margin-left: 16.66667%; }\n .offset-xl-3 {\n margin-left: 25%; }\n .offset-xl-4 {\n margin-left: 33.33333%; }\n .offset-xl-5 {\n margin-left: 41.66667%; }\n .offset-xl-6 {\n margin-left: 50%; }\n .offset-xl-7 {\n margin-left: 58.33333%; }\n .offset-xl-8 {\n margin-left: 66.66667%; }\n .offset-xl-9 {\n margin-left: 75%; }\n .offset-xl-10 {\n margin-left: 83.33333%; }\n .offset-xl-11 {\n margin-left: 91.66667%; } }\n\n.table {\n width: 100%;\n margin-bottom: 1rem;\n color: #212529; }\n .table th,\n .table td {\n padding: 0.9375rem;\n vertical-align: top;\n border-top: 1px solid #e8ecf1; }\n .table thead th {\n vertical-align: bottom;\n border-bottom: 2px solid #e8ecf1; }\n .table tbody + tbody {\n border-top: 2px solid #e8ecf1; }\n\n.table-sm th,\n.table-sm td {\n padding: 0.3rem; }\n\n.table-bordered {\n border: 1px solid #e8ecf1; }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #e8ecf1; }\n .table-bordered thead th,\n .table-bordered thead td {\n border-bottom-width: 2px; }\n\n.table-borderless th,\n.table-borderless td,\n.table-borderless thead th,\n.table-borderless tbody + tbody {\n border: 0; }\n\n.table-striped tbody tr:nth-of-type(odd) {\n background-color: #ecf0f4; }\n\n.table-hover tbody tr:hover {\n color: #212529;\n background-color: #ecf0f4; }\n\n.table-primary,\n.table-primary > th,\n.table-primary > td {\n background-color: #bff5f6; }\n\n.table-primary th,\n.table-primary td,\n.table-primary thead th,\n.table-primary tbody + tbody {\n border-color: #88ecef; }\n\n.table-hover .table-primary:hover {\n background-color: #a9f2f3; }\n .table-hover .table-primary:hover > td,\n .table-hover .table-primary:hover > th {\n background-color: #a9f2f3; }\n\n.table-secondary,\n.table-secondary > th,\n.table-secondary > td {\n background-color: #f4f4f4; }\n\n.table-secondary th,\n.table-secondary td,\n.table-secondary thead th,\n.table-secondary tbody + tbody {\n border-color: #ebebeb; }\n\n.table-hover .table-secondary:hover {\n background-color: #e7e7e7; }\n .table-hover .table-secondary:hover > td,\n .table-hover .table-secondary:hover > th {\n background-color: #e7e7e7; }\n\n.table-success,\n.table-success > th,\n.table-success > td {\n background-color: #c7f1c8; }\n\n.table-success th,\n.table-success td,\n.table-success thead th,\n.table-success tbody + tbody {\n border-color: #98e69a; }\n\n.table-hover .table-success:hover {\n background-color: #b3ecb4; }\n .table-hover .table-success:hover > td,\n .table-hover .table-success:hover > th {\n background-color: #b3ecb4; }\n\n.table-info,\n.table-info > th,\n.table-info > td {\n background-color: #dfc6f9; }\n\n.table-info th,\n.table-info td,\n.table-info thead th,\n.table-info tbody + tbody {\n border-color: #c494f4; }\n\n.table-hover .table-info:hover {\n background-color: #d2aff7; }\n .table-hover .table-info:hover > td,\n .table-hover .table-info:hover > th {\n background-color: #d2aff7; }\n\n.table-warning,\n.table-warning > th,\n.table-warning > td {\n background-color: #fff6d8; }\n\n.table-warning th,\n.table-warning td,\n.table-warning thead th,\n.table-warning tbody + tbody {\n border-color: #ffeeb6; }\n\n.table-hover .table-warning:hover {\n background-color: #fff0bf; }\n .table-hover .table-warning:hover > td,\n .table-hover .table-warning:hover > th {\n background-color: #fff0bf; }\n\n.table-danger,\n.table-danger > th,\n.table-danger > td {\n background-color: #ffcdd6; }\n\n.table-danger th,\n.table-danger td,\n.table-danger thead th,\n.table-danger tbody + tbody {\n border-color: #ffa2b2; }\n\n.table-hover .table-danger:hover {\n background-color: #ffb4c1; }\n .table-hover .table-danger:hover > td,\n .table-hover .table-danger:hover > th {\n background-color: #ffb4c1; }\n\n.table-light,\n.table-light > th,\n.table-light > td {\n background-color: #fdfdfe; }\n\n.table-light th,\n.table-light td,\n.table-light thead th,\n.table-light tbody + tbody {\n border-color: #fbfcfc; }\n\n.table-hover .table-light:hover {\n background-color: #ececf6; }\n .table-hover .table-light:hover > td,\n .table-hover .table-light:hover > th {\n background-color: #ececf6; }\n\n.table-dark,\n.table-dark > th,\n.table-dark > td {\n background-color: #c9cdd1; }\n\n.table-dark th,\n.table-dark td,\n.table-dark thead th,\n.table-dark tbody + tbody {\n border-color: #9ba1aa; }\n\n.table-hover .table-dark:hover {\n background-color: #bbc0c5; }\n .table-hover .table-dark:hover > td,\n .table-hover .table-dark:hover > th {\n background-color: #bbc0c5; }\n\n.table-active,\n.table-active > th,\n.table-active > td {\n background-color: rgba(0, 0, 0, 0.075); }\n\n.table-hover .table-active:hover {\n background-color: rgba(0, 0, 0, 0.075); }\n .table-hover .table-active:hover > td,\n .table-hover .table-active:hover > th {\n background-color: rgba(0, 0, 0, 0.075); }\n\n.table .thead-dark th {\n color: #fff;\n background-color: #343a40;\n border-color: #454d55; }\n\n.table .thead-light th {\n color: #495057;\n background-color: #e9ecef;\n border-color: #e8ecf1; }\n\n.table-dark {\n color: #fff;\n background-color: #343a40; }\n .table-dark th,\n .table-dark td,\n .table-dark thead th {\n border-color: #454d55; }\n .table-dark.table-bordered {\n border: 0; }\n .table-dark.table-striped tbody tr:nth-of-type(odd) {\n background-color: rgba(255, 255, 255, 0.05); }\n .table-dark.table-hover tbody tr:hover {\n color: #fff;\n background-color: rgba(255, 255, 255, 0.075); }\n\n@media (max-width: 575.98px) {\n .table-responsive-sm {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch; }\n .table-responsive-sm > .table-bordered {\n border: 0; } }\n\n@media (max-width: 767.98px) {\n .table-responsive-md {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch; }\n .table-responsive-md > .table-bordered {\n border: 0; } }\n\n@media (max-width: 991.98px) {\n .table-responsive-lg {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch; }\n .table-responsive-lg > .table-bordered {\n border: 0; } }\n\n@media (max-width: 1199.98px) {\n .table-responsive-xl {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch; }\n .table-responsive-xl > .table-bordered {\n border: 0; } }\n\n.table-responsive {\n display: block;\n width: 100%;\n overflow-x: auto;\n -webkit-overflow-scrolling: touch; }\n .table-responsive > .table-bordered {\n border: 0; }\n\n.form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead,\n.tt-query,\n.tt-hint {\n display: block;\n width: 100%;\n height: 2.875rem;\n padding: 0.94rem 1.375rem;\n font-size: 0.8125rem;\n font-weight: 400;\n line-height: 1;\n color: #495057;\n background-color: #ffffff;\n background-clip: padding-box;\n border: 1px solid #ced4da;\n border-radius: 2px;\n transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead,\n .tt-query,\n .tt-hint {\n transition: none; } }\n .form-control::-ms-expand, .select2-container--default .select2-selection--single::-ms-expand, .select2-container--default .select2-selection--single .select2-search__field::-ms-expand, .typeahead::-ms-expand,\n .tt-query::-ms-expand,\n .tt-hint::-ms-expand {\n background-color: transparent;\n border: 0; }\n .form-control:-moz-focusring, .select2-container--default .select2-selection--single:-moz-focusring, .select2-container--default .select2-selection--single .select2-search__field:-moz-focusring, .typeahead:-moz-focusring,\n .tt-query:-moz-focusring,\n .tt-hint:-moz-focusring {\n color: transparent;\n text-shadow: 0 0 0 #495057; }\n .form-control:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .typeahead:focus,\n .tt-query:focus,\n .tt-hint:focus {\n color: #495057;\n background-color: #fff;\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .form-control::placeholder, .select2-container--default .select2-selection--single::placeholder, .select2-container--default .select2-selection--single .select2-search__field::placeholder, .typeahead::placeholder,\n .tt-query::placeholder,\n .tt-hint::placeholder {\n color: #c9c8c8;\n opacity: 1; }\n .form-control:disabled, .select2-container--default .select2-selection--single:disabled, .select2-container--default .select2-selection--single .select2-search__field:disabled, .typeahead:disabled,\n .tt-query:disabled,\n .tt-hint:disabled, .form-control[readonly], .select2-container--default .select2-selection--single[readonly], .select2-container--default .select2-selection--single .select2-search__field[readonly], .typeahead[readonly],\n .tt-query[readonly],\n .tt-hint[readonly] {\n background-color: #e9ecef;\n opacity: 1; }\n\ninput[type=\"date\"].form-control, .select2-container--default input.select2-selection--single[type=\"date\"], .select2-container--default .select2-selection--single input.select2-search__field[type=\"date\"], input.typeahead[type=\"date\"],\ninput.tt-query[type=\"date\"],\ninput.tt-hint[type=\"date\"],\ninput[type=\"time\"].form-control,\n.select2-container--default input.select2-selection--single[type=\"time\"],\n.select2-container--default .select2-selection--single input.select2-search__field[type=\"time\"],\ninput.typeahead[type=\"time\"],\ninput.tt-query[type=\"time\"],\ninput.tt-hint[type=\"time\"],\ninput[type=\"datetime-local\"].form-control,\n.select2-container--default input.select2-selection--single[type=\"datetime-local\"],\n.select2-container--default .select2-selection--single input.select2-search__field[type=\"datetime-local\"],\ninput.typeahead[type=\"datetime-local\"],\ninput.tt-query[type=\"datetime-local\"],\ninput.tt-hint[type=\"datetime-local\"],\ninput[type=\"month\"].form-control,\n.select2-container--default input.select2-selection--single[type=\"month\"],\n.select2-container--default .select2-selection--single input.select2-search__field[type=\"month\"],\ninput.typeahead[type=\"month\"],\ninput.tt-query[type=\"month\"],\ninput.tt-hint[type=\"month\"] {\n appearance: none; }\n\nselect.form-control:focus::-ms-value, .select2-container--default select.select2-selection--single:focus::-ms-value, .select2-container--default .select2-selection--single select.select2-search__field:focus::-ms-value, select.typeahead:focus::-ms-value,\nselect.tt-query:focus::-ms-value,\nselect.tt-hint:focus::-ms-value {\n color: #495057;\n background-color: #ffffff; }\n\n.form-control-file,\n.form-control-range {\n display: block;\n width: 100%; }\n\n.col-form-label {\n padding-top: calc(0.94rem + 1px);\n padding-bottom: calc(0.94rem + 1px);\n margin-bottom: 0;\n font-size: inherit;\n line-height: 1; }\n\n.col-form-label-lg {\n padding-top: calc(0.94rem + 1px);\n padding-bottom: calc(0.94rem + 1px);\n font-size: 1.25rem;\n line-height: 1.5; }\n\n.col-form-label-sm {\n padding-top: calc(0.5rem + 1px);\n padding-bottom: calc(0.5rem + 1px);\n font-size: 0.875rem;\n line-height: 1.5; }\n\n.form-control-plaintext {\n display: block;\n width: 100%;\n padding: 0.94rem 0;\n margin-bottom: 0;\n font-size: 0.8125rem;\n line-height: 1;\n color: #212529;\n background-color: transparent;\n border: solid transparent;\n border-width: 1px 0; }\n .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {\n padding-right: 0;\n padding-left: 0; }\n\n.form-control-sm {\n height: 2.575rem;\n padding: 0.5rem 0.81rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem; }\n\n.form-control-lg {\n height: 3.175rem;\n padding: 0.94rem 1.94rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem; }\n\nselect.form-control[size], .select2-container--default select.select2-selection--single[size], .select2-container--default .select2-selection--single select.select2-search__field[size], select.typeahead[size],\nselect.tt-query[size],\nselect.tt-hint[size], select.form-control[multiple], .select2-container--default select.select2-selection--single[multiple], .select2-container--default .select2-selection--single select.select2-search__field[multiple], select.typeahead[multiple],\nselect.tt-query[multiple],\nselect.tt-hint[multiple] {\n height: auto; }\n\ntextarea.form-control, .select2-container--default textarea.select2-selection--single, .select2-container--default .select2-selection--single textarea.select2-search__field, textarea.typeahead,\ntextarea.tt-query,\ntextarea.tt-hint {\n height: auto; }\n\n.form-group {\n margin-bottom: 1rem; }\n\n.form-text {\n display: block;\n margin-top: 0.25rem; }\n\n.form-row {\n display: flex;\n flex-wrap: wrap;\n margin-right: -5px;\n margin-left: -5px; }\n .form-row > .col,\n .form-row > [class*=\"col-\"] {\n padding-right: 5px;\n padding-left: 5px; }\n\n.form-check {\n position: relative;\n display: block;\n padding-left: 1.25rem; }\n\n.form-check-input {\n position: absolute;\n margin-top: 0.3rem;\n margin-left: -1.25rem; }\n .form-check-input[disabled] ~ .form-check-label,\n .form-check-input:disabled ~ .form-check-label {\n color: #9c9fa6; }\n\n.form-check-label {\n margin-bottom: 0; }\n\n.form-check-inline {\n display: inline-flex;\n align-items: center;\n padding-left: 0;\n margin-right: 0.75rem; }\n .form-check-inline .form-check-input {\n position: static;\n margin-top: 0;\n margin-right: 0.3125rem;\n margin-left: 0; }\n\n.valid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #28a745; }\n\n.valid-tooltip {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: .1rem;\n font-size: 0.875rem;\n line-height: 1.5;\n color: #fff;\n background-color: rgba(40, 167, 69, 0.9);\n border-radius: 0.25rem; }\n\n.was-validated :valid ~ .valid-feedback,\n.was-validated :valid ~ .valid-tooltip,\n.is-valid ~ .valid-feedback,\n.is-valid ~ .valid-tooltip {\n display: block; }\n\n.was-validated .form-control:valid, .was-validated .select2-container--default .select2-selection--single:valid, .select2-container--default .was-validated .select2-selection--single:valid, .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid, .select2-container--default .select2-selection--single .was-validated .select2-search__field:valid, .was-validated .typeahead:valid,\n.was-validated .tt-query:valid,\n.was-validated .tt-hint:valid, .form-control.is-valid, .select2-container--default .is-valid.select2-selection--single, .select2-container--default .select2-selection--single .is-valid.select2-search__field, .is-valid.typeahead,\n.is-valid.tt-query,\n.is-valid.tt-hint {\n border-color: #28a745;\n padding-right: calc(1.5em + 0.75rem);\n 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='%2328a745' 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\");\n background-repeat: no-repeat;\n background-position: right calc(0.375em + 0.1875rem) center;\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }\n .was-validated .form-control:valid:focus, .was-validated .select2-container--default .select2-selection--single:valid:focus, .select2-container--default .was-validated .select2-selection--single:valid:focus, .was-validated .select2-container--default .select2-selection--single .select2-search__field:valid:focus, .select2-container--default .select2-selection--single .was-validated .select2-search__field:valid:focus, .was-validated .typeahead:valid:focus,\n .was-validated .tt-query:valid:focus,\n .was-validated .tt-hint:valid:focus, .form-control.is-valid:focus, .select2-container--default .is-valid.select2-selection--single:focus, .select2-container--default .select2-selection--single .is-valid.select2-search__field:focus, .is-valid.typeahead:focus,\n .is-valid.tt-query:focus,\n .is-valid.tt-hint:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }\n\n.was-validated textarea.form-control:valid, .was-validated .select2-container--default textarea.select2-selection--single:valid, .select2-container--default .was-validated textarea.select2-selection--single:valid, .was-validated .select2-container--default .select2-selection--single textarea.select2-search__field:valid, .select2-container--default .select2-selection--single .was-validated textarea.select2-search__field:valid, .was-validated textarea.typeahead:valid,\n.was-validated textarea.tt-query:valid,\n.was-validated textarea.tt-hint:valid, textarea.form-control.is-valid, .select2-container--default textarea.is-valid.select2-selection--single, .select2-container--default .select2-selection--single textarea.is-valid.select2-search__field, textarea.is-valid.typeahead,\ntextarea.is-valid.tt-query,\ntextarea.is-valid.tt-hint {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }\n\n.was-validated .custom-select:valid, .custom-select.is-valid {\n border-color: #28a745;\n padding-right: calc(0.75em + 2.3125rem);\n 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='%2328a745' 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.75em + 0.375rem) calc(0.75em + 0.375rem); }\n .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }\n\n.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {\n color: #28a745; }\n\n.was-validated .form-check-input:valid ~ .valid-feedback,\n.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,\n.form-check-input.is-valid ~ .valid-tooltip {\n display: block; }\n\n.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {\n color: #28a745; }\n .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {\n border-color: #28a745; }\n\n.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {\n border-color: #34ce57;\n background-color: #34ce57; }\n\n.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }\n\n.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 {\n border-color: #28a745; }\n\n.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {\n border-color: #28a745; }\n\n.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {\n border-color: #28a745;\n box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }\n\n.invalid-feedback {\n display: none;\n width: 100%;\n margin-top: 0.25rem;\n font-size: 80%;\n color: #dc3545; }\n\n.invalid-tooltip {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 5;\n display: none;\n max-width: 100%;\n padding: 0.25rem 0.5rem;\n margin-top: .1rem;\n font-size: 0.875rem;\n line-height: 1.5;\n color: #fff;\n background-color: rgba(220, 53, 69, 0.9);\n border-radius: 0.25rem; }\n\n.was-validated :invalid ~ .invalid-feedback,\n.was-validated :invalid ~ .invalid-tooltip,\n.is-invalid ~ .invalid-feedback,\n.is-invalid ~ .invalid-tooltip {\n display: block; }\n\n.was-validated .form-control:invalid, .was-validated .select2-container--default .select2-selection--single:invalid, .select2-container--default .was-validated .select2-selection--single:invalid, .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid, .select2-container--default .select2-selection--single .was-validated .select2-search__field:invalid, .was-validated .typeahead:invalid,\n.was-validated .tt-query:invalid,\n.was-validated .tt-hint:invalid, .form-control.is-invalid, .select2-container--default .is-invalid.select2-selection--single, .select2-container--default .select2-selection--single .is-invalid.select2-search__field, .is-invalid.typeahead,\n.is-invalid.tt-query,\n.is-invalid.tt-hint {\n border-color: #dc3545;\n padding-right: calc(1.5em + 0.75rem);\n background-image: url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e\");\n background-repeat: no-repeat;\n background-position: right calc(0.375em + 0.1875rem) center;\n background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }\n .was-validated .form-control:invalid:focus, .was-validated .select2-container--default .select2-selection--single:invalid:focus, .select2-container--default .was-validated .select2-selection--single:invalid:focus, .was-validated .select2-container--default .select2-selection--single .select2-search__field:invalid:focus, .select2-container--default .select2-selection--single .was-validated .select2-search__field:invalid:focus, .was-validated .typeahead:invalid:focus,\n .was-validated .tt-query:invalid:focus,\n .was-validated .tt-hint:invalid:focus, .form-control.is-invalid:focus, .select2-container--default .is-invalid.select2-selection--single:focus, .select2-container--default .select2-selection--single .is-invalid.select2-search__field:focus, .is-invalid.typeahead:focus,\n .is-invalid.tt-query:focus,\n .is-invalid.tt-hint:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }\n\n.was-validated textarea.form-control:invalid, .was-validated .select2-container--default textarea.select2-selection--single:invalid, .select2-container--default .was-validated textarea.select2-selection--single:invalid, .was-validated .select2-container--default .select2-selection--single textarea.select2-search__field:invalid, .select2-container--default .select2-selection--single .was-validated textarea.select2-search__field:invalid, .was-validated textarea.typeahead:invalid,\n.was-validated textarea.tt-query:invalid,\n.was-validated textarea.tt-hint:invalid, textarea.form-control.is-invalid, .select2-container--default textarea.is-invalid.select2-selection--single, .select2-container--default .select2-selection--single textarea.is-invalid.select2-search__field, textarea.is-invalid.typeahead,\ntextarea.is-invalid.tt-query,\ntextarea.is-invalid.tt-hint {\n padding-right: calc(1.5em + 0.75rem);\n background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }\n\n.was-validated .custom-select:invalid, .custom-select.is-invalid {\n border-color: #dc3545;\n padding-right: calc(0.75em + 2.3125rem);\n 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='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e\") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }\n .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }\n\n.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {\n color: #dc3545; }\n\n.was-validated .form-check-input:invalid ~ .invalid-feedback,\n.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,\n.form-check-input.is-invalid ~ .invalid-tooltip {\n display: block; }\n\n.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {\n color: #dc3545; }\n .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {\n border-color: #dc3545; }\n\n.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {\n border-color: #e4606d;\n background-color: #e4606d; }\n\n.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }\n\n.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 {\n border-color: #dc3545; }\n\n.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {\n border-color: #dc3545; }\n\n.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {\n border-color: #dc3545;\n box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }\n\n.form-inline {\n display: flex;\n flex-flow: row wrap;\n align-items: center; }\n .form-inline .form-check {\n width: 100%; }\n @media (min-width: 576px) {\n .form-inline label {\n display: flex;\n align-items: center;\n justify-content: center;\n margin-bottom: 0; }\n .form-inline .form-group {\n display: flex;\n flex: 0 0 auto;\n flex-flow: row wrap;\n align-items: center;\n margin-bottom: 0; }\n .form-inline .form-control, .form-inline .select2-container--default .select2-selection--single, .select2-container--default .form-inline .select2-selection--single, .form-inline .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .form-inline .select2-search__field, .form-inline .typeahead,\n .form-inline .tt-query,\n .form-inline .tt-hint {\n display: inline-block;\n width: auto;\n vertical-align: middle; }\n .form-inline .form-control-plaintext {\n display: inline-block; }\n .form-inline .input-group,\n .form-inline .custom-select {\n width: auto; }\n .form-inline .form-check {\n display: flex;\n align-items: center;\n justify-content: center;\n width: auto;\n padding-left: 0; }\n .form-inline .form-check-input {\n position: relative;\n flex-shrink: 0;\n margin-top: 0;\n margin-right: 0.25rem;\n margin-left: 0; }\n .form-inline .custom-control {\n align-items: center;\n justify-content: center; }\n .form-inline .custom-control-label {\n margin-bottom: 0; } }\n\n.btn {\n display: inline-block;\n font-weight: 400;\n color: #343a40;\n text-align: center;\n vertical-align: middle;\n user-select: none;\n background-color: transparent;\n border: 1px solid transparent;\n padding: 0.875rem 2.5rem;\n font-size: 0.875rem;\n line-height: 1;\n border-radius: 0.1875rem;\n 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; }\n @media (prefers-reduced-motion: reduce) {\n .btn {\n transition: none; } }\n .btn:hover {\n color: #343a40;\n text-decoration: none; }\n .btn:focus, .btn.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .btn.disabled, .btn:disabled {\n opacity: 0.65; }\n .btn:not(:disabled):not(.disabled) {\n cursor: pointer; }\n\na.btn.disabled,\nfieldset:disabled a.btn {\n pointer-events: none; }\n\n.btn-primary {\n color: #212529;\n background-color: #1bdbe0;\n border-color: #1bdbe0; }\n .btn-primary:hover {\n color: #fff;\n background-color: #17babe;\n border-color: #16afb2; }\n .btn-primary:focus, .btn-primary.focus {\n color: #fff;\n background-color: #17babe;\n border-color: #16afb2;\n box-shadow: 0 0 0 0.2rem rgba(28, 192, 197, 0.5); }\n .btn-primary.disabled, .btn-primary:disabled {\n color: #212529;\n background-color: #1bdbe0;\n border-color: #1bdbe0; }\n .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,\n .show > .btn-primary.dropdown-toggle {\n color: #fff;\n background-color: #16afb2;\n border-color: #14a3a7; }\n .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,\n .show > .btn-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(28, 192, 197, 0.5); }\n\n.btn-secondary {\n color: #212529;\n background-color: #d8d8d8;\n border-color: #d8d8d8; }\n .btn-secondary:hover {\n color: #212529;\n background-color: #c5c5c5;\n border-color: #bfbfbf; }\n .btn-secondary:focus, .btn-secondary.focus {\n color: #212529;\n background-color: #c5c5c5;\n border-color: #bfbfbf;\n box-shadow: 0 0 0 0.2rem rgba(189, 189, 190, 0.5); }\n .btn-secondary.disabled, .btn-secondary:disabled {\n color: #212529;\n background-color: #d8d8d8;\n border-color: #d8d8d8; }\n .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,\n .show > .btn-secondary.dropdown-toggle {\n color: #212529;\n background-color: #bfbfbf;\n border-color: #b8b8b8; }\n .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,\n .show > .btn-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(189, 189, 190, 0.5); }\n\n.btn-success {\n color: #fff;\n background-color: #38ce3c;\n border-color: #38ce3c; }\n .btn-success:hover {\n color: #fff;\n background-color: #2cb430;\n border-color: #2aa92d; }\n .btn-success:focus, .btn-success.focus {\n color: #fff;\n background-color: #2cb430;\n border-color: #2aa92d;\n box-shadow: 0 0 0 0.2rem rgba(86, 213, 89, 0.5); }\n .btn-success.disabled, .btn-success:disabled {\n color: #fff;\n background-color: #38ce3c;\n border-color: #38ce3c; }\n .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,\n .show > .btn-success.dropdown-toggle {\n color: #fff;\n background-color: #2aa92d;\n border-color: #279f2a; }\n .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,\n .show > .btn-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(86, 213, 89, 0.5); }\n\n.btn-info {\n color: #fff;\n background-color: #8e32e9;\n border-color: #8e32e9; }\n .btn-info:hover {\n color: #fff;\n background-color: #7b18dd;\n border-color: #7516d2; }\n .btn-info:focus, .btn-info.focus {\n color: #fff;\n background-color: #7b18dd;\n border-color: #7516d2;\n box-shadow: 0 0 0 0.2rem rgba(159, 81, 236, 0.5); }\n .btn-info.disabled, .btn-info:disabled {\n color: #fff;\n background-color: #8e32e9;\n border-color: #8e32e9; }\n .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,\n .show > .btn-info.dropdown-toggle {\n color: #fff;\n background-color: #7516d2;\n border-color: #6e15c6; }\n .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,\n .show > .btn-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(159, 81, 236, 0.5); }\n\n.btn-warning {\n color: #212529;\n background-color: #ffde73;\n border-color: #ffde73; }\n .btn-warning:hover {\n color: #212529;\n background-color: #ffd54d;\n border-color: #ffd240; }\n .btn-warning:focus, .btn-warning.focus {\n color: #212529;\n background-color: #ffd54d;\n border-color: #ffd240;\n box-shadow: 0 0 0 0.2rem rgba(222, 194, 104, 0.5); }\n .btn-warning.disabled, .btn-warning:disabled {\n color: #212529;\n background-color: #ffde73;\n border-color: #ffde73; }\n .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,\n .show > .btn-warning.dropdown-toggle {\n color: #212529;\n background-color: #ffd240;\n border-color: #ffcf33; }\n .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,\n .show > .btn-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(222, 194, 104, 0.5); }\n\n.btn-danger {\n color: #fff;\n background-color: #ff4d6b;\n border-color: #ff4d6b; }\n .btn-danger:hover {\n color: #fff;\n background-color: #ff274b;\n border-color: #ff1a41; }\n .btn-danger:focus, .btn-danger.focus {\n color: #fff;\n background-color: #ff274b;\n border-color: #ff1a41;\n box-shadow: 0 0 0 0.2rem rgba(255, 104, 129, 0.5); }\n .btn-danger.disabled, .btn-danger:disabled {\n color: #fff;\n background-color: #ff4d6b;\n border-color: #ff4d6b; }\n .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,\n .show > .btn-danger.dropdown-toggle {\n color: #fff;\n background-color: #ff1a41;\n border-color: #ff0d36; }\n .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,\n .show > .btn-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 104, 129, 0.5); }\n\n.btn-light {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa; }\n .btn-light:hover {\n color: #212529;\n background-color: #e2e6ea;\n border-color: #dae0e5; }\n .btn-light:focus, .btn-light.focus {\n color: #212529;\n background-color: #e2e6ea;\n border-color: #dae0e5;\n box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }\n .btn-light.disabled, .btn-light:disabled {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa; }\n .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,\n .show > .btn-light.dropdown-toggle {\n color: #212529;\n background-color: #dae0e5;\n border-color: #d3d9df; }\n .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,\n .show > .btn-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }\n\n.btn-dark {\n color: #fff;\n background-color: #3e4b5b;\n border-color: #3e4b5b; }\n .btn-dark:hover {\n color: #fff;\n background-color: #2f3844;\n border-color: #29323d; }\n .btn-dark:focus, .btn-dark.focus {\n color: #fff;\n background-color: #2f3844;\n border-color: #29323d;\n box-shadow: 0 0 0 0.2rem rgba(91, 102, 116, 0.5); }\n .btn-dark.disabled, .btn-dark:disabled {\n color: #fff;\n background-color: #3e4b5b;\n border-color: #3e4b5b; }\n .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,\n .show > .btn-dark.dropdown-toggle {\n color: #fff;\n background-color: #29323d;\n border-color: #242c35; }\n .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,\n .show > .btn-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(91, 102, 116, 0.5); }\n\n.btn-outline-primary {\n color: #1bdbe0;\n border-color: #1bdbe0; }\n .btn-outline-primary:hover {\n color: #212529;\n background-color: #1bdbe0;\n border-color: #1bdbe0; }\n .btn-outline-primary:focus, .btn-outline-primary.focus {\n box-shadow: 0 0 0 0.2rem rgba(27, 219, 224, 0.5); }\n .btn-outline-primary.disabled, .btn-outline-primary:disabled {\n color: #1bdbe0;\n background-color: transparent; }\n .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,\n .show > .btn-outline-primary.dropdown-toggle {\n color: #212529;\n background-color: #1bdbe0;\n border-color: #1bdbe0; }\n .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-primary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(27, 219, 224, 0.5); }\n\n.btn-outline-secondary {\n color: #d8d8d8;\n border-color: #d8d8d8; }\n .btn-outline-secondary:hover {\n color: #212529;\n background-color: #d8d8d8;\n border-color: #d8d8d8; }\n .btn-outline-secondary:focus, .btn-outline-secondary.focus {\n box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.5); }\n .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {\n color: #d8d8d8;\n background-color: transparent; }\n .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,\n .show > .btn-outline-secondary.dropdown-toggle {\n color: #212529;\n background-color: #d8d8d8;\n border-color: #d8d8d8; }\n .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-secondary.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.5); }\n\n.btn-outline-success {\n color: #38ce3c;\n border-color: #38ce3c; }\n .btn-outline-success:hover {\n color: #fff;\n background-color: #38ce3c;\n border-color: #38ce3c; }\n .btn-outline-success:focus, .btn-outline-success.focus {\n box-shadow: 0 0 0 0.2rem rgba(56, 206, 60, 0.5); }\n .btn-outline-success.disabled, .btn-outline-success:disabled {\n color: #38ce3c;\n background-color: transparent; }\n .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,\n .show > .btn-outline-success.dropdown-toggle {\n color: #fff;\n background-color: #38ce3c;\n border-color: #38ce3c; }\n .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-success.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(56, 206, 60, 0.5); }\n\n.btn-outline-info {\n color: #8e32e9;\n border-color: #8e32e9; }\n .btn-outline-info:hover {\n color: #fff;\n background-color: #8e32e9;\n border-color: #8e32e9; }\n .btn-outline-info:focus, .btn-outline-info.focus {\n box-shadow: 0 0 0 0.2rem rgba(142, 50, 233, 0.5); }\n .btn-outline-info.disabled, .btn-outline-info:disabled {\n color: #8e32e9;\n background-color: transparent; }\n .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,\n .show > .btn-outline-info.dropdown-toggle {\n color: #fff;\n background-color: #8e32e9;\n border-color: #8e32e9; }\n .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-info.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(142, 50, 233, 0.5); }\n\n.btn-outline-warning {\n color: #ffde73;\n border-color: #ffde73; }\n .btn-outline-warning:hover {\n color: #212529;\n background-color: #ffde73;\n border-color: #ffde73; }\n .btn-outline-warning:focus, .btn-outline-warning.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 222, 115, 0.5); }\n .btn-outline-warning.disabled, .btn-outline-warning:disabled {\n color: #ffde73;\n background-color: transparent; }\n .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,\n .show > .btn-outline-warning.dropdown-toggle {\n color: #212529;\n background-color: #ffde73;\n border-color: #ffde73; }\n .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-warning.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 222, 115, 0.5); }\n\n.btn-outline-danger {\n color: #ff4d6b;\n border-color: #ff4d6b; }\n .btn-outline-danger:hover {\n color: #fff;\n background-color: #ff4d6b;\n border-color: #ff4d6b; }\n .btn-outline-danger:focus, .btn-outline-danger.focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 77, 107, 0.5); }\n .btn-outline-danger.disabled, .btn-outline-danger:disabled {\n color: #ff4d6b;\n background-color: transparent; }\n .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,\n .show > .btn-outline-danger.dropdown-toggle {\n color: #fff;\n background-color: #ff4d6b;\n border-color: #ff4d6b; }\n .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-danger.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(255, 77, 107, 0.5); }\n\n.btn-outline-light {\n color: #f8f9fa;\n border-color: #f8f9fa; }\n .btn-outline-light:hover {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa; }\n .btn-outline-light:focus, .btn-outline-light.focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }\n .btn-outline-light.disabled, .btn-outline-light:disabled {\n color: #f8f9fa;\n background-color: transparent; }\n .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,\n .show > .btn-outline-light.dropdown-toggle {\n color: #212529;\n background-color: #f8f9fa;\n border-color: #f8f9fa; }\n .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-light.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }\n\n.btn-outline-dark {\n color: #3e4b5b;\n border-color: #3e4b5b; }\n .btn-outline-dark:hover {\n color: #fff;\n background-color: #3e4b5b;\n border-color: #3e4b5b; }\n .btn-outline-dark:focus, .btn-outline-dark.focus {\n box-shadow: 0 0 0 0.2rem rgba(62, 75, 91, 0.5); }\n .btn-outline-dark.disabled, .btn-outline-dark:disabled {\n color: #3e4b5b;\n background-color: transparent; }\n .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,\n .show > .btn-outline-dark.dropdown-toggle {\n color: #fff;\n background-color: #3e4b5b;\n border-color: #3e4b5b; }\n .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,\n .show > .btn-outline-dark.dropdown-toggle:focus {\n box-shadow: 0 0 0 0.2rem rgba(62, 75, 91, 0.5); }\n\n.btn-link {\n font-weight: 400;\n color: #007bff;\n text-decoration: none; }\n .btn-link:hover {\n color: #0056b3;\n text-decoration: underline; }\n .btn-link:focus, .btn-link.focus {\n text-decoration: underline; }\n .btn-link:disabled, .btn-link.disabled {\n color: #6c757d;\n pointer-events: none; }\n\n.btn-lg, .btn-group-lg > .btn {\n padding: 1rem 3rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.1875rem; }\n\n.btn-sm, .btn-group-sm > .btn {\n padding: 0.5rem 0.81rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.1875rem; }\n\n.btn-block {\n display: block;\n width: 100%; }\n .btn-block + .btn-block {\n margin-top: 0.5rem; }\n\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%; }\n\n.fade {\n transition: opacity 0.15s linear; }\n @media (prefers-reduced-motion: reduce) {\n .fade {\n transition: none; } }\n .fade:not(.show) {\n opacity: 0; }\n\n.collapse:not(.show) {\n display: none; }\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n transition: height 0.35s ease; }\n @media (prefers-reduced-motion: reduce) {\n .collapsing {\n transition: none; } }\n\n.dropup,\n.dropright,\n.dropdown,\n.dropleft {\n position: relative; }\n\n.dropdown-toggle {\n white-space: nowrap; }\n .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid;\n border-right: 0.3em solid transparent;\n border-bottom: 0;\n border-left: 0.3em solid transparent; }\n .dropdown-toggle:empty::after {\n margin-left: 0; }\n\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 10rem;\n padding: 0.5rem 0;\n margin: 0.125rem 0 0;\n font-size: 1rem;\n color: #212529;\n text-align: left;\n list-style: none;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #e8ecf1;\n border-radius: 0.25rem; }\n\n.dropdown-menu-left {\n right: auto;\n left: 0; }\n\n.dropdown-menu-right {\n right: 0;\n left: auto; }\n\n@media (min-width: 576px) {\n .dropdown-menu-sm-left {\n right: auto;\n left: 0; }\n .dropdown-menu-sm-right {\n right: 0;\n left: auto; } }\n\n@media (min-width: 768px) {\n .dropdown-menu-md-left {\n right: auto;\n left: 0; }\n .dropdown-menu-md-right {\n right: 0;\n left: auto; } }\n\n@media (min-width: 992px) {\n .dropdown-menu-lg-left {\n right: auto;\n left: 0; }\n .dropdown-menu-lg-right {\n right: 0;\n left: auto; } }\n\n@media (min-width: 1200px) {\n .dropdown-menu-xl-left {\n right: auto;\n left: 0; }\n .dropdown-menu-xl-right {\n right: 0;\n left: auto; } }\n\n.dropup .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-top: 0;\n margin-bottom: 0.125rem; }\n\n.dropup .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0;\n border-right: 0.3em solid transparent;\n border-bottom: 0.3em solid;\n border-left: 0.3em solid transparent; }\n\n.dropup .dropdown-toggle:empty::after {\n margin-left: 0; }\n\n.dropright .dropdown-menu {\n top: 0;\n right: auto;\n left: 100%;\n margin-top: 0;\n margin-left: 0.125rem; }\n\n.dropright .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0;\n border-bottom: 0.3em solid transparent;\n border-left: 0.3em solid; }\n\n.dropright .dropdown-toggle:empty::after {\n margin-left: 0; }\n\n.dropright .dropdown-toggle::after {\n vertical-align: 0; }\n\n.dropleft .dropdown-menu {\n top: 0;\n right: 100%;\n left: auto;\n margin-top: 0;\n margin-right: 0.125rem; }\n\n.dropleft .dropdown-toggle::after {\n display: inline-block;\n margin-left: 0.255em;\n vertical-align: 0.255em;\n content: \"\"; }\n\n.dropleft .dropdown-toggle::after {\n display: none; }\n\n.dropleft .dropdown-toggle::before {\n display: inline-block;\n margin-right: 0.255em;\n vertical-align: 0.255em;\n content: \"\";\n border-top: 0.3em solid transparent;\n border-right: 0.3em solid;\n border-bottom: 0.3em solid transparent; }\n\n.dropleft .dropdown-toggle:empty::after {\n margin-left: 0; }\n\n.dropleft .dropdown-toggle::before {\n vertical-align: 0; }\n\n.dropdown-menu[x-placement^=\"top\"], .dropdown-menu[x-placement^=\"right\"], .dropdown-menu[x-placement^=\"bottom\"], .dropdown-menu[x-placement^=\"left\"] {\n right: auto;\n bottom: auto; }\n\n.dropdown-divider {\n height: 0;\n margin: 0.5rem 0;\n overflow: hidden;\n border-top: 1px solid #e8ecf1; }\n\n.dropdown-item {\n display: block;\n width: 100%;\n padding: 0.25rem 1.5rem;\n clear: both;\n font-weight: 400;\n color: #343a40;\n text-align: inherit;\n white-space: nowrap;\n background-color: transparent;\n border: 0; }\n .dropdown-item:hover, .dropdown-item:focus {\n color: #16181b;\n text-decoration: none;\n background-color: #f8f9fa; }\n .dropdown-item.active, .dropdown-item:active {\n color: #fff;\n text-decoration: none;\n background-color: #007bff; }\n .dropdown-item.disabled, .dropdown-item:disabled {\n color: #6c757d;\n pointer-events: none;\n background-color: transparent; }\n\n.dropdown-menu.show {\n display: block; }\n\n.dropdown-header {\n display: block;\n padding: 0.5rem 1.5rem;\n margin-bottom: 0;\n font-size: 0.875rem;\n color: #343a40;\n white-space: nowrap; }\n\n.dropdown-item-text {\n display: block;\n padding: 0.25rem 1.5rem;\n color: #343a40; }\n\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-flex;\n vertical-align: middle; }\n .btn-group > .btn,\n .btn-group-vertical > .btn {\n position: relative;\n flex: 1 1 auto; }\n .btn-group > .btn:hover,\n .btn-group-vertical > .btn:hover {\n z-index: 1; }\n .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,\n .btn-group-vertical > .btn:focus,\n .btn-group-vertical > .btn:active,\n .btn-group-vertical > .btn.active {\n z-index: 1; }\n\n.btn-toolbar {\n display: flex;\n flex-wrap: wrap;\n justify-content: flex-start; }\n .btn-toolbar .input-group {\n width: auto; }\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) {\n margin-left: -1px; }\n\n.btn-group > .btn:not(:last-child):not(.dropdown-toggle),\n.btn-group > .btn-group:not(:last-child) > .btn {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n\n.btn-group > .btn:not(:first-child),\n.btn-group > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n\n.dropdown-toggle-split {\n padding-right: 1.875rem;\n padding-left: 1.875rem; }\n .dropdown-toggle-split::after,\n .dropup .dropdown-toggle-split::after,\n .dropright .dropdown-toggle-split::after {\n margin-left: 0; }\n .dropleft .dropdown-toggle-split::before {\n margin-right: 0; }\n\n.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {\n padding-right: 0.6075rem;\n padding-left: 0.6075rem; }\n\n.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {\n padding-right: 2.25rem;\n padding-left: 2.25rem; }\n\n.btn-group-vertical {\n flex-direction: column;\n align-items: flex-start;\n justify-content: center; }\n .btn-group-vertical > .btn,\n .btn-group-vertical > .btn-group {\n width: 100%; }\n .btn-group-vertical > .btn:not(:first-child),\n .btn-group-vertical > .btn-group:not(:first-child) {\n margin-top: -1px; }\n .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),\n .btn-group-vertical > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0; }\n .btn-group-vertical > .btn:not(:first-child),\n .btn-group-vertical > .btn-group:not(:first-child) > .btn {\n border-top-left-radius: 0;\n border-top-right-radius: 0; }\n\n.btn-group-toggle > .btn,\n.btn-group-toggle > .btn-group > .btn {\n margin-bottom: 0; }\n .btn-group-toggle > .btn input[type=\"radio\"],\n .btn-group-toggle > .btn input[type=\"checkbox\"],\n .btn-group-toggle > .btn-group > .btn input[type=\"radio\"],\n .btn-group-toggle > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none; }\n\n.input-group {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: stretch;\n width: 100%; }\n .input-group > .form-control, .select2-container--default .input-group > .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .select2-search__field, .input-group > .typeahead,\n .input-group > .tt-query,\n .input-group > .tt-hint,\n .input-group > .form-control-plaintext,\n .input-group > .custom-select,\n .input-group > .custom-file {\n position: relative;\n flex: 1 1 auto;\n width: 1%;\n min-width: 0;\n margin-bottom: 0; }\n .input-group > .form-control + .form-control, .select2-container--default .input-group > .select2-selection--single + .form-control, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .form-control, .input-group > .typeahead + .form-control, .input-group > .tt-query + .form-control, .input-group > .tt-hint + .form-control, .select2-container--default .input-group > .form-control + .select2-selection--single, .select2-container--default .input-group > .select2-selection--single + .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .select2-selection--single, .select2-container--default .input-group > .typeahead + .select2-selection--single, .select2-container--default .input-group > .tt-query + .select2-selection--single, .select2-container--default .input-group > .tt-hint + .select2-selection--single, .select2-container--default .select2-selection--single .input-group > .form-control + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .select2-selection--single + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .typeahead + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .tt-query + .select2-search__field, .select2-container--default .select2-selection--single .input-group > .tt-hint + .select2-search__field, .input-group > .form-control + .typeahead, .select2-container--default .input-group > .select2-selection--single + .typeahead, .select2-container--default .select2-selection--single .input-group > .select2-search__field + .typeahead, .input-group > .typeahead + .typeahead, .input-group > .tt-query + .typeahead, .input-group > .tt-hint + .typeahead,\n .input-group > .form-control + .tt-query,\n .select2-container--default .input-group > .select2-selection--single + .tt-query,\n .select2-container--default .select2-selection--single .input-group > .select2-search__field + .tt-query,\n .input-group > .typeahead + .tt-query,\n .input-group > .tt-query + .tt-query,\n .input-group > .tt-hint + .tt-query,\n .input-group > .form-control + .tt-hint,\n .select2-container--default .input-group > .select2-selection--single + .tt-hint,\n .select2-container--default .select2-selection--single .input-group > .select2-search__field + .tt-hint,\n .input-group > .typeahead + .tt-hint,\n .input-group > .tt-query + .tt-hint,\n .input-group > .tt-hint + .tt-hint,\n .input-group > .form-control + .custom-select,\n .select2-container--default .input-group > .select2-selection--single + .custom-select,\n .select2-container--default .select2-selection--single .input-group > .select2-search__field + .custom-select,\n .input-group > .typeahead + .custom-select,\n .input-group > .tt-query + .custom-select,\n .input-group > .tt-hint + .custom-select,\n .input-group > .form-control + .custom-file,\n .select2-container--default .input-group > .select2-selection--single + .custom-file,\n .select2-container--default .select2-selection--single .input-group > .select2-search__field + .custom-file,\n .input-group > .typeahead + .custom-file,\n .input-group > .tt-query + .custom-file,\n .input-group > .tt-hint + .custom-file,\n .input-group > .form-control-plaintext + .form-control,\n .select2-container--default .input-group > .form-control-plaintext + .select2-selection--single,\n .select2-container--default .select2-selection--single .input-group > .form-control-plaintext + .select2-search__field,\n .input-group > .form-control-plaintext + .typeahead,\n .input-group > .form-control-plaintext + .tt-query,\n .input-group > .form-control-plaintext + .tt-hint,\n .input-group > .form-control-plaintext + .custom-select,\n .input-group > .form-control-plaintext + .custom-file,\n .input-group > .custom-select + .form-control,\n .select2-container--default .input-group > .custom-select + .select2-selection--single,\n .select2-container--default .select2-selection--single .input-group > .custom-select + .select2-search__field,\n .input-group > .custom-select + .typeahead,\n .input-group > .custom-select + .tt-query,\n .input-group > .custom-select + .tt-hint,\n .input-group > .custom-select + .custom-select,\n .input-group > .custom-select + .custom-file,\n .input-group > .custom-file + .form-control,\n .select2-container--default .input-group > .custom-file + .select2-selection--single,\n .select2-container--default .select2-selection--single .input-group > .custom-file + .select2-search__field,\n .input-group > .custom-file + .typeahead,\n .input-group > .custom-file + .tt-query,\n .input-group > .custom-file + .tt-hint,\n .input-group > .custom-file + .custom-select,\n .input-group > .custom-file + .custom-file {\n margin-left: -1px; }\n .input-group > .form-control:focus, .select2-container--default .input-group > .select2-selection--single:focus, .select2-container--default .select2-selection--single .input-group > .select2-search__field:focus, .input-group > .typeahead:focus,\n .input-group > .tt-query:focus,\n .input-group > .tt-hint:focus,\n .input-group > .custom-select:focus,\n .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {\n z-index: 3; }\n .input-group > .custom-file .custom-file-input:focus {\n z-index: 4; }\n .input-group > .form-control:not(:last-child), .select2-container--default .input-group > .select2-selection--single:not(:last-child), .select2-container--default .select2-selection--single .input-group > .select2-search__field:not(:last-child), .input-group > .typeahead:not(:last-child),\n .input-group > .tt-query:not(:last-child),\n .input-group > .tt-hint:not(:last-child),\n .input-group > .custom-select:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n .input-group > .form-control:not(:first-child), .select2-container--default .input-group > .select2-selection--single:not(:first-child), .select2-container--default .select2-selection--single .input-group > .select2-search__field:not(:first-child), .input-group > .typeahead:not(:first-child),\n .input-group > .tt-query:not(:first-child),\n .input-group > .tt-hint:not(:first-child),\n .input-group > .custom-select:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n .input-group > .custom-file {\n display: flex;\n align-items: center; }\n .input-group > .custom-file:not(:last-child) .custom-file-label,\n .input-group > .custom-file:not(:last-child) .custom-file-label::after {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n .input-group > .custom-file:not(:first-child) .custom-file-label {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n\n.input-group-prepend,\n.input-group-append {\n display: flex; }\n .input-group-prepend .btn,\n .input-group-append .btn {\n position: relative;\n z-index: 2; }\n .input-group-prepend .btn:focus,\n .input-group-append .btn:focus {\n z-index: 3; }\n .input-group-prepend .btn + .btn,\n .input-group-prepend .btn + .input-group-text,\n .input-group-prepend .input-group-text + .input-group-text,\n .input-group-prepend .input-group-text + .btn,\n .input-group-append .btn + .btn,\n .input-group-append .btn + .input-group-text,\n .input-group-append .input-group-text + .input-group-text,\n .input-group-append .input-group-text + .btn {\n margin-left: -1px; }\n\n.input-group-prepend {\n margin-right: -1px; }\n\n.input-group-append {\n margin-left: -1px; }\n\n.input-group-text {\n display: flex;\n align-items: center;\n padding: 0.94rem 1.375rem;\n margin-bottom: 0;\n font-size: 0.8125rem;\n font-weight: 400;\n line-height: 1;\n color: #495057;\n text-align: center;\n white-space: nowrap;\n background-color: #e9ecef;\n border: 1px solid #ced4da;\n border-radius: 2px; }\n .input-group-text input[type=\"radio\"],\n .input-group-text input[type=\"checkbox\"] {\n margin-top: 0; }\n\n.input-group-lg > .form-control:not(textarea), .select2-container--default .input-group-lg > .select2-selection--single:not(textarea), .select2-container--default .select2-selection--single .input-group-lg > .select2-search__field:not(textarea), .input-group-lg > .typeahead:not(textarea),\n.input-group-lg > .tt-query:not(textarea),\n.input-group-lg > .tt-hint:not(textarea),\n.input-group-lg > .custom-select {\n height: 3.175rem; }\n\n.input-group-lg > .form-control, .select2-container--default .input-group-lg > .select2-selection--single, .select2-container--default .select2-selection--single .input-group-lg > .select2-search__field, .input-group-lg > .typeahead,\n.input-group-lg > .tt-query,\n.input-group-lg > .tt-hint,\n.input-group-lg > .custom-select,\n.input-group-lg > .input-group-prepend > .input-group-text,\n.input-group-lg > .input-group-append > .input-group-text,\n.input-group-lg > .input-group-prepend > .btn,\n.input-group-lg > .input-group-append > .btn {\n padding: 0.94rem 1.94rem;\n font-size: 1.25rem;\n line-height: 1.5;\n border-radius: 0.3rem; }\n\n.input-group-sm > .form-control:not(textarea), .select2-container--default .input-group-sm > .select2-selection--single:not(textarea), .select2-container--default .select2-selection--single .input-group-sm > .select2-search__field:not(textarea), .input-group-sm > .typeahead:not(textarea),\n.input-group-sm > .tt-query:not(textarea),\n.input-group-sm > .tt-hint:not(textarea),\n.input-group-sm > .custom-select {\n height: 2.575rem; }\n\n.input-group-sm > .form-control, .select2-container--default .input-group-sm > .select2-selection--single, .select2-container--default .select2-selection--single .input-group-sm > .select2-search__field, .input-group-sm > .typeahead,\n.input-group-sm > .tt-query,\n.input-group-sm > .tt-hint,\n.input-group-sm > .custom-select,\n.input-group-sm > .input-group-prepend > .input-group-text,\n.input-group-sm > .input-group-append > .input-group-text,\n.input-group-sm > .input-group-prepend > .btn,\n.input-group-sm > .input-group-append > .btn {\n padding: 0.5rem 0.81rem;\n font-size: 0.875rem;\n line-height: 1.5;\n border-radius: 0.2rem; }\n\n.input-group-lg > .custom-select,\n.input-group-sm > .custom-select {\n padding-right: 1.75rem; }\n\n.input-group > .input-group-prepend > .btn,\n.input-group > .input-group-prepend > .input-group-text,\n.input-group > .input-group-append:not(:last-child) > .btn,\n.input-group > .input-group-append:not(:last-child) > .input-group-text,\n.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n\n.input-group > .input-group-append > .btn,\n.input-group > .input-group-append > .input-group-text,\n.input-group > .input-group-prepend:not(:first-child) > .btn,\n.input-group > .input-group-prepend:not(:first-child) > .input-group-text,\n.input-group > .input-group-prepend:first-child > .btn:not(:first-child),\n.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n\n.custom-control {\n position: relative;\n z-index: 1;\n display: block;\n min-height: 1.5rem;\n padding-left: 1.5rem;\n color-adjust: exact; }\n\n.custom-control-inline {\n display: inline-flex;\n margin-right: 1rem; }\n\n.custom-control-input {\n position: absolute;\n left: 0;\n z-index: -1;\n width: 1rem;\n height: 1.25rem;\n opacity: 0; }\n .custom-control-input:checked ~ .custom-control-label::before {\n color: #fff;\n border-color: #007bff;\n background-color: #007bff; }\n .custom-control-input:focus ~ .custom-control-label::before {\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {\n border-color: #80bdff; }\n .custom-control-input:not(:disabled):active ~ .custom-control-label::before {\n color: #fff;\n background-color: #b3d7ff;\n border-color: #b3d7ff; }\n .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {\n color: #6c757d; }\n .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {\n background-color: #e9ecef; }\n\n.custom-control-label {\n position: relative;\n margin-bottom: 0;\n vertical-align: top; }\n .custom-control-label::before {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n display: block;\n width: 1rem;\n height: 1rem;\n pointer-events: none;\n content: \"\";\n background-color: #fff;\n border: #adb5bd solid 1px; }\n .custom-control-label::after {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n display: block;\n width: 1rem;\n height: 1rem;\n content: \"\";\n background: no-repeat 50% / 50% 50%; }\n\n.custom-checkbox .custom-control-label::before {\n border-radius: 0.25rem; }\n\n.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {\n 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\"); }\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {\n border-color: #007bff;\n background-color: #007bff; }\n\n.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {\n 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\"); }\n\n.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5); }\n\n.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5); }\n\n.custom-radio .custom-control-label::before {\n border-radius: 50%; }\n\n.custom-radio .custom-control-input:checked ~ .custom-control-label::after {\n 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\"); }\n\n.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5); }\n\n.custom-switch {\n padding-left: 2.25rem; }\n .custom-switch .custom-control-label::before {\n left: -2.25rem;\n width: 1.75rem;\n pointer-events: all;\n border-radius: 0.5rem; }\n .custom-switch .custom-control-label::after {\n top: calc(0.25rem + 2px);\n left: calc(-2.25rem + 2px);\n width: calc(1rem - 4px);\n height: calc(1rem - 4px);\n background-color: #adb5bd;\n border-radius: 0.5rem;\n 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; }\n @media (prefers-reduced-motion: reduce) {\n .custom-switch .custom-control-label::after {\n transition: none; } }\n .custom-switch .custom-control-input:checked ~ .custom-control-label::after {\n background-color: #fff;\n transform: translateX(0.75rem); }\n .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {\n background-color: rgba(0, 123, 255, 0.5); }\n\n.custom-select {\n display: inline-block;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n padding: 0.375rem 1.75rem 0.375rem 0.75rem;\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n vertical-align: middle;\n background: #fff 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;\n border: 1px solid #ced4da;\n border-radius: 0.25rem;\n appearance: none; }\n .custom-select:focus {\n border-color: #80bdff;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-select:focus::-ms-value {\n color: #495057;\n background-color: #ffffff; }\n .custom-select[multiple], .custom-select[size]:not([size=\"1\"]) {\n height: auto;\n padding-right: 0.75rem;\n background-image: none; }\n .custom-select:disabled {\n color: #6c757d;\n background-color: #e9ecef; }\n .custom-select::-ms-expand {\n display: none; }\n .custom-select:-moz-focusring {\n color: transparent;\n text-shadow: 0 0 0 #495057; }\n\n.custom-select-sm {\n height: calc(1.5em + 0.5rem + 2px);\n padding-top: 0.25rem;\n padding-bottom: 0.25rem;\n padding-left: 0.5rem;\n font-size: 0.875rem; }\n\n.custom-select-lg {\n height: calc(1.5em + 1rem + 2px);\n padding-top: 0.5rem;\n padding-bottom: 0.5rem;\n padding-left: 1rem;\n font-size: 1.25rem; }\n\n.custom-file {\n position: relative;\n display: inline-block;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n margin-bottom: 0; }\n\n.custom-file-input {\n position: relative;\n z-index: 2;\n width: 100%;\n height: calc(1.5em + 0.75rem + 2px);\n margin: 0;\n opacity: 0; }\n .custom-file-input:focus ~ .custom-file-label {\n border-color: #80bdff;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-file-input[disabled] ~ .custom-file-label,\n .custom-file-input:disabled ~ .custom-file-label {\n background-color: #e9ecef; }\n .custom-file-input:lang(en) ~ .custom-file-label::after {\n content: \"Browse\"; }\n .custom-file-input ~ .custom-file-label[data-browse]::after {\n content: attr(data-browse); }\n\n.custom-file-label {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1;\n height: calc(1.5em + 0.75rem + 2px);\n padding: 0.375rem 0.75rem;\n font-weight: 400;\n line-height: 1.5;\n color: #495057;\n background-color: #fff;\n border: 1px solid #ced4da;\n border-radius: 0.25rem; }\n .custom-file-label::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 3;\n display: block;\n height: calc(1.5em + 0.75rem);\n padding: 0.375rem 0.75rem;\n line-height: 1.5;\n color: #495057;\n content: \"Browse\";\n background-color: #e9ecef;\n border-left: inherit;\n border-radius: 0 0.25rem 0.25rem 0; }\n\n.custom-range {\n width: 100%;\n height: 1.4rem;\n padding: 0;\n background-color: transparent;\n appearance: none; }\n .custom-range:focus {\n outline: none; }\n .custom-range:focus::-webkit-slider-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-range:focus::-moz-range-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-range:focus::-ms-thumb {\n box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n .custom-range::-moz-focus-outer {\n border: 0; }\n .custom-range::-webkit-slider-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: -0.25rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none; }\n @media (prefers-reduced-motion: reduce) {\n .custom-range::-webkit-slider-thumb {\n transition: none; } }\n .custom-range::-webkit-slider-thumb:active {\n background-color: #b3d7ff; }\n .custom-range::-webkit-slider-runnable-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem; }\n .custom-range::-moz-range-thumb {\n width: 1rem;\n height: 1rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none; }\n @media (prefers-reduced-motion: reduce) {\n .custom-range::-moz-range-thumb {\n transition: none; } }\n .custom-range::-moz-range-thumb:active {\n background-color: #b3d7ff; }\n .custom-range::-moz-range-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: #dee2e6;\n border-color: transparent;\n border-radius: 1rem; }\n .custom-range::-ms-thumb {\n width: 1rem;\n height: 1rem;\n margin-top: 0;\n margin-right: 0.2rem;\n margin-left: 0.2rem;\n background-color: #007bff;\n border: 0;\n border-radius: 1rem;\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;\n appearance: none; }\n @media (prefers-reduced-motion: reduce) {\n .custom-range::-ms-thumb {\n transition: none; } }\n .custom-range::-ms-thumb:active {\n background-color: #b3d7ff; }\n .custom-range::-ms-track {\n width: 100%;\n height: 0.5rem;\n color: transparent;\n cursor: pointer;\n background-color: transparent;\n border-color: transparent;\n border-width: 0.5rem; }\n .custom-range::-ms-fill-lower {\n background-color: #dee2e6;\n border-radius: 1rem; }\n .custom-range::-ms-fill-upper {\n margin-right: 15px;\n background-color: #dee2e6;\n border-radius: 1rem; }\n .custom-range:disabled::-webkit-slider-thumb {\n background-color: #adb5bd; }\n .custom-range:disabled::-webkit-slider-runnable-track {\n cursor: default; }\n .custom-range:disabled::-moz-range-thumb {\n background-color: #adb5bd; }\n .custom-range:disabled::-moz-range-track {\n cursor: default; }\n .custom-range:disabled::-ms-thumb {\n background-color: #adb5bd; }\n\n.custom-control-label::before,\n.custom-file-label,\n.custom-select {\n transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .custom-control-label::before,\n .custom-file-label,\n .custom-select {\n transition: none; } }\n\n.nav {\n display: flex;\n flex-wrap: wrap;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none; }\n\n.nav-link {\n display: block;\n padding: 0.5rem 1rem; }\n .nav-link:hover, .nav-link:focus {\n text-decoration: none; }\n .nav-link.disabled {\n color: #6c757d;\n pointer-events: none;\n cursor: default; }\n\n.nav-tabs {\n border-bottom: 1px solid #ebedf2; }\n .nav-tabs .nav-item {\n margin-bottom: -1px; }\n .nav-tabs .nav-link {\n border: 1px solid transparent;\n border-top-left-radius: 0.25rem;\n border-top-right-radius: 0.25rem; }\n .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {\n border-color: #ebedf2 #ebedf2 #ebedf2; }\n .nav-tabs .nav-link.disabled {\n color: #6c757d;\n background-color: transparent;\n border-color: transparent; }\n .nav-tabs .nav-link.active,\n .nav-tabs .nav-item.show .nav-link {\n color: #343a40;\n background-color: #ffffff;\n border-color: #ebedf2 #ebedf2 #ffffff; }\n .nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-left-radius: 0;\n border-top-right-radius: 0; }\n\n.nav-pills .nav-link {\n border-radius: 0.25rem; }\n\n.nav-pills .nav-link.active,\n.nav-pills .show > .nav-link {\n color: #fff;\n background-color: #007bff; }\n\n.nav-fill > .nav-link,\n.nav-fill .nav-item {\n flex: 1 1 auto;\n text-align: center; }\n\n.nav-justified > .nav-link,\n.nav-justified .nav-item {\n flex-basis: 0;\n flex-grow: 1;\n text-align: center; }\n\n.tab-content > .tab-pane {\n display: none; }\n\n.tab-content > .active {\n display: block; }\n\n.navbar {\n position: relative;\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between;\n padding: 0.5rem 1rem; }\n .navbar .container,\n .navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: space-between; }\n\n.navbar-brand {\n display: inline-block;\n padding-top: 0.3125rem;\n padding-bottom: 0.3125rem;\n margin-right: 1rem;\n font-size: 1.25rem;\n line-height: inherit;\n white-space: nowrap; }\n .navbar-brand:hover, .navbar-brand:focus {\n text-decoration: none; }\n\n.navbar-nav {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n list-style: none; }\n .navbar-nav .nav-link {\n padding-right: 0;\n padding-left: 0; }\n .navbar-nav .dropdown-menu {\n position: static;\n float: none; }\n\n.navbar-text {\n display: inline-block;\n padding-top: 0.5rem;\n padding-bottom: 0.5rem; }\n\n.navbar-collapse {\n flex-basis: 100%;\n flex-grow: 1;\n align-items: center; }\n\n.navbar-toggler {\n padding: 0.25rem 0.75rem;\n font-size: 1.25rem;\n line-height: 1;\n background-color: transparent;\n border: 1px solid transparent;\n border-radius: 0.25rem; }\n .navbar-toggler:hover, .navbar-toggler:focus {\n text-decoration: none; }\n\n.navbar-toggler-icon {\n display: inline-block;\n width: 1.5em;\n height: 1.5em;\n vertical-align: middle;\n content: \"\";\n background: no-repeat center center;\n background-size: 100% 100%; }\n\n@media (max-width: 575.98px) {\n .navbar-expand-sm > .container,\n .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 {\n padding-right: 0;\n padding-left: 0; } }\n\n@media (min-width: 576px) {\n .navbar-expand-sm {\n flex-flow: row nowrap;\n justify-content: flex-start; }\n .navbar-expand-sm .navbar-nav {\n flex-direction: row; }\n .navbar-expand-sm .navbar-nav .dropdown-menu {\n position: absolute; }\n .navbar-expand-sm .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem; }\n .navbar-expand-sm > .container,\n .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 {\n flex-wrap: nowrap; }\n .navbar-expand-sm .navbar-collapse {\n display: flex !important;\n flex-basis: auto; }\n .navbar-expand-sm .navbar-toggler {\n display: none; } }\n\n@media (max-width: 767.98px) {\n .navbar-expand-md > .container,\n .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 {\n padding-right: 0;\n padding-left: 0; } }\n\n@media (min-width: 768px) {\n .navbar-expand-md {\n flex-flow: row nowrap;\n justify-content: flex-start; }\n .navbar-expand-md .navbar-nav {\n flex-direction: row; }\n .navbar-expand-md .navbar-nav .dropdown-menu {\n position: absolute; }\n .navbar-expand-md .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem; }\n .navbar-expand-md > .container,\n .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 {\n flex-wrap: nowrap; }\n .navbar-expand-md .navbar-collapse {\n display: flex !important;\n flex-basis: auto; }\n .navbar-expand-md .navbar-toggler {\n display: none; } }\n\n@media (max-width: 991.98px) {\n .navbar-expand-lg > .container,\n .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 {\n padding-right: 0;\n padding-left: 0; } }\n\n@media (min-width: 992px) {\n .navbar-expand-lg {\n flex-flow: row nowrap;\n justify-content: flex-start; }\n .navbar-expand-lg .navbar-nav {\n flex-direction: row; }\n .navbar-expand-lg .navbar-nav .dropdown-menu {\n position: absolute; }\n .navbar-expand-lg .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem; }\n .navbar-expand-lg > .container,\n .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 {\n flex-wrap: nowrap; }\n .navbar-expand-lg .navbar-collapse {\n display: flex !important;\n flex-basis: auto; }\n .navbar-expand-lg .navbar-toggler {\n display: none; } }\n\n@media (max-width: 1199.98px) {\n .navbar-expand-xl > .container,\n .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 {\n padding-right: 0;\n padding-left: 0; } }\n\n@media (min-width: 1200px) {\n .navbar-expand-xl {\n flex-flow: row nowrap;\n justify-content: flex-start; }\n .navbar-expand-xl .navbar-nav {\n flex-direction: row; }\n .navbar-expand-xl .navbar-nav .dropdown-menu {\n position: absolute; }\n .navbar-expand-xl .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem; }\n .navbar-expand-xl > .container,\n .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 {\n flex-wrap: nowrap; }\n .navbar-expand-xl .navbar-collapse {\n display: flex !important;\n flex-basis: auto; }\n .navbar-expand-xl .navbar-toggler {\n display: none; } }\n\n.navbar-expand {\n flex-flow: row nowrap;\n justify-content: flex-start; }\n .navbar-expand > .container,\n .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {\n padding-right: 0;\n padding-left: 0; }\n .navbar-expand .navbar-nav {\n flex-direction: row; }\n .navbar-expand .navbar-nav .dropdown-menu {\n position: absolute; }\n .navbar-expand .navbar-nav .nav-link {\n padding-right: 0.5rem;\n padding-left: 0.5rem; }\n .navbar-expand > .container,\n .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {\n flex-wrap: nowrap; }\n .navbar-expand .navbar-collapse {\n display: flex !important;\n flex-basis: auto; }\n .navbar-expand .navbar-toggler {\n display: none; }\n\n.navbar-light .navbar-brand {\n color: rgba(0, 0, 0, 0.9); }\n .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {\n color: rgba(0, 0, 0, 0.9); }\n\n.navbar-light .navbar-nav .nav-link {\n color: rgba(0, 0, 0, 0.5); }\n .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {\n color: rgba(0, 0, 0, 0.7); }\n .navbar-light .navbar-nav .nav-link.disabled {\n color: rgba(0, 0, 0, 0.3); }\n\n.navbar-light .navbar-nav .show > .nav-link,\n.navbar-light .navbar-nav .active > .nav-link,\n.navbar-light .navbar-nav .nav-link.show,\n.navbar-light .navbar-nav .nav-link.active {\n color: rgba(0, 0, 0, 0.9); }\n\n.navbar-light .navbar-toggler {\n color: rgba(0, 0, 0, 0.5);\n border-color: rgba(0, 0, 0, 0.1); }\n\n.navbar-light .navbar-toggler-icon {\n 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%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\"); }\n\n.navbar-light .navbar-text {\n color: rgba(0, 0, 0, 0.5); }\n .navbar-light .navbar-text a {\n color: rgba(0, 0, 0, 0.9); }\n .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {\n color: rgba(0, 0, 0, 0.9); }\n\n.navbar-dark .navbar-brand {\n color: #fff; }\n .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {\n color: #fff; }\n\n.navbar-dark .navbar-nav .nav-link {\n color: rgba(255, 255, 255, 0.5); }\n .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {\n color: rgba(255, 255, 255, 0.75); }\n .navbar-dark .navbar-nav .nav-link.disabled {\n color: rgba(255, 255, 255, 0.25); }\n\n.navbar-dark .navbar-nav .show > .nav-link,\n.navbar-dark .navbar-nav .active > .nav-link,\n.navbar-dark .navbar-nav .nav-link.show,\n.navbar-dark .navbar-nav .nav-link.active {\n color: #fff; }\n\n.navbar-dark .navbar-toggler {\n color: rgba(255, 255, 255, 0.5);\n border-color: rgba(255, 255, 255, 0.1); }\n\n.navbar-dark .navbar-toggler-icon {\n 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%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e\"); }\n\n.navbar-dark .navbar-text {\n color: rgba(255, 255, 255, 0.5); }\n .navbar-dark .navbar-text a {\n color: #fff; }\n .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {\n color: #fff; }\n\n.card {\n position: relative;\n display: flex;\n flex-direction: column;\n min-width: 0;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: border-box;\n border: 1px solid rgba(0, 0, 0, 0.125);\n border-radius: 0; }\n .card > hr {\n margin-right: 0;\n margin-left: 0; }\n .card > .list-group {\n border-top: inherit;\n border-bottom: inherit; }\n .card > .list-group:first-child {\n border-top-width: 0;\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px); }\n .card > .list-group:last-child {\n border-bottom-width: 0;\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px); }\n .card > .card-header + .list-group,\n .card > .list-group + .card-footer {\n border-top: 0; }\n\n.card-body {\n flex: 1 1 auto;\n min-height: 1px;\n padding: 1.25rem; }\n\n.card-title {\n margin-bottom: 0.75rem; }\n\n.card-subtitle {\n margin-top: -0.375rem;\n margin-bottom: 0; }\n\n.card-text:last-child {\n margin-bottom: 0; }\n\n.card-link:hover {\n text-decoration: none; }\n\n.card-link + .card-link {\n margin-left: 1.25rem; }\n\n.card-header {\n padding: 0.75rem 1.25rem;\n margin-bottom: 0;\n background-color: rgba(0, 0, 0, 0.03);\n border-bottom: 1px solid rgba(0, 0, 0, 0.125); }\n .card-header:first-child {\n border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }\n\n.card-footer {\n padding: 0.75rem 1.25rem;\n background-color: rgba(0, 0, 0, 0.03);\n border-top: 1px solid rgba(0, 0, 0, 0.125); }\n .card-footer:last-child {\n border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }\n\n.card-header-tabs {\n margin-right: -0.625rem;\n margin-bottom: -0.75rem;\n margin-left: -0.625rem;\n border-bottom: 0; }\n\n.card-header-pills {\n margin-right: -0.625rem;\n margin-left: -0.625rem; }\n\n.card-img-overlay {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n padding: 1.25rem;\n border-radius: calc(0.25rem - 1px); }\n\n.card-img,\n.card-img-top,\n.card-img-bottom {\n flex-shrink: 0;\n width: 100%; }\n\n.card-img,\n.card-img-top {\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px); }\n\n.card-img,\n.card-img-bottom {\n border-bottom-right-radius: calc(0.25rem - 1px);\n border-bottom-left-radius: calc(0.25rem - 1px); }\n\n.card-deck .card {\n margin-bottom: 15px; }\n\n@media (min-width: 576px) {\n .card-deck {\n display: flex;\n flex-flow: row wrap;\n margin-right: -15px;\n margin-left: -15px; }\n .card-deck .card {\n flex: 1 0 0%;\n margin-right: 15px;\n margin-bottom: 0;\n margin-left: 15px; } }\n\n.card-group > .card {\n margin-bottom: 15px; }\n\n@media (min-width: 576px) {\n .card-group {\n display: flex;\n flex-flow: row wrap; }\n .card-group > .card {\n flex: 1 0 0%;\n margin-bottom: 0; }\n .card-group > .card + .card {\n margin-left: 0;\n border-left: 0; }\n .card-group > .card:not(:last-child) {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0; }\n .card-group > .card:not(:last-child) .card-img-top,\n .card-group > .card:not(:last-child) .card-header {\n border-top-right-radius: 0; }\n .card-group > .card:not(:last-child) .card-img-bottom,\n .card-group > .card:not(:last-child) .card-footer {\n border-bottom-right-radius: 0; }\n .card-group > .card:not(:first-child) {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0; }\n .card-group > .card:not(:first-child) .card-img-top,\n .card-group > .card:not(:first-child) .card-header {\n border-top-left-radius: 0; }\n .card-group > .card:not(:first-child) .card-img-bottom,\n .card-group > .card:not(:first-child) .card-footer {\n border-bottom-left-radius: 0; } }\n\n.card-columns .card {\n margin-bottom: 0.75rem; }\n\n@media (min-width: 576px) {\n .card-columns {\n column-count: 3;\n column-gap: 1.25rem;\n orphans: 1;\n widows: 1; }\n .card-columns .card {\n display: inline-block;\n width: 100%; } }\n\n.accordion {\n overflow-anchor: none; }\n .accordion > .card {\n overflow: hidden; }\n .accordion > .card:not(:last-of-type) {\n border-bottom: 0;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0; }\n .accordion > .card:not(:first-of-type) {\n border-top-left-radius: 0;\n border-top-right-radius: 0; }\n .accordion > .card > .card-header {\n border-radius: 0;\n margin-bottom: -1px; }\n\n.breadcrumb {\n display: flex;\n flex-wrap: wrap;\n padding: 0.56rem 1.13rem;\n margin-bottom: 1rem;\n font-size: 0.875rem;\n list-style: none;\n background-color: transparent;\n border-radius: 0.25rem; }\n\n.breadcrumb-item {\n display: flex; }\n .breadcrumb-item + .breadcrumb-item {\n padding-left: 0.5rem; }\n .breadcrumb-item + .breadcrumb-item::before {\n display: inline-block;\n padding-right: 0.5rem;\n color: #6c757d;\n content: \"/\"; }\n .breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: underline; }\n .breadcrumb-item + .breadcrumb-item:hover::before {\n text-decoration: none; }\n .breadcrumb-item.active {\n color: #495057; }\n\n.pagination {\n display: flex;\n padding-left: 0;\n list-style: none;\n border-radius: 0.25rem; }\n\n.page-link {\n position: relative;\n display: block;\n padding: 0.5rem 0.75rem;\n margin-left: -1px;\n line-height: 1.25;\n color: #007bff;\n background-color: #fff;\n border: 1px solid #dee2e6; }\n .page-link:hover {\n z-index: 2;\n color: #0056b3;\n text-decoration: none;\n background-color: #e9ecef;\n border-color: #dee2e6; }\n .page-link:focus {\n z-index: 3;\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }\n\n.page-item:first-child .page-link {\n margin-left: 0;\n border-top-left-radius: 0.25rem;\n border-bottom-left-radius: 0.25rem; }\n\n.page-item:last-child .page-link {\n border-top-right-radius: 0.25rem;\n border-bottom-right-radius: 0.25rem; }\n\n.page-item.active .page-link {\n z-index: 3;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff; }\n\n.page-item.disabled .page-link {\n color: #6c757d;\n pointer-events: none;\n cursor: auto;\n background-color: #fff;\n border-color: #dee2e6; }\n\n.pagination-lg .page-link {\n padding: 0.75rem 1.5rem;\n font-size: 1.25rem;\n line-height: 1.5; }\n\n.pagination-lg .page-item:first-child .page-link {\n border-top-left-radius: 0.3rem;\n border-bottom-left-radius: 0.3rem; }\n\n.pagination-lg .page-item:last-child .page-link {\n border-top-right-radius: 0.3rem;\n border-bottom-right-radius: 0.3rem; }\n\n.pagination-sm .page-link {\n padding: 0.25rem 0.5rem;\n font-size: 0.875rem;\n line-height: 1.5; }\n\n.pagination-sm .page-item:first-child .page-link {\n border-top-left-radius: 0.2rem;\n border-bottom-left-radius: 0.2rem; }\n\n.pagination-sm .page-item:last-child .page-link {\n border-top-right-radius: 0.2rem;\n border-bottom-right-radius: 0.2rem; }\n\n.badge {\n display: inline-block;\n padding: 0.25em 0.4em;\n font-size: 75%;\n font-weight: 700;\n line-height: 1;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: 0.25rem;\n 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; }\n @media (prefers-reduced-motion: reduce) {\n .badge {\n transition: none; } }\n a.badge:hover, a.badge:focus {\n text-decoration: none; }\n .badge:empty {\n display: none; }\n\n.btn .badge {\n position: relative;\n top: -1px; }\n\n.badge-pill {\n padding-right: 0.6em;\n padding-left: 0.6em;\n border-radius: 10rem; }\n\n.badge-primary {\n color: #212529;\n background-color: #1bdbe0; }\n a.badge-primary:hover, a.badge-primary:focus {\n color: #212529;\n background-color: #16afb2; }\n a.badge-primary:focus, a.badge-primary.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(27, 219, 224, 0.5); }\n\n.badge-secondary {\n color: #212529;\n background-color: #d8d8d8; }\n a.badge-secondary:hover, a.badge-secondary:focus {\n color: #212529;\n background-color: #bfbfbf; }\n a.badge-secondary:focus, a.badge-secondary.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(216, 216, 216, 0.5); }\n\n.badge-success, .preview-list .preview-item .preview-thumbnail .badge.badge-online {\n color: #fff;\n background-color: #38ce3c; }\n a.badge-success:hover, .preview-list .preview-item .preview-thumbnail a.badge.badge-online:hover, a.badge-success:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-online:focus {\n color: #fff;\n background-color: #2aa92d; }\n a.badge-success:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-online:focus, a.badge-success.focus, .preview-list .preview-item .preview-thumbnail a.focus.badge.badge-online {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(56, 206, 60, 0.5); }\n\n.badge-info, .preview-list .preview-item .preview-thumbnail .badge.badge-offline {\n color: #fff;\n background-color: #8e32e9; }\n a.badge-info:hover, .preview-list .preview-item .preview-thumbnail a.badge.badge-offline:hover, a.badge-info:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-offline:focus {\n color: #fff;\n background-color: #7516d2; }\n a.badge-info:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-offline:focus, a.badge-info.focus, .preview-list .preview-item .preview-thumbnail a.focus.badge.badge-offline {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(142, 50, 233, 0.5); }\n\n.badge-warning, .preview-list .preview-item .preview-thumbnail .badge.badge-busy {\n color: #212529;\n background-color: #ffde73; }\n a.badge-warning:hover, .preview-list .preview-item .preview-thumbnail a.badge.badge-busy:hover, a.badge-warning:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-busy:focus {\n color: #212529;\n background-color: #ffd240; }\n a.badge-warning:focus, .preview-list .preview-item .preview-thumbnail a.badge.badge-busy:focus, a.badge-warning.focus, .preview-list .preview-item .preview-thumbnail a.focus.badge.badge-busy {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(255, 222, 115, 0.5); }\n\n.badge-danger {\n color: #fff;\n background-color: #ff4d6b; }\n a.badge-danger:hover, a.badge-danger:focus {\n color: #fff;\n background-color: #ff1a41; }\n a.badge-danger:focus, a.badge-danger.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(255, 77, 107, 0.5); }\n\n.badge-light {\n color: #212529;\n background-color: #f8f9fa; }\n a.badge-light:hover, a.badge-light:focus {\n color: #212529;\n background-color: #dae0e5; }\n a.badge-light:focus, a.badge-light.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }\n\n.badge-dark {\n color: #fff;\n background-color: #3e4b5b; }\n a.badge-dark:hover, a.badge-dark:focus {\n color: #fff;\n background-color: #29323d; }\n a.badge-dark:focus, a.badge-dark.focus {\n outline: 0;\n box-shadow: 0 0 0 0.2rem rgba(62, 75, 91, 0.5); }\n\n.jumbotron {\n padding: 2rem 1rem;\n margin-bottom: 2rem;\n background-color: #e9ecef;\n border-radius: 0.3rem; }\n @media (min-width: 576px) {\n .jumbotron {\n padding: 4rem 2rem; } }\n\n.jumbotron-fluid {\n padding-right: 0;\n padding-left: 0;\n border-radius: 0; }\n\n.alert {\n position: relative;\n padding: 0.75rem 1.25rem;\n margin-bottom: 1rem;\n border: 1px solid transparent;\n border-radius: 0.25rem; }\n\n.alert-heading {\n color: inherit; }\n\n.alert-link {\n font-weight: 700; }\n\n.alert-dismissible {\n padding-right: 4rem; }\n .alert-dismissible .close {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n padding: 0.75rem 1.25rem;\n color: inherit; }\n\n.alert-primary {\n color: #0e7274;\n background-color: #d1f8f9;\n border-color: #bff5f6; }\n .alert-primary hr {\n border-top-color: #a9f2f3; }\n .alert-primary .alert-link {\n color: #094546; }\n\n.alert-secondary {\n color: #707070;\n background-color: #f7f7f7;\n border-color: #f4f4f4; }\n .alert-secondary hr {\n border-top-color: #e7e7e7; }\n .alert-secondary .alert-link {\n color: #575757; }\n\n.alert-success {\n color: #1d6b1f;\n background-color: #d7f5d8;\n border-color: #c7f1c8; }\n .alert-success hr {\n border-top-color: #b3ecb4; }\n .alert-success .alert-link {\n color: #124313; }\n\n.alert-info {\n color: #4a1a79;\n background-color: #e8d6fb;\n border-color: #dfc6f9; }\n .alert-info hr {\n border-top-color: #d2aff7; }\n .alert-info .alert-link {\n color: #30114f; }\n\n.alert-warning {\n color: #85733c;\n background-color: #fff8e3;\n border-color: #fff6d8; }\n .alert-warning hr {\n border-top-color: #fff0bf; }\n .alert-warning .alert-link {\n color: #62552c; }\n\n.alert-danger {\n color: #852838;\n background-color: #ffdbe1;\n border-color: #ffcdd6; }\n .alert-danger hr {\n border-top-color: #ffb4c1; }\n .alert-danger .alert-link {\n color: #5e1c27; }\n\n.alert-light {\n color: #818182;\n background-color: #fefefe;\n border-color: #fdfdfe; }\n .alert-light hr {\n border-top-color: #ececf6; }\n .alert-light .alert-link {\n color: #686868; }\n\n.alert-dark {\n color: #20272f;\n background-color: #d8dbde;\n border-color: #c9cdd1; }\n .alert-dark hr {\n border-top-color: #bbc0c5; }\n .alert-dark .alert-link {\n color: #0b0e11; }\n\n@keyframes progress-bar-stripes {\n from {\n background-position: 1rem 0; }\n to {\n background-position: 0 0; } }\n\n.progress {\n display: flex;\n height: 1rem;\n overflow: hidden;\n line-height: 0;\n font-size: 0.75rem;\n background-color: #e9ecef;\n border-radius: 0.25rem; }\n\n.progress-bar {\n display: flex;\n flex-direction: column;\n justify-content: center;\n overflow: hidden;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n background-color: #007bff;\n transition: width 0.6s ease; }\n @media (prefers-reduced-motion: reduce) {\n .progress-bar {\n transition: none; } }\n\n.progress-bar-striped {\n 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);\n background-size: 1rem 1rem; }\n\n.progress-bar-animated {\n animation: progress-bar-stripes 1s linear infinite; }\n @media (prefers-reduced-motion: reduce) {\n .progress-bar-animated {\n animation: none; } }\n\n.media {\n display: flex;\n align-items: flex-start; }\n\n.media-body {\n flex: 1; }\n\n.list-group {\n display: flex;\n flex-direction: column;\n padding-left: 0;\n margin-bottom: 0;\n border-radius: 0.25rem; }\n\n.list-group-item-action {\n width: 100%;\n color: #495057;\n text-align: inherit; }\n .list-group-item-action:hover, .list-group-item-action:focus {\n z-index: 1;\n color: #495057;\n text-decoration: none;\n background-color: #f8f9fa; }\n .list-group-item-action:active {\n color: #212529;\n background-color: #e9ecef; }\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 0.75rem 1.25rem;\n background-color: #fff;\n border: 1px solid rgba(0, 0, 0, 0.125); }\n .list-group-item:first-child {\n border-top-left-radius: inherit;\n border-top-right-radius: inherit; }\n .list-group-item:last-child {\n border-bottom-right-radius: inherit;\n border-bottom-left-radius: inherit; }\n .list-group-item.disabled, .list-group-item:disabled {\n color: #6c757d;\n pointer-events: none;\n background-color: #fff; }\n .list-group-item.active {\n z-index: 2;\n color: #fff;\n background-color: #007bff;\n border-color: #007bff; }\n .list-group-item + .list-group-item {\n border-top-width: 0; }\n .list-group-item + .list-group-item.active {\n margin-top: -1px;\n border-top-width: 1px; }\n\n.list-group-horizontal {\n flex-direction: row; }\n .list-group-horizontal > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0; }\n .list-group-horizontal > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0; }\n .list-group-horizontal > .list-group-item.active {\n margin-top: 0; }\n .list-group-horizontal > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0; }\n .list-group-horizontal > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px; }\n\n@media (min-width: 576px) {\n .list-group-horizontal-sm {\n flex-direction: row; }\n .list-group-horizontal-sm > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0; }\n .list-group-horizontal-sm > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0; }\n .list-group-horizontal-sm > .list-group-item.active {\n margin-top: 0; }\n .list-group-horizontal-sm > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0; }\n .list-group-horizontal-sm > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px; } }\n\n@media (min-width: 768px) {\n .list-group-horizontal-md {\n flex-direction: row; }\n .list-group-horizontal-md > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0; }\n .list-group-horizontal-md > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0; }\n .list-group-horizontal-md > .list-group-item.active {\n margin-top: 0; }\n .list-group-horizontal-md > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0; }\n .list-group-horizontal-md > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px; } }\n\n@media (min-width: 992px) {\n .list-group-horizontal-lg {\n flex-direction: row; }\n .list-group-horizontal-lg > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0; }\n .list-group-horizontal-lg > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0; }\n .list-group-horizontal-lg > .list-group-item.active {\n margin-top: 0; }\n .list-group-horizontal-lg > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0; }\n .list-group-horizontal-lg > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px; } }\n\n@media (min-width: 1200px) {\n .list-group-horizontal-xl {\n flex-direction: row; }\n .list-group-horizontal-xl > .list-group-item:first-child {\n border-bottom-left-radius: 0.25rem;\n border-top-right-radius: 0; }\n .list-group-horizontal-xl > .list-group-item:last-child {\n border-top-right-radius: 0.25rem;\n border-bottom-left-radius: 0; }\n .list-group-horizontal-xl > .list-group-item.active {\n margin-top: 0; }\n .list-group-horizontal-xl > .list-group-item + .list-group-item {\n border-top-width: 1px;\n border-left-width: 0; }\n .list-group-horizontal-xl > .list-group-item + .list-group-item.active {\n margin-left: -1px;\n border-left-width: 1px; } }\n\n.list-group-flush {\n border-radius: 0; }\n .list-group-flush > .list-group-item {\n border-width: 0 0 1px; }\n .list-group-flush > .list-group-item:last-child {\n border-bottom-width: 0; }\n\n.list-group-item-primary {\n color: #0e7274;\n background-color: #bff5f6; }\n .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {\n color: #0e7274;\n background-color: #a9f2f3; }\n .list-group-item-primary.list-group-item-action.active {\n color: #ffffff;\n background-color: #0e7274;\n border-color: #0e7274; }\n\n.list-group-item-secondary {\n color: #707070;\n background-color: #f4f4f4; }\n .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {\n color: #707070;\n background-color: #e7e7e7; }\n .list-group-item-secondary.list-group-item-action.active {\n color: #ffffff;\n background-color: #707070;\n border-color: #707070; }\n\n.list-group-item-success {\n color: #1d6b1f;\n background-color: #c7f1c8; }\n .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {\n color: #1d6b1f;\n background-color: #b3ecb4; }\n .list-group-item-success.list-group-item-action.active {\n color: #ffffff;\n background-color: #1d6b1f;\n border-color: #1d6b1f; }\n\n.list-group-item-info {\n color: #4a1a79;\n background-color: #dfc6f9; }\n .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {\n color: #4a1a79;\n background-color: #d2aff7; }\n .list-group-item-info.list-group-item-action.active {\n color: #ffffff;\n background-color: #4a1a79;\n border-color: #4a1a79; }\n\n.list-group-item-warning {\n color: #85733c;\n background-color: #fff6d8; }\n .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {\n color: #85733c;\n background-color: #fff0bf; }\n .list-group-item-warning.list-group-item-action.active {\n color: #ffffff;\n background-color: #85733c;\n border-color: #85733c; }\n\n.list-group-item-danger {\n color: #852838;\n background-color: #ffcdd6; }\n .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {\n color: #852838;\n background-color: #ffb4c1; }\n .list-group-item-danger.list-group-item-action.active {\n color: #ffffff;\n background-color: #852838;\n border-color: #852838; }\n\n.list-group-item-light {\n color: #818182;\n background-color: #fdfdfe; }\n .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {\n color: #818182;\n background-color: #ececf6; }\n .list-group-item-light.list-group-item-action.active {\n color: #ffffff;\n background-color: #818182;\n border-color: #818182; }\n\n.list-group-item-dark {\n color: #20272f;\n background-color: #c9cdd1; }\n .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {\n color: #20272f;\n background-color: #bbc0c5; }\n .list-group-item-dark.list-group-item-action.active {\n color: #ffffff;\n background-color: #20272f;\n border-color: #20272f; }\n\n.close {\n float: right;\n font-size: 1.5rem;\n font-weight: 700;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: .5; }\n .close:hover {\n color: #000;\n text-decoration: none; }\n .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {\n opacity: .75; }\n\nbutton.close {\n padding: 0;\n background-color: transparent;\n border: 0; }\n\na.close.disabled {\n pointer-events: none; }\n\n.toast {\n flex-basis: 350px;\n max-width: 350px;\n font-size: 0.875rem;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.1);\n box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);\n opacity: 0;\n border-radius: 0.25rem; }\n .toast:not(:last-child) {\n margin-bottom: 0.75rem; }\n .toast.showing {\n opacity: 1; }\n .toast.show {\n display: block;\n opacity: 1; }\n .toast.hide {\n display: none; }\n\n.toast-header {\n display: flex;\n align-items: center;\n padding: 0.25rem 0.75rem;\n color: #6c757d;\n background-color: rgba(255, 255, 255, 0.85);\n background-clip: padding-box;\n border-bottom: 1px solid rgba(0, 0, 0, 0.05);\n border-top-left-radius: calc(0.25rem - 1px);\n border-top-right-radius: calc(0.25rem - 1px); }\n\n.toast-body {\n padding: 0.75rem; }\n\n.modal-open {\n overflow: hidden; }\n .modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto; }\n\n.modal {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1050;\n display: none;\n width: 100%;\n height: 100%;\n overflow: hidden;\n outline: 0; }\n\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n pointer-events: none; }\n .modal.fade .modal-dialog {\n transition: transform 0.4s ease;\n transform: translate(0, -50px); }\n @media (prefers-reduced-motion: reduce) {\n .modal.fade .modal-dialog {\n transition: none; } }\n .modal.show .modal-dialog {\n transform: none; }\n .modal.modal-static .modal-dialog {\n transform: scale(1.02); }\n\n.modal-dialog-scrollable {\n display: flex;\n max-height: calc(100% - 20px); }\n .modal-dialog-scrollable .modal-content {\n max-height: calc(100vh - 20px);\n overflow: hidden; }\n .modal-dialog-scrollable .modal-header,\n .modal-dialog-scrollable .modal-footer {\n flex-shrink: 0; }\n .modal-dialog-scrollable .modal-body {\n overflow-y: auto; }\n\n.modal-dialog-centered {\n display: flex;\n align-items: center;\n min-height: calc(100% - 20px); }\n .modal-dialog-centered::before {\n display: block;\n height: calc(100vh - 20px);\n height: min-content;\n content: \"\"; }\n .modal-dialog-centered.modal-dialog-scrollable {\n flex-direction: column;\n justify-content: center;\n height: 100%; }\n .modal-dialog-centered.modal-dialog-scrollable .modal-content {\n max-height: none; }\n .modal-dialog-centered.modal-dialog-scrollable::before {\n content: none; }\n\n.modal-content {\n position: relative;\n display: flex;\n flex-direction: column;\n width: 100%;\n pointer-events: auto;\n background-color: #ecf0f4;\n background-clip: padding-box;\n border: 1px solid #e8ecf1;\n border-radius: 0.3rem;\n outline: 0; }\n\n.modal-backdrop {\n position: fixed;\n top: 0;\n left: 0;\n z-index: 1040;\n width: 100vw;\n height: 100vh;\n background-color: #000; }\n .modal-backdrop.fade {\n opacity: 0; }\n .modal-backdrop.show {\n opacity: 0.5; }\n\n.modal-header {\n display: flex;\n align-items: flex-start;\n justify-content: space-between;\n padding: 1rem 1rem;\n border-bottom: 1px solid #e8ecf1;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px); }\n .modal-header .close {\n padding: 1rem 1rem;\n margin: -25px -26px -25px auto; }\n\n.modal-title {\n margin-bottom: 0;\n line-height: 1.5; }\n\n.modal-body {\n position: relative;\n flex: 1 1 auto;\n padding: 0.9375rem; }\n\n.modal-footer {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n justify-content: flex-end;\n padding: 0.6875rem;\n border-top: 1px solid #e8ecf1;\n border-bottom-right-radius: calc(0.3rem - 1px);\n border-bottom-left-radius: calc(0.3rem - 1px); }\n .modal-footer > * {\n margin: 0.25rem; }\n\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll; }\n\n@media (min-width: 576px) {\n .modal-dialog {\n max-width: 500px;\n margin: 30px auto; }\n .modal-dialog-scrollable {\n max-height: calc(100% - 60px); }\n .modal-dialog-scrollable .modal-content {\n max-height: calc(100vh - 60px); }\n .modal-dialog-centered {\n min-height: calc(100% - 60px); }\n .modal-dialog-centered::before {\n height: calc(100vh - 60px);\n height: min-content; }\n .modal-sm {\n max-width: 300px; } }\n\n@media (min-width: 992px) {\n .modal-lg,\n .modal-xl {\n max-width: 90%; } }\n\n@media (min-width: 1200px) {\n .modal-xl {\n max-width: 1140px; } }\n\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.75rem;\n word-wrap: break-word;\n opacity: 0; }\n .tooltip.show {\n opacity: 0.9; }\n .tooltip .arrow {\n position: absolute;\n display: block;\n width: 0.8rem;\n height: 0.4rem; }\n .tooltip .arrow::before {\n position: absolute;\n content: \"\";\n border-color: transparent;\n border-style: solid; }\n\n.bs-tooltip-top, .bs-tooltip-auto[x-placement^=\"top\"] {\n padding: 0.4rem 0; }\n .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=\"top\"] .arrow {\n bottom: 0; }\n .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=\"top\"] .arrow::before {\n top: 0;\n border-width: 0.4rem 0.4rem 0;\n border-top-color: #000; }\n\n.bs-tooltip-right, .bs-tooltip-auto[x-placement^=\"right\"] {\n padding: 0 0.4rem; }\n .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=\"right\"] .arrow {\n left: 0;\n width: 0.4rem;\n height: 0.8rem; }\n .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=\"right\"] .arrow::before {\n right: 0;\n border-width: 0.4rem 0.4rem 0.4rem 0;\n border-right-color: #000; }\n\n.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=\"bottom\"] {\n padding: 0.4rem 0; }\n .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow {\n top: 0; }\n .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=\"bottom\"] .arrow::before {\n bottom: 0;\n border-width: 0 0.4rem 0.4rem;\n border-bottom-color: #000; }\n\n.bs-tooltip-left, .bs-tooltip-auto[x-placement^=\"left\"] {\n padding: 0 0.4rem; }\n .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=\"left\"] .arrow {\n right: 0;\n width: 0.4rem;\n height: 0.8rem; }\n .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=\"left\"] .arrow::before {\n left: 0;\n border-width: 0.4rem 0 0.4rem 0.4rem;\n border-left-color: #000; }\n\n.tooltip-inner {\n max-width: 200px;\n padding: 0.4rem 0.75rem;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 0.375rem; }\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: block;\n max-width: 276px;\n font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, \"Noto Sans\", sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\";\n font-style: normal;\n font-weight: 400;\n line-height: 1.5;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n letter-spacing: normal;\n word-break: normal;\n word-spacing: normal;\n white-space: normal;\n line-break: auto;\n font-size: 0.875rem;\n word-wrap: break-word;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 0.3rem; }\n .popover .arrow {\n position: absolute;\n display: block;\n width: 1rem;\n height: 0.5rem;\n margin: 0 0.3rem; }\n .popover .arrow::before, .popover .arrow::after {\n position: absolute;\n display: block;\n content: \"\";\n border-color: transparent;\n border-style: solid; }\n\n.bs-popover-top, .bs-popover-auto[x-placement^=\"top\"] {\n margin-bottom: 0.5rem; }\n .bs-popover-top > .arrow, .bs-popover-auto[x-placement^=\"top\"] > .arrow {\n bottom: calc(-0.5rem - 1px); }\n .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=\"top\"] > .arrow::before {\n bottom: 0;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: rgba(0, 0, 0, 0.25); }\n .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=\"top\"] > .arrow::after {\n bottom: 1px;\n border-width: 0.5rem 0.5rem 0;\n border-top-color: #fff; }\n\n.bs-popover-right, .bs-popover-auto[x-placement^=\"right\"] {\n margin-left: 0.5rem; }\n .bs-popover-right > .arrow, .bs-popover-auto[x-placement^=\"right\"] > .arrow {\n left: calc(-0.5rem - 1px);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0; }\n .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=\"right\"] > .arrow::before {\n left: 0;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: rgba(0, 0, 0, 0.25); }\n .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=\"right\"] > .arrow::after {\n left: 1px;\n border-width: 0.5rem 0.5rem 0.5rem 0;\n border-right-color: #fff; }\n\n.bs-popover-bottom, .bs-popover-auto[x-placement^=\"bottom\"] {\n margin-top: 0.5rem; }\n .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=\"bottom\"] > .arrow {\n top: calc(-0.5rem - 1px); }\n .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=\"bottom\"] > .arrow::before {\n top: 0;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: rgba(0, 0, 0, 0.25); }\n .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=\"bottom\"] > .arrow::after {\n top: 1px;\n border-width: 0 0.5rem 0.5rem 0.5rem;\n border-bottom-color: #fff; }\n .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=\"bottom\"] .popover-header::before {\n position: absolute;\n top: 0;\n left: 50%;\n display: block;\n width: 1rem;\n margin-left: -0.5rem;\n content: \"\";\n border-bottom: 1px solid #f7f7f7; }\n\n.bs-popover-left, .bs-popover-auto[x-placement^=\"left\"] {\n margin-right: 0.5rem; }\n .bs-popover-left > .arrow, .bs-popover-auto[x-placement^=\"left\"] > .arrow {\n right: calc(-0.5rem - 1px);\n width: 0.5rem;\n height: 1rem;\n margin: 0.3rem 0; }\n .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=\"left\"] > .arrow::before {\n right: 0;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: rgba(0, 0, 0, 0.25); }\n .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=\"left\"] > .arrow::after {\n right: 1px;\n border-width: 0.5rem 0 0.5rem 0.5rem;\n border-left-color: #fff; }\n\n.popover-header {\n padding: 0.5rem 0.75rem;\n margin-bottom: 0;\n font-size: 1rem;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-top-left-radius: calc(0.3rem - 1px);\n border-top-right-radius: calc(0.3rem - 1px); }\n .popover-header:empty {\n display: none; }\n\n.popover-body {\n padding: 0.5rem 0.75rem;\n color: #212529; }\n\n.carousel {\n position: relative; }\n\n.carousel.pointer-event {\n touch-action: pan-y; }\n\n.carousel-inner {\n position: relative;\n width: 100%;\n overflow: hidden; }\n .carousel-inner::after {\n display: block;\n clear: both;\n content: \"\"; }\n\n.carousel-item {\n position: relative;\n display: none;\n float: left;\n width: 100%;\n margin-right: -100%;\n backface-visibility: hidden;\n transition: transform 0.6s ease-in-out; }\n @media (prefers-reduced-motion: reduce) {\n .carousel-item {\n transition: none; } }\n\n.carousel-item.active,\n.carousel-item-next,\n.carousel-item-prev {\n display: block; }\n\n.carousel-item-next:not(.carousel-item-left),\n.active.carousel-item-right {\n transform: translateX(100%); }\n\n.carousel-item-prev:not(.carousel-item-right),\n.active.carousel-item-left {\n transform: translateX(-100%); }\n\n.carousel-fade .carousel-item {\n opacity: 0;\n transition-property: opacity;\n transform: none; }\n\n.carousel-fade .carousel-item.active,\n.carousel-fade .carousel-item-next.carousel-item-left,\n.carousel-fade .carousel-item-prev.carousel-item-right {\n z-index: 1;\n opacity: 1; }\n\n.carousel-fade .active.carousel-item-left,\n.carousel-fade .active.carousel-item-right {\n z-index: 0;\n opacity: 0;\n transition: opacity 0s 0.6s; }\n @media (prefers-reduced-motion: reduce) {\n .carousel-fade .active.carousel-item-left,\n .carousel-fade .active.carousel-item-right {\n transition: none; } }\n\n.carousel-control-prev,\n.carousel-control-next {\n position: absolute;\n top: 0;\n bottom: 0;\n z-index: 1;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 15%;\n color: #fff;\n text-align: center;\n opacity: 0.5;\n transition: opacity 0.15s ease; }\n @media (prefers-reduced-motion: reduce) {\n .carousel-control-prev,\n .carousel-control-next {\n transition: none; } }\n .carousel-control-prev:hover, .carousel-control-prev:focus,\n .carousel-control-next:hover,\n .carousel-control-next:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n opacity: 0.9; }\n\n.carousel-control-prev {\n left: 0; }\n\n.carousel-control-next {\n right: 0; }\n\n.carousel-control-prev-icon,\n.carousel-control-next-icon {\n display: inline-block;\n width: 20px;\n height: 20px;\n background: no-repeat 50% / 100% 100%; }\n\n.carousel-control-prev-icon {\n 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\"); }\n\n.carousel-control-next-icon {\n 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\"); }\n\n.carousel-indicators {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 15;\n display: flex;\n justify-content: center;\n padding-left: 0;\n margin-right: 15%;\n margin-left: 15%;\n list-style: none; }\n .carousel-indicators li {\n box-sizing: content-box;\n flex: 0 1 auto;\n width: 30px;\n height: 3px;\n margin-right: 3px;\n margin-left: 3px;\n text-indent: -999px;\n cursor: pointer;\n background-color: #fff;\n background-clip: padding-box;\n border-top: 10px solid transparent;\n border-bottom: 10px solid transparent;\n opacity: .5;\n transition: opacity 0.6s ease; }\n @media (prefers-reduced-motion: reduce) {\n .carousel-indicators li {\n transition: none; } }\n .carousel-indicators .active {\n opacity: 1; }\n\n.carousel-caption {\n position: absolute;\n right: 15%;\n bottom: 20px;\n left: 15%;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center; }\n\n@keyframes spinner-border {\n to {\n transform: rotate(360deg); } }\n\n.spinner-border {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: text-bottom;\n border: 0.25em solid currentColor;\n border-right-color: transparent;\n border-radius: 50%;\n animation: spinner-border .75s linear infinite; }\n\n.spinner-border-sm {\n width: 1rem;\n height: 1rem;\n border-width: 0.2em; }\n\n@keyframes spinner-grow {\n 0% {\n transform: scale(0); }\n 50% {\n opacity: 1;\n transform: none; } }\n\n.spinner-grow {\n display: inline-block;\n width: 2rem;\n height: 2rem;\n vertical-align: text-bottom;\n background-color: currentColor;\n border-radius: 50%;\n opacity: 0;\n animation: spinner-grow .75s linear infinite; }\n\n.spinner-grow-sm {\n width: 1rem;\n height: 1rem; }\n\n.align-baseline {\n vertical-align: baseline !important; }\n\n.align-top {\n vertical-align: top !important; }\n\n.align-middle {\n vertical-align: middle !important; }\n\n.align-bottom {\n vertical-align: bottom !important; }\n\n.align-text-bottom {\n vertical-align: text-bottom !important; }\n\n.align-text-top {\n vertical-align: text-top !important; }\n\n.bg-primary {\n background-color: #1bdbe0 !important; }\n\na.bg-primary:hover, a.bg-primary:focus,\nbutton.bg-primary:hover,\nbutton.bg-primary:focus {\n background-color: #16afb2 !important; }\n\n.bg-secondary {\n background-color: #d8d8d8 !important; }\n\na.bg-secondary:hover, a.bg-secondary:focus,\nbutton.bg-secondary:hover,\nbutton.bg-secondary:focus {\n background-color: #bfbfbf !important; }\n\n.bg-success {\n background-color: #38ce3c !important; }\n\na.bg-success:hover, a.bg-success:focus,\nbutton.bg-success:hover,\nbutton.bg-success:focus {\n background-color: #2aa92d !important; }\n\n.bg-info {\n background-color: #8e32e9 !important; }\n\na.bg-info:hover, a.bg-info:focus,\nbutton.bg-info:hover,\nbutton.bg-info:focus {\n background-color: #7516d2 !important; }\n\n.bg-warning {\n background-color: #ffde73 !important; }\n\na.bg-warning:hover, a.bg-warning:focus,\nbutton.bg-warning:hover,\nbutton.bg-warning:focus {\n background-color: #ffd240 !important; }\n\n.bg-danger {\n background-color: #ff4d6b !important; }\n\na.bg-danger:hover, a.bg-danger:focus,\nbutton.bg-danger:hover,\nbutton.bg-danger:focus {\n background-color: #ff1a41 !important; }\n\n.bg-light {\n background-color: #f8f9fa !important; }\n\na.bg-light:hover, a.bg-light:focus,\nbutton.bg-light:hover,\nbutton.bg-light:focus {\n background-color: #dae0e5 !important; }\n\n.bg-dark {\n background-color: #3e4b5b !important; }\n\na.bg-dark:hover, a.bg-dark:focus,\nbutton.bg-dark:hover,\nbutton.bg-dark:focus {\n background-color: #29323d !important; }\n\n.bg-white {\n background-color: #ffffff !important; }\n\n.bg-transparent {\n background-color: transparent !important; }\n\n.border, .loader-demo-box {\n border: 1px solid #e8ecf1 !important; }\n\n.border-top {\n border-top: 1px solid #e8ecf1 !important; }\n\n.border-right {\n border-right: 1px solid #e8ecf1 !important; }\n\n.border-bottom {\n border-bottom: 1px solid #e8ecf1 !important; }\n\n.border-left {\n border-left: 1px solid #e8ecf1 !important; }\n\n.border-0 {\n border: 0 !important; }\n\n.border-top-0 {\n border-top: 0 !important; }\n\n.border-right-0 {\n border-right: 0 !important; }\n\n.border-bottom-0 {\n border-bottom: 0 !important; }\n\n.border-left-0 {\n border-left: 0 !important; }\n\n.border-primary {\n border-color: #1bdbe0 !important; }\n\n.border-secondary, .loader-demo-box {\n border-color: #d8d8d8 !important; }\n\n.border-success {\n border-color: #38ce3c !important; }\n\n.border-info {\n border-color: #8e32e9 !important; }\n\n.border-warning {\n border-color: #ffde73 !important; }\n\n.border-danger {\n border-color: #ff4d6b !important; }\n\n.border-light {\n border-color: #f8f9fa !important; }\n\n.border-dark {\n border-color: #3e4b5b !important; }\n\n.border-white {\n border-color: #ffffff !important; }\n\n.rounded-sm {\n border-radius: 0.2rem !important; }\n\n.rounded, .loader-demo-box {\n border-radius: 0.25rem !important; }\n\n.rounded-top {\n border-top-left-radius: 0.25rem !important;\n border-top-right-radius: 0.25rem !important; }\n\n.rounded-right {\n border-top-right-radius: 0.25rem !important;\n border-bottom-right-radius: 0.25rem !important; }\n\n.rounded-bottom {\n border-bottom-right-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important; }\n\n.rounded-left {\n border-top-left-radius: 0.25rem !important;\n border-bottom-left-radius: 0.25rem !important; }\n\n.rounded-lg {\n border-radius: 0.3rem !important; }\n\n.rounded-circle {\n border-radius: 50% !important; }\n\n.rounded-pill {\n border-radius: 50rem !important; }\n\n.rounded-0 {\n border-radius: 0 !important; }\n\n.clearfix::after {\n display: block;\n clear: both;\n content: \"\"; }\n\n.d-none {\n display: none !important; }\n\n.d-inline {\n display: inline !important; }\n\n.d-inline-block {\n display: inline-block !important; }\n\n.d-block {\n display: block !important; }\n\n.d-table {\n display: table !important; }\n\n.d-table-row {\n display: table-row !important; }\n\n.d-table-cell {\n display: table-cell !important; }\n\n.d-flex, .page-header, .loader-demo-box, .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-item {\n display: flex !important; }\n\n.d-inline-flex {\n display: inline-flex !important; }\n\n@media (min-width: 576px) {\n .d-sm-none {\n display: none !important; }\n .d-sm-inline {\n display: inline !important; }\n .d-sm-inline-block {\n display: inline-block !important; }\n .d-sm-block {\n display: block !important; }\n .d-sm-table {\n display: table !important; }\n .d-sm-table-row {\n display: table-row !important; }\n .d-sm-table-cell {\n display: table-cell !important; }\n .d-sm-flex {\n display: flex !important; }\n .d-sm-inline-flex {\n display: inline-flex !important; } }\n\n@media (min-width: 768px) {\n .d-md-none {\n display: none !important; }\n .d-md-inline {\n display: inline !important; }\n .d-md-inline-block {\n display: inline-block !important; }\n .d-md-block {\n display: block !important; }\n .d-md-table {\n display: table !important; }\n .d-md-table-row {\n display: table-row !important; }\n .d-md-table-cell {\n display: table-cell !important; }\n .d-md-flex {\n display: flex !important; }\n .d-md-inline-flex {\n display: inline-flex !important; } }\n\n@media (min-width: 992px) {\n .d-lg-none {\n display: none !important; }\n .d-lg-inline {\n display: inline !important; }\n .d-lg-inline-block {\n display: inline-block !important; }\n .d-lg-block {\n display: block !important; }\n .d-lg-table {\n display: table !important; }\n .d-lg-table-row {\n display: table-row !important; }\n .d-lg-table-cell {\n display: table-cell !important; }\n .d-lg-flex {\n display: flex !important; }\n .d-lg-inline-flex {\n display: inline-flex !important; } }\n\n@media (min-width: 1200px) {\n .d-xl-none {\n display: none !important; }\n .d-xl-inline {\n display: inline !important; }\n .d-xl-inline-block {\n display: inline-block !important; }\n .d-xl-block {\n display: block !important; }\n .d-xl-table {\n display: table !important; }\n .d-xl-table-row {\n display: table-row !important; }\n .d-xl-table-cell {\n display: table-cell !important; }\n .d-xl-flex {\n display: flex !important; }\n .d-xl-inline-flex {\n display: inline-flex !important; } }\n\n@media print {\n .d-print-none {\n display: none !important; }\n .d-print-inline {\n display: inline !important; }\n .d-print-inline-block {\n display: inline-block !important; }\n .d-print-block {\n display: block !important; }\n .d-print-table {\n display: table !important; }\n .d-print-table-row {\n display: table-row !important; }\n .d-print-table-cell {\n display: table-cell !important; }\n .d-print-flex {\n display: flex !important; }\n .d-print-inline-flex {\n display: inline-flex !important; } }\n\n.embed-responsive {\n position: relative;\n display: block;\n width: 100%;\n padding: 0;\n overflow: hidden; }\n .embed-responsive::before {\n display: block;\n content: \"\"; }\n .embed-responsive .embed-responsive-item,\n .embed-responsive iframe,\n .embed-responsive embed,\n .embed-responsive object,\n .embed-responsive video {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n width: 100%;\n height: 100%;\n border: 0; }\n\n.embed-responsive-21by9::before {\n padding-top: 42.85714%; }\n\n.embed-responsive-16by9::before {\n padding-top: 56.25%; }\n\n.embed-responsive-4by3::before {\n padding-top: 75%; }\n\n.embed-responsive-1by1::before {\n padding-top: 100%; }\n\n.embed-responsive-21by9::before {\n padding-top: 42.85714%; }\n\n.embed-responsive-16by9::before {\n padding-top: 56.25%; }\n\n.embed-responsive-4by3::before {\n padding-top: 75%; }\n\n.embed-responsive-1by1::before {\n padding-top: 100%; }\n\n.flex-row {\n flex-direction: row !important; }\n\n.flex-column {\n flex-direction: column !important; }\n\n.flex-row-reverse {\n flex-direction: row-reverse !important; }\n\n.flex-column-reverse {\n flex-direction: column-reverse !important; }\n\n.flex-wrap {\n flex-wrap: wrap !important; }\n\n.flex-nowrap {\n flex-wrap: nowrap !important; }\n\n.flex-wrap-reverse {\n flex-wrap: wrap-reverse !important; }\n\n.flex-fill {\n flex: 1 1 auto !important; }\n\n.flex-grow-0 {\n flex-grow: 0 !important; }\n\n.flex-grow-1 {\n flex-grow: 1 !important; }\n\n.flex-shrink-0 {\n flex-shrink: 0 !important; }\n\n.flex-shrink-1 {\n flex-shrink: 1 !important; }\n\n.justify-content-start {\n justify-content: flex-start !important; }\n\n.justify-content-end {\n justify-content: flex-end !important; }\n\n.justify-content-center {\n justify-content: center !important; }\n\n.justify-content-between, .page-header {\n justify-content: space-between !important; }\n\n.justify-content-around {\n justify-content: space-around !important; }\n\n.align-items-start {\n align-items: flex-start !important; }\n\n.align-items-end {\n align-items: flex-end !important; }\n\n.align-items-center, .page-header, .loader-demo-box, .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-item {\n align-items: center !important; }\n\n.align-items-baseline {\n align-items: baseline !important; }\n\n.align-items-stretch {\n align-items: stretch !important; }\n\n.align-content-start {\n align-content: flex-start !important; }\n\n.align-content-end {\n align-content: flex-end !important; }\n\n.align-content-center {\n align-content: center !important; }\n\n.align-content-between {\n align-content: space-between !important; }\n\n.align-content-around {\n align-content: space-around !important; }\n\n.align-content-stretch {\n align-content: stretch !important; }\n\n.align-self-auto {\n align-self: auto !important; }\n\n.align-self-start {\n align-self: flex-start !important; }\n\n.align-self-end {\n align-self: flex-end !important; }\n\n.align-self-center {\n align-self: center !important; }\n\n.align-self-baseline {\n align-self: baseline !important; }\n\n.align-self-stretch {\n align-self: stretch !important; }\n\n@media (min-width: 576px) {\n .flex-sm-row {\n flex-direction: row !important; }\n .flex-sm-column {\n flex-direction: column !important; }\n .flex-sm-row-reverse {\n flex-direction: row-reverse !important; }\n .flex-sm-column-reverse {\n flex-direction: column-reverse !important; }\n .flex-sm-wrap {\n flex-wrap: wrap !important; }\n .flex-sm-nowrap {\n flex-wrap: nowrap !important; }\n .flex-sm-wrap-reverse {\n flex-wrap: wrap-reverse !important; }\n .flex-sm-fill {\n flex: 1 1 auto !important; }\n .flex-sm-grow-0 {\n flex-grow: 0 !important; }\n .flex-sm-grow-1 {\n flex-grow: 1 !important; }\n .flex-sm-shrink-0 {\n flex-shrink: 0 !important; }\n .flex-sm-shrink-1 {\n flex-shrink: 1 !important; }\n .justify-content-sm-start {\n justify-content: flex-start !important; }\n .justify-content-sm-end {\n justify-content: flex-end !important; }\n .justify-content-sm-center {\n justify-content: center !important; }\n .justify-content-sm-between {\n justify-content: space-between !important; }\n .justify-content-sm-around {\n justify-content: space-around !important; }\n .align-items-sm-start {\n align-items: flex-start !important; }\n .align-items-sm-end {\n align-items: flex-end !important; }\n .align-items-sm-center {\n align-items: center !important; }\n .align-items-sm-baseline {\n align-items: baseline !important; }\n .align-items-sm-stretch {\n align-items: stretch !important; }\n .align-content-sm-start {\n align-content: flex-start !important; }\n .align-content-sm-end {\n align-content: flex-end !important; }\n .align-content-sm-center {\n align-content: center !important; }\n .align-content-sm-between {\n align-content: space-between !important; }\n .align-content-sm-around {\n align-content: space-around !important; }\n .align-content-sm-stretch {\n align-content: stretch !important; }\n .align-self-sm-auto {\n align-self: auto !important; }\n .align-self-sm-start {\n align-self: flex-start !important; }\n .align-self-sm-end {\n align-self: flex-end !important; }\n .align-self-sm-center {\n align-self: center !important; }\n .align-self-sm-baseline {\n align-self: baseline !important; }\n .align-self-sm-stretch {\n align-self: stretch !important; } }\n\n@media (min-width: 768px) {\n .flex-md-row {\n flex-direction: row !important; }\n .flex-md-column {\n flex-direction: column !important; }\n .flex-md-row-reverse {\n flex-direction: row-reverse !important; }\n .flex-md-column-reverse {\n flex-direction: column-reverse !important; }\n .flex-md-wrap {\n flex-wrap: wrap !important; }\n .flex-md-nowrap {\n flex-wrap: nowrap !important; }\n .flex-md-wrap-reverse {\n flex-wrap: wrap-reverse !important; }\n .flex-md-fill {\n flex: 1 1 auto !important; }\n .flex-md-grow-0 {\n flex-grow: 0 !important; }\n .flex-md-grow-1 {\n flex-grow: 1 !important; }\n .flex-md-shrink-0 {\n flex-shrink: 0 !important; }\n .flex-md-shrink-1 {\n flex-shrink: 1 !important; }\n .justify-content-md-start {\n justify-content: flex-start !important; }\n .justify-content-md-end {\n justify-content: flex-end !important; }\n .justify-content-md-center {\n justify-content: center !important; }\n .justify-content-md-between {\n justify-content: space-between !important; }\n .justify-content-md-around {\n justify-content: space-around !important; }\n .align-items-md-start {\n align-items: flex-start !important; }\n .align-items-md-end {\n align-items: flex-end !important; }\n .align-items-md-center {\n align-items: center !important; }\n .align-items-md-baseline {\n align-items: baseline !important; }\n .align-items-md-stretch {\n align-items: stretch !important; }\n .align-content-md-start {\n align-content: flex-start !important; }\n .align-content-md-end {\n align-content: flex-end !important; }\n .align-content-md-center {\n align-content: center !important; }\n .align-content-md-between {\n align-content: space-between !important; }\n .align-content-md-around {\n align-content: space-around !important; }\n .align-content-md-stretch {\n align-content: stretch !important; }\n .align-self-md-auto {\n align-self: auto !important; }\n .align-self-md-start {\n align-self: flex-start !important; }\n .align-self-md-end {\n align-self: flex-end !important; }\n .align-self-md-center {\n align-self: center !important; }\n .align-self-md-baseline {\n align-self: baseline !important; }\n .align-self-md-stretch {\n align-self: stretch !important; } }\n\n@media (min-width: 992px) {\n .flex-lg-row {\n flex-direction: row !important; }\n .flex-lg-column {\n flex-direction: column !important; }\n .flex-lg-row-reverse {\n flex-direction: row-reverse !important; }\n .flex-lg-column-reverse {\n flex-direction: column-reverse !important; }\n .flex-lg-wrap {\n flex-wrap: wrap !important; }\n .flex-lg-nowrap {\n flex-wrap: nowrap !important; }\n .flex-lg-wrap-reverse {\n flex-wrap: wrap-reverse !important; }\n .flex-lg-fill {\n flex: 1 1 auto !important; }\n .flex-lg-grow-0 {\n flex-grow: 0 !important; }\n .flex-lg-grow-1 {\n flex-grow: 1 !important; }\n .flex-lg-shrink-0 {\n flex-shrink: 0 !important; }\n .flex-lg-shrink-1 {\n flex-shrink: 1 !important; }\n .justify-content-lg-start {\n justify-content: flex-start !important; }\n .justify-content-lg-end {\n justify-content: flex-end !important; }\n .justify-content-lg-center {\n justify-content: center !important; }\n .justify-content-lg-between {\n justify-content: space-between !important; }\n .justify-content-lg-around {\n justify-content: space-around !important; }\n .align-items-lg-start {\n align-items: flex-start !important; }\n .align-items-lg-end {\n align-items: flex-end !important; }\n .align-items-lg-center {\n align-items: center !important; }\n .align-items-lg-baseline {\n align-items: baseline !important; }\n .align-items-lg-stretch {\n align-items: stretch !important; }\n .align-content-lg-start {\n align-content: flex-start !important; }\n .align-content-lg-end {\n align-content: flex-end !important; }\n .align-content-lg-center {\n align-content: center !important; }\n .align-content-lg-between {\n align-content: space-between !important; }\n .align-content-lg-around {\n align-content: space-around !important; }\n .align-content-lg-stretch {\n align-content: stretch !important; }\n .align-self-lg-auto {\n align-self: auto !important; }\n .align-self-lg-start {\n align-self: flex-start !important; }\n .align-self-lg-end {\n align-self: flex-end !important; }\n .align-self-lg-center {\n align-self: center !important; }\n .align-self-lg-baseline {\n align-self: baseline !important; }\n .align-self-lg-stretch {\n align-self: stretch !important; } }\n\n@media (min-width: 1200px) {\n .flex-xl-row {\n flex-direction: row !important; }\n .flex-xl-column {\n flex-direction: column !important; }\n .flex-xl-row-reverse {\n flex-direction: row-reverse !important; }\n .flex-xl-column-reverse {\n flex-direction: column-reverse !important; }\n .flex-xl-wrap {\n flex-wrap: wrap !important; }\n .flex-xl-nowrap {\n flex-wrap: nowrap !important; }\n .flex-xl-wrap-reverse {\n flex-wrap: wrap-reverse !important; }\n .flex-xl-fill {\n flex: 1 1 auto !important; }\n .flex-xl-grow-0 {\n flex-grow: 0 !important; }\n .flex-xl-grow-1 {\n flex-grow: 1 !important; }\n .flex-xl-shrink-0 {\n flex-shrink: 0 !important; }\n .flex-xl-shrink-1 {\n flex-shrink: 1 !important; }\n .justify-content-xl-start {\n justify-content: flex-start !important; }\n .justify-content-xl-end {\n justify-content: flex-end !important; }\n .justify-content-xl-center {\n justify-content: center !important; }\n .justify-content-xl-between {\n justify-content: space-between !important; }\n .justify-content-xl-around {\n justify-content: space-around !important; }\n .align-items-xl-start {\n align-items: flex-start !important; }\n .align-items-xl-end {\n align-items: flex-end !important; }\n .align-items-xl-center {\n align-items: center !important; }\n .align-items-xl-baseline {\n align-items: baseline !important; }\n .align-items-xl-stretch {\n align-items: stretch !important; }\n .align-content-xl-start {\n align-content: flex-start !important; }\n .align-content-xl-end {\n align-content: flex-end !important; }\n .align-content-xl-center {\n align-content: center !important; }\n .align-content-xl-between {\n align-content: space-between !important; }\n .align-content-xl-around {\n align-content: space-around !important; }\n .align-content-xl-stretch {\n align-content: stretch !important; }\n .align-self-xl-auto {\n align-self: auto !important; }\n .align-self-xl-start {\n align-self: flex-start !important; }\n .align-self-xl-end {\n align-self: flex-end !important; }\n .align-self-xl-center {\n align-self: center !important; }\n .align-self-xl-baseline {\n align-self: baseline !important; }\n .align-self-xl-stretch {\n align-self: stretch !important; } }\n\n.float-left {\n float: left !important; }\n\n.float-right {\n float: right !important; }\n\n.float-none {\n float: none !important; }\n\n@media (min-width: 576px) {\n .float-sm-left {\n float: left !important; }\n .float-sm-right {\n float: right !important; }\n .float-sm-none {\n float: none !important; } }\n\n@media (min-width: 768px) {\n .float-md-left {\n float: left !important; }\n .float-md-right {\n float: right !important; }\n .float-md-none {\n float: none !important; } }\n\n@media (min-width: 992px) {\n .float-lg-left {\n float: left !important; }\n .float-lg-right {\n float: right !important; }\n .float-lg-none {\n float: none !important; } }\n\n@media (min-width: 1200px) {\n .float-xl-left {\n float: left !important; }\n .float-xl-right {\n float: right !important; }\n .float-xl-none {\n float: none !important; } }\n\n.user-select-all {\n user-select: all !important; }\n\n.user-select-auto {\n user-select: auto !important; }\n\n.user-select-none {\n user-select: none !important; }\n\n.overflow-auto {\n overflow: auto !important; }\n\n.overflow-hidden {\n overflow: hidden !important; }\n\n.position-static {\n position: static !important; }\n\n.position-relative {\n position: relative !important; }\n\n.position-absolute {\n position: absolute !important; }\n\n.position-fixed {\n position: fixed !important; }\n\n.position-sticky {\n position: sticky !important; }\n\n.fixed-top {\n position: fixed;\n top: 0;\n right: 0;\n left: 0;\n z-index: 1030; }\n\n.fixed-bottom {\n position: fixed;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1030; }\n\n@supports (position: sticky) {\n .sticky-top {\n position: sticky;\n top: 0;\n z-index: 1020; } }\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border: 0; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n overflow: visible;\n clip: auto;\n white-space: normal; }\n\n.shadow-sm {\n box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }\n\n.shadow {\n box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }\n\n.shadow-lg {\n box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }\n\n.shadow-none {\n box-shadow: none !important; }\n\n.w-25 {\n width: 25% !important; }\n\n.w-50 {\n width: 50% !important; }\n\n.w-75 {\n width: 75% !important; }\n\n.w-100 {\n width: 100% !important; }\n\n.w-auto {\n width: auto !important; }\n\n.h-25 {\n height: 25% !important; }\n\n.h-50 {\n height: 50% !important; }\n\n.h-75 {\n height: 75% !important; }\n\n.h-100 {\n height: 100% !important; }\n\n.h-auto {\n height: auto !important; }\n\n.mw-100 {\n max-width: 100% !important; }\n\n.mh-100 {\n max-height: 100% !important; }\n\n.min-vw-100 {\n min-width: 100vw !important; }\n\n.min-vh-100 {\n min-height: 100vh !important; }\n\n.vw-100 {\n width: 100vw !important; }\n\n.vh-100 {\n height: 100vh !important; }\n\n.m-0 {\n margin: 0 !important; }\n\n.mt-0, .demo-modal .modal-dialog,\n.my-0 {\n margin-top: 0 !important; }\n\n.mr-0,\n.mx-0 {\n margin-right: 0 !important; }\n\n.mb-0,\n.my-0 {\n margin-bottom: 0 !important; }\n\n.ml-0, .rtl .preview-list .preview-item .preview-thumbnail .preview-icon i,\n.mx-0 {\n margin-left: 0 !important; }\n\n.m-1 {\n margin: 0.25rem !important; }\n\n.mt-1,\n.my-1 {\n margin-top: 0.25rem !important; }\n\n.mr-1,\n.mx-1 {\n margin-right: 0.25rem !important; }\n\n.mb-1,\n.my-1 {\n margin-bottom: 0.25rem !important; }\n\n.ml-1,\n.mx-1 {\n margin-left: 0.25rem !important; }\n\n.m-2 {\n margin: 0.5rem !important; }\n\n.mt-2, .template-demo > .btn-group,\n.template-demo > .btn-group-vertical, .template-demo .circle-progress,\n.my-2 {\n margin-top: 0.5rem !important; }\n\n.mr-2, .template-demo > .btn-group,\n.template-demo > .btn-group-vertical, .template-demo > .dropdown,\n.mx-2 {\n margin-right: 0.5rem !important; }\n\n.mb-2,\n.my-2 {\n margin-bottom: 0.5rem !important; }\n\n.ml-2, .btn-toolbar .btn-group + .btn-group,\n.mx-2 {\n margin-left: 0.5rem !important; }\n\n.m-3 {\n margin: 1rem !important; }\n\n.mt-3, .template-demo > .btn, .template-demo > .btn-toolbar,\n.my-3 {\n margin-top: 1rem !important; }\n\n.mr-3, .template-demo > .btn, .template-demo > .btn-toolbar,\n.mx-3 {\n margin-right: 1rem !important; }\n\n.mb-3, .template-demo .circle-progress-block,\n.my-3 {\n margin-bottom: 1rem !important; }\n\n.ml-3,\n.mx-3 {\n margin-left: 1rem !important; }\n\n.m-4 {\n margin: 1.5rem !important; }\n\n.mt-4,\n.my-4 {\n margin-top: 1.5rem !important; }\n\n.mr-4,\n.mx-4 {\n margin-right: 1.5rem !important; }\n\n.mb-4,\n.my-4 {\n margin-bottom: 1.5rem !important; }\n\n.ml-4,\n.mx-4 {\n margin-left: 1.5rem !important; }\n\n.m-5 {\n margin: 3rem !important; }\n\n.mt-5,\n.my-5 {\n margin-top: 3rem !important; }\n\n.mr-5,\n.mx-5 {\n margin-right: 3rem !important; }\n\n.mb-5,\n.my-5 {\n margin-bottom: 3rem !important; }\n\n.ml-5,\n.mx-5 {\n margin-left: 3rem !important; }\n\n.p-0 {\n padding: 0 !important; }\n\n.pt-0,\n.py-0 {\n padding-top: 0 !important; }\n\n.pr-0,\n.px-0 {\n padding-right: 0 !important; }\n\n.pb-0,\n.py-0 {\n padding-bottom: 0 !important; }\n\n.pl-0,\n.px-0 {\n padding-left: 0 !important; }\n\n.p-1 {\n padding: 0.25rem !important; }\n\n.pt-1,\n.py-1 {\n padding-top: 0.25rem !important; }\n\n.pr-1,\n.px-1 {\n padding-right: 0.25rem !important; }\n\n.pb-1,\n.py-1 {\n padding-bottom: 0.25rem !important; }\n\n.pl-1,\n.px-1 {\n padding-left: 0.25rem !important; }\n\n.p-2 {\n padding: 0.5rem !important; }\n\n.pt-2,\n.py-2 {\n padding-top: 0.5rem !important; }\n\n.pr-2,\n.px-2,\n.template-demo .circle-progress-block {\n padding-right: 0.5rem !important; }\n\n.pb-2,\n.py-2 {\n padding-bottom: 0.5rem !important; }\n\n.pl-2,\n.px-2,\n.template-demo .circle-progress-block {\n padding-left: 0.5rem !important; }\n\n.p-3 {\n padding: 1rem !important; }\n\n.pt-3,\n.py-3 {\n padding-top: 1rem !important; }\n\n.pr-3,\n.px-3 {\n padding-right: 1rem !important; }\n\n.pb-3,\n.py-3 {\n padding-bottom: 1rem !important; }\n\n.pl-3,\n.px-3 {\n padding-left: 1rem !important; }\n\n.p-4 {\n padding: 1.5rem !important; }\n\n.pt-4,\n.py-4 {\n padding-top: 1.5rem !important; }\n\n.pr-4,\n.px-4 {\n padding-right: 1.5rem !important; }\n\n.pb-4,\n.py-4 {\n padding-bottom: 1.5rem !important; }\n\n.pl-4,\n.px-4 {\n padding-left: 1.5rem !important; }\n\n.p-5 {\n padding: 3rem !important; }\n\n.pt-5,\n.py-5 {\n padding-top: 3rem !important; }\n\n.pr-5,\n.px-5 {\n padding-right: 3rem !important; }\n\n.pb-5,\n.py-5 {\n padding-bottom: 3rem !important; }\n\n.pl-5,\n.px-5 {\n padding-left: 3rem !important; }\n\n.m-n1 {\n margin: -0.25rem !important; }\n\n.mt-n1,\n.my-n1 {\n margin-top: -0.25rem !important; }\n\n.mr-n1,\n.mx-n1 {\n margin-right: -0.25rem !important; }\n\n.mb-n1,\n.my-n1 {\n margin-bottom: -0.25rem !important; }\n\n.ml-n1,\n.mx-n1 {\n margin-left: -0.25rem !important; }\n\n.m-n2 {\n margin: -0.5rem !important; }\n\n.mt-n2,\n.my-n2 {\n margin-top: -0.5rem !important; }\n\n.mr-n2,\n.mx-n2 {\n margin-right: -0.5rem !important; }\n\n.mb-n2,\n.my-n2 {\n margin-bottom: -0.5rem !important; }\n\n.ml-n2,\n.mx-n2 {\n margin-left: -0.5rem !important; }\n\n.m-n3 {\n margin: -1rem !important; }\n\n.mt-n3,\n.my-n3 {\n margin-top: -1rem !important; }\n\n.mr-n3,\n.mx-n3 {\n margin-right: -1rem !important; }\n\n.mb-n3,\n.my-n3 {\n margin-bottom: -1rem !important; }\n\n.ml-n3,\n.mx-n3 {\n margin-left: -1rem !important; }\n\n.m-n4 {\n margin: -1.5rem !important; }\n\n.mt-n4,\n.my-n4 {\n margin-top: -1.5rem !important; }\n\n.mr-n4,\n.mx-n4 {\n margin-right: -1.5rem !important; }\n\n.mb-n4,\n.my-n4 {\n margin-bottom: -1.5rem !important; }\n\n.ml-n4,\n.mx-n4 {\n margin-left: -1.5rem !important; }\n\n.m-n5 {\n margin: -3rem !important; }\n\n.mt-n5,\n.my-n5 {\n margin-top: -3rem !important; }\n\n.mr-n5,\n.mx-n5 {\n margin-right: -3rem !important; }\n\n.mb-n5,\n.my-n5 {\n margin-bottom: -3rem !important; }\n\n.ml-n5,\n.mx-n5 {\n margin-left: -3rem !important; }\n\n.m-auto {\n margin: auto !important; }\n\n.mt-auto,\n.my-auto {\n margin-top: auto !important; }\n\n.mr-auto,\n.mx-auto {\n margin-right: auto !important; }\n\n.mb-auto,\n.my-auto {\n margin-bottom: auto !important; }\n\n.ml-auto,\n.mx-auto {\n margin-left: auto !important; }\n\n@media (min-width: 576px) {\n .m-sm-0 {\n margin: 0 !important; }\n .mt-sm-0,\n .my-sm-0 {\n margin-top: 0 !important; }\n .mr-sm-0,\n .mx-sm-0 {\n margin-right: 0 !important; }\n .mb-sm-0,\n .my-sm-0 {\n margin-bottom: 0 !important; }\n .ml-sm-0,\n .mx-sm-0 {\n margin-left: 0 !important; }\n .m-sm-1 {\n margin: 0.25rem !important; }\n .mt-sm-1,\n .my-sm-1 {\n margin-top: 0.25rem !important; }\n .mr-sm-1,\n .mx-sm-1 {\n margin-right: 0.25rem !important; }\n .mb-sm-1,\n .my-sm-1 {\n margin-bottom: 0.25rem !important; }\n .ml-sm-1,\n .mx-sm-1 {\n margin-left: 0.25rem !important; }\n .m-sm-2 {\n margin: 0.5rem !important; }\n .mt-sm-2,\n .my-sm-2 {\n margin-top: 0.5rem !important; }\n .mr-sm-2,\n .mx-sm-2 {\n margin-right: 0.5rem !important; }\n .mb-sm-2,\n .my-sm-2 {\n margin-bottom: 0.5rem !important; }\n .ml-sm-2,\n .mx-sm-2 {\n margin-left: 0.5rem !important; }\n .m-sm-3 {\n margin: 1rem !important; }\n .mt-sm-3,\n .my-sm-3 {\n margin-top: 1rem !important; }\n .mr-sm-3,\n .mx-sm-3 {\n margin-right: 1rem !important; }\n .mb-sm-3,\n .my-sm-3 {\n margin-bottom: 1rem !important; }\n .ml-sm-3,\n .mx-sm-3 {\n margin-left: 1rem !important; }\n .m-sm-4 {\n margin: 1.5rem !important; }\n .mt-sm-4,\n .my-sm-4 {\n margin-top: 1.5rem !important; }\n .mr-sm-4,\n .mx-sm-4 {\n margin-right: 1.5rem !important; }\n .mb-sm-4,\n .my-sm-4 {\n margin-bottom: 1.5rem !important; }\n .ml-sm-4,\n .mx-sm-4 {\n margin-left: 1.5rem !important; }\n .m-sm-5 {\n margin: 3rem !important; }\n .mt-sm-5,\n .my-sm-5 {\n margin-top: 3rem !important; }\n .mr-sm-5,\n .mx-sm-5 {\n margin-right: 3rem !important; }\n .mb-sm-5,\n .my-sm-5 {\n margin-bottom: 3rem !important; }\n .ml-sm-5,\n .mx-sm-5 {\n margin-left: 3rem !important; }\n .p-sm-0 {\n padding: 0 !important; }\n .pt-sm-0,\n .py-sm-0 {\n padding-top: 0 !important; }\n .pr-sm-0,\n .px-sm-0 {\n padding-right: 0 !important; }\n .pb-sm-0,\n .py-sm-0 {\n padding-bottom: 0 !important; }\n .pl-sm-0,\n .px-sm-0 {\n padding-left: 0 !important; }\n .p-sm-1 {\n padding: 0.25rem !important; }\n .pt-sm-1,\n .py-sm-1 {\n padding-top: 0.25rem !important; }\n .pr-sm-1,\n .px-sm-1 {\n padding-right: 0.25rem !important; }\n .pb-sm-1,\n .py-sm-1 {\n padding-bottom: 0.25rem !important; }\n .pl-sm-1,\n .px-sm-1 {\n padding-left: 0.25rem !important; }\n .p-sm-2 {\n padding: 0.5rem !important; }\n .pt-sm-2,\n .py-sm-2 {\n padding-top: 0.5rem !important; }\n .pr-sm-2,\n .px-sm-2 {\n padding-right: 0.5rem !important; }\n .pb-sm-2,\n .py-sm-2 {\n padding-bottom: 0.5rem !important; }\n .pl-sm-2,\n .px-sm-2 {\n padding-left: 0.5rem !important; }\n .p-sm-3 {\n padding: 1rem !important; }\n .pt-sm-3,\n .py-sm-3 {\n padding-top: 1rem !important; }\n .pr-sm-3,\n .px-sm-3 {\n padding-right: 1rem !important; }\n .pb-sm-3,\n .py-sm-3 {\n padding-bottom: 1rem !important; }\n .pl-sm-3,\n .px-sm-3 {\n padding-left: 1rem !important; }\n .p-sm-4 {\n padding: 1.5rem !important; }\n .pt-sm-4,\n .py-sm-4 {\n padding-top: 1.5rem !important; }\n .pr-sm-4,\n .px-sm-4 {\n padding-right: 1.5rem !important; }\n .pb-sm-4,\n .py-sm-4 {\n padding-bottom: 1.5rem !important; }\n .pl-sm-4,\n .px-sm-4 {\n padding-left: 1.5rem !important; }\n .p-sm-5 {\n padding: 3rem !important; }\n .pt-sm-5,\n .py-sm-5 {\n padding-top: 3rem !important; }\n .pr-sm-5,\n .px-sm-5 {\n padding-right: 3rem !important; }\n .pb-sm-5,\n .py-sm-5 {\n padding-bottom: 3rem !important; }\n .pl-sm-5,\n .px-sm-5 {\n padding-left: 3rem !important; }\n .m-sm-n1 {\n margin: -0.25rem !important; }\n .mt-sm-n1,\n .my-sm-n1 {\n margin-top: -0.25rem !important; }\n .mr-sm-n1,\n .mx-sm-n1 {\n margin-right: -0.25rem !important; }\n .mb-sm-n1,\n .my-sm-n1 {\n margin-bottom: -0.25rem !important; }\n .ml-sm-n1,\n .mx-sm-n1 {\n margin-left: -0.25rem !important; }\n .m-sm-n2 {\n margin: -0.5rem !important; }\n .mt-sm-n2,\n .my-sm-n2 {\n margin-top: -0.5rem !important; }\n .mr-sm-n2,\n .mx-sm-n2 {\n margin-right: -0.5rem !important; }\n .mb-sm-n2,\n .my-sm-n2 {\n margin-bottom: -0.5rem !important; }\n .ml-sm-n2,\n .mx-sm-n2 {\n margin-left: -0.5rem !important; }\n .m-sm-n3 {\n margin: -1rem !important; }\n .mt-sm-n3,\n .my-sm-n3 {\n margin-top: -1rem !important; }\n .mr-sm-n3,\n .mx-sm-n3 {\n margin-right: -1rem !important; }\n .mb-sm-n3,\n .my-sm-n3 {\n margin-bottom: -1rem !important; }\n .ml-sm-n3,\n .mx-sm-n3 {\n margin-left: -1rem !important; }\n .m-sm-n4 {\n margin: -1.5rem !important; }\n .mt-sm-n4,\n .my-sm-n4 {\n margin-top: -1.5rem !important; }\n .mr-sm-n4,\n .mx-sm-n4 {\n margin-right: -1.5rem !important; }\n .mb-sm-n4,\n .my-sm-n4 {\n margin-bottom: -1.5rem !important; }\n .ml-sm-n4,\n .mx-sm-n4 {\n margin-left: -1.5rem !important; }\n .m-sm-n5 {\n margin: -3rem !important; }\n .mt-sm-n5,\n .my-sm-n5 {\n margin-top: -3rem !important; }\n .mr-sm-n5,\n .mx-sm-n5 {\n margin-right: -3rem !important; }\n .mb-sm-n5,\n .my-sm-n5 {\n margin-bottom: -3rem !important; }\n .ml-sm-n5,\n .mx-sm-n5 {\n margin-left: -3rem !important; }\n .m-sm-auto {\n margin: auto !important; }\n .mt-sm-auto,\n .my-sm-auto {\n margin-top: auto !important; }\n .mr-sm-auto,\n .mx-sm-auto {\n margin-right: auto !important; }\n .mb-sm-auto,\n .my-sm-auto {\n margin-bottom: auto !important; }\n .ml-sm-auto,\n .mx-sm-auto {\n margin-left: auto !important; } }\n\n@media (min-width: 768px) {\n .m-md-0 {\n margin: 0 !important; }\n .mt-md-0,\n .my-md-0 {\n margin-top: 0 !important; }\n .mr-md-0,\n .mx-md-0 {\n margin-right: 0 !important; }\n .mb-md-0,\n .my-md-0 {\n margin-bottom: 0 !important; }\n .ml-md-0,\n .mx-md-0 {\n margin-left: 0 !important; }\n .m-md-1 {\n margin: 0.25rem !important; }\n .mt-md-1,\n .my-md-1 {\n margin-top: 0.25rem !important; }\n .mr-md-1,\n .mx-md-1 {\n margin-right: 0.25rem !important; }\n .mb-md-1,\n .my-md-1 {\n margin-bottom: 0.25rem !important; }\n .ml-md-1,\n .mx-md-1 {\n margin-left: 0.25rem !important; }\n .m-md-2 {\n margin: 0.5rem !important; }\n .mt-md-2,\n .my-md-2 {\n margin-top: 0.5rem !important; }\n .mr-md-2,\n .mx-md-2 {\n margin-right: 0.5rem !important; }\n .mb-md-2,\n .my-md-2 {\n margin-bottom: 0.5rem !important; }\n .ml-md-2,\n .mx-md-2 {\n margin-left: 0.5rem !important; }\n .m-md-3 {\n margin: 1rem !important; }\n .mt-md-3,\n .my-md-3 {\n margin-top: 1rem !important; }\n .mr-md-3,\n .mx-md-3 {\n margin-right: 1rem !important; }\n .mb-md-3,\n .my-md-3 {\n margin-bottom: 1rem !important; }\n .ml-md-3,\n .mx-md-3 {\n margin-left: 1rem !important; }\n .m-md-4 {\n margin: 1.5rem !important; }\n .mt-md-4,\n .my-md-4 {\n margin-top: 1.5rem !important; }\n .mr-md-4,\n .mx-md-4 {\n margin-right: 1.5rem !important; }\n .mb-md-4,\n .my-md-4 {\n margin-bottom: 1.5rem !important; }\n .ml-md-4,\n .mx-md-4 {\n margin-left: 1.5rem !important; }\n .m-md-5 {\n margin: 3rem !important; }\n .mt-md-5,\n .my-md-5 {\n margin-top: 3rem !important; }\n .mr-md-5,\n .mx-md-5 {\n margin-right: 3rem !important; }\n .mb-md-5,\n .my-md-5 {\n margin-bottom: 3rem !important; }\n .ml-md-5,\n .mx-md-5 {\n margin-left: 3rem !important; }\n .p-md-0 {\n padding: 0 !important; }\n .pt-md-0,\n .py-md-0 {\n padding-top: 0 !important; }\n .pr-md-0,\n .px-md-0 {\n padding-right: 0 !important; }\n .pb-md-0,\n .py-md-0 {\n padding-bottom: 0 !important; }\n .pl-md-0,\n .px-md-0 {\n padding-left: 0 !important; }\n .p-md-1 {\n padding: 0.25rem !important; }\n .pt-md-1,\n .py-md-1 {\n padding-top: 0.25rem !important; }\n .pr-md-1,\n .px-md-1 {\n padding-right: 0.25rem !important; }\n .pb-md-1,\n .py-md-1 {\n padding-bottom: 0.25rem !important; }\n .pl-md-1,\n .px-md-1 {\n padding-left: 0.25rem !important; }\n .p-md-2 {\n padding: 0.5rem !important; }\n .pt-md-2,\n .py-md-2 {\n padding-top: 0.5rem !important; }\n .pr-md-2,\n .px-md-2 {\n padding-right: 0.5rem !important; }\n .pb-md-2,\n .py-md-2 {\n padding-bottom: 0.5rem !important; }\n .pl-md-2,\n .px-md-2 {\n padding-left: 0.5rem !important; }\n .p-md-3 {\n padding: 1rem !important; }\n .pt-md-3,\n .py-md-3 {\n padding-top: 1rem !important; }\n .pr-md-3,\n .px-md-3 {\n padding-right: 1rem !important; }\n .pb-md-3,\n .py-md-3 {\n padding-bottom: 1rem !important; }\n .pl-md-3,\n .px-md-3 {\n padding-left: 1rem !important; }\n .p-md-4 {\n padding: 1.5rem !important; }\n .pt-md-4,\n .py-md-4 {\n padding-top: 1.5rem !important; }\n .pr-md-4,\n .px-md-4 {\n padding-right: 1.5rem !important; }\n .pb-md-4,\n .py-md-4 {\n padding-bottom: 1.5rem !important; }\n .pl-md-4,\n .px-md-4 {\n padding-left: 1.5rem !important; }\n .p-md-5 {\n padding: 3rem !important; }\n .pt-md-5,\n .py-md-5 {\n padding-top: 3rem !important; }\n .pr-md-5,\n .px-md-5 {\n padding-right: 3rem !important; }\n .pb-md-5,\n .py-md-5 {\n padding-bottom: 3rem !important; }\n .pl-md-5,\n .px-md-5 {\n padding-left: 3rem !important; }\n .m-md-n1 {\n margin: -0.25rem !important; }\n .mt-md-n1,\n .my-md-n1 {\n margin-top: -0.25rem !important; }\n .mr-md-n1,\n .mx-md-n1 {\n margin-right: -0.25rem !important; }\n .mb-md-n1,\n .my-md-n1 {\n margin-bottom: -0.25rem !important; }\n .ml-md-n1,\n .mx-md-n1 {\n margin-left: -0.25rem !important; }\n .m-md-n2 {\n margin: -0.5rem !important; }\n .mt-md-n2,\n .my-md-n2 {\n margin-top: -0.5rem !important; }\n .mr-md-n2,\n .mx-md-n2 {\n margin-right: -0.5rem !important; }\n .mb-md-n2,\n .my-md-n2 {\n margin-bottom: -0.5rem !important; }\n .ml-md-n2,\n .mx-md-n2 {\n margin-left: -0.5rem !important; }\n .m-md-n3 {\n margin: -1rem !important; }\n .mt-md-n3,\n .my-md-n3 {\n margin-top: -1rem !important; }\n .mr-md-n3,\n .mx-md-n3 {\n margin-right: -1rem !important; }\n .mb-md-n3,\n .my-md-n3 {\n margin-bottom: -1rem !important; }\n .ml-md-n3,\n .mx-md-n3 {\n margin-left: -1rem !important; }\n .m-md-n4 {\n margin: -1.5rem !important; }\n .mt-md-n4,\n .my-md-n4 {\n margin-top: -1.5rem !important; }\n .mr-md-n4,\n .mx-md-n4 {\n margin-right: -1.5rem !important; }\n .mb-md-n4,\n .my-md-n4 {\n margin-bottom: -1.5rem !important; }\n .ml-md-n4,\n .mx-md-n4 {\n margin-left: -1.5rem !important; }\n .m-md-n5 {\n margin: -3rem !important; }\n .mt-md-n5,\n .my-md-n5 {\n margin-top: -3rem !important; }\n .mr-md-n5,\n .mx-md-n5 {\n margin-right: -3rem !important; }\n .mb-md-n5,\n .my-md-n5 {\n margin-bottom: -3rem !important; }\n .ml-md-n5,\n .mx-md-n5 {\n margin-left: -3rem !important; }\n .m-md-auto {\n margin: auto !important; }\n .mt-md-auto,\n .my-md-auto {\n margin-top: auto !important; }\n .mr-md-auto,\n .mx-md-auto {\n margin-right: auto !important; }\n .mb-md-auto,\n .my-md-auto {\n margin-bottom: auto !important; }\n .ml-md-auto,\n .mx-md-auto {\n margin-left: auto !important; } }\n\n@media (min-width: 992px) {\n .m-lg-0 {\n margin: 0 !important; }\n .mt-lg-0,\n .my-lg-0 {\n margin-top: 0 !important; }\n .mr-lg-0,\n .mx-lg-0 {\n margin-right: 0 !important; }\n .mb-lg-0,\n .my-lg-0 {\n margin-bottom: 0 !important; }\n .ml-lg-0,\n .mx-lg-0 {\n margin-left: 0 !important; }\n .m-lg-1 {\n margin: 0.25rem !important; }\n .mt-lg-1,\n .my-lg-1 {\n margin-top: 0.25rem !important; }\n .mr-lg-1,\n .mx-lg-1 {\n margin-right: 0.25rem !important; }\n .mb-lg-1,\n .my-lg-1 {\n margin-bottom: 0.25rem !important; }\n .ml-lg-1,\n .mx-lg-1 {\n margin-left: 0.25rem !important; }\n .m-lg-2 {\n margin: 0.5rem !important; }\n .mt-lg-2,\n .my-lg-2 {\n margin-top: 0.5rem !important; }\n .mr-lg-2,\n .mx-lg-2 {\n margin-right: 0.5rem !important; }\n .mb-lg-2,\n .my-lg-2 {\n margin-bottom: 0.5rem !important; }\n .ml-lg-2,\n .mx-lg-2 {\n margin-left: 0.5rem !important; }\n .m-lg-3 {\n margin: 1rem !important; }\n .mt-lg-3,\n .my-lg-3 {\n margin-top: 1rem !important; }\n .mr-lg-3,\n .mx-lg-3 {\n margin-right: 1rem !important; }\n .mb-lg-3,\n .my-lg-3 {\n margin-bottom: 1rem !important; }\n .ml-lg-3,\n .mx-lg-3 {\n margin-left: 1rem !important; }\n .m-lg-4 {\n margin: 1.5rem !important; }\n .mt-lg-4,\n .my-lg-4 {\n margin-top: 1.5rem !important; }\n .mr-lg-4,\n .mx-lg-4 {\n margin-right: 1.5rem !important; }\n .mb-lg-4,\n .my-lg-4 {\n margin-bottom: 1.5rem !important; }\n .ml-lg-4,\n .mx-lg-4 {\n margin-left: 1.5rem !important; }\n .m-lg-5 {\n margin: 3rem !important; }\n .mt-lg-5,\n .my-lg-5 {\n margin-top: 3rem !important; }\n .mr-lg-5,\n .mx-lg-5 {\n margin-right: 3rem !important; }\n .mb-lg-5,\n .my-lg-5 {\n margin-bottom: 3rem !important; }\n .ml-lg-5,\n .mx-lg-5 {\n margin-left: 3rem !important; }\n .p-lg-0 {\n padding: 0 !important; }\n .pt-lg-0,\n .py-lg-0 {\n padding-top: 0 !important; }\n .pr-lg-0,\n .px-lg-0 {\n padding-right: 0 !important; }\n .pb-lg-0,\n .py-lg-0 {\n padding-bottom: 0 !important; }\n .pl-lg-0,\n .px-lg-0 {\n padding-left: 0 !important; }\n .p-lg-1 {\n padding: 0.25rem !important; }\n .pt-lg-1,\n .py-lg-1 {\n padding-top: 0.25rem !important; }\n .pr-lg-1,\n .px-lg-1 {\n padding-right: 0.25rem !important; }\n .pb-lg-1,\n .py-lg-1 {\n padding-bottom: 0.25rem !important; }\n .pl-lg-1,\n .px-lg-1 {\n padding-left: 0.25rem !important; }\n .p-lg-2 {\n padding: 0.5rem !important; }\n .pt-lg-2,\n .py-lg-2 {\n padding-top: 0.5rem !important; }\n .pr-lg-2,\n .px-lg-2 {\n padding-right: 0.5rem !important; }\n .pb-lg-2,\n .py-lg-2 {\n padding-bottom: 0.5rem !important; }\n .pl-lg-2,\n .px-lg-2 {\n padding-left: 0.5rem !important; }\n .p-lg-3 {\n padding: 1rem !important; }\n .pt-lg-3,\n .py-lg-3 {\n padding-top: 1rem !important; }\n .pr-lg-3,\n .px-lg-3 {\n padding-right: 1rem !important; }\n .pb-lg-3,\n .py-lg-3 {\n padding-bottom: 1rem !important; }\n .pl-lg-3,\n .px-lg-3 {\n padding-left: 1rem !important; }\n .p-lg-4 {\n padding: 1.5rem !important; }\n .pt-lg-4,\n .py-lg-4 {\n padding-top: 1.5rem !important; }\n .pr-lg-4,\n .px-lg-4 {\n padding-right: 1.5rem !important; }\n .pb-lg-4,\n .py-lg-4 {\n padding-bottom: 1.5rem !important; }\n .pl-lg-4,\n .px-lg-4 {\n padding-left: 1.5rem !important; }\n .p-lg-5 {\n padding: 3rem !important; }\n .pt-lg-5,\n .py-lg-5 {\n padding-top: 3rem !important; }\n .pr-lg-5,\n .px-lg-5 {\n padding-right: 3rem !important; }\n .pb-lg-5,\n .py-lg-5 {\n padding-bottom: 3rem !important; }\n .pl-lg-5,\n .px-lg-5 {\n padding-left: 3rem !important; }\n .m-lg-n1 {\n margin: -0.25rem !important; }\n .mt-lg-n1,\n .my-lg-n1 {\n margin-top: -0.25rem !important; }\n .mr-lg-n1,\n .mx-lg-n1 {\n margin-right: -0.25rem !important; }\n .mb-lg-n1,\n .my-lg-n1 {\n margin-bottom: -0.25rem !important; }\n .ml-lg-n1,\n .mx-lg-n1 {\n margin-left: -0.25rem !important; }\n .m-lg-n2 {\n margin: -0.5rem !important; }\n .mt-lg-n2,\n .my-lg-n2 {\n margin-top: -0.5rem !important; }\n .mr-lg-n2,\n .mx-lg-n2 {\n margin-right: -0.5rem !important; }\n .mb-lg-n2,\n .my-lg-n2 {\n margin-bottom: -0.5rem !important; }\n .ml-lg-n2,\n .mx-lg-n2 {\n margin-left: -0.5rem !important; }\n .m-lg-n3 {\n margin: -1rem !important; }\n .mt-lg-n3,\n .my-lg-n3 {\n margin-top: -1rem !important; }\n .mr-lg-n3,\n .mx-lg-n3 {\n margin-right: -1rem !important; }\n .mb-lg-n3,\n .my-lg-n3 {\n margin-bottom: -1rem !important; }\n .ml-lg-n3,\n .mx-lg-n3 {\n margin-left: -1rem !important; }\n .m-lg-n4 {\n margin: -1.5rem !important; }\n .mt-lg-n4,\n .my-lg-n4 {\n margin-top: -1.5rem !important; }\n .mr-lg-n4,\n .mx-lg-n4 {\n margin-right: -1.5rem !important; }\n .mb-lg-n4,\n .my-lg-n4 {\n margin-bottom: -1.5rem !important; }\n .ml-lg-n4,\n .mx-lg-n4 {\n margin-left: -1.5rem !important; }\n .m-lg-n5 {\n margin: -3rem !important; }\n .mt-lg-n5,\n .my-lg-n5 {\n margin-top: -3rem !important; }\n .mr-lg-n5,\n .mx-lg-n5 {\n margin-right: -3rem !important; }\n .mb-lg-n5,\n .my-lg-n5 {\n margin-bottom: -3rem !important; }\n .ml-lg-n5,\n .mx-lg-n5 {\n margin-left: -3rem !important; }\n .m-lg-auto {\n margin: auto !important; }\n .mt-lg-auto,\n .my-lg-auto {\n margin-top: auto !important; }\n .mr-lg-auto,\n .mx-lg-auto {\n margin-right: auto !important; }\n .mb-lg-auto,\n .my-lg-auto {\n margin-bottom: auto !important; }\n .ml-lg-auto,\n .mx-lg-auto {\n margin-left: auto !important; } }\n\n@media (min-width: 1200px) {\n .m-xl-0 {\n margin: 0 !important; }\n .mt-xl-0,\n .my-xl-0 {\n margin-top: 0 !important; }\n .mr-xl-0,\n .mx-xl-0 {\n margin-right: 0 !important; }\n .mb-xl-0,\n .my-xl-0 {\n margin-bottom: 0 !important; }\n .ml-xl-0,\n .mx-xl-0 {\n margin-left: 0 !important; }\n .m-xl-1 {\n margin: 0.25rem !important; }\n .mt-xl-1,\n .my-xl-1 {\n margin-top: 0.25rem !important; }\n .mr-xl-1,\n .mx-xl-1 {\n margin-right: 0.25rem !important; }\n .mb-xl-1,\n .my-xl-1 {\n margin-bottom: 0.25rem !important; }\n .ml-xl-1,\n .mx-xl-1 {\n margin-left: 0.25rem !important; }\n .m-xl-2 {\n margin: 0.5rem !important; }\n .mt-xl-2,\n .my-xl-2 {\n margin-top: 0.5rem !important; }\n .mr-xl-2,\n .mx-xl-2 {\n margin-right: 0.5rem !important; }\n .mb-xl-2,\n .my-xl-2 {\n margin-bottom: 0.5rem !important; }\n .ml-xl-2,\n .mx-xl-2 {\n margin-left: 0.5rem !important; }\n .m-xl-3 {\n margin: 1rem !important; }\n .mt-xl-3,\n .my-xl-3 {\n margin-top: 1rem !important; }\n .mr-xl-3,\n .mx-xl-3 {\n margin-right: 1rem !important; }\n .mb-xl-3,\n .my-xl-3 {\n margin-bottom: 1rem !important; }\n .ml-xl-3,\n .mx-xl-3 {\n margin-left: 1rem !important; }\n .m-xl-4 {\n margin: 1.5rem !important; }\n .mt-xl-4,\n .my-xl-4 {\n margin-top: 1.5rem !important; }\n .mr-xl-4,\n .mx-xl-4 {\n margin-right: 1.5rem !important; }\n .mb-xl-4,\n .my-xl-4 {\n margin-bottom: 1.5rem !important; }\n .ml-xl-4,\n .mx-xl-4 {\n margin-left: 1.5rem !important; }\n .m-xl-5 {\n margin: 3rem !important; }\n .mt-xl-5,\n .my-xl-5 {\n margin-top: 3rem !important; }\n .mr-xl-5,\n .mx-xl-5 {\n margin-right: 3rem !important; }\n .mb-xl-5,\n .my-xl-5 {\n margin-bottom: 3rem !important; }\n .ml-xl-5,\n .mx-xl-5 {\n margin-left: 3rem !important; }\n .p-xl-0 {\n padding: 0 !important; }\n .pt-xl-0,\n .py-xl-0 {\n padding-top: 0 !important; }\n .pr-xl-0,\n .px-xl-0 {\n padding-right: 0 !important; }\n .pb-xl-0,\n .py-xl-0 {\n padding-bottom: 0 !important; }\n .pl-xl-0,\n .px-xl-0 {\n padding-left: 0 !important; }\n .p-xl-1 {\n padding: 0.25rem !important; }\n .pt-xl-1,\n .py-xl-1 {\n padding-top: 0.25rem !important; }\n .pr-xl-1,\n .px-xl-1 {\n padding-right: 0.25rem !important; }\n .pb-xl-1,\n .py-xl-1 {\n padding-bottom: 0.25rem !important; }\n .pl-xl-1,\n .px-xl-1 {\n padding-left: 0.25rem !important; }\n .p-xl-2 {\n padding: 0.5rem !important; }\n .pt-xl-2,\n .py-xl-2 {\n padding-top: 0.5rem !important; }\n .pr-xl-2,\n .px-xl-2 {\n padding-right: 0.5rem !important; }\n .pb-xl-2,\n .py-xl-2 {\n padding-bottom: 0.5rem !important; }\n .pl-xl-2,\n .px-xl-2 {\n padding-left: 0.5rem !important; }\n .p-xl-3 {\n padding: 1rem !important; }\n .pt-xl-3,\n .py-xl-3 {\n padding-top: 1rem !important; }\n .pr-xl-3,\n .px-xl-3 {\n padding-right: 1rem !important; }\n .pb-xl-3,\n .py-xl-3 {\n padding-bottom: 1rem !important; }\n .pl-xl-3,\n .px-xl-3 {\n padding-left: 1rem !important; }\n .p-xl-4 {\n padding: 1.5rem !important; }\n .pt-xl-4,\n .py-xl-4 {\n padding-top: 1.5rem !important; }\n .pr-xl-4,\n .px-xl-4 {\n padding-right: 1.5rem !important; }\n .pb-xl-4,\n .py-xl-4 {\n padding-bottom: 1.5rem !important; }\n .pl-xl-4,\n .px-xl-4 {\n padding-left: 1.5rem !important; }\n .p-xl-5 {\n padding: 3rem !important; }\n .pt-xl-5,\n .py-xl-5 {\n padding-top: 3rem !important; }\n .pr-xl-5,\n .px-xl-5 {\n padding-right: 3rem !important; }\n .pb-xl-5,\n .py-xl-5 {\n padding-bottom: 3rem !important; }\n .pl-xl-5,\n .px-xl-5 {\n padding-left: 3rem !important; }\n .m-xl-n1 {\n margin: -0.25rem !important; }\n .mt-xl-n1,\n .my-xl-n1 {\n margin-top: -0.25rem !important; }\n .mr-xl-n1,\n .mx-xl-n1 {\n margin-right: -0.25rem !important; }\n .mb-xl-n1,\n .my-xl-n1 {\n margin-bottom: -0.25rem !important; }\n .ml-xl-n1,\n .mx-xl-n1 {\n margin-left: -0.25rem !important; }\n .m-xl-n2 {\n margin: -0.5rem !important; }\n .mt-xl-n2,\n .my-xl-n2 {\n margin-top: -0.5rem !important; }\n .mr-xl-n2,\n .mx-xl-n2 {\n margin-right: -0.5rem !important; }\n .mb-xl-n2,\n .my-xl-n2 {\n margin-bottom: -0.5rem !important; }\n .ml-xl-n2,\n .mx-xl-n2 {\n margin-left: -0.5rem !important; }\n .m-xl-n3 {\n margin: -1rem !important; }\n .mt-xl-n3,\n .my-xl-n3 {\n margin-top: -1rem !important; }\n .mr-xl-n3,\n .mx-xl-n3 {\n margin-right: -1rem !important; }\n .mb-xl-n3,\n .my-xl-n3 {\n margin-bottom: -1rem !important; }\n .ml-xl-n3,\n .mx-xl-n3 {\n margin-left: -1rem !important; }\n .m-xl-n4 {\n margin: -1.5rem !important; }\n .mt-xl-n4,\n .my-xl-n4 {\n margin-top: -1.5rem !important; }\n .mr-xl-n4,\n .mx-xl-n4 {\n margin-right: -1.5rem !important; }\n .mb-xl-n4,\n .my-xl-n4 {\n margin-bottom: -1.5rem !important; }\n .ml-xl-n4,\n .mx-xl-n4 {\n margin-left: -1.5rem !important; }\n .m-xl-n5 {\n margin: -3rem !important; }\n .mt-xl-n5,\n .my-xl-n5 {\n margin-top: -3rem !important; }\n .mr-xl-n5,\n .mx-xl-n5 {\n margin-right: -3rem !important; }\n .mb-xl-n5,\n .my-xl-n5 {\n margin-bottom: -3rem !important; }\n .ml-xl-n5,\n .mx-xl-n5 {\n margin-left: -3rem !important; }\n .m-xl-auto {\n margin: auto !important; }\n .mt-xl-auto,\n .my-xl-auto {\n margin-top: auto !important; }\n .mr-xl-auto,\n .mx-xl-auto {\n margin-right: auto !important; }\n .mb-xl-auto,\n .my-xl-auto {\n margin-bottom: auto !important; }\n .ml-xl-auto,\n .mx-xl-auto {\n margin-left: auto !important; } }\n\n.stretched-link::after {\n position: absolute;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1;\n pointer-events: auto;\n content: \"\";\n background-color: rgba(0, 0, 0, 0); }\n\n.text-monospace {\n font-family: SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace !important; }\n\n.text-justify {\n text-align: justify !important; }\n\n.text-wrap {\n white-space: normal !important; }\n\n.text-nowrap {\n white-space: nowrap !important; }\n\n.text-truncate {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap; }\n\n.text-left {\n text-align: left !important; }\n\n.text-right {\n text-align: right !important; }\n\n.text-center {\n text-align: center !important; }\n\n@media (min-width: 576px) {\n .text-sm-left {\n text-align: left !important; }\n .text-sm-right {\n text-align: right !important; }\n .text-sm-center {\n text-align: center !important; } }\n\n@media (min-width: 768px) {\n .text-md-left {\n text-align: left !important; }\n .text-md-right {\n text-align: right !important; }\n .text-md-center {\n text-align: center !important; } }\n\n@media (min-width: 992px) {\n .text-lg-left {\n text-align: left !important; }\n .text-lg-right {\n text-align: right !important; }\n .text-lg-center {\n text-align: center !important; } }\n\n@media (min-width: 1200px) {\n .text-xl-left {\n text-align: left !important; }\n .text-xl-right {\n text-align: right !important; }\n .text-xl-center {\n text-align: center !important; } }\n\n.text-lowercase {\n text-transform: lowercase !important; }\n\n.text-uppercase {\n text-transform: uppercase !important; }\n\n.text-capitalize {\n text-transform: capitalize !important; }\n\n.font-weight-light {\n font-weight: 300 !important; }\n\n.font-weight-lighter {\n font-weight: lighter !important; }\n\n.font-weight-normal {\n font-weight: 400 !important; }\n\n.font-weight-bold {\n font-weight: 700 !important; }\n\n.font-weight-bolder {\n font-weight: bolder !important; }\n\n.font-italic {\n font-style: italic !important; }\n\n.text-white {\n color: #ffffff !important; }\n\n.text-primary {\n color: #1bdbe0 !important; }\n\na.text-primary:hover, a.text-primary:focus {\n color: #13989c !important; }\n\n.text-secondary {\n color: #d8d8d8 !important; }\n\na.text-secondary:hover, a.text-secondary:focus {\n color: #b2b2b2 !important; }\n\n.text-success {\n color: #38ce3c !important; }\n\na.text-success:hover, a.text-success:focus {\n color: #259528 !important; }\n\n.text-info {\n color: #8e32e9 !important; }\n\na.text-info:hover, a.text-info:focus {\n color: #6814ba !important; }\n\n.text-warning {\n color: #ffde73 !important; }\n\na.text-warning:hover, a.text-warning:focus {\n color: #ffcc27 !important; }\n\n.text-danger {\n color: #ff4d6b !important; }\n\na.text-danger:hover, a.text-danger:focus {\n color: #ff012b !important; }\n\n.text-light {\n color: #f8f9fa !important; }\n\na.text-light:hover, a.text-light:focus {\n color: #cbd3da !important; }\n\n.text-dark {\n color: #3e4b5b !important; }\n\na.text-dark:hover, a.text-dark:focus {\n color: #1f262e !important; }\n\n.text-body {\n color: #343a40 !important; }\n\n.text-muted, .preview-list .preview-item .preview-item-content p .content-category {\n color: #9c9fa6 !important; }\n\n.text-black-50 {\n color: rgba(0, 0, 0, 0.5) !important; }\n\n.text-white-50 {\n color: rgba(255, 255, 255, 0.5) !important; }\n\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0; }\n\n.text-decoration-none {\n text-decoration: none !important; }\n\n.text-break {\n word-break: break-word !important;\n word-wrap: break-word !important; }\n\n.text-reset {\n color: inherit !important; }\n\n.visible {\n visibility: visible !important; }\n\n.invisible {\n visibility: hidden !important; }\n\n@media print {\n *,\n *::before,\n *::after {\n text-shadow: none !important;\n box-shadow: none !important; }\n a:not(.btn) {\n text-decoration: underline; }\n abbr[title]::after {\n content: \" (\" attr(title) \")\"; }\n pre {\n white-space: pre-wrap !important; }\n pre,\n blockquote {\n border: 1px solid #adb5bd;\n page-break-inside: avoid; }\n thead {\n display: table-header-group; }\n tr,\n img {\n page-break-inside: avoid; }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3; }\n h2,\n h3 {\n page-break-after: avoid; }\n @page {\n size: a3; }\n body {\n min-width: 992px !important; }\n .container {\n min-width: 992px !important; }\n .navbar {\n display: none; }\n .badge {\n border: 1px solid #000; }\n .table {\n border-collapse: collapse !important; }\n .table td,\n .table th {\n background-color: #ffffff !important; }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #dee2e6 !important; }\n .table-dark {\n color: inherit; }\n .table-dark th,\n .table-dark td,\n .table-dark thead th,\n .table-dark tbody + tbody {\n border-color: #e8ecf1; }\n .table .thead-dark th {\n color: inherit;\n border-color: #e8ecf1; } }\n\n/*-------------------------------------------------------------------*/\n/* === Template mixins === */\n/* Miscellaneous Mixins */\n/* Animation Mixins */\n@keyframes dropdownAnimation {\n from {\n opacity: 0;\n transform: translate3d(0, -30px, 0); }\n to {\n opacity: 1;\n transform: none;\n transform: translate3d(0, 0px, 0); } }\n\n.dropdownAnimation, .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu {\n animation-name: dropdownAnimation;\n -webkit-animation-duration: 0.25s;\n -moz-animation-duration: 0.25s;\n -ms-animation-duration: 0.25s;\n -o-animation-duration: 0.25s;\n animation-duration: 0.25s;\n -webkit-animation-fill-mode: both;\n -moz-animation-fill-mode: both;\n -ms-animation-fill-mode: both;\n -o-animation-fill-mode: both;\n animation-fill-mode: both; }\n\n@keyframes fadeOut {\n from {\n opacity: 1; }\n to {\n opacity: 0; } }\n\n.fadeOut {\n animation-name: fadeOut; }\n\n.infinite-spin {\n animation-name: spin;\n animation-duration: 3s;\n animation-iteration-count: infinite;\n animation-timing-function: linear; }\n\n@keyframes spin {\n from {\n transform: rotate(0deg); }\n to {\n transform: rotate(360deg); } }\n\n@keyframes fadeInUp {\n from {\n opacity: 0;\n transform: translate3d(0, 100%, 0); }\n to {\n opacity: 1;\n transform: none; } }\n\n.fadeInUp {\n animation-name: fadeInUp; }\n\n/*-------------------------------------------------------------------*/\n/* === Core Styles === */\n/* Reset Styles */\nbody {\n padding: 0;\n margin: 0;\n overflow-x: hidden; }\n\n.form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead,\n.tt-query,\n.tt-hint, .form-control:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .typeahead:focus,\n.tt-query:focus,\n.tt-hint:focus {\n -webkit-box-shadow: none;\n -moz-box-shadow: none; }\n\n.form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead,\n.tt-query,\n.tt-hint {\n box-shadow: none; }\n\n.form-control:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .typeahead:focus,\n.tt-query:focus,\n.tt-hint:focus {\n outline: 0;\n box-shadow: none; }\n\na,\ndiv,\nh1,\nh2,\nh3,\nh4,\nh5,\np,\nspan {\n text-shadow: none; }\n\n[type=button]:focus,\na:active,\na:focus,\na:visited,\nbutton::-moz-focus-inner,\ninput[type=reset]::-moz-focus-inner,\ninput[type=button]::-moz-focus-inner,\ninput[type=submit]::-moz-focus-inner,\ninput[type=file] > input[type=button]::-moz-focus-inner,\nselect::-moz-focus-inner {\n outline: 0; }\n\ninput, .form-control:focus, .select2-container--default .select2-selection--single:focus, .select2-container--default .select2-selection--single .select2-search__field:focus, .typeahead:focus,\n.tt-query:focus,\n.tt-hint:focus,\ninput:focus,\nselect:focus,\ntextarea:focus,\nbutton:focus {\n outline: none;\n outline-width: 0;\n outline-color: transparent;\n box-shadow: none;\n outline-style: none; }\n\ntextarea {\n resize: none;\n overflow-x: hidden; }\n\n.btn,\n.btn-group.open .dropdown-toggle,\n.btn:active,\n.btn:focus,\n.btn:hover,\n.btn:visited,\na,\na:active,\na:checked,\na:focus,\na:hover,\na:visited,\nbody,\nbutton,\nbutton:active,\nbutton:hover,\nbutton:visited,\ndiv,\ninput,\ninput:active,\ninput:focus,\ninput:hover,\ninput:visited,\nselect,\nselect:active,\nselect:focus,\nselect:visited,\ntextarea,\ntextarea:active,\ntextarea:focus,\ntextarea:hover,\ntextarea:visited {\n -webkit-box-shadow: none;\n -moz-box-shadow: none;\n box-shadow: none; }\n\n.btn.active.focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn:active:focus,\n.btn:focus,\nbutton,\nbutton:active,\nbutton:checked,\nbutton:focus,\nbutton:hover,\nbutton:visited {\n outline: 0;\n outline-offset: 0; }\n\n.bootstrap-select .dropdown-toggle:focus {\n outline: 0;\n outline-offset: 0; }\n\n.dropdown-menu > li > a:active,\n.dropdown-menu > li > a:focus,\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:visited {\n outline: 0; }\n\na:focus,\ninput:focus {\n border-color: transparent;\n outline: none; }\n\n/* Typography */\nbody {\n font-size: 1rem;\n font-family: \"Open Sans\", sans-serif;\n font-weight: initial;\n line-height: normal;\n -webkit-font-smoothing: antialiased; }\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: \"Open Sans\", sans-serif;\n font-weight: 600; }\n\np {\n font-size: 0.875rem; }\n\nh1, .h1 {\n font-size: 2.19rem; }\n\nh2, .h2 {\n font-size: 1.88rem; }\n\nh3, .h3 {\n font-size: 1.56rem; }\n\nh4, .h4 {\n font-size: 1.13rem; }\n\nh5, .h5 {\n font-size: 1rem; }\n\nh6, .h6 {\n font-size: .9375rem; }\n\np {\n font-size: .9375rem;\n line-height: 1.5; }\n\n.display-1 {\n font-size: 3.75rem; }\n @media (max-width: 991px) {\n .display-1 {\n font-size: 3rem; } }\n\n.display-2 {\n font-size: 3.125rem; }\n @media (max-width: 991px) {\n .display-2 {\n font-size: 2.5rem; } }\n\n.display-3 {\n font-size: 2.5rem; }\n @media (max-width: 991px) {\n .display-3 {\n font-size: 2rem; } }\n\n.display-4 {\n font-size: 1.875rem; }\n @media (max-width: 991px) {\n .display-4 {\n font-size: 1.5rem; } }\n\n.display-5 {\n font-size: 1.25rem; }\n @media (max-width: 991px) {\n .display-5 {\n font-size: 1rem; } }\n\n.blockquote {\n padding: 1.25rem;\n border: 1px solid #e8ecf1; }\n\naddress p {\n margin-bottom: 0; }\n\n.blockquote-primary {\n border-color: #1bdbe0; }\n .blockquote-primary .blockquote-footer {\n color: #1bdbe0; }\n\n.blockquote-secondary {\n border-color: #d8d8d8; }\n .blockquote-secondary .blockquote-footer {\n color: #d8d8d8; }\n\n.blockquote-success {\n border-color: #38ce3c; }\n .blockquote-success .blockquote-footer {\n color: #38ce3c; }\n\n.blockquote-info {\n border-color: #8e32e9; }\n .blockquote-info .blockquote-footer {\n color: #8e32e9; }\n\n.blockquote-warning {\n border-color: #ffde73; }\n .blockquote-warning .blockquote-footer {\n color: #ffde73; }\n\n.blockquote-danger {\n border-color: #ff4d6b; }\n .blockquote-danger .blockquote-footer {\n color: #ff4d6b; }\n\n.blockquote-light {\n border-color: #f8f9fa; }\n .blockquote-light .blockquote-footer {\n color: #f8f9fa; }\n\n.blockquote-dark {\n border-color: #3e4b5b; }\n .blockquote-dark .blockquote-footer {\n color: #3e4b5b; }\n\n.error-page h1 {\n font-size: 12rem; }\n @media (max-width: 991px) {\n .error-page h1 {\n font-size: 8rem; } }\n\n.icon-lg {\n font-size: 3.438rem; }\n\n.icon-md {\n font-size: 1.875rem; }\n\n.icon-sm {\n font-size: 1rem; }\n\n/* Miscellanoeous */\nbody,\nhtml {\n overflow-x: hidden;\n padding-right: 0 !important; }\n\n*:-moz-full-screen,\n*:-webkit-full-screen,\n*:fullscreen *:-ms-fullscreen {\n overflow: auto; }\n\n.container-scroller {\n overflow: hidden; }\n\npre {\n background: #e8eff4;\n padding: 15px;\n font-size: 14px; }\n\ncode {\n padding: 5px;\n color: #ff4d6b;\n font-family: \"Open Sans\", sans-serif;\n font-weight: 300;\n font-size: 0.875rem;\n border-radius: 4px; }\n\n.page-header {\n margin: 0 0 1.5rem 0; }\n .page-header .breadcrumb {\n border: 0;\n margin-bottom: 0; }\n\n.page-title {\n color: #343a40;\n font-size: 1.125rem;\n margin-bottom: 0; }\n .page-title .page-title-icon {\n display: inline-block;\n width: 36px;\n height: 36px;\n border-radius: 4px;\n text-align: center;\n box-shadow: 0px 3px 8.3px 0.7px rgba(163, 93, 255, 0.35); }\n .page-title .page-title-icon i {\n font-size: .9375rem;\n line-height: 36px; }\n\n/* Footer */\n.footer {\n background: #ecf0f4;\n padding: 0 1.5rem 1.5rem;\n transition: all 0.25s ease;\n -moz-transition: all 0.25s ease;\n -webkit-transition: all 0.25s ease;\n -ms-transition: all 0.25s ease;\n font-size: calc(0.875rem - 0.05rem);\n font-family: \"Open Sans\", sans-serif; }\n .footer a {\n color: #38ce3c;\n font-size: inherit; }\n @media (max-width: 991px) {\n .footer {\n margin-left: 0;\n width: 100%; } }\n\n/* Utilities */\n.grid-margin {\n margin-bottom: 25px; }\n\n@media (min-width: 576px) {\n .grid-margin-sm-0 {\n margin-bottom: 0; } }\n\n@media (min-width: 768px) {\n .grid-margin-md-0 {\n margin-bottom: 0; } }\n\n@media (min-width: 992px) {\n .grid-margin-lg-0 {\n margin-bottom: 0; } }\n\n@media (min-width: 1200px) {\n .grid-margin-xl-0 {\n margin-bottom: 0; } }\n\n.img-lg {\n width: 92px;\n height: 92px; }\n\n.img-sm {\n width: 43px;\n height: 43px; }\n\n.img-xs {\n width: 37px;\n height: 37px; }\n\n.img-ss {\n width: 26px;\n height: 26px; }\n\n.stretch-card {\n display: -webkit-flex;\n display: flex;\n -webkit-align-items: stretch;\n align-items: stretch;\n -webkit-justify-content: stretch;\n justify-content: stretch; }\n .stretch-card > .card {\n width: 100%;\n min-width: 100%; }\n\n@media (min-width: 576px) {\n .border-right-sm {\n border-right: 1px solid #e8ecf1; } }\n\n@media (min-width: 768px) {\n .border-right-md {\n border-right: 1px solid #e8ecf1; } }\n\n@media (min-width: 992px) {\n .border-right-lg {\n border-right: 1px solid #e8ecf1; } }\n\n@media (min-width: 576px) {\n .border-left-sm {\n border-left: 1px solid #e8ecf1; } }\n\n@media (min-width: 768px) {\n .border-left-md {\n border-left: 1px solid #e8ecf1; } }\n\n@media (min-width: 992px) {\n .border-left-lg {\n border-left: 1px solid #e8ecf1; } }\n\n.text-gray, .card .card-subtitle {\n color: #8c8c8c; }\n\n.text-black {\n color: #000; }\n\n.text-small {\n font-size: 12px; }\n\n.flex-grow {\n flex-grow: 1; }\n\n.font-weight-light {\n font-family: \"Open Sans\", sans-serif;\n font-weight: 300; }\n\n.font-weight-medium {\n font-family: \"Open Sans\", sans-serif;\n font-weight: 600; }\n\n.font-weight-semibold {\n font-family: \"Open Sans\", sans-serif;\n font-weight: 700; }\n\n.font-weight-bold {\n font-family: \"Open Sans\", sans-serif;\n font-weight: bold; }\n\n.font-weight-normal {\n font-family: \"Open Sans\", sans-serif;\n font-weight: 400; }\n\n/* Demo Styles */\n.template-demo .slider-wrap {\n height: 100px; }\n\n.template-demo .progress {\n margin-top: 1.5rem; }\n\n.template-demo > h2,\n.template-demo > h3,\n.template-demo > h4,\n.template-demo > h5,\n.template-demo > h6,\n.template-demo > h1 {\n border-top: 1px solid #e8ecf1;\n padding: 0.5rem 0 0; }\n\n.template-demo .ul-slider.noUi-horizontal {\n margin-top: 2rem; }\n\n.template-demo .ul-slider.noUi-vertical {\n margin-right: 2rem; }\n\n.template-demo > .dropdown {\n display: inline-block;\n margin-bottom: 0.5rem; }\n\n.template-demo nav .breadcrumb {\n margin-bottom: 1.375rem; }\n\n.template-demo nav:last-child .breadcrumb {\n margin-bottom: 0; }\n\n.template-demo .editable-form > .form-group {\n border-bottom: 1px solid #e8ecf1;\n padding-bottom: 0.8rem;\n margin-bottom: 0.8rem; }\n\n.template-demo .circle-progress {\n padding: 15px; }\n\n.demo-modal {\n position: static;\n display: block; }\n .demo-modal .modal-dialog.modal-lg {\n max-width: 100%; }\n\n.loader-demo-box {\n width: 100%;\n height: 200px; }\n\n.dropdown-menu-static-demo {\n height: 250px;\n margin-bottom: 20px; }\n\n.rounded-legend ul li {\n list-style-type: none;\n color: #9c9fa6;\n font-size: .75rem; }\n .rounded-legend ul li .legend-dots {\n width: 1rem;\n height: 1rem;\n border-radius: 100%;\n display: inline-block;\n vertical-align: text-bottom;\n margin-right: .5rem; }\n .rtl .rounded-legend ul li .legend-dots {\n margin-left: .5rem; }\n\n.rounded-legend.legend-horizontal {\n display: -webkit-flex;\n display: flex; }\n .rounded-legend.legend-horizontal ul li {\n display: inline-block;\n margin-right: 1.5rem; }\n .rtl .rounded-legend.legend-horizontal ul li {\n margin-right: auto;\n margin-left: 1.5rem; }\n\n.rounded-legend.legend-top-right ul {\n float: right; }\n .rtl .rounded-legend.legend-top-right ul {\n float: left; }\n\n.rounded-legend.legend-vertical ul li {\n margin-top: 1rem; }\n\n/*-------------------------------------------------------------------*/\n/* === Components === */\n/* Buttons */\n.btn {\n font-size: 0.875rem;\n line-height: 1;\n font-family: \"Open Sans\", sans-serif;\n font-weight: 600;\n /* Buttons with only icons */\n /* Buttons with icon and text */ }\n .btn i {\n font-size: 1rem; }\n .btn.btn-rounded {\n border-radius: 50px; }\n .btn.btn-fw {\n min-width: 150px; }\n .btn.btn-sm, .btn-group-sm > .btn {\n font-size: 0.875rem; }\n .btn.btn-lg, .btn-group-lg > .btn {\n font-size: 0.875rem; }\n .btn.btn-xs {\n padding: 0.5rem 0.75rem;\n font-size: 0.625rem; }\n .btn.btn-icon {\n width: 42px;\n height: 42px;\n padding: 0; }\n .btn.btn-icon-text .btn-icon-prepend {\n margin-right: .5rem; }\n .btn.btn-icon-text .btn-icon-append {\n margin-left: .5rem; }\n .btn.btn-social-icon {\n width: 50px;\n height: 50px;\n padding: 0; }\n .btn.btn-no-hover-bg:hover, .btn.btn-no-hover-bg:focus, .btn.btn-no-hover-bg:active {\n background: transparent;\n color: currentColor; }\n\n.btn-group .btn + .btn {\n border-left: 0; }\n\n/*social buttons*/\n.btn-twitter {\n background: #2caae1;\n color: #ffffff; }\n .btn-twitter:hover, .btn-twitter:focus {\n background: #1b8dbf;\n color: #ffffff; }\n .btn-twitter.btn-social-icon-text {\n padding: 0 1.5rem 0 0;\n background: #59bce7; }\n .btn-twitter.btn-social-icon-text i {\n background: #2caae1;\n padding: .75rem;\n display: inline-block;\n margin-right: 1.5rem; }\n\n.btn-outline-twitter {\n border: 1px solid #2caae1;\n color: #2caae1; }\n .btn-outline-twitter:hover {\n background: #2caae1;\n color: #ffffff; }\n\n.btn-facebook {\n background: #3b579d;\n color: #ffffff; }\n .btn-facebook:hover, .btn-facebook:focus {\n background: #2d4278;\n color: #ffffff; }\n .btn-facebook.btn-social-icon-text {\n padding: 0 1.5rem 0 0;\n background: #4e6ebd; }\n .btn-facebook.btn-social-icon-text i {\n background: #3b579d;\n padding: .75rem;\n display: inline-block;\n margin-right: 1.5rem; }\n\n.btn-outline-facebook {\n border: 1px solid #3b579d;\n color: #3b579d; }\n .btn-outline-facebook:hover {\n background: #3b579d;\n color: #ffffff; }\n\n.btn-google {\n background: #dc4a38;\n color: #ffffff; }\n .btn-google:hover, .btn-google:focus {\n background: #bf3322;\n color: #ffffff; }\n .btn-google.btn-social-icon-text {\n padding: 0 1.5rem 0 0;\n background: #e47163; }\n .btn-google.btn-social-icon-text i {\n background: #dc4a38;\n padding: .75rem;\n display: inline-block;\n margin-right: 1.5rem; }\n\n.btn-outline-google {\n border: 1px solid #dc4a38;\n color: #dc4a38; }\n .btn-outline-google:hover {\n background: #dc4a38;\n color: #ffffff; }\n\n.btn-linkedin {\n background: #0177b5;\n color: #ffffff; }\n .btn-linkedin:hover, .btn-linkedin:focus {\n background: #015682;\n color: #ffffff; }\n .btn-linkedin.btn-social-icon-text {\n padding: 0 1.5rem 0 0;\n background: #0198e8; }\n .btn-linkedin.btn-social-icon-text i {\n background: #0177b5;\n padding: .75rem;\n display: inline-block;\n margin-right: 1.5rem; }\n\n.btn-outline-linkedin {\n border: 1px solid #0177b5;\n color: #0177b5; }\n .btn-outline-linkedin:hover {\n background: #0177b5;\n color: #ffffff; }\n\n.btn-pinterest {\n background: #cc2127;\n color: #ffffff; }\n .btn-pinterest:hover, .btn-pinterest:focus {\n background: #a01a1f;\n color: #ffffff; }\n .btn-pinterest.btn-social-icon-text {\n padding: 0 1.5rem 0 0;\n background: #e04046; }\n .btn-pinterest.btn-social-icon-text i {\n background: #cc2127;\n padding: .75rem;\n display: inline-block;\n margin-right: 1.5rem; }\n\n.btn-outline-pinterest {\n border: 1px solid #cc2127;\n color: #cc2127; }\n .btn-outline-pinterest:hover {\n background: #cc2127;\n color: #ffffff; }\n\n.btn-youtube {\n background: #e52d27;\n color: #ffffff; }\n .btn-youtube:hover, .btn-youtube:focus {\n background: #c21d17;\n color: #ffffff; }\n .btn-youtube.btn-social-icon-text {\n padding: 0 1.5rem 0 0;\n background: #ea5955; }\n .btn-youtube.btn-social-icon-text i {\n background: #e52d27;\n padding: .75rem;\n display: inline-block;\n margin-right: 1.5rem; }\n\n.btn-outline-youtube {\n border: 1px solid #e52d27;\n color: #e52d27; }\n .btn-outline-youtube:hover {\n background: #e52d27;\n color: #ffffff; }\n\n.btn-github {\n background: #333333;\n color: #ffffff; }\n .btn-github:hover, .btn-github:focus {\n background: #1a1a1a;\n color: #ffffff; }\n .btn-github.btn-social-icon-text {\n padding: 0 1.5rem 0 0;\n background: #4d4d4d; }\n .btn-github.btn-social-icon-text i {\n background: #333333;\n padding: .75rem;\n display: inline-block;\n margin-right: 1.5rem; }\n\n.btn-outline-github {\n border: 1px solid #333333;\n color: #333333; }\n .btn-outline-github:hover {\n background: #333333;\n color: #ffffff; }\n\n.btn-behance {\n background: #1769ff;\n color: #ffffff; }\n .btn-behance:hover, .btn-behance:focus {\n background: #0050e3;\n color: #ffffff; }\n .btn-behance.btn-social-icon-text {\n padding: 0 1.5rem 0 0;\n background: #4a8aff; }\n .btn-behance.btn-social-icon-text i {\n background: #1769ff;\n padding: .75rem;\n display: inline-block;\n margin-right: 1.5rem; }\n\n.btn-outline-behance {\n border: 1px solid #1769ff;\n color: #1769ff; }\n .btn-outline-behance:hover {\n background: #1769ff;\n color: #ffffff; }\n\n.btn-dribbble {\n background: #ea4c89;\n color: #ffffff; }\n .btn-dribbble:hover, .btn-dribbble:focus {\n background: #e51e6b;\n color: #ffffff; }\n .btn-dribbble.btn-social-icon-text {\n padding: 0 1.5rem 0 0;\n background: #ef7aa7; }\n .btn-dribbble.btn-social-icon-text i {\n background: #ea4c89;\n padding: .75rem;\n display: inline-block;\n margin-right: 1.5rem; }\n\n.btn-outline-dribbble {\n border: 1px solid #ea4c89;\n color: #ea4c89; }\n .btn-outline-dribbble:hover {\n background: #ea4c89;\n color: #ffffff; }\n\n.btn-reddit {\n background: #ff4500;\n color: #ffffff; }\n .btn-reddit:hover, .btn-reddit:focus {\n background: #cc3700;\n color: #ffffff; }\n .btn-reddit.btn-social-icon-text {\n padding: 0 1.5rem 0 0;\n background: #ff6a33; }\n .btn-reddit.btn-social-icon-text i {\n background: #ff4500;\n padding: .75rem;\n display: inline-block;\n margin-right: 1.5rem; }\n\n.btn-outline-reddit {\n border: 1px solid #ff4500;\n color: #ff4500; }\n .btn-outline-reddit:hover {\n background: #ff4500;\n color: #ffffff; }\n\n/* inverse buttons */\n.btn-inverse-primary {\n background-color: rgba(27, 219, 224, 0.2);\n background-image: none;\n border-color: rgba(27, 219, 224, 0); }\n .btn-inverse-primary:not(.btn-inverse-light) {\n color: #1bdbe0; }\n .btn-inverse-primary:hover {\n color: #ffffff;\n background-color: #1bdbe0;\n border-color: #1bdbe0; }\n .btn-inverse-primary.focus, .btn-inverse-primary:focus {\n box-shadow: 0 0 0 3px rgba(27, 219, 224, 0.5); }\n .btn-inverse-primary.disabled, .btn-inverse-primary:disabled {\n color: #1bdbe0;\n background-color: transparent; }\n .btn-inverse-primary.active, .btn-inverse-primary:active,\n .show > .btn-inverse-primary.dropdown-toggle {\n color: #ffffff;\n background-color: #1bdbe0;\n border-color: #1bdbe0; }\n\n.btn-primary:not(.btn-light) {\n color: #ffffff; }\n .btn-primary:not(.btn-light):hover, .btn-primary:not(.btn-light):focus, .btn-primary:not(.btn-light):active {\n color: #ffffff; }\n .btn-primary:not(.btn-light):focus, .btn-primary:not(.btn-light):active {\n background: #1bdbe0;\n border-color: #1bdbe0; }\n\n.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {\n background: #1bdbe0;\n color: #ffffff; }\n\n.btn-inverse-secondary {\n background-color: rgba(216, 216, 216, 0.2);\n background-image: none;\n border-color: rgba(216, 216, 216, 0); }\n .btn-inverse-secondary:not(.btn-inverse-light) {\n color: #d8d8d8; }\n .btn-inverse-secondary:hover {\n color: #ffffff;\n background-color: #d8d8d8;\n border-color: #d8d8d8; }\n .btn-inverse-secondary.focus, .btn-inverse-secondary:focus {\n box-shadow: 0 0 0 3px rgba(216, 216, 216, 0.5); }\n .btn-inverse-secondary.disabled, .btn-inverse-secondary:disabled {\n color: #d8d8d8;\n background-color: transparent; }\n .btn-inverse-secondary.active, .btn-inverse-secondary:active,\n .show > .btn-inverse-secondary.dropdown-toggle {\n color: #ffffff;\n background-color: #d8d8d8;\n border-color: #d8d8d8; }\n\n.btn-secondary:not(.btn-light) {\n color: #ffffff; }\n .btn-secondary:not(.btn-light):hover, .btn-secondary:not(.btn-light):focus, .btn-secondary:not(.btn-light):active {\n color: #ffffff; }\n .btn-secondary:not(.btn-light):focus, .btn-secondary:not(.btn-light):active {\n background: #d8d8d8;\n border-color: #d8d8d8; }\n\n.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active {\n background: #d8d8d8;\n color: #ffffff; }\n\n.btn-inverse-success {\n background-color: rgba(56, 206, 60, 0.2);\n background-image: none;\n border-color: rgba(56, 206, 60, 0); }\n .btn-inverse-success:not(.btn-inverse-light) {\n color: #38ce3c; }\n .btn-inverse-success:hover {\n color: #ffffff;\n background-color: #38ce3c;\n border-color: #38ce3c; }\n .btn-inverse-success.focus, .btn-inverse-success:focus {\n box-shadow: 0 0 0 3px rgba(56, 206, 60, 0.5); }\n .btn-inverse-success.disabled, .btn-inverse-success:disabled {\n color: #38ce3c;\n background-color: transparent; }\n .btn-inverse-success.active, .btn-inverse-success:active,\n .show > .btn-inverse-success.dropdown-toggle {\n color: #ffffff;\n background-color: #38ce3c;\n border-color: #38ce3c; }\n\n.btn-success:not(.btn-light) {\n color: #ffffff; }\n .btn-success:not(.btn-light):hover, .btn-success:not(.btn-light):focus, .btn-success:not(.btn-light):active {\n color: #ffffff; }\n .btn-success:not(.btn-light):focus, .btn-success:not(.btn-light):active {\n background: #38ce3c;\n border-color: #38ce3c; }\n\n.btn-outline-success:hover, .btn-outline-success:focus, .btn-outline-success:active {\n background: #38ce3c;\n color: #ffffff; }\n\n.btn-inverse-info {\n background-color: rgba(142, 50, 233, 0.2);\n background-image: none;\n border-color: rgba(142, 50, 233, 0); }\n .btn-inverse-info:not(.btn-inverse-light) {\n color: #8e32e9; }\n .btn-inverse-info:hover {\n color: #ffffff;\n background-color: #8e32e9;\n border-color: #8e32e9; }\n .btn-inverse-info.focus, .btn-inverse-info:focus {\n box-shadow: 0 0 0 3px rgba(142, 50, 233, 0.5); }\n .btn-inverse-info.disabled, .btn-inverse-info:disabled {\n color: #8e32e9;\n background-color: transparent; }\n .btn-inverse-info.active, .btn-inverse-info:active,\n .show > .btn-inverse-info.dropdown-toggle {\n color: #ffffff;\n background-color: #8e32e9;\n border-color: #8e32e9; }\n\n.btn-info:not(.btn-light) {\n color: #ffffff; }\n .btn-info:not(.btn-light):hover, .btn-info:not(.btn-light):focus, .btn-info:not(.btn-light):active {\n color: #ffffff; }\n .btn-info:not(.btn-light):focus, .btn-info:not(.btn-light):active {\n background: #8e32e9;\n border-color: #8e32e9; }\n\n.btn-outline-info:hover, .btn-outline-info:focus, .btn-outline-info:active {\n background: #8e32e9;\n color: #ffffff; }\n\n.btn-inverse-warning {\n background-color: rgba(255, 222, 115, 0.2);\n background-image: none;\n border-color: rgba(255, 222, 115, 0); }\n .btn-inverse-warning:not(.btn-inverse-light) {\n color: #ffde73; }\n .btn-inverse-warning:hover {\n color: #ffffff;\n background-color: #ffde73;\n border-color: #ffde73; }\n .btn-inverse-warning.focus, .btn-inverse-warning:focus {\n box-shadow: 0 0 0 3px rgba(255, 222, 115, 0.5); }\n .btn-inverse-warning.disabled, .btn-inverse-warning:disabled {\n color: #ffde73;\n background-color: transparent; }\n .btn-inverse-warning.active, .btn-inverse-warning:active,\n .show > .btn-inverse-warning.dropdown-toggle {\n color: #ffffff;\n background-color: #ffde73;\n border-color: #ffde73; }\n\n.btn-warning:not(.btn-light) {\n color: #ffffff; }\n .btn-warning:not(.btn-light):hover, .btn-warning:not(.btn-light):focus, .btn-warning:not(.btn-light):active {\n color: #ffffff; }\n .btn-warning:not(.btn-light):focus, .btn-warning:not(.btn-light):active {\n background: #ffde73;\n border-color: #ffde73; }\n\n.btn-outline-warning:hover, .btn-outline-warning:focus, .btn-outline-warning:active {\n background: #ffde73;\n color: #ffffff; }\n\n.btn-inverse-danger {\n background-color: rgba(255, 77, 107, 0.2);\n background-image: none;\n border-color: rgba(255, 77, 107, 0); }\n .btn-inverse-danger:not(.btn-inverse-light) {\n color: #ff4d6b; }\n .btn-inverse-danger:hover {\n color: #ffffff;\n background-color: #ff4d6b;\n border-color: #ff4d6b; }\n .btn-inverse-danger.focus, .btn-inverse-danger:focus {\n box-shadow: 0 0 0 3px rgba(255, 77, 107, 0.5); }\n .btn-inverse-danger.disabled, .btn-inverse-danger:disabled {\n color: #ff4d6b;\n background-color: transparent; }\n .btn-inverse-danger.active, .btn-inverse-danger:active,\n .show > .btn-inverse-danger.dropdown-toggle {\n color: #ffffff;\n background-color: #ff4d6b;\n border-color: #ff4d6b; }\n\n.btn-danger:not(.btn-light) {\n color: #ffffff; }\n .btn-danger:not(.btn-light):hover, .btn-danger:not(.btn-light):focus, .btn-danger:not(.btn-light):active {\n color: #ffffff; }\n .btn-danger:not(.btn-light):focus, .btn-danger:not(.btn-light):active {\n background: #ff4d6b;\n border-color: #ff4d6b; }\n\n.btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active {\n background: #ff4d6b;\n color: #ffffff; }\n\n.btn-inverse-light {\n background-color: rgba(248, 249, 250, 0.2);\n background-image: none;\n border-color: rgba(248, 249, 250, 0); }\n .btn-inverse-light:not(.btn-inverse-light) {\n color: #f8f9fa; }\n .btn-inverse-light:hover {\n color: #ffffff;\n background-color: #f8f9fa;\n border-color: #f8f9fa; }\n .btn-inverse-light.focus, .btn-inverse-light:focus {\n box-shadow: 0 0 0 3px rgba(248, 249, 250, 0.5); }\n .btn-inverse-light.disabled, .btn-inverse-light:disabled {\n color: #f8f9fa;\n background-color: transparent; }\n .btn-inverse-light.active, .btn-inverse-light:active,\n .show > .btn-inverse-light.dropdown-toggle {\n color: #ffffff;\n background-color: #f8f9fa;\n border-color: #f8f9fa; }\n\n.btn-light:not(.btn-light) {\n color: #ffffff; }\n .btn-light:not(.btn-light):hover, .btn-light:not(.btn-light):focus, .btn-light:not(.btn-light):active {\n color: #ffffff; }\n .btn-light:not(.btn-light):focus, .btn-light:not(.btn-light):active {\n background: #f8f9fa;\n border-color: #f8f9fa; }\n\n.btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-light:active {\n background: #f8f9fa;\n color: #ffffff; }\n\n.btn-inverse-dark {\n background-color: rgba(62, 75, 91, 0.2);\n background-image: none;\n border-color: rgba(62, 75, 91, 0); }\n .btn-inverse-dark:not(.btn-inverse-light) {\n color: #3e4b5b; }\n .btn-inverse-dark:hover {\n color: #ffffff;\n background-color: #3e4b5b;\n border-color: #3e4b5b; }\n .btn-inverse-dark.focus, .btn-inverse-dark:focus {\n box-shadow: 0 0 0 3px rgba(62, 75, 91, 0.5); }\n .btn-inverse-dark.disabled, .btn-inverse-dark:disabled {\n color: #3e4b5b;\n background-color: transparent; }\n .btn-inverse-dark.active, .btn-inverse-dark:active,\n .show > .btn-inverse-dark.dropdown-toggle {\n color: #ffffff;\n background-color: #3e4b5b;\n border-color: #3e4b5b; }\n\n.btn-dark:not(.btn-light) {\n color: #ffffff; }\n .btn-dark:not(.btn-light):hover, .btn-dark:not(.btn-light):focus, .btn-dark:not(.btn-light):active {\n color: #ffffff; }\n .btn-dark:not(.btn-light):focus, .btn-dark:not(.btn-light):active {\n background: #3e4b5b;\n border-color: #3e4b5b; }\n\n.btn-outline-dark:hover, .btn-outline-dark:focus, .btn-outline-dark:active {\n background: #3e4b5b;\n color: #ffffff; }\n\n/* Cards */\n.card {\n border: 0; }\n .card .card-body {\n padding: 1.875rem 1.875rem; }\n .card .card-body + .card-body {\n padding-top: 1rem; }\n .card .card-title {\n color: #343a40;\n margin-bottom: .75rem;\n text-transform: capitalize;\n font-family: \"Open Sans\", sans-serif;\n font-weight: 600;\n font-size: 1.125rem; }\n .card .card-subtitle {\n font-family: \"Open Sans\", sans-serif;\n margin-top: 0.625rem;\n margin-bottom: 0.625rem; }\n .card .card-description {\n color: #76838f;\n margin-bottom: 1.5rem;\n font-family: \"Open Sans\", sans-serif; }\n .card.card-outline-success {\n border: 1px solid #38ce3c; }\n .card.card-outline-primary {\n border: 1px solid #1bdbe0; }\n .card.card-outline-warning {\n border: 1px solid #ffde73; }\n .card.card-outline-danger {\n border: 1px solid #ff4d6b; }\n .card.card-rounded {\n border-radius: 5px; }\n .card.card-faded {\n background: #b5b0b2;\n border-color: #b5b0b2; }\n .card.card-circle-progress {\n color: #ffffff;\n text-align: center; }\n .card.card-img-holder {\n position: relative; }\n .card.card-img-holder .card-img-absolute {\n position: absolute;\n top: 0;\n right: 0;\n height: 100%; }\n\n.card-inverse-primary {\n background: rgba(27, 219, 224, 0.2);\n border: 1px solid #19c9ce;\n color: #15a6aa; }\n\n.card-inverse-secondary {\n background: rgba(216, 216, 216, 0.2);\n border: 1px solid #c7c7c7;\n color: #a4a4a4; }\n\n.card-inverse-success {\n background: rgba(56, 206, 60, 0.2);\n border: 1px solid #34be37;\n color: #2b9d2e; }\n\n.card-inverse-info {\n background: rgba(142, 50, 233, 0.2);\n border: 1px solid #832ed6;\n color: #6c26b1; }\n\n.card-inverse-warning {\n background: rgba(255, 222, 115, 0.2);\n border: 1px solid #ebcc6a;\n color: #c2a957; }\n\n.card-inverse-danger {\n background: rgba(255, 77, 107, 0.2);\n border: 1px solid #eb4762;\n color: #c23b51; }\n\n.card-inverse-light {\n background: rgba(248, 249, 250, 0.2);\n border: 1px solid #e4e5e6;\n color: #bcbdbe; }\n\n.card-inverse-dark {\n background: rgba(62, 75, 91, 0.2);\n border: 1px solid #394554;\n color: #2f3945; }\n\n/* Checkboxes and Radios */\n.form-check {\n position: relative;\n display: block;\n margin-top: 15px;\n margin-bottom: 10px;\n padding-left: 0; }\n .form-check .form-check-label {\n display: block;\n margin-left: 1.75rem;\n font-size: 0.875rem;\n line-height: 1.5; }\n .rtl .form-check .form-check-label {\n margin-left: 0;\n margin-right: 1.75rem; }\n .form-check .form-check-label input {\n position: absolute;\n top: 0;\n left: 0;\n margin-left: 0;\n margin-top: 0;\n z-index: 1;\n cursor: pointer;\n opacity: 0;\n filter: alpha(opacity=0); }\n .rtl .form-check .form-check-label input {\n left: auto;\n right: 0; }\n .form-check .form-check-label input[type=\"checkbox\"] + .input-helper:before, .form-check .form-check-label input[type=\"checkbox\"] + .input-helper:after {\n position: absolute;\n top: 0;\n left: 0; }\n .rtl .form-check .form-check-label input[type=\"checkbox\"] + .input-helper:before, .rtl .form-check .form-check-label input[type=\"checkbox\"] + .input-helper:after {\n left: auto;\n right: 0; }\n .form-check .form-check-label input[type=\"checkbox\"] + .input-helper:before {\n content: \"\";\n width: 18px;\n height: 18px;\n border-radius: 2px;\n border: solid #1bdbe0;\n border-width: 2px;\n -webkit-transition: all;\n -moz-transition: all;\n -ms-transition: all;\n -o-transition: all;\n transition: all;\n transition-duration: 0s;\n -webkit-transition-duration: 250ms;\n transition-duration: 250ms; }\n .form-check .form-check-label input[type=\"checkbox\"] + .input-helper:after {\n -webkit-transition: all;\n -moz-transition: all;\n -ms-transition: all;\n -o-transition: all;\n transition: all;\n transition-duration: 0s;\n -webkit-transition-duration: 250ms;\n transition-duration: 250ms;\n opacity: 0;\n filter: alpha(opacity=0);\n content: \"\";\n height: 12px;\n width: 5px;\n -webkit-transform: rotate(45deg);\n transform: rotate(45deg);\n border-style: solid;\n border-width: 2px;\n border-color: transparent #ffffff #ffffff transparent;\n left: 7px;\n top: 1px;\n font-weight: bold;\n color: #ffffff; }\n .form-check .form-check-label input[type=\"checkbox\"]:checked + .input-helper:before {\n background: #1bdbe0;\n border-width: 0; }\n .form-check .form-check-label input[type=\"checkbox\"]:checked + .input-helper:after {\n opacity: 1;\n line-height: 18px;\n filter: alpha(opacity=100); }\n .form-check .form-check-label input[type=\"checkbox\"]:disabled + .input-helper:before {\n border-color: #e8ecf1; }\n .form-check .form-check-label input[type=\"checkbox\"]:disabled:checked + .input-helper:after {\n border-color: transparent #e8ecf1 #e8ecf1 transparent; }\n .form-check .form-check-label input[type=\"radio\"] + .input-helper:before {\n position: absolute;\n content: \"\";\n top: 0;\n left: 0;\n border: solid #1bdbe0;\n border-width: 2px;\n width: 20px;\n height: 20px;\n border-radius: 50%;\n -webkit-transition: all;\n -moz-transition: all;\n -ms-transition: all;\n -o-transition: all;\n transition: all;\n transition-duration: 0s;\n -webkit-transition-duration: 250ms;\n transition-duration: 250ms; }\n .rtl .form-check .form-check-label input[type=\"radio\"] + .input-helper:before {\n left: auto;\n right: 0; }\n .form-check .form-check-label input[type=\"radio\"] + .input-helper:after {\n content: \"\";\n width: 8px;\n height: 8px;\n background: #ffffff;\n border-radius: 50%;\n top: 6px;\n left: 6px;\n -webkit-transition: all;\n -o-transition: all;\n transition: all;\n transition-duration: 0s;\n -webkit-transition-duration: 250ms;\n transition-duration: 250ms;\n opacity: 0;\n filter: alpha(opacity=0);\n -webkit-transform: scale(0);\n -ms-transform: scale(0);\n -o-transform: scale(0);\n transform: scale(0);\n position: absolute; }\n .rtl .form-check .form-check-label input[type=\"radio\"] + .input-helper:after {\n left: auto;\n right: 6px; }\n .form-check .form-check-label input[type=\"radio\"]:checked + .input-helper:before {\n background: #1bdbe0;\n border-width: 0; }\n .form-check .form-check-label input[type=\"radio\"]:checked + .input-helper:after {\n opacity: 1;\n line-height: 1.5;\n filter: alpha(opacity=100);\n -webkit-transform: scale(1);\n -ms-transform: scale(1);\n -o-transform: scale(1);\n transform: scale(1); }\n .form-check .form-check-label input[type=\"radio\"]:disabled + .input-helper:before {\n border-color: #e8ecf1; }\n .form-check .form-check-label input[type=\"radio\"]:disabled:checked + .input-helper:before {\n background: #e8ecf1; }\n .form-check .form-check-label input[type=\"radio\"]:disabled:checked + .input-helper:after {\n background: #ffffff; }\n\n.form-check-primary.form-check label input[type=\"checkbox\"] + .input-helper:before,\n.form-check-primary.form-check label input[type=\"radio\"] + .input-helper:before {\n border-color: #1bdbe0; }\n\n.form-check-primary.form-check label input[type=\"checkbox\"]:checked + .input-helper:before,\n.form-check-primary.form-check label input[type=\"radio\"]:checked + .input-helper:before {\n background: #1bdbe0; }\n\n.form-check-secondary.form-check label input[type=\"checkbox\"] + .input-helper:before,\n.form-check-secondary.form-check label input[type=\"radio\"] + .input-helper:before {\n border-color: #d8d8d8; }\n\n.form-check-secondary.form-check label input[type=\"checkbox\"]:checked + .input-helper:before,\n.form-check-secondary.form-check label input[type=\"radio\"]:checked + .input-helper:before {\n background: #d8d8d8; }\n\n.form-check-success.form-check label input[type=\"checkbox\"] + .input-helper:before,\n.form-check-success.form-check label input[type=\"radio\"] + .input-helper:before {\n border-color: #38ce3c; }\n\n.form-check-success.form-check label input[type=\"checkbox\"]:checked + .input-helper:before,\n.form-check-success.form-check label input[type=\"radio\"]:checked + .input-helper:before {\n background: #38ce3c; }\n\n.form-check-info.form-check label input[type=\"checkbox\"] + .input-helper:before,\n.form-check-info.form-check label input[type=\"radio\"] + .input-helper:before {\n border-color: #8e32e9; }\n\n.form-check-info.form-check label input[type=\"checkbox\"]:checked + .input-helper:before,\n.form-check-info.form-check label input[type=\"radio\"]:checked + .input-helper:before {\n background: #8e32e9; }\n\n.form-check-warning.form-check label input[type=\"checkbox\"] + .input-helper:before,\n.form-check-warning.form-check label input[type=\"radio\"] + .input-helper:before {\n border-color: #ffde73; }\n\n.form-check-warning.form-check label input[type=\"checkbox\"]:checked + .input-helper:before,\n.form-check-warning.form-check label input[type=\"radio\"]:checked + .input-helper:before {\n background: #ffde73; }\n\n.form-check-danger.form-check label input[type=\"checkbox\"] + .input-helper:before,\n.form-check-danger.form-check label input[type=\"radio\"] + .input-helper:before {\n border-color: #ff4d6b; }\n\n.form-check-danger.form-check label input[type=\"checkbox\"]:checked + .input-helper:before,\n.form-check-danger.form-check label input[type=\"radio\"]:checked + .input-helper:before {\n background: #ff4d6b; }\n\n.form-check-light.form-check label input[type=\"checkbox\"] + .input-helper:before,\n.form-check-light.form-check label input[type=\"radio\"] + .input-helper:before {\n border-color: #f8f9fa; }\n\n.form-check-light.form-check label input[type=\"checkbox\"]:checked + .input-helper:before,\n.form-check-light.form-check label input[type=\"radio\"]:checked + .input-helper:before {\n background: #f8f9fa; }\n\n.form-check-dark.form-check label input[type=\"checkbox\"] + .input-helper:before,\n.form-check-dark.form-check label input[type=\"radio\"] + .input-helper:before {\n border-color: #3e4b5b; }\n\n.form-check-dark.form-check label input[type=\"checkbox\"]:checked + .input-helper:before,\n.form-check-dark.form-check label input[type=\"radio\"]:checked + .input-helper:before {\n background: #3e4b5b; }\n\n/* Dropdowns */\n.dropdown .dropdown-toggle:after {\n border-top: 0;\n border-right: 0;\n border-left: 0;\n border-bottom: 0;\n font-family: \"simple-line-icons\";\n content: \"\\e604\";\n width: auto;\n height: auto;\n vertical-align: baseline;\n font-size: .75rem; }\n\n.dropdown .dropdown-menu {\n margin-top: .75rem;\n font-size: 0.875rem;\n box-shadow: 0px 1px 15px 1px rgba(230, 234, 236, 0.35); }\n .dropdown .dropdown-menu .dropdown-item {\n font-size: 1rem;\n padding: .25rem 1.5rem; }\n .dropdown .dropdown-menu .dropdown-item:active {\n background: initial; }\n\n/* Forms */\n.form-group {\n margin-bottom: 1.5rem; }\n\n.input-group-append,\n.input-group-prepend {\n color: #c9c8c8;\n width: auto;\n border: none; }\n .input-group-append .input-group-text,\n .input-group-prepend .input-group-text {\n border-color: #e8ecf1;\n padding: 0.94rem 0.75rem;\n color: #c9c8c8; }\n\n.form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead,\n.tt-query,\n.tt-hint {\n border: 1px solid #e8ecf1;\n font-family: \"Open Sans\", sans-serif;\n font-size: 0.8125rem; }\n\nselect.form-control, .select2-container--default select.select2-selection--single, .select2-container--default .select2-selection--single select.select2-search__field, select.typeahead,\nselect.tt-query,\nselect.tt-hint {\n padding: .4375rem .75rem;\n border: 0;\n outline: 1px solid #e8ecf1;\n color: #c9c8c8; }\n select.form-control:focus, .select2-container--default select.select2-selection--single:focus, .select2-container--default .select2-selection--single select.select2-search__field:focus, select.typeahead:focus,\n select.tt-query:focus,\n select.tt-hint:focus {\n outline: 1px solid #e8ecf1; }\n select.form-control.border-primary, .select2-container--default select.border-primary.select2-selection--single, .select2-container--default .select2-selection--single select.border-primary.select2-search__field, select.border-primary.typeahead,\n select.border-primary.tt-query,\n select.border-primary.tt-hint {\n outline: 1px solid #1bdbe0; }\n select.form-control.border-primary:focus, .select2-container--default select.border-primary.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-primary.select2-search__field:focus, select.border-primary.typeahead:focus,\n select.border-primary.tt-query:focus,\n select.border-primary.tt-hint:focus {\n outline: 1px solid #1bdbe0; }\n select.form-control.border-secondary, select.form-control.loader-demo-box, .select2-container--default select.loader-demo-box.select2-selection--single, .select2-container--default .select2-selection--single select.loader-demo-box.select2-search__field, select.loader-demo-box.typeahead,\n select.loader-demo-box.tt-query,\n select.loader-demo-box.tt-hint, .select2-container--default select.border-secondary.select2-selection--single, .select2-container--default .select2-selection--single select.border-secondary.select2-search__field, select.border-secondary.typeahead,\n select.border-secondary.tt-query,\n select.border-secondary.tt-hint {\n outline: 1px solid #d8d8d8; }\n select.form-control.border-secondary:focus, select.form-control.loader-demo-box:focus, .select2-container--default select.loader-demo-box.select2-selection--single:focus, .select2-container--default .select2-selection--single select.loader-demo-box.select2-search__field:focus, select.loader-demo-box.typeahead:focus,\n select.loader-demo-box.tt-query:focus,\n select.loader-demo-box.tt-hint:focus, .select2-container--default select.border-secondary.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-secondary.select2-search__field:focus, select.border-secondary.typeahead:focus,\n select.border-secondary.tt-query:focus,\n select.border-secondary.tt-hint:focus {\n outline: 1px solid #d8d8d8; }\n select.form-control.border-success, .select2-container--default select.border-success.select2-selection--single, .select2-container--default .select2-selection--single select.border-success.select2-search__field, select.border-success.typeahead,\n select.border-success.tt-query,\n select.border-success.tt-hint {\n outline: 1px solid #38ce3c; }\n select.form-control.border-success:focus, .select2-container--default select.border-success.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-success.select2-search__field:focus, select.border-success.typeahead:focus,\n select.border-success.tt-query:focus,\n select.border-success.tt-hint:focus {\n outline: 1px solid #38ce3c; }\n select.form-control.border-info, .select2-container--default select.border-info.select2-selection--single, .select2-container--default .select2-selection--single select.border-info.select2-search__field, select.border-info.typeahead,\n select.border-info.tt-query,\n select.border-info.tt-hint {\n outline: 1px solid #8e32e9; }\n select.form-control.border-info:focus, .select2-container--default select.border-info.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-info.select2-search__field:focus, select.border-info.typeahead:focus,\n select.border-info.tt-query:focus,\n select.border-info.tt-hint:focus {\n outline: 1px solid #8e32e9; }\n select.form-control.border-warning, .select2-container--default select.border-warning.select2-selection--single, .select2-container--default .select2-selection--single select.border-warning.select2-search__field, select.border-warning.typeahead,\n select.border-warning.tt-query,\n select.border-warning.tt-hint {\n outline: 1px solid #ffde73; }\n select.form-control.border-warning:focus, .select2-container--default select.border-warning.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-warning.select2-search__field:focus, select.border-warning.typeahead:focus,\n select.border-warning.tt-query:focus,\n select.border-warning.tt-hint:focus {\n outline: 1px solid #ffde73; }\n select.form-control.border-danger, .select2-container--default select.border-danger.select2-selection--single, .select2-container--default .select2-selection--single select.border-danger.select2-search__field, select.border-danger.typeahead,\n select.border-danger.tt-query,\n select.border-danger.tt-hint {\n outline: 1px solid #ff4d6b; }\n select.form-control.border-danger:focus, .select2-container--default select.border-danger.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-danger.select2-search__field:focus, select.border-danger.typeahead:focus,\n select.border-danger.tt-query:focus,\n select.border-danger.tt-hint:focus {\n outline: 1px solid #ff4d6b; }\n select.form-control.border-light, .select2-container--default select.border-light.select2-selection--single, .select2-container--default .select2-selection--single select.border-light.select2-search__field, select.border-light.typeahead,\n select.border-light.tt-query,\n select.border-light.tt-hint {\n outline: 1px solid #f8f9fa; }\n select.form-control.border-light:focus, .select2-container--default select.border-light.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-light.select2-search__field:focus, select.border-light.typeahead:focus,\n select.border-light.tt-query:focus,\n select.border-light.tt-hint:focus {\n outline: 1px solid #f8f9fa; }\n select.form-control.border-dark, .select2-container--default select.border-dark.select2-selection--single, .select2-container--default .select2-selection--single select.border-dark.select2-search__field, select.border-dark.typeahead,\n select.border-dark.tt-query,\n select.border-dark.tt-hint {\n outline: 1px solid #3e4b5b; }\n select.form-control.border-dark:focus, .select2-container--default select.border-dark.select2-selection--single:focus, .select2-container--default .select2-selection--single select.border-dark.select2-search__field:focus, select.border-dark.typeahead:focus,\n select.border-dark.tt-query:focus,\n select.border-dark.tt-hint:focus {\n outline: 1px solid #3e4b5b; }\n\n.form-group label {\n font-size: 0.875rem;\n line-height: 1;\n vertical-align: top;\n margin-bottom: .5rem; }\n\n.form-group.has-danger .form-control, .form-group.has-danger .select2-container--default .select2-selection--single, .select2-container--default .form-group.has-danger .select2-selection--single, .form-group.has-danger .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .form-group.has-danger .select2-search__field, .form-group.has-danger .typeahead,\n.form-group.has-danger .tt-query,\n.form-group.has-danger .tt-hint {\n border-color: #ff4d6b; }\n\n.form-group .file-upload-default {\n visibility: hidden;\n position: absolute; }\n\n.form-group .file-upload-info {\n background: transparent; }\n\n/* Icons */\n.icons-list {\n border-left: 1px solid #e8ecf1;\n border-top: 1px solid #e8ecf1; }\n .icons-list > div {\n background: #fff;\n border-bottom: 1px solid #e8ecf1;\n border-right: 1px solid #e8ecf1;\n display: -webkit-flex;\n display: flex;\n -webkit-align-items: center;\n align-items: center;\n padding: 15px 15px;\n font-family: \"Open Sans\", sans-serif;\n font-size: 0.875rem; }\n .icons-list > div i {\n display: inline-block;\n font-size: 20px;\n width: 40px;\n text-align: left;\n color: #1bdbe0; }\n\n/* Lists */\nul,\nol,\ndl {\n padding-left: 1rem;\n font-size: 0.875rem; }\n ul li,\n ol li,\n dl li {\n line-height: 1.8; }\n\n.list-ticked,\n.list-arrow,\n.list-star {\n list-style: none;\n padding: 0; }\n .list-ticked li,\n .list-arrow li,\n .list-star li {\n padding-left: 1.5rem; }\n .list-ticked li:before,\n .list-arrow li:before,\n .list-star li:before {\n font-family: \"simple-line-icons\";\n margin-left: -1.5rem;\n width: 1.5rem;\n margin-right: .5rem; }\n\n.list-ticked li:before {\n content: '\\e080';\n color: #ff4d6b; }\n\n.list-arrow li:before {\n content: '\\e606';\n color: #38ce3c; }\n\n.list-star li:before {\n content: '\\e09b';\n color: #ffde73; }\n\n.gradient-bullet-list {\n padding-left: 0; }\n .rtl .gradient-bullet-list {\n padding-right: 0; }\n .gradient-bullet-list li {\n position: relative;\n list-style-type: none;\n padding-left: 25px;\n line-height: 1;\n padding-bottom: 25px; }\n .gradient-bullet-list li:before, .gradient-bullet-list li:after {\n content: \"\";\n position: absolute; }\n .gradient-bullet-list li:before {\n top: 0;\n left: 0;\n width: 15px;\n height: 15px;\n border-radius: 100%; }\n .gradient-bullet-list li:after {\n width: 11px;\n height: 11px;\n top: 2px;\n left: 2px;\n background: #fff;\n border-radius: 100%; }\n .gradient-bullet-list li:nth-child(1):before {\n background: #ff4d6b; }\n .gradient-bullet-list li:nth-child(2):before {\n background: #8e32e9; }\n .gradient-bullet-list li:nth-child(3):before {\n background: #ffde73; }\n .gradient-bullet-list li:nth-child(4):before {\n background: #38ce3c; }\n .gradient-bullet-list li:nth-child(5):before {\n background: #1bdbe0; }\n\n/* Modals */\n.modal .modal-dialog {\n margin-top: 100px; }\n .modal .modal-dialog .modal-content .modal-header {\n padding: 25px 26px; }\n .modal .modal-dialog .modal-content .modal-header .close span {\n font-size: 20px;\n font-weight: 400;\n color: #6a6a6a; }\n .modal .modal-dialog .modal-content .modal-body {\n padding: 35px 26px; }\n .modal .modal-dialog .modal-content .modal-footer {\n padding: 15px 31px; }\n\n/* Pagination */\n.pagination .page-item .page-link {\n border-color: #e8ecf1;\n color: #343a40;\n font-size: .875rem;\n -webkit-transition-duration: 0.3s;\n -moz-transition-duration: 0.3s;\n -o-transition-duration: 0.3s;\n transition-duration: 0.3s; }\n .pagination .page-item .page-link:focus {\n background: inherit; }\n .pagination .page-item .page-link i:before {\n font-size: inherit;\n line-height: 1;\n vertical-align: middle; }\n\n.pagination .page-item.active .page-link, .pagination .page-item:hover .page-link, .pagination .page-item:focus .page-link, .pagination .page-item:active .page-link {\n background: #1bdbe0;\n border-color: #1bdbe0;\n color: #ffffff; }\n\n.pagination.flat .page-item .page-link {\n border: none;\n border-radius: 2px; }\n\n.pagination.separated .page-item {\n margin-left: 2px;\n margin-right: 2px; }\n .pagination.separated .page-item:first-child {\n margin-left: 0; }\n .pagination.separated .page-item:last-child {\n margin-right: 0; }\n .pagination.separated .page-item .page-link {\n border-radius: 2px; }\n\n.pagination.rounded .page-item:first-child .page-link, .pagination.loader-demo-box .page-item:first-child .page-link {\n border-radius: 25px 0 0 25px; }\n\n.pagination.rounded .page-item:last-child .page-link, .pagination.loader-demo-box .page-item:last-child .page-link {\n border-radius: 0 25px 25px 0; }\n\n.pagination.rounded-flat .page-item {\n margin-right: 3px;\n margin-left: 3px; }\n .pagination.rounded-flat .page-item .page-link {\n border: none;\n border-radius: 50px; }\n\n.pagination.rounded-separated .page-item {\n margin-left: 2px;\n margin-right: 2px; }\n .pagination.rounded-separated .page-item:first-child {\n margin-left: 0; }\n .pagination.rounded-separated .page-item:first-child .page-link {\n border-radius: 10px 0 0 10px; }\n .pagination.rounded-separated .page-item:last-child {\n margin-right: 0; }\n .pagination.rounded-separated .page-item:last-child .page-link {\n border-radius: 0 10px 10px 0; }\n .pagination.rounded-separated .page-item .page-link {\n border-radius: 2px; }\n\n/* pagination variations */\n.pagination-primary .page-item.active .page-link {\n background: #1bdbe0;\n border-color: #1bdbe0; }\n\n.pagination-primary .page-item .page-link:hover {\n background: #2fe1e6;\n border-color: #1bdbe0;\n color: #ffffff; }\n\n.pagination-secondary .page-item.active .page-link {\n background: #d8d8d8;\n border-color: #d8d8d8; }\n\n.pagination-secondary .page-item .page-link:hover {\n background: #e5e5e5;\n border-color: #d8d8d8;\n color: #ffffff; }\n\n.pagination-success .page-item.active .page-link {\n background: #38ce3c;\n border-color: #38ce3c; }\n\n.pagination-success .page-item .page-link:hover {\n background: #4cd350;\n border-color: #38ce3c;\n color: #ffffff; }\n\n.pagination-info .page-item.active .page-link {\n background: #8e32e9;\n border-color: #8e32e9; }\n\n.pagination-info .page-item .page-link:hover {\n background: #9b49eb;\n border-color: #8e32e9;\n color: #ffffff; }\n\n.pagination-warning .page-item.active .page-link {\n background: #ffde73;\n border-color: #ffde73; }\n\n.pagination-warning .page-item .page-link:hover {\n background: #ffe48d;\n border-color: #ffde73;\n color: #ffffff; }\n\n.pagination-danger .page-item.active .page-link {\n background: #ff4d6b;\n border-color: #ff4d6b; }\n\n.pagination-danger .page-item .page-link:hover {\n background: #ff6780;\n border-color: #ff4d6b;\n color: #ffffff; }\n\n.pagination-light .page-item.active .page-link {\n background: #f8f9fa;\n border-color: #f8f9fa; }\n\n.pagination-light .page-item .page-link:hover {\n background: white;\n border-color: #f8f9fa;\n color: #ffffff; }\n\n.pagination-dark .page-item.active .page-link {\n background: #3e4b5b;\n border-color: #3e4b5b; }\n\n.pagination-dark .page-item .page-link:hover {\n background: #48586a;\n border-color: #3e4b5b;\n color: #ffffff; }\n\n/* Tables */\n.table {\n margin-bottom: 0; }\n .table thead th {\n border-top: 0;\n border-bottom-width: 1px;\n font-family: \"Open Sans\", sans-serif;\n font-weight: 600;\n font-weight: initial; }\n .table thead th i {\n margin-left: 0.325rem; }\n .table th,\n .table td {\n vertical-align: middle;\n font-size: 0.875rem;\n line-height: 1;\n white-space: nowrap; }\n .table th img,\n .table td img {\n width: 36px;\n height: 36px;\n border-radius: 100%; }\n .table th .badge,\n .table td .badge {\n margin-bottom: 0; }\n .table.table-borderless {\n border: none; }\n .table.table-borderless tr,\n .table.table-borderless td,\n .table.table-borderless th {\n border: none; }\n\n/* Preview */\n.preview-list .preview-item {\n display: -webkit-flex;\n display: flex;\n -webkit-flex-direction: row;\n flex-direction: row;\n -webkit-align-items: flex-start;\n align-items: flex-start;\n padding: .75rem 1.5rem;\n font-size: .875rem; }\n .preview-list .preview-item:last-child {\n border-bottom: 0; }\n .preview-list .preview-item:hover {\n background: #f8f9fa; }\n .preview-list .preview-item .form-check {\n margin-top: 8px;\n margin-right: 1rem; }\n .preview-list .preview-item .preview-thumbnail {\n color: #ffffff;\n position: relative; }\n .preview-list .preview-item .preview-thumbnail img,\n .preview-list .preview-item .preview-thumbnail .preview-icon {\n width: 36px;\n height: 36px;\n border-radius: 100%; }\n .preview-list .preview-item .preview-thumbnail .preview-icon {\n padding: 6px;\n text-align: center;\n display: -webkit-flex;\n display: flex;\n -webkit-align-items: center;\n align-items: center;\n -webkit-justify-content: center;\n justify-content: center; }\n .preview-list .preview-item .preview-thumbnail .preview-icon i {\n font-size: 1.125rem;\n margin: 0; }\n .preview-list .preview-item .preview-thumbnail .badge {\n border: 2px solid #ffffff;\n border-radius: 100%;\n bottom: 5px;\n display: block;\n height: 14px;\n left: -5px;\n padding: 0;\n position: absolute;\n width: 14px; }\n .preview-list .preview-item .preview-item-content {\n line-height: 1;\n padding-left: 15px; }\n .preview-list .preview-item .preview-item-content:first-child {\n padding-left: 0; }\n .preview-list .preview-item .preview-item-content p {\n margin-bottom: 10px; }\n .preview-list .preview-item .preview-item-content p .content-category {\n font-family: 'source-sans-pro-semibold', sans-serif;\n padding-right: 15px;\n border-right: 1px solid #e8ecf1; }\n .rtl .preview-list .preview-item .preview-item-content {\n padding-left: 0;\n padding-right: 1rem;\n margin-right: 0;\n margin-left: auto; }\n .preview-list .preview-item .preview-actions {\n display: -webkit-flex;\n display: flex;\n -webkit-flex-direction: row;\n flex-direction: row; }\n .preview-list .preview-item .preview-actions i {\n width: 29px;\n color: #e6e9ed;\n height: 29px;\n border: 2px solid #e6e9ed;\n border-radius: 100%;\n padding: 3px 6px;\n display: inline-block; }\n .preview-list .preview-item .preview-actions i:first-child {\n margin-right: 10px; }\n\n.preview-list.comment-preview .preview-item {\n padding: .87rem 0; }\n .preview-list.comment-preview .preview-item:first-child {\n padding-top: 0; }\n .preview-list.comment-preview .preview-item p {\n line-height: 27px; }\n\n.preview-list.bordered .preview-item {\n border-bottom: 1px solid #e8ecf1; }\n .preview-list.bordered .preview-item:last-child {\n border-bottom: 0; }\n\n/*-------------------------------------------------------------------*/\n/* === Plugin overrides === */\n/* Chartist */\n.ct-series-a .ct-line {\n stroke: #a29afc;\n stroke-width: 3px;\n stroke-dasharray: 10px 20px; }\n\n.ct-series-a .ct-point {\n stroke: #6355f9;\n stroke-width: 10px;\n stroke-linecap: round; }\n\n.ct-series-b .ct-line {\n stroke: #80d691;\n stroke-width: 3px;\n stroke-dasharray: 10px 20px; }\n\n.ct-series-b .ct-point {\n stroke: #4ac462;\n stroke-width: 10px;\n stroke-linecap: round; }\n\n.ct-series-c .ct-line {\n stroke: #f7cb9b;\n stroke-width: 3px;\n stroke-dasharray: 10px 20px; }\n\n.ct-series-c .ct-point {\n stroke: #f2a859;\n stroke-width: 10px;\n stroke-linecap: round; }\n\n.ct-series-a .ct-bar {\n stroke: #a29afc;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n.ct-series-b .ct-bar {\n stroke: #80d691;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n.ct-series-c .ct-bar {\n stroke: #f7cb9b;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n.ct-series-d .ct-bar {\n stroke: #fcb2b2;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n.ct-series-a .ct-slice-pie {\n fill: #a29afc;\n stroke-width: 4px; }\n\n.ct-series-b .ct-slice-pie {\n fill: #80d691;\n stroke-width: 4px; }\n\n.ct-series-c .ct-slice-pie {\n fill: #fcb2b2;\n stroke-width: 4px; }\n\n.ct-series-d .ct-slice-pie {\n fill: #f7cb9b;\n stroke-width: 4px; }\n\n.ct-series-a .ct-slice-donut-solid {\n fill: #a29afc; }\n\n.ct-series-b .ct-slice-donut-solid {\n fill: #80d691; }\n\n.ct-series-c .ct-slice-donut-solid {\n fill: #fcb2b2; }\n\n.ct-series-a .ct-slice-donut-solid {\n fill: #f7cb9b; }\n\n#ct-chart-dash-barChart .ct-series-a .ct-bar {\n stroke: #fb9999;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n#ct-chart-dash-barChart .ct-series-b .ct-bar {\n stroke: #8b81fb;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n#ct-chart-dash-barChart .ct-series-c .ct-bar {\n stroke: #a29afc;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n#ct-chart-dash-barChart .ct-series-d .ct-bar {\n stroke: #b9b3fc;\n stroke-width: 20px;\n stroke-dasharray: 0;\n stroke-linecap: squre; }\n\n/* Select2 */\n.select2-container--default .select2-results__option--highlighted[aria-selected] {\n background: #1bdbe0; }\n\n.select2-container--default .select2-selection--single,\n.select2-container--default .select2-dropdown,\n.select2-container--default .select2-selection--multiple {\n border-color: #e8ecf1; }\n .select2-container--default .select2-selection--single .select2-search__field,\n .select2-container--default .select2-dropdown .select2-search__field,\n .select2-container--default .select2-selection--multiple .select2-search__field {\n border-color: #e8ecf1; }\n\n.select2-container--default .select2-selection--single {\n height: auto; }\n .select2-container--default .select2-selection--single .select2-selection__rendered {\n line-height: 14px; }\n\n.select2-container--default .select2-dropdown {\n font-size: .8125rem; }\n\n.select2-container--default.select2-container--focus .select2-selection--multiple {\n border-color: #e8ecf1; }\n\n.select2-container--default .select2-selection--multiple .select2-selection__choice {\n color: #ffffff;\n border: 0;\n border-radius: 3px;\n padding: 6px;\n font-size: .625rem;\n font-family: inherit;\n line-height: 1; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {\n color: #ffffff; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+1) {\n background: #1bdbe0; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+2) {\n background: #38ce3c; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+3) {\n background: #8e32e9; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+4) {\n background: #ff4d6b; }\n .select2-container--default .select2-selection--multiple .select2-selection__choice:nth-child(5n+5) {\n background: #ffde73; }\n\n/* Typeahead */\n.tt-menu,\n.gist {\n text-align: left; }\n\n.twitter-typeahead {\n max-width: 100%; }\n\n.typeahead {\n background-color: #ffffff; }\n .typeahead:focus {\n border-color: #e8ecf1; }\n\n.tt-query {\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }\n\n.tt-hint {\n color: #434a54; }\n\n.tt-menu {\n width: 100%;\n margin: 12px 0;\n padding: 8px 0;\n background-color: #ffffff;\n border: 1px solid #e8ecf1;\n -webkit-border-radius: 8px;\n -moz-border-radius: 8px;\n border-radius: 8px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }\n\n.tt-suggestion {\n padding: 3px 20px;\n font-size: inherit; }\n .tt-suggestion:hover {\n cursor: pointer;\n color: #ffffff;\n background-color: #1bdbe0; }\n .tt-suggestion .tt-cursor {\n color: #ffffff;\n background-color: #1bdbe0; }\n .tt-suggestion p {\n margin: 0; }\n\n/*-------------------------------------------------------------------*/\n/* === Landing screens === */\n/* Auth */\n.auth .login-half-bg {\n background: url(\"../../images/auth/login-bg.jpg\");\n background-size: cover; }\n\n.auth .register-half-bg {\n background: url(\"../../images/auth/register-bg.jpg\");\n background-size: cover; }\n\n.auth.lock-full-bg {\n background: url(\"../../images/auth/lockscreen-bg.jpg\");\n background-size: cover; }\n\n.auth .lock-profile-img {\n width: 90px;\n height: 90px;\n border-radius: 100%; }\n\n.auth .auth-form-dark {\n background: rgba(0, 0, 0, 0.6);\n color: #ffffff; }\n .auth .auth-form-dark .form-control, .auth .auth-form-dark .select2-container--default .select2-selection--single, .select2-container--default .auth .auth-form-dark .select2-selection--single, .auth .auth-form-dark .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth .auth-form-dark .select2-search__field, .auth .auth-form-dark .typeahead,\n .auth .auth-form-dark .tt-query,\n .auth .auth-form-dark .tt-hint {\n border-color: rgba(255, 255, 255, 0.2);\n color: #ffffff; }\n .auth .auth-form-dark .form-control:-ms-input-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single:-ms-input-placeholder, .select2-container--default .auth .auth-form-dark .select2-selection--single:-ms-input-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single .select2-search__field:-ms-input-placeholder, .select2-container--default .select2-selection--single .auth .auth-form-dark .select2-search__field:-ms-input-placeholder, .auth .auth-form-dark .typeahead:-ms-input-placeholder,\n .auth .auth-form-dark .tt-query:-ms-input-placeholder,\n .auth .auth-form-dark .tt-hint:-ms-input-placeholder {\n color: #ffffff; }\n .auth .auth-form-dark .form-control:-moz-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single:-moz-placeholder, .select2-container--default .auth .auth-form-dark .select2-selection--single:-moz-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single .select2-search__field:-moz-placeholder, .select2-container--default .select2-selection--single .auth .auth-form-dark .select2-search__field:-moz-placeholder, .auth .auth-form-dark .typeahead:-moz-placeholder,\n .auth .auth-form-dark .tt-query:-moz-placeholder,\n .auth .auth-form-dark .tt-hint:-moz-placeholder {\n color: #ffffff; }\n .auth .auth-form-dark .form-control::-moz-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single::-moz-placeholder, .select2-container--default .auth .auth-form-dark .select2-selection--single::-moz-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single .select2-search__field::-moz-placeholder, .select2-container--default .select2-selection--single .auth .auth-form-dark .select2-search__field::-moz-placeholder, .auth .auth-form-dark .typeahead::-moz-placeholder,\n .auth .auth-form-dark .tt-query::-moz-placeholder,\n .auth .auth-form-dark .tt-hint::-moz-placeholder {\n color: #ffffff; }\n .auth .auth-form-dark .form-control::-webkit-input-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single::-webkit-input-placeholder, .select2-container--default .auth .auth-form-dark .select2-selection--single::-webkit-input-placeholder, .auth .auth-form-dark .select2-container--default .select2-selection--single .select2-search__field::-webkit-input-placeholder, .select2-container--default .select2-selection--single .auth .auth-form-dark .select2-search__field::-webkit-input-placeholder, .auth .auth-form-dark .typeahead::-webkit-input-placeholder,\n .auth .auth-form-dark .tt-query::-webkit-input-placeholder,\n .auth .auth-form-dark .tt-hint::-webkit-input-placeholder {\n color: #ffffff; }\n\n.auth .auth-form-light {\n background: #ffffff; }\n .auth .auth-form-light select {\n color: #c9c8c8; }\n .auth .auth-form-light .input-group .form-control:focus, .auth .auth-form-light .input-group .select2-container--default .select2-selection--single:focus, .select2-container--default .auth .auth-form-light .input-group .select2-selection--single:focus, .auth .auth-form-light .input-group .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth .auth-form-light .input-group .select2-search__field:focus, .auth .auth-form-light .input-group .typeahead:focus,\n .auth .auth-form-light .input-group .tt-query:focus,\n .auth .auth-form-light .input-group .tt-hint:focus, .auth .auth-form-light .input-group .form-control:active, .auth .auth-form-light .input-group .select2-container--default .select2-selection--single:active, .select2-container--default .auth .auth-form-light .input-group .select2-selection--single:active, .auth .auth-form-light .input-group .select2-container--default .select2-selection--single .select2-search__field:active, .select2-container--default .select2-selection--single .auth .auth-form-light .input-group .select2-search__field:active, .auth .auth-form-light .input-group .typeahead:active,\n .auth .auth-form-light .input-group .tt-query:active,\n .auth .auth-form-light .input-group .tt-hint:active {\n border-color: #e8ecf1; }\n\n.auth .auth-form-transparent {\n background: transparent; }\n .auth .auth-form-transparent .form-control, .auth .auth-form-transparent .select2-container--default .select2-selection--single, .select2-container--default .auth .auth-form-transparent .select2-selection--single, .auth .auth-form-transparent .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth .auth-form-transparent .select2-search__field, .auth .auth-form-transparent .typeahead,\n .auth .auth-form-transparent .tt-query,\n .auth .auth-form-transparent .tt-hint,\n .auth .auth-form-transparent .input-group-text {\n border-color: #d8d8d8; }\n .auth .auth-form-transparent .form-control:focus, .auth .auth-form-transparent .select2-container--default .select2-selection--single:focus, .select2-container--default .auth .auth-form-transparent .select2-selection--single:focus, .auth .auth-form-transparent .select2-container--default .select2-selection--single .select2-search__field:focus, .select2-container--default .select2-selection--single .auth .auth-form-transparent .select2-search__field:focus, .auth .auth-form-transparent .typeahead:focus,\n .auth .auth-form-transparent .tt-query:focus,\n .auth .auth-form-transparent .tt-hint:focus, .auth .auth-form-transparent .form-control:active, .auth .auth-form-transparent .select2-container--default .select2-selection--single:active, .select2-container--default .auth .auth-form-transparent .select2-selection--single:active, .auth .auth-form-transparent .select2-container--default .select2-selection--single .select2-search__field:active, .select2-container--default .select2-selection--single .auth .auth-form-transparent .select2-search__field:active, .auth .auth-form-transparent .typeahead:active,\n .auth .auth-form-transparent .tt-query:active,\n .auth .auth-form-transparent .tt-hint:active,\n .auth .auth-form-transparent .input-group-text:focus,\n .auth .auth-form-transparent .input-group-text:active {\n border-color: #d8d8d8; }\n .auth .auth-form-transparent select {\n outline-color: #d8d8d8; }\n\n.auth.auth-img-bg {\n padding: 0; }\n @media (min-width: 768px) {\n .auth.auth-img-bg .auth-form-transparent {\n width: 55%;\n margin: auto; } }\n\n.auth .brand-logo {\n margin-bottom: 2rem; }\n .auth .brand-logo img {\n width: 150px; }\n\n.auth form .form-group {\n margin-bottom: 1.5rem; }\n .auth form .form-group label {\n font-size: .8125rem; }\n .auth form .form-group .form-control, .auth form .form-group .select2-container--default .select2-selection--single, .select2-container--default .auth form .form-group .select2-selection--single, .auth form .form-group .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single .auth form .form-group .select2-search__field, .auth form .form-group .typeahead,\n .auth form .form-group .tt-query,\n .auth form .form-group .tt-hint {\n background: transparent;\n border-radius: 0;\n font-size: .9375rem; }\n\n.auth form .auth-form-btn {\n height: 50px;\n line-height: 1.5; }\n\n.auth form .auth-link {\n font-size: 0.875rem; }\n .auth form .auth-link:hover {\n color: initial; }\n\n/* Navbar */\n.navbar {\n font-family: \"Open Sans\", sans-serif;\n font-weight: 300;\n background: #fff;\n transition: background 0.25s ease;\n -webkit-transition: background 0.25s ease;\n -moz-transition: background 0.25s ease;\n -ms-transition: background 0.25s ease; }\n .navbar .navbar-brand {\n width: 110px; }\n .navbar .navbar-brand-wrapper {\n transition: width 0.25s ease, background 0.25s ease;\n -webkit-transition: width 0.25s ease, background 0.25s ease;\n -moz-transition: width 0.25s ease, background 0.25s ease;\n -ms-transition: width 0.25s ease, background 0.25s ease;\n background: #181824;\n width: 240px;\n height: 70px;\n padding: 0 1.75rem; }\n @media (max-width: 991px) {\n .navbar .navbar-brand-wrapper {\n width: 55px;\n padding-left: 15px;\n padding-right: 15px; } }\n .navbar .navbar-brand-wrapper .navbar-brand {\n color: #27367f;\n font-size: 1.5rem;\n line-height: 48px;\n margin-right: 0;\n padding: .25rem 0; }\n .navbar .navbar-brand-wrapper .navbar-brand:active, .navbar .navbar-brand-wrapper .navbar-brand:focus, .navbar .navbar-brand-wrapper .navbar-brand:hover {\n color: #1b2658; }\n .navbar .navbar-brand-wrapper .navbar-brand img {\n width: calc(240px - 120px);\n max-width: 100%;\n height: 28px;\n margin: auto;\n vertical-align: middle; }\n .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini {\n display: none; }\n @media screen and (max-width: 991px) {\n .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini {\n display: flex; } }\n .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini img {\n width: calc(70px - 35px);\n max-width: 100%;\n height: 28px;\n margin: auto;\n display: inline; }\n .navbar .navbar-brand-wrapper .navbar-toggler {\n color: #626262;\n padding: 0;\n margin-left: auto; }\n @media screen and (max-width: 991px) {\n .navbar .navbar-brand-wrapper .navbar-toggler {\n display: none; } }\n .sidebar-icon-only .navbar .navbar-brand-wrapper .navbar-toggler {\n margin-right: auto;\n margin-left: auto; }\n .navbar .navbar-menu-wrapper {\n transition: width 0.25s ease;\n -webkit-transition: width 0.25s ease;\n -moz-transition: width 0.25s ease;\n -ms-transition: width 0.25s ease;\n color: #111111;\n padding-left: 24px;\n padding-right: 24px;\n width: calc(100% - 240px);\n height: 70px;\n box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.11); }\n @media (max-width: 991px) {\n .navbar .navbar-menu-wrapper {\n width: auto;\n padding-left: 15px;\n padding-right: 15px; } }\n .navbar .navbar-menu-wrapper .navbar-toggler {\n border: 0;\n color: inherit;\n height: 70px;\n border-radius: 0px;\n padding-left: 5px;\n padding-right: 20px; }\n .navbar .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) {\n font-size: 1.5rem; }\n @media (max-width: 991px) {\n .navbar .navbar-menu-wrapper .navbar-toggler:not(.navbar-toggler-right) {\n display: none; } }\n @media (max-width: 991px) {\n .navbar .navbar-menu-wrapper .navbar-toggler.navbar-toggler-right {\n padding-left: 15px;\n padding-right: 11px;\n border-right: none; } }\n .navbar .navbar-menu-wrapper .search-form {\n position: relative;\n margin-right: 15px; }\n .navbar .navbar-menu-wrapper .search-form i {\n font-size: 20px;\n position: absolute;\n left: 0;\n top: 50%;\n transform: translateY(-50%);\n color: #626262; }\n .navbar .navbar-menu-wrapper .search-form input {\n background-color: transparent;\n border: none;\n cursor: pointer;\n width: 0;\n height: 35px;\n padding: 0 0 0 20px;\n position: relative;\n transition: width 400ms ease, background 400ms ease; }\n .navbar .navbar-menu-wrapper .search-form input:focus {\n background-color: transparent;\n border-bottom: 1px solid #626262;\n border-radius: 0;\n padding-left: 30px;\n background-position: 5px 7px;\n cursor: text;\n outline: 0;\n width: 140px; }\n .navbar .navbar-menu-wrapper .count-indicator {\n position: relative; }\n .navbar .navbar-menu-wrapper .count-indicator .count-symbol,\n .navbar .navbar-menu-wrapper .count-indicator .count-number {\n position: absolute;\n border-radius: 100%;\n border: 2px solid #ffffff; }\n .navbar .navbar-menu-wrapper .count-indicator .count-symbol {\n top: 17px;\n right: -3px;\n width: 10px;\n height: 10px; }\n .navbar .navbar-menu-wrapper .count-indicator .count-number {\n min-width: 14px;\n height: 14px;\n font-size: .5rem;\n color: #ffffff;\n bottom: 16px;\n right: -5px;\n line-height: 1;\n text-align: center; }\n .navbar .navbar-menu-wrapper .count-indicator:after {\n display: none; }\n .navbar .navbar-menu-wrapper .navbar-nav {\n flex-direction: row;\n align-items: center; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link {\n color: inherit;\n font-size: 0.875rem;\n margin-left: 15px;\n margin-right: 15px;\n height: 35px;\n display: -webkit-flex;\n display: flex;\n -webkit-align-items: center;\n align-items: center; }\n @media (max-width: 767px) {\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link {\n margin-left: .8rem;\n margin-right: .8rem; } }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item .nav-link i {\n font-size: 1.25rem;\n color: #626262; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown {\n height: 70px;\n display: flex;\n align-items: center; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-toggle {\n position: relative;\n padding: 0 20px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-toggle:after {\n position: absolute;\n top: 50%;\n right: 0;\n transform: translateY(-50%);\n font-size: 14px;\n color: grey; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu {\n border: none;\n border-radius: 5px;\n -webkit-box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2);\n -moz-box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2);\n box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2); }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown {\n position: absolute;\n font-size: 0.9rem;\n margin-top: 0;\n padding: 0; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-item {\n margin-bottom: 0;\n padding: 11px 13px;\n cursor: pointer; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-item i {\n font-size: 17px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-item .ellipsis {\n max-width: 200px;\n overflow: hidden;\n text-overflow: ellipsis; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .dropdown-menu.navbar-dropdown .dropdown-divider {\n margin: 0; }\n @media (max-width: 991px) {\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown {\n position: static; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.dropdown .navbar-dropdown {\n left: 20px;\n right: 20px;\n top: 70px;\n width: calc(100% - 40px); } }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown {\n position: relative; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown .dropdown-menu {\n min-width: 250px;\n margin-top: 9px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown .dropdown-menu .dropdown-header {\n padding: 20px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown .dropdown-menu .dropdown-item {\n padding: 10px 15px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown .dropdown-menu .dropdown-item .dropdown-item-icon {\n margin-right: 15px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.user-dropdown .dropdown-toggle img {\n margin-right: 14px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown {\n margin-left: 24px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown .dropdown-menu {\n width: 170px;\n left: -15px !important; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown .dropdown-menu .dropdown-item {\n padding-left: 22px;\n padding-right: 12px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown .dropdown-menu .dropdown-item i {\n margin-right: 15px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown .dropdown-toggle {\n margin-right: 0;\n margin-left: 0;\n border-left: 1px solid #ecf0f4;\n padding-left: 44px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item.language-dropdown i {\n font-size: 14px; }\n .navbar .navbar-menu-wrapper .navbar-nav .nav-item .message-dropdown.count-indicator .count {\n transform: translate(-50%);\n position: absolute;\n width: 10px;\n height: 10px;\n border-radius: 50%;\n background-color: #ff4d6b;\n font-size: 6px;\n color: #ffffff;\n text-align: center;\n top: 4px;\n left: 50%; }\n @media (min-width: 992px) {\n .navbar .navbar-menu-wrapper .navbar-nav.navbar-nav-right {\n margin-left: auto; } }\n\n@media (max-width: 991px) {\n .navbar {\n flex-direction: row; }\n .navbar .navbar-brand-wrapper {\n width: 75px; }\n .navbar .navbar-brand-wrapper .navbar-brand.brand-logo {\n display: none; }\n .navbar .navbar-brand-wrapper .navbar-brand.brand-logo-mini {\n display: inline-block; }\n .navbar-collapse {\n display: flex;\n margin-top: 0.5rem; } }\n\n@media (max-width: 480px) {\n .navbar .navbar-brand-wrapper {\n width: 55px; }\n .navbar .navbar-brand-wrapper .brand-logo-mini {\n padding-top: 0px; } }\n\n/* Sidebar */\n.sidebar {\n min-height: calc(100vh - 70px);\n background: #181824;\n font-family: \"Open Sans\", sans-serif;\n padding: 0;\n width: 240px;\n z-index: 11;\n transition: width 0.25s ease, background 0.25s ease;\n -webkit-transition: width 0.25s ease, background 0.25s ease;\n -moz-transition: width 0.25s ease, background 0.25s ease;\n -ms-transition: width 0.25s ease, background 0.25s ease; }\n .sidebar .nav {\n overflow: hidden;\n flex-wrap: nowrap;\n flex-direction: column;\n margin-bottom: 60px; }\n .sidebar .nav .nav-item {\n padding: 0 1.75rem;\n -webkit-transition-duration: 0.25s;\n -moz-transition-duration: 0.25s;\n -o-transition-duration: 0.25s;\n transition-duration: 0.25s;\n transition-property: background;\n -webkit-transition-property: background; }\n .sidebar .nav .nav-item .collapse {\n z-index: 999; }\n .sidebar .nav .nav-item .nav-link {\n display: -webkit-flex;\n display: flex;\n -webkit-align-items: center;\n align-items: center;\n white-space: nowrap;\n padding: 0.625rem 0 0.625rem 0;\n color: #ffffff;\n -webkit-transition-duration: 0.45s;\n -moz-transition-duration: 0.45s;\n -o-transition-duration: 0.45s;\n transition-duration: 0.45s;\n transition-property: color;\n -webkit-transition-property: color; }\n :not(.sub-menu) .sidebar .nav .nav-item .nav-link {\n border-top: 1px solid rgba(255, 255, 255, 0.11); }\n .sidebar .nav .nav-item .nav-link i {\n color: inherit; }\n .sidebar .nav .nav-item .nav-link i.menu-icon {\n font-size: 1.125rem;\n line-height: 1;\n margin-left: auto;\n color: #626262; }\n .sidebar .nav .nav-item .nav-link i.menu-icon:before {\n vertical-align: middle; }\n .sidebar .nav .nav-item .nav-link .menu-title {\n color: inherit;\n display: inline-block;\n font-size: 0.875rem;\n line-height: 1;\n vertical-align: middle; }\n .sidebar .nav .nav-item .nav-link .badge {\n margin-right: auto;\n margin-left: 1rem; }\n .sidebar .nav .nav-item .nav-link[aria-expanded=\"true\"] .menu-arrow:before {\n content: \"\\f140\"; }\n .sidebar .nav .nav-item.active:not(.navbar-brand-mini-wrapper) {\n background: #282828; }\n .sidebar .nav .nav-item.active:not(.navbar-brand-mini-wrapper) > .nav-link .menu-title {\n color: #b3b3b3;\n font-family: \"Open Sans\", sans-serif;\n font-weight: 600; }\n .sidebar .nav .nav-item.active:not(.navbar-brand-mini-wrapper) > .nav-link i {\n color: #38ce3c; }\n .sidebar .nav .nav-item:not(.nav-category):hover {\n background: #2c2c43; }\n .sidebar .nav .nav-item.nav-profile {\n max-width: 270px;\n margin-top: 10px;\n margin-bottom: 10px; }\n .sidebar .nav .nav-item.nav-profile .nav-link {\n display: flex;\n border-top: none;\n padding: 10px 0; }\n .sidebar .nav .nav-item.nav-profile .nav-link .profile-image {\n margin-right: 15px;\n position: relative; }\n .rtl .sidebar .nav .nav-item.nav-profile .nav-link .profile-image {\n margin-right: 0;\n margin-left: 15px; }\n .sidebar .nav .nav-item.nav-profile .nav-link .dot-indicator {\n position: absolute;\n top: 50%;\n right: 0px;\n transform: translate(50%, -50%);\n width: 7px;\n height: 7px;\n border-radius: 50%; }\n .rtl .sidebar .nav .nav-item.nav-profile .nav-link .dot-indicator {\n left: 0;\n right: auto;\n transform: translate(-50%, -50%); }\n .sidebar .nav .nav-item.nav-profile .nav-link .profile-name {\n margin-bottom: 5px;\n font-weight: 500;\n font-size: 15px; }\n .sidebar .nav .nav-item.nav-profile .nav-link .designation {\n margin-bottom: 0;\n font-weight: 400;\n color: #9c9fa6;\n font-size: 12px; }\n .sidebar .nav .nav-item.nav-profile .nav-link .icon-container {\n font-size: 16px;\n position: relative;\n color: #626262;\n margin-left: auto;\n align-self: flex-start; }\n .rtl .sidebar .nav .nav-item.nav-profile .nav-link .icon-container {\n margin-left: 0;\n margin-right: auto; }\n .sidebar-mini .sidebar .nav .nav-item.nav-profile .nav-link .icon-container {\n margin-right: auto; }\n .sidebar .nav .nav-item.nav-profile .nav-link .icon-container .dot-indicator {\n top: 0;\n transform: none;\n color: #626262; }\n .sidebar .nav .nav-item.nav-category {\n color: #38ce3c;\n font-size: 13px;\n font-weight: 700;\n text-transform: uppercase; }\n .sidebar .nav .nav-item.nav-category .nav-link {\n border: none; }\n .sidebar .nav .nav-item.nav-category ~ .nav-category .nav-link {\n border-top: 1px solid rgba(255, 255, 255, 0.11); }\n .sidebar .nav .nav-item.nav-category + .nav-item > .nav-link {\n border-top: 1px solid rgba(255, 255, 255, 0.11); }\n .sidebar .nav .nav-item.nav-category .nav-link {\n color: inherit;\n padding: 1rem 0 1.125rem; }\n .sidebar-dark .sidebar .nav .nav-item.nav-category .nav-link {\n color: inherit; }\n .sidebar .nav .nav-item.pro-upgrade .nav-link {\n padding-top: 2.25rem; }\n .sidebar .nav .nav-item.pro-upgrade .nav-link .btn-upgrade {\n background-image: linear-gradient(to left, #a25cff, #d78aff);\n background-color: #a25cff;\n color: #ffffff; }\n .sidebar .nav .nav-item.pro-upgrade:hover {\n background-color: transparent !important; }\n .sidebar-dark .sidebar .nav .nav-item.pro-upgrade:hover {\n background-color: transparent !important; }\n .sidebar .nav .nav-item.navbar-brand-mini-wrapper {\n display: none; }\n .sidebar .nav .nav-item.navbar-brand-mini-wrapper .nav-link {\n width: 100%; }\n .sidebar-icon-only .sidebar .nav .nav-item.navbar-brand-mini-wrapper .nav-link {\n margin: 0; }\n .sidebar-icon-only .sidebar .nav .nav-item.navbar-brand-mini-wrapper {\n display: block; }\n .sidebar .nav:not(.sub-menu) > .nav-item:hover:not(.nav-category):not(.nav-profile) > .nav-link {\n color: #ffffff; }\n .sidebar .nav.sub-menu {\n margin-bottom: 20px;\n margin-top: 0;\n list-style: none; }\n .sidebar .nav.sub-menu .nav-item {\n padding: 0; }\n .sidebar .nav.sub-menu .nav-item .nav-link {\n color: #ffffff;\n padding: 0.75rem 2rem 0.75rem 2rem;\n position: relative;\n font-size: 0.8125rem;\n line-height: 1;\n height: auto;\n border-top: 0; }\n .sidebar .nav.sub-menu .nav-item .nav-link:before {\n content: \"\\e606\";\n font-family: \"simple-line-icons\";\n display: block;\n position: absolute;\n left: 0px;\n top: 50%;\n -moz-transform: translateY(-50%);\n -o-transform: translateY(-50%);\n -ms-transform: translateY(-50%);\n -webkit-transform: translateY(-50%);\n transform: translateY(-50%);\n color: white;\n font-size: .75rem; }\n .sidebar .nav.sub-menu .nav-item .nav-link.active {\n color: #b3b3b3;\n background: transparent; }\n .sidebar .nav.sub-menu .nav-item .nav-link:hover {\n color: #b3b3b3; }\n .sidebar .nav.sub-menu .nav-item:hover {\n background: transparent; }\n\n/* style for off-canvas menu*/\n@media screen and (max-width: 991px) {\n .sidebar-offcanvas {\n position: fixed;\n max-height: calc(100vh - 70px);\n top: 70px;\n bottom: 0;\n overflow: auto;\n right: -240px;\n -webkit-transition: all 0.25s ease-out;\n -o-transition: all 0.25s ease-out;\n transition: all 0.25s ease-out; }\n .sidebar-offcanvas.active {\n right: 0; } }\n\n.page-body-wrapper {\n min-height: calc(100vh - 70px);\n display: -webkit-flex;\n display: flex;\n -webkit-flex-direction: row;\n flex-direction: row;\n padding-left: 0;\n padding-right: 0; }\n .page-body-wrapper.full-page-wrapper {\n width: 100%;\n min-height: 100vh; }\n\n.navbar.fixed-top + .page-body-wrapper {\n padding-top: 70px; }\n\n.main-panel {\n transition: width 0.25s ease, margin 0.25s ease;\n width: calc(100% - 240px);\n min-height: calc(100vh - 70px);\n display: -webkit-flex;\n display: flex;\n -webkit-flex-direction: column;\n flex-direction: column; }\n @media (max-width: 991px) {\n .main-panel {\n margin-left: 0;\n width: 100%; } }\n\n.content-wrapper {\n background: #ecf0f4;\n padding: 2.75rem 1.5rem 0;\n width: 100%;\n -webkit-flex-grow: 1;\n flex-grow: 1; }\n\n.purchace-popup .close {\n color: inherit;\n opacity: 1; }\n @media (max-width: 991.98px) {\n .purchace-popup .close {\n position: absolute;\n top: 7px;\n right: 10px; } }\n\n.quick-action-toolbar .card .card-header {\n color: #ffffff;\n padding: 12px 30px;\n background-image: linear-gradient(to left, #fad961, #f76b1c);\n border: 0;\n border-radius: 0; }\n .quick-action-toolbar .card .card-header h5 {\n font-weight: 600;\n font-size: 18px; }\n .quick-action-toolbar .card .card-header p {\n color: inherit; }\n .quick-action-toolbar .card .card-header i {\n margin-left: 15px;\n align-self: center; }\n\n.quick-action-toolbar .card .quick-action-btns .btn-light {\n background-color: transparent;\n border: none;\n font-size: 14px;\n color: #111111;\n font-weight: 600;\n display: flex;\n align-items: center; }\n .quick-action-toolbar .card .quick-action-btns .btn-light i {\n color: #626262;\n margin-right: 15px;\n font-size: 18px; }\n .rtl .quick-action-toolbar .card .quick-action-btns .btn-light i {\n margin-left: 15px;\n margin-right: 0; }\n\n.quick-action-toolbar .card .quick-action-btns .btn-wrapper {\n border-right: 1px solid #e8ecf1;\n display: flex;\n justify-content: center; }\n .quick-action-toolbar .card .quick-action-btns .btn-wrapper button {\n display: flex;\n align-items: center; }\n @media screen and (max-width: 767px) {\n .quick-action-toolbar .card .quick-action-btns .btn-wrapper:first-child {\n border-bottom: 1px solid #e8ecf1; } }\n @media screen and (max-width: 576px) {\n .quick-action-toolbar .card .quick-action-btns .btn-wrapper:first-child {\n border-right: none; } }\n @media screen and (max-width: 767px) {\n .quick-action-toolbar .card .quick-action-btns .btn-wrapper:nth-child(2) {\n border-right: none;\n border-bottom: 1px solid #e8ecf1; } }\n @media screen and (max-width: 576px) {\n .quick-action-toolbar .card .quick-action-btns .btn-wrapper:nth-child(3) {\n border-right: none;\n border-bottom: 1px solid #e8ecf1; } }\n .quick-action-toolbar .card .quick-action-btns .btn-wrapper:last-child {\n border: none; }\n\n.income-expense-summary-chart-text h5 {\n font-size: 18px;\n font-weight: 600; }\n\n.income-expense-summary-chart-text h3 {\n font-size: 24px;\n font-weight: bold; }\n\n.income-expense-summary-chart-legend {\n display: flex;\n align-items: center; }\n .income-expense-summary-chart-legend span {\n display: inline-block;\n width: 14px;\n height: 14px;\n border: 2px solid transparent;\n margin-right: 10px; }\n .rtl .income-expense-summary-chart-legend span {\n margin-left: 10px;\n margin-right: 0; }\n\n#income-expense-summary-chart-daterange {\n width: 280px;\n border-radius: 4px;\n border: solid 1px #e8ecf1;\n background-color: #ffffff;\n color: #969696; }\n #income-expense-summary-chart-daterange .input-group-text {\n background-color: transparent;\n color: inherit;\n padding: 10px;\n border: 0; }\n #income-expense-summary-chart-daterange .form-control, #income-expense-summary-chart-daterange .select2-container--default .select2-selection--single, .select2-container--default #income-expense-summary-chart-daterange .select2-selection--single, #income-expense-summary-chart-daterange .select2-container--default .select2-selection--single .select2-search__field, .select2-container--default .select2-selection--single #income-expense-summary-chart-daterange .select2-search__field, #income-expense-summary-chart-daterange .typeahead,\n #income-expense-summary-chart-daterange .tt-query,\n #income-expense-summary-chart-daterange .tt-hint {\n border: 0;\n font-size: 12px;\n font-weight: 600;\n color: inherit;\n padding: 0; }\n\n.income-expense-summary-chart {\n direction: ltr; }\n .income-expense-summary-chart .ct-chart .ct-series .ct-line {\n stroke-width: 3px;\n stroke-dasharray: 0; }\n .income-expense-summary-chart .ct-chart .ct-series-a .ct-line {\n stroke: #6469df; }\n .income-expense-summary-chart .ct-chart .ct-series-a .ct-area {\n fill: #6469df; }\n .income-expense-summary-chart .ct-chart .ct-series-b .ct-line {\n stroke: #33c92d; }\n .income-expense-summary-chart .ct-chart .ct-series-b .ct-area {\n fill: #33c92d; }\n @media screen and (max-width: 480px) {\n .income-expense-summary-chart .ct-chart .ct-labels .ct-label.ct-horizontal {\n transform: rotate(-90deg) translateY(-50%); } }\n\n.ct-chart .ct-line {\n stroke-dasharray: 0; }\n\n.report-summary-header {\n border-bottom: solid 1px #e8ecf1; }\n\n.report-inner-cards-wrapper {\n padding-top: 25px; }\n .report-inner-cards-wrapper .report-inner-card {\n display: flex;\n border-right: solid 1px #e8ecf1;\n padding: 0 40px; }\n .rtl .report-inner-cards-wrapper .report-inner-card {\n border-right: none;\n border-left: solid 1px #e8ecf1; }\n @media screen and (max-width: 1199px) {\n .report-inner-cards-wrapper .report-inner-card {\n padding-top: 12.5px;\n padding-bottom: 12.5px; } }\n .report-inner-cards-wrapper .report-inner-card:first-child {\n padding-left: 15px; }\n .rtl .report-inner-cards-wrapper .report-inner-card:first-child {\n padding-right: 15px;\n padding-left: 40px; }\n @media screen and (max-width: 1199px) {\n .report-inner-cards-wrapper .report-inner-card:first-child {\n border-bottom: solid 1px #e8ecf1; } }\n @media screen and (max-width: 767px) {\n .report-inner-cards-wrapper .report-inner-card:first-child {\n border-right: none;\n padding-right: 12.5px; }\n .rtl .report-inner-cards-wrapper .report-inner-card:first-child {\n border-left: none;\n padding-left: 12.5px; } }\n @media screen and (max-width: 1199px) {\n .report-inner-cards-wrapper .report-inner-card:nth-child(2) {\n padding-right: 12.5px;\n border-bottom: solid 1px #e8ecf1;\n border-right: none; }\n .rtl .report-inner-cards-wrapper .report-inner-card:nth-child(2) {\n border-left: none;\n padding-left: 12.5px;\n padding-right: 40px; } }\n @media screen and (max-width: 767px) {\n .report-inner-cards-wrapper .report-inner-card:nth-child(2) {\n padding-left: 12.5px; }\n .rtl .report-inner-cards-wrapper .report-inner-card:nth-child(2) {\n padding-right: 12.5px; } }\n @media screen and (max-width: 1199px) {\n .report-inner-cards-wrapper .report-inner-card:nth-child(3) {\n padding-left: 12.5px; }\n .rtl .report-inner-cards-wrapper .report-inner-card:nth-child(3) {\n padding-left: 40px;\n padding-right: 12.5px; } }\n @media screen and (max-width: 767px) {\n .report-inner-cards-wrapper .report-inner-card:nth-child(3) {\n border-right: none;\n padding-right: 12.5px;\n border-bottom: solid 1px #e8ecf1; }\n .rtl .report-inner-cards-wrapper .report-inner-card:nth-child(3) {\n border-left: none;\n padding-left: 12.5px; } }\n .report-inner-cards-wrapper .report-inner-card:last-child {\n border-right: 0;\n padding-right: 15px; }\n .rtl .report-inner-cards-wrapper .report-inner-card:last-child {\n border-left: none;\n padding-left: 15px;\n padding-right: 40px; }\n @media screen and (max-width: 767px) {\n .report-inner-cards-wrapper .report-inner-card:last-child {\n border-right: none;\n padding-left: 12.5px; }\n .rtl .report-inner-cards-wrapper .report-inner-card:last-child {\n border-left: none;\n padding-right: 12.5px; } }\n .report-inner-cards-wrapper .report-inner-card .inner-card-text {\n display: flex;\n flex-direction: column;\n justify-content: flex-end; }\n .report-inner-cards-wrapper .report-inner-card .report-title {\n font-size: 14px;\n font-weight: 600;\n color: #111111; }\n .report-inner-cards-wrapper .report-inner-card h4 {\n font-weight: bold; }\n .report-inner-cards-wrapper .report-inner-card .report-count {\n font-size: 14px;\n color: #8e32e9; }\n .report-inner-cards-wrapper .report-inner-card .inner-card-icon {\n width: 62px;\n height: 62px;\n font-size: 25px;\n color: #ffffff;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-left: auto; }\n .rtl .report-inner-cards-wrapper .report-inner-card .inner-card-icon {\n margin-left: 0;\n margin-right: auto; }\n\n.aligner-wrapper {\n position: relative; }\n .aligner-wrapper .wrapper {\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%); }\n\n.square-indicator {\n display: inline-block;\n width: 13px;\n height: 13px; }\n .square-indicator + p {\n font-size: 12px;\n font-weight: 600;\n color: #a7afb7; }\n\n#performance-indicator-chart .ct-series.ct-series-a line {\n stroke: #ff4d6b; }\n\n#performance-indicator-chart .ct-series.ct-series-b line {\n stroke: #8e32e9; }\n\n#performance-indicator-chart .ct-series.ct-series-c line {\n stroke: #1bdbe0; }\n\n#performance-indicator-chart .ct-series .ct-bar {\n stroke-width: 8px;\n stroke-linecap: round; }\n @media screen and (max-width: 480px) {\n #performance-indicator-chart .ct-series .ct-bar {\n stroke-width: 4px; } }\n\n@media screen and (max-width: 480px) {\n #performance-indicator-chart .ct-labels .ct-label.ct-horizontal {\n transform: rotate(-90deg) translateY(20%); } }\n\n.performane-indicator-card .data-time-range {\n color: #a7afb7;\n font-size: 12px;\n font-weight: 600;\n margin-left: 20px; }\n .performane-indicator-card .data-time-range.active {\n color: #111111; }\n\n.table td img.gateway-icon {\n width: 20px;\n height: 20px;\n min-width: 20px; }\n\n.pagination .page-item .page-link {\n font-size: 12px;\n font-weight: 600; }\n @media screen and (max-width: 576px) {\n .pagination .page-item .page-link {\n padding: 0.25rem 0.5rem; } }\n","// /* Fonts */\n\n// //PT_Sans\n// @font-face {\n// font-family: 'ubuntu-light';\n// src: url('../../fonts/Ubuntu/Ubuntu-Light.eot'); /* IE9 Compat Modes */\n// src: url('../../fonts/Ubuntu/Ubuntu-Light.woff2') format('woff2'), /* Super Modern Browsers */\n// url('../../fonts/Ubuntu/Ubuntu-Light.woff') format('woff'), /* Pretty Modern Browsers */\n// url('../../fonts/Ubuntu/Ubuntu-Light.ttf') format('truetype'), /* Safari, Android, iOS */\n// }\n// @font-face {\n// font-family: 'ubuntu-regular';\n// src: url('../../fonts/Ubuntu/Ubuntu-Regular.eot'); /* IE9 Compat Modes */\n// src: url('../../fonts/Ubuntu/Ubuntu-Regular.woff2') format('woff2'), /* Super Modern Browsers */\n// url('../../fonts/Ubuntu/Ubuntu-Regular.woff') format('woff'), /* Pretty Modern Browsers */\n// url('../../fonts/Ubuntu/Ubuntu-Regular.ttf') format('truetype'), /* Safari, Android, iOS */\n// }\n// @font-face {\n// font-family: 'ubuntu-medium';\n// src: url('../../fonts/Ubuntu/Ubuntu-Medium.eot'); /* IE9 Compat Modes */\n// src: url('../../fonts/Ubuntu/Ubuntu-Medium.woff2') format('woff2'), /* Super Modern Browsers */\n// url('../../fonts/Ubuntu/Ubuntu-Medium.woff') format('woff'), /* Pretty Modern Browsers */\n// url('../../fonts/Ubuntu/Ubuntu-Medium.ttf') format('truetype'), /* Safari, Android, iOS */\n// }\n// @font-face {\n// font-family: 'ubuntu-bold';\n// src: url('../../fonts/Ubuntu/Ubuntu-Bold.eot'); /* IE9 Compat Modes */\n// src: url('../../fonts/Ubuntu/Ubuntu-Bold.woff2') format('woff2'), /* Super Modern Browsers */\n// url('../../fonts/Ubuntu/Ubuntu-Bold.woff') format('woff'), /* Pretty Modern Browsers */\n// url('../../fonts/Ubuntu/Ubuntu-Bold.ttf') format('truetype'), /* Safari, Android, iOS */\n// }\n\n@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap');","@import \"shared\";\n\n// CSS Animations.\n\n// Apply an animation property and value with the correct browser support\n@mixin animation-support($property, $value) {\n @include experimental($property, $value, -moz, -webkit, -o, -ms, not -khtml, official); }\n\n// Name of any animation as a string.\n$default-animation-name : false !default;\n\n// Duration of the entire animation in seconds.\n$default-animation-duration : false !default;\n\n// Delay for start of animation in seconds.\n$default-animation-delay : false !default;\n\n// The timing function(s) to be used between keyframes. [ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier($number, $number, $number, $number)]\n$default-animation-timing-function : false !default;\n\n// The number of times an animation cycle is played. [infinite | $number]\n$default-animation-iteration-count : false !default;\n\n// Whether or not the animation should play in reverse on alternate cycles. [normal | alternate]\n$default-animation-direction : false !default;\n\n// What values are applied by the animation outside the time it is executing. [none | forwards | backwards | both]\n$default-animation-fill-mode : false !default;\n\n// Whether the animation is running or paused. [running | paused]\n$default-animation-play-state : false !default;\n\n// Create a named animation sequence that can be applied to elements later.\n//\n// $name - The name of your animation.\n// @content - The keyframes of the animation.\n@mixin keyframes(\n $name,\n $moz: $experimental-support-for-mozilla,\n $webkit: $experimental-support-for-webkit,\n $o: $experimental-support-for-opera,\n $ms: $experimental-support-for-microsoft,\n $khtml: $experimental-support-for-khtml,\n $official: true\n) {\n @if $moz {\n @include with-only-support-for($moz: true) {\n @-moz-keyframes #{$name} { @content; }\n }\n }\n @if $webkit {\n @include with-only-support-for($webkit: true) {\n @-webkit-keyframes #{$name} { @content; }\n }\n }\n @if $o {\n @include with-only-support-for($o: true) {\n @-o-keyframes #{$name} { @content; }\n }\n }\n @if $ms {\n @include with-only-support-for($ms: true) {\n @-ms-keyframes #{$name} { @content; }\n }\n }\n @if $khtml {\n @include with-only-support-for($khtml: true) {\n @-khtml-keyframes #{$name} { @content; }\n }\n }\n @if $official {\n @include with-only-support-for {\n @keyframes #{$name} { @content; }\n }\n }\n}\n\n// Apply 1-10 animation names.\n@mixin animation-name($name-1: $default-animation-name, $name-2: false, $name-3: false, $name-4: false, $name-5: false, $name-6: false, $name-7: false, $name-8: false, $name-9: false, $name-10: false) {\n $name: compact($name-1, $name-2, $name-3, $name-4, $name-5, $name-6, $name-7, $name-8, $name-9, $name-10);\n @include animation-support(animation-name, $name); }\n\n// Apply 1-10 animation durations.\n@mixin animation-duration($duration-1: $default-animation-duration, $duration-2: false, $duration-3: false, $duration-4: false, $duration-5: false, $duration-6: false, $duration-7: false, $duration-8: false, $duration-9: false, $duration-10: false) {\n $duration: compact($duration-1, $duration-2, $duration-3, $duration-4, $duration-5, $duration-6, $duration-7, $duration-8, $duration-9, $duration-10);\n @include animation-support(animation-duration, $duration); }\n\n// Apply 1-10 animation delays.\n@mixin animation-delay($delay-1: $default-animation-delay, $delay-2: false, $delay-3: false, $delay-4: false, $delay-5: false, $delay-6: false, $delay-7: false, $delay-8: false, $delay-9: false, $delay-10: false) {\n $delay: compact($delay-1, $delay-2, $delay-3, $delay-4, $delay-5, $delay-6, $delay-7, $delay-8, $delay-9, $delay-10);\n @include animation-support(animation-delay, $delay); }\n\n// Apply 1-10 animation timing functions.\n@mixin animation-timing-function($function-1: $default-animation-timing-function, $function-2: false, $function-3: false, $function-4: false, $function-5: false, $function-6: false, $function-7: false, $function-8: false, $function-9: false, $function-10: false) {\n $function: compact($function-1, $function-2, $function-3, $function-4, $function-5, $function-6, $function-7, $function-8, $function-9, $function-10);\n @include animation-support(animation-timing-function, $function); }\n\n// Apply 1-10 animation iteration counts.\n@mixin animation-iteration-count($count-1: $default-animation-iteration-count, $count-2: false, $count-3: false, $count-4: false, $count-5: false, $count-6: false, $count-7: false, $count-8: false, $count-9: false, $count-10: false) {\n $count: compact($count-1, $count-2, $count-3, $count-4, $count-5, $count-6, $count-7, $count-8, $count-9, $count-10);\n @include animation-support(animation-iteration-count, $count); }\n\n// Apply 1-10 animation directions.\n@mixin animation-direction($direction-1: $default-animation-direction, $direction-2: false, $direction-3: false, $direction-4: false, $direction-5: false, $direction-6: false, $direction-7: false, $direction-8: false, $direction-9: false, $direction-10: false) {\n $direction: compact($direction-1, $direction-2, $direction-3, $direction-4, $direction-5, $direction-6, $direction-7, $direction-8, $direction-9, $direction-10);\n @include animation-support(animation-direction, $direction); }\n\n// Apply 1-10 animation fill modes.\n@mixin animation-fill-mode($mode-1: $default-animation-fill-mode, $mode-2: false, $mode-3: false, $mode-4: false, $mode-5: false, $mode-6: false, $mode-7: false, $mode-8: false, $mode-9: false, $mode-10: false) {\n $mode: compact($mode-1, $mode-2, $mode-3, $mode-4, $mode-5, $mode-6, $mode-7, $mode-8, $mode-9, $mode-10);\n @include animation-support(animation-fill-mode, $mode); }\n\n// Apply 1-10 animation play states.\n@mixin animation-play-state($state-1: $default-animation-play-state, $state-2: false, $state-3: false, $state-4: false, $state-5: false, $state-6: false, $state-7: false, $state-8: false, $state-9: false, $state-10: false) {\n $state: compact($state-1, $state-2, $state-3, $state-4, $state-5, $state-6, $state-7, $state-8, $state-9, $state-10);\n @include animation-support(animation-play-state, $state); }\n\n// Shortcut to apply a named animation to an element, with all the settings.\n//\n// $animation-1 : Name and settings for the first animation. [ | default]\n// ...\n// $animation-10 : Name and settings for the tenth animation. \n@mixin animation($animation-1: default, $animation-2: false, $animation-3: false, $animation-4: false, $animation-5: false, $animation-6: false, $animation-7: false, $animation-8: false, $animation-9: false, $animation-10: false) {\n @if $animation-1 == default {\n $animation-1: -compass-space-list(compact($default-animation-name, $default-animation-duration, $default-animation-timing-function, $default-animation-delay, $default-animation-iteration-count, $default-animation-direction, $default-animation-fill-mode, $default-animation-play-state)); }\n $animation: compact($animation-1, $animation-2, $animation-3, $animation-4, $animation-5, $animation-6, $animation-7, $animation-8, $animation-9, $animation-10);\n @include animation-support(animation, $animation); }\n","// ---------------------------------------------------------------------------\n@include keyframes(flash) {\n 0% {\n opacity: 1; }\n 25% {\n opacity: 0; }\n 50% {\n opacity: 1; }\n 75% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(bounce) {\n 0% {\n @include translateY(0); }\n 20% {\n @include translateY(0); }\n 40% {\n @include translateY(-30px); }\n 50% {\n @include translateY(0); }\n 60% {\n @include translateY(-15px); }\n 80% {\n @include translateY(0); }\n 100% {\n @include translateY(0); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(shake) {\n 0% {\n @include translateX(0); }\n 10% {\n @include translateX(-10px); }\n 20% {\n @include translateX(10px); }\n 30% {\n @include translateX(-10px); }\n 40% {\n @include translateX(10px); }\n 50% {\n @include translateX(-10px); }\n 60% {\n @include translateX(10px); }\n 70% {\n @include translateX(-10px); }\n 80% {\n @include translateX(10px); }\n 90% {\n @include translateX(-10px); }\n 100% {\n @include translateX(0); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(tada) {\n 0% {\n @include scale(1); }\n 10% {\n @include transform(scale(0.9) rotate(-3deg)); }\n 20% {\n @include transform(scale(0.9) rotate(-3deg)); }\n 30% {\n @include transform(scale(1.1) rotate(3deg)); }\n 40% {\n @include transform(scale(1.1) rotate(-3deg)); }\n 50% {\n @include transform(scale(1.1) rotate(3deg)); }\n 60% {\n @include transform(scale(1.1) rotate(-3deg)); }\n 70% {\n @include transform(scale(1.1) rotate(3deg)); }\n 80% {\n @include transform(scale(1.1) rotate(-3deg)); }\n 90% {\n @include transform(scale(1.1) rotate(3deg)); }\n 100% {\n @include transform(scale(1) rotate(0)); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(swing) {\n 20%, 40%, 60%, 80%, 100% {\n @include transform-origin(top center); }\n 20% {\n @include rotate(15deg); }\n 40% {\n @include rotate(-10deg); }\n 60% {\n @include rotate(5deg); }\n 80% {\n @include rotate(-5deg); }\n 100% {\n @include rotate(0deg); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(wobble) {\n 0% {\n @include translateX(0%); }\n 15% {\n @include transform(translateX(-25%) rotate(-5deg)); }\n 30% {\n @include transform(translateX(20%) rotate(3deg)); }\n 45% {\n @include transform(translateX(-15%) rotate(-3deg)); }\n 60% {\n @include transform(translateX(10%) rotate(2deg)); }\n 75% {\n @include transform(translateX(-5%) rotate(-1deg)); }\n 100% {\n @include transform(translateX(0%)); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(pulse) {\n 0% {\n @include scale(1); }\n 50% {\n @include scale(1.1); }\n 100% {\n @include scale(1); } }\n \n \n// ---------------------------------------------------------------------------\n@include keyframes(wiggle) {\n 0% {\n @include skewX(9deg); }\n 10% {\n @include skewX(-8deg); }\n 20% {\n @include skewX(7deg); }\n 30% {\n @include skewX(-6deg); }\n 40% {\n @include skewX(5deg); }\n 50% {\n @include skewX(-4deg); }\n 60% {\n @include skewX(3deg); }\n 70% {\n @include skewX(-2deg); }\n 80% {\n @include skewX(1deg); }\n 90% {\n @include skewX(0deg); }\n 100% {\n @include skewX(0deg); } }","@import \"../support\";\n\n// This mixin provides basic support for CSS3 properties and\n// their corresponding experimental CSS2 properties when\n// the implementations are identical except for the property\n// prefix.\n@mixin experimental($property, $value,\n $moz : $experimental-support-for-mozilla,\n $webkit : $experimental-support-for-webkit,\n $o : $experimental-support-for-opera,\n $ms : $experimental-support-for-microsoft,\n $khtml : $experimental-support-for-khtml,\n $official : true\n) {\n @if $webkit and $experimental-support-for-webkit { -webkit-#{$property} : $value; }\n @if $khtml and $experimental-support-for-khtml { -khtml-#{$property} : $value; }\n @if $moz and $experimental-support-for-mozilla { -moz-#{$property} : $value; }\n @if $ms and $experimental-support-for-microsoft { -ms-#{$property} : $value; }\n @if $o and $experimental-support-for-opera { -o-#{$property} : $value; }\n @if $official { #{$property} : $value; }\n}\n\n// Same as experimental(), but for cases when the property is the same and the value is vendorized\n@mixin experimental-value($property, $value,\n $moz : $experimental-support-for-mozilla,\n $webkit : $experimental-support-for-webkit,\n $o : $experimental-support-for-opera,\n $ms : $experimental-support-for-microsoft,\n $khtml : $experimental-support-for-khtml,\n $official : true\n) {\n @if $webkit and $experimental-support-for-webkit { #{$property} : -webkit-#{$value}; }\n @if $khtml and $experimental-support-for-khtml { #{$property} : -khtml-#{$value}; }\n @if $moz and $experimental-support-for-mozilla { #{$property} : -moz-#{$value}; }\n @if $ms and $experimental-support-for-microsoft { #{$property} : -ms-#{$value}; }\n @if $o and $experimental-support-for-opera { #{$property} : -o-#{$value}; }\n @if $official { #{$property} : #{$value}; }\n}\n","@import \"shared\";\n\n// @doc off\n// Note ----------------------------------------------------------------------\n// Safari, Chrome, and Firefox all support 3D transforms. However,\n// only in the most recent builds. You should also provide fallback 2d support for\n// Opera and IE. IE10 is slated to have 3d enabled, but is currently unreleased.\n// To make that easy, all 2D transforms include an browser-targeting toggle ($only3d)\n// to switch between the two support lists. The toggle defaults to 'false' (2D),\n// and also accepts 'true' (3D). Currently the lists are as follows:\n// 2D: Mozilla, Webkit, Opera, Official\n// 3D: Webkit, Firefox.\n\n// Available Transforms ------------------------------------------------------\n// - Scale (2d and 3d)\n// - Rotate (2d and 3d)\n// - Translate (2d and 3d)\n// - Skew (2d only)\n\n// Transform Parameters ------------------------------------------------------\n// - Transform Origin (2d and 3d)\n// - Perspective (3d)\n// - Perspective Origin (3d)\n// - Transform Style (3d)\n// - Backface Visibility (3d)\n\n// Mixins --------------------------------------------------------------------\n// transform-origin\n// - shortcuts: transform-origin2d, transform-origin3d\n// - helpers: apply-origin\n// transform\n// - shortcuts: transform2d, transform3d\n// - helpers: simple-transform, create-transform\n// perspective\n// - helpers: perspective-origin\n// transform-style\n// backface-visibility\n// scale\n// - shortcuts: scaleX, scaleY, scaleZ, scale3d\n// rotate\n// - shortcuts: rotateX, rotateY, rotate3d\n// translate\n// - shortcuts: translateX, translateY, translateZ, translate3d\n// skew\n// - shortcuts: skewX, skewY\n\n// Defaults ------------------------------------------------------------------\n// @doc on\n\n// The default x-origin for transforms\n$default-origin-x : 50% !default;\n// The default y-origin for transforms\n$default-origin-y : 50% !default;\n// The default z-origin for transforms\n$default-origin-z : 50% !default;\n\n\n// The default x-multiplier for scaling\n$default-scale-x : 1.25 !default;\n// The default y-multiplier for scaling\n$default-scale-y : $default-scale-x !default;\n// The default z-multiplier for scaling\n$default-scale-z : $default-scale-x !default;\n\n\n// The default angle for rotations\n$default-rotate : 45deg !default;\n\n\n// The default x-vector for the axis of 3d rotations\n$default-vector-x : 1 !default;\n// The default y-vector for the axis of 3d rotations\n$default-vector-y : 1 !default;\n// The default z-vector for the axis of 3d rotations\n$default-vector-z : 1 !default;\n\n\n// The default x-length for translations\n$default-translate-x : 1em !default;\n// The default y-length for translations\n$default-translate-y : $default-translate-x !default;\n// The default z-length for translations\n$default-translate-z : $default-translate-x !default;\n\n\n// The default x-angle for skewing\n$default-skew-x : 5deg !default;\n// The default y-angle for skewing\n$default-skew-y : 5deg !default;\n\n\n// **Transform-origin**\n// Transform-origin sent as a complete string\n//\n// @include apply-origin( origin [, 3D-only ] )\n//\n// where 'origin' is a space separated list containing 1-3 (x/y/z) coordinates\n// in percentages, absolute (px, cm, in, em etc..) or relative\n// (left, top, right, bottom, center) units\n//\n// @param only3d Set this to true to only apply this\n// mixin where browsers have 3D support.\n@mixin apply-origin($origin, $only3d) {\n $only3d: $only3d or -compass-list-size(-compass-list($origin)) > 2;\n @if $only3d {\n @include experimental(transform-origin, $origin,\n -moz, -webkit, -o, -ms, not(-khtml), official\n );\n } @else {\n @include experimental(transform-origin, $origin,\n -moz, -webkit, -o, -ms, not(-khtml), official\n );\n }\n}\n\n// Transform-origin sent as individual arguments:\n//\n// @include transform-origin( [ origin-x, origin-y, origin-z, 3D-only ] )\n//\n// where the 3 'origin-' arguments represent x/y/z coordinates.\n//\n// **NOTE:** setting z coordinates triggers 3D support list, leave false for 2D support\n@mixin transform-origin(\n $origin-x: $default-origin-x,\n $origin-y: $default-origin-y,\n $origin-z: false,\n $only3d: if($origin-z, true, false)\n) {\n $origin: unquote('');\n @if $origin-x or $origin-y or $origin-z {\n @if $origin-x { $origin: $origin-x; } @else { $origin: 50%; }\n @if $origin-y { $origin: $origin $origin-y; } @else { @if $origin-z { $origin: $origin 50%; }}\n @if $origin-z { $origin: $origin $origin-z; }\n @include apply-origin($origin, $only3d);\n }\n}\n\n\n// Transform sent as a complete string:\n//\n// @include transform( transforms [, 3D-only ] )\n//\n// where 'transforms' is a space separated list of all the transforms to be applied.\n@mixin transform(\n $transform,\n $only3d: false\n) {\n @if $only3d {\n @include experimental(transform, $transform,\n -moz, -webkit, -o, -ms, not(-khtml), official\n );\n } @else {\n @include experimental(transform, $transform,\n -moz, -webkit, -o, -ms, not(-khtml), official\n );\n }\n}\n\n// Shortcut to target all browsers with 2D transform support\n@mixin transform2d($trans) {\n @include transform($trans, false);\n}\n\n// Shortcut to target only browsers with 3D transform support\n@mixin transform3d($trans) {\n @include transform($trans, true);\n}\n\n// @doc off\n// 3D Parameters -------------------------------------------------------------\n// @doc on\n\n// Set the perspective of 3D transforms on the children of an element:\n//\n// @include perspective( perspective )\n//\n// where 'perspective' is a unitless number representing the depth of the\n// z-axis. The higher the perspective, the more exaggerated the foreshortening.\n// values from 500 to 1000 are more-or-less \"normal\" - a good starting-point.\n@mixin perspective($p) {\n @include experimental(perspective, $p,\n -moz, -webkit, -o, -ms, not(-khtml), official\n );\n}\n\n// Set the origin position for the perspective\n//\n// @include perspective-origin(origin-x [origin-y])\n//\n// where the two arguments represent x/y coordinates\n@mixin perspective-origin($origin: 50%) {\n @include experimental(perspective-origin, $origin,\n -moz, -webkit, -o, -ms, not(-khtml), official\n );\n}\n\n// Determine whether a 3D objects children also live in the given 3D space\n//\n// @include transform-style( [ style ] )\n//\n// where `style` can be either `flat` or `preserve-3d`.\n// Browsers default to `flat`, mixin defaults to `preserve-3d`.\n@mixin transform-style($style: preserve-3d) {\n @include experimental(transform-style, $style,\n -moz, -webkit, -o, -ms, not(-khtml), official\n );\n}\n\n// Determine the visibility of an element when it's back is turned\n//\n// @include backface-visibility( [ visibility ] )\n//\n// where `visibility` can be either `visible` or `hidden`.\n// Browsers default to visible, mixin defaults to hidden\n@mixin backface-visibility($visibility: hidden) {\n @include experimental(backface-visibility, $visibility,\n -moz, -webkit, -o, -ms, not(-khtml), official\n );\n}\n\n// @doc off\n// Transform Partials --------------------------------------------------------\n// These work well on their own, but they don't add to each other, they override.\n// Use along with transform parameter mixins to adjust origin, perspective and style\n// ---------------------------------------------------------------------------\n\n\n// Scale ---------------------------------------------------------------------\n// @doc on\n\n// Scale an object along the x and y axis:\n//\n// @include scale( [ scale-x, scale-y, perspective, 3D-only ] )\n//\n// where the 'scale-' arguments are unitless multipliers of the x and y dimensions\n// and perspective, which works the same as the stand-alone perspective property/mixin\n// but applies to the individual element (multiplied with any parent perspective)\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin scale(\n $scale-x: $default-scale-x,\n $scale-y: $scale-x,\n $perspective: false,\n $only3d: false\n) {\n $trans: scale($scale-x, $scale-y);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform($trans, $only3d);\n}\n\n// Scale an object along the x axis\n// @include scaleX( [ scale-x, perspective, 3D-only ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin scaleX(\n $scale: $default-scale-x,\n $perspective: false,\n $only3d: false\n) {\n $trans: scaleX($scale);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform($trans, $only3d);\n}\n\n// Scale an object along the y axis\n// @include scaleY( [ scale-y, perspective, 3D-only ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin scaleY(\n $scale: $default-scale-y,\n $perspective: false,\n $only3d: false\n) {\n $trans: scaleY($scale);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform($trans, $only3d);\n}\n\n// Scale an object along the z axis\n// @include scaleZ( [ scale-z, perspective ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin scaleZ(\n $scale: $default-scale-z,\n $perspective: false\n) {\n $trans: scaleZ($scale);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform3d($trans);\n}\n\n// Scale and object along all three axis\n// @include scale3d( [ scale-x, scale-y, scale-z, perspective ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin scale3d(\n $scale-x: $default-scale-x,\n $scale-y: $default-scale-y,\n $scale-z: $default-scale-z,\n $perspective: false\n) {\n $trans: scale3d($scale-x, $scale-y, $scale-z);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform3d($trans);\n}\n\n// @doc off\n// Rotate --------------------------------------------------------------------\n// @doc on\n\n// Rotate an object around the z axis (2D)\n// @include rotate( [ rotation, perspective, 3D-only ] )\n// where 'rotation' is an angle set in degrees (deg) or radian (rad) units\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin rotate(\n $rotate: $default-rotate,\n $perspective: false,\n $only3d: false\n) {\n $trans: rotate($rotate);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform($trans, $only3d);\n}\n\n// A longcut for 'rotate' in case you forget that 'z' is implied\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin rotateZ(\n $rotate: $default-rotate,\n $perspective: false,\n $only3d: false\n) {\n @include rotate($rotate, $perspective, $only3d);\n}\n\n// Rotate an object around the x axis (3D)\n// @include rotateX( [ rotation, perspective ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin rotateX(\n $rotate: $default-rotate,\n $perspective: false\n) {\n $trans: rotateX($rotate);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform3d($trans);\n}\n\n// Rotate an object around the y axis (3D)\n// @include rotate( [ rotation, perspective ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin rotateY(\n $rotate: $default-rotate,\n $perspective: false\n) {\n $trans: rotateY($rotate);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform3d($trans);\n}\n\n// Rotate an object around an arbitrary axis (3D)\n// @include rotate( [ vector-x, vector-y, vector-z, rotation, perspective ] )\n// where the 'vector-' arguments accept unitless numbers.\n// These numbers are not important on their own, but in relation to one another\n// creating an axis from your transform-origin, along the axis of Xx = Yy = Zz.\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin rotate3d(\n $vector-x: $default-vector-x,\n $vector-y: $default-vector-y,\n $vector-z: $default-vector-z,\n $rotate: $default-rotate,\n $perspective: false\n) {\n $trans: rotate3d($vector-x, $vector-y, $vector-z, $rotate);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform3d($trans);\n}\n\n// @doc off\n// Translate -----------------------------------------------------------------\n// @doc on\n\n// Move an object along the x or y axis (2D)\n// @include translate( [ translate-x, translate-y, perspective, 3D-only ] )\n// where the 'translate-' arguments accept any distance in percentages or absolute (px, cm, in, em etc..) units.\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin translate(\n $translate-x: $default-translate-x,\n $translate-y: $default-translate-y,\n $perspective: false,\n $only3d: false\n) {\n $trans: translate($translate-x, $translate-y);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform($trans, $only3d);\n}\n\n// Move an object along the x axis (2D)\n// @include translate( [ translate-x, perspective, 3D-only ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin translateX(\n $trans-x: $default-translate-x,\n $perspective: false,\n $only3d: false\n) {\n $trans: translateX($trans-x);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform($trans, $only3d);\n}\n\n// Move an object along the y axis (2D)\n// @include translate( [ translate-y, perspective, 3D-only ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin translateY(\n $trans-y: $default-translate-y,\n $perspective: false,\n $only3d: false\n) {\n $trans: translateY($trans-y);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform($trans, $only3d);\n}\n\n// Move an object along the z axis (3D)\n// @include translate( [ translate-z, perspective ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin translateZ(\n $trans-z: $default-translate-z,\n $perspective: false\n) {\n $trans: translateZ($trans-z);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform3d($trans);\n}\n\n// Move an object along the x, y and z axis (3D)\n// @include translate( [ translate-x, translate-y, translate-z, perspective ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin translate3d(\n $translate-x: $default-translate-x,\n $translate-y: $default-translate-y,\n $translate-z: $default-translate-z,\n $perspective: false\n) {\n $trans: translate3d($translate-x, $translate-y, $translate-z);\n @if $perspective { $trans: perspective($perspective) $trans; }\n @include transform3d($trans);\n}\n\n// @doc off\n// Skew ----------------------------------------------------------------------\n// @doc on\n\n// Skew an element:\n//\n// @include skew( [ skew-x, skew-y, 3D-only ] )\n//\n// where the 'skew-' arguments accept css angles in degrees (deg) or radian (rad) units.\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin skew(\n $skew-x: $default-skew-x,\n $skew-y: $default-skew-y,\n $only3d: false\n) {\n $trans: skew($skew-x, $skew-y);\n @include transform($trans, $only3d);\n}\n\n// Skew an element along the x axiz\n//\n// @include skew( [ skew-x, 3D-only ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin skewX(\n $skew-x: $default-skew-x,\n $only3d: false\n) {\n $trans: skewX($skew-x);\n @include transform($trans, $only3d);\n}\n\n// Skew an element along the y axis\n//\n// @include skew( [ skew-y, 3D-only ] )\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin skewY(\n $skew-y: $default-skew-y,\n $only3d: false\n) {\n $trans: skewY($skew-y);\n @include transform($trans, $only3d);\n}\n\n\n// Full transform mixins\n// For settings any combination of transforms as arguments\n// These are complex and not highly recommended for daily use. They are mainly\n// here for backward-compatibility purposes.\n//\n// * they include origin adjustments\n// * scale takes a multiplier (unitless), rotate and skew take degrees (deg)\n//\n// **Note** This mixin cannot be combined with other transform mixins.\n@mixin create-transform(\n $perspective: false,\n $scale-x: false,\n $scale-y: false,\n $scale-z: false,\n $rotate-x: false,\n $rotate-y: false,\n $rotate-z: false,\n $rotate3d: false,\n $trans-x: false,\n $trans-y: false,\n $trans-z: false,\n $skew-x: false,\n $skew-y: false,\n $origin-x: false,\n $origin-y: false,\n $origin-z: false,\n $only3d: false\n) {\n $trans: unquote(\"\");\n\n // perspective\n @if $perspective { $trans: perspective($perspective) ; }\n\n // scale\n @if $scale-x and $scale-y {\n @if $scale-z { $trans: $trans scale3d($scale-x, $scale-y, $scale-z); }\n @else { $trans: $trans scale($scale-x, $scale-y); }\n } @else {\n @if $scale-x { $trans: $trans scaleX($scale-x); }\n @if $scale-y { $trans: $trans scaleY($scale-y); }\n @if $scale-z { $trans: $trans scaleZ($scale-z); }\n }\n\n // rotate\n @if $rotate-x { $trans: $trans rotateX($rotate-x); }\n @if $rotate-y { $trans: $trans rotateY($rotate-y); }\n @if $rotate-z { $trans: $trans rotateZ($rotate-z); }\n @if $rotate3d { $trans: $trans rotate3d($rotate3d); }\n\n // translate\n @if $trans-x and $trans-y {\n @if $trans-z { $trans: $trans translate3d($trans-x, $trans-y, $trans-z); }\n @else { $trans: $trans translate($trans-x, $trans-y); }\n } @else {\n @if $trans-x { $trans: $trans translateX($trans-x); }\n @if $trans-y { $trans: $trans translateY($trans-y); }\n @if $trans-z { $trans: $trans translateZ($trans-z); }\n }\n\n // skew\n @if $skew-x and $skew-y { $trans: $trans skew($skew-x, $skew-y); }\n @else {\n @if $skew-x { $trans: $trans skewX($skew-x); }\n @if $skew-y { $trans: $trans skewY($skew-y); }\n }\n\n // apply it!\n @include transform($trans, $only3d);\n @include transform-origin($origin-x, $origin-y, $origin-z, $only3d);\n}\n\n\n// A simplified set of options\n// backwards-compatible with the previous version of the 'transform' mixin\n@mixin simple-transform(\n $scale: false,\n $rotate: false,\n $trans-x: false,\n $trans-y: false,\n $skew-x: false,\n $skew-y: false,\n $origin-x: false,\n $origin-y: false\n) {\n @include create-transform(\n false,\n $scale, $scale, false,\n false, false, $rotate, false,\n $trans-x, $trans-y, false,\n $skew-x, $skew-y,\n $origin-x, $origin-y, false,\n false\n );\n}\n","// ---------------------------------------------------------------------------\n@include keyframes(bounceOut) {\n 0% {\n @include scale(1); }\n 25% {\n @include scale(0.95); }\n 50% {\n opacity: 1;\n @include scale(1.1); }\n 100% {\n opacity: 0;\n @include scale(0.3); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(bounceOutUp) {\n 0% {\n @include translateY(0); }\n 20% {\n opacity: 1;\n @include translateY(20px); }\n 100% {\n opacity: 0;\n @include translateY(-2000px); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(bounceOutDown) {\n 0% {\n @include translateY(0); }\n 20% {\n opacity: 1;\n @include translateY(-20px); }\n 100% {\n opacity: 0;\n @include translateY(2000px); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(bounceOutLeft) {\n 0% {\n @include translateX(0); }\n 20% {\n opacity: 1;\n @include translateX(20px); }\n 100% {\n opacity: 0;\n @include translateX(-2000px); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(bounceOutRight) {\n 0% {\n @include translateX(0); }\n 20% {\n opacity: 1;\n @include translateX(-20px); }\n 100% {\n opacity: 0;\n @include translateX(2000px); } }\n","// ---------------------------------------------------------------------------\n@include keyframes(bounceIn) {\n 0% {\n opacity: 0;\n @include scale(0.3); }\n 50% {\n opacity: 1;\n @include scale(1.05); }\n 70% {\n @include scale(0.9); }\n 100% {\n @include scale(1); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(bounceInDown) {\n 0% {\n opacity: 0;\n @include translateY(-2000px); }\n 60% {\n opacity: 1;\n @include translateY(30px); }\n 80% {\n @include translateY(-10px); }\n 100% {\n @include translateY(0); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(bounceInUp) {\n 0% {\n opacity: 0;\n @include translateY(2000px); }\n 60% {\n opacity: 1;\n @include translateY(-30px); }\n 80% {\n @include translateY(10px); }\n 100% {\n @include translateY(0); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(bounceInRight) {\n 0% {\n opacity: 0;\n @include translateX(2000px); }\n 60% {\n opacity: 1;\n @include translateX(-30px); }\n 80% {\n @include translateX(10px); }\n 100% {\n @include translateX(0); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(bounceInLeft) {\n 0% {\n opacity: 0;\n @include translateX(-2000px); }\n 60% {\n opacity: 1;\n @include translateX(30px); }\n 80% {\n @include translateX(-10px); }\n 100% {\n @include translateX(0); } }\n","// ---------------------------------------------------------------------------\n@include keyframes(fadeOut) {\n 0% {\n opacity: 1; }\n 100% {\n opacity: 0; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeOutUp) {\n 0% {\n @include translateY(0);\n opacity: 1; }\n 100% {\n @include translateY(-20px);\n opacity: 0; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeOutDown) {\n 0% {\n @include translateY(0);\n opacity: 1; }\n 100% {\n @include translateY(20px);\n opacity: 0; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeOutRight) {\n 0% {\n @include translateX(0);\n opacity: 1; }\n 100% {\n @include translateX(20px);\n opacity: 0; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeOutLeft) {\n 0% {\n @include translateX(0);\n opacity: 1; }\n 100% {\n @include translateX(-20px);\n opacity: 0; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeOutUpBig) {\n 0% {\n @include translateY(0);\n opacity: 1; }\n 100% {\n @include translateY(-2000px);\n opacity: 0; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeOutDownBig) {\n 0% {\n opacity: 1;\n @include translateY(0); }\n 100% {\n opacity: 0;\n @include translateY(2000px); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeOutRightBig) {\n 0% {\n opacity: 1;\n @include translateX(0); }\n 100% {\n opacity: 0;\n @include translateX(2000px); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeOutLeftBig) {\n 0% {\n opacity: 1;\n @include translateX(0); }\n 100% {\n opacity: 0;\n @include translateX(-2000px); } }\n","// ---------------------------------------------------------------------------\n@include keyframes(fadeIn) {\n 0% {\n opacity: 0; }\n 100% {\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeInUp) {\n 0% {\n @include translateY(20px);\n opacity: 0; }\n 100% {\n @include translateY(0);\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeInDown) {\n 0% {\n @include translateY(-20px);\n opacity: 0; }\n 100% {\n @include translateY(0);\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeInRight) {\n 0% {\n @include translateX(20px);\n opacity: 0; }\n 100% {\n @include translateX(0);\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeInLeft) {\n 0% {\n @include translateX(-20px);\n opacity: 0; }\n 100% {\n @include translateX(0);\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeInUpBig) {\n 0% {\n @include translateY(2000px);\n opacity: 0; }\n 100% {\n @include translateY(0);\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeInDownBig) {\n 0% {\n opacity: 0;\n @include translateY(-2000px); }\n 100% {\n opacity: 1;\n @include translateY(0); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeInRightBig) {\n 0% {\n opacity: 0;\n @include translateX(2000px); }\n 100% {\n opacity: 1;\n @include translateX(0); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(fadeInLeftBig) {\n 0% {\n opacity: 0;\n @include translateX(-2000px); }\n 100% {\n opacity: 1;\n @include translateX(0); } }\n","// ---------------------------------------------------------------------------\n@include keyframes(flip) {\n 0% {\n @include transform(perspective(400px) rotateY(0));\n @include animation-timing-function(ease-out);\n }\n 40% {\n @include transform(perspective(400px) translateZ(150px) rotateY(170deg));\n @include animation-timing-function(ease-out);\n }\n 50% {\n @include transform(perspective(400px) translateZ(150px) rotateY(190deg) scale(1));\n @include animation-timing-function(ease-in);\n }\n 80% {\n @include transform(perspective(400px) rotateY(360deg) scale(0.95));\n @include animation-timing-function(ease-in);\n }\n 100% {\n @include transform(perspective(400px) scale(1));\n @include animation-timing-function(ease-in);\n }\n}\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(flipInX) {\n 0% {\n @include transform(perspective(400px) rotateX(90deg));\n @include opacity(0);\n }\n 40% {\n @include transform(perspective(400px) rotateX(-10deg));\n }\n 70% {\n @include transform(perspective(400px) rotateX(10deg));\n }\n 100% {\n @include transform(perspective(400px) rotateX(0deg));\n @include opacity(1);\n }\n}\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(flipOutX) {\n 0% {\n @include transform(perspective(400px) rotateX(0deg));\n @include opacity(1);\n }\n 100% {\n @include transform(perspective(400px) rotateX(90deg));\n @include opacity(0);\n }\n}\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(flipInY) {\n 0% {\n @include transform(perspective(400px) rotateY(90deg));\n @include opacity(0);\n }\n 40% {\n @include transform(perspective(400px) rotateY(-10deg));\n }\n 70% {\n @include transform(perspective(400px) rotateY(10deg));\n }\n 100% {\n @include transform(perspective(400px) rotateY(0deg));\n @include opacity(1);\n }\n}\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(flipOutY) {\n 0% {\n @include transform(perspective(400px) rotateY(0deg));\n @include opacity(1);\n }\n 100% {\n @include transform(perspective(400px) rotateY(90deg));\n @include opacity(0);\n }\n}\n","@import \"shared\";\n\n// Provides cross-browser CSS opacity. Takes a number between 0 and 1 as the argument, e.g. 0.5 for 50% opacity.\n//\n// @param $opacity\n// A number between 0 and 1, where 0 is transparent and 1 is opaque.\n\n@mixin opacity($opacity) {\n @if $legacy-support-for-ie6 or $legacy-support-for-ie7 or $legacy-support-for-ie8 {\n filter: unquote(\"progid:DXImageTransform.Microsoft.Alpha(Opacity=#{round($opacity * 100)})\");\n }\n opacity: $opacity;\n}\n\n// Make an element completely transparent.\n@mixin transparent { @include opacity(0); }\n\n// Make an element completely opaque.\n@mixin opaque { @include opacity(1); }\n","// ---------------------------------------------------------------------------\n@include keyframes(lightSpeedIn) {\n 0% {\n @include transform(translateX(100%) skewX(-30deg));\n @include opacity(0); }\n 60% {\n @include transform(translateX(-20%) skewX(30deg));\n @include opacity(1); }\n 80% {\n @include transform(translateX(0%) skewX(-15deg));\n @include opacity(1); }\n 100% {\n @include transform(translateX(0%) skewX(0deg));\n @include opacity(1); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(lightSpeedOut) {\n 0% {\n @include transform(translateX(0%) skewX(0deg));\n @include opacity(1); }\n 100% {\n @include transform(translateX(100%) skewX(-30deg));\n @include opacity(0); } }","// ---------------------------------------------------------------------------\n@include keyframes(rotateOut) {\n 0% {\n @include transform-origin(center center);\n @include rotate(0);\n opacity: 1; }\n 100% {\n @include transform-origin(center center);\n @include rotate(200deg);\n opacity: 0; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(rotateOutDownLeft) {\n 0% {\n @include transform-origin(left bottom);\n @include rotate(0);\n opacity: 1; }\n 100% {\n @include transform-origin(left bottom);\n @include rotate(90deg);\n opacity: 0; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(rotateOutUpLeft) {\n 0% {\n @include transform-origin(left bottom);\n @include rotate(0);\n opacity: 1; }\n 100% {\n @include transform-origin(left bottom);\n @include rotate(-90deg);\n opacity: 0; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(rotateOutDownRight) {\n 0% {\n @include transform-origin(right bottom);\n @include rotate(0);\n opacity: 1; }\n 100% {\n @include transform-origin(right bottom);\n @include rotate(-90deg);\n opacity: 0; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(rotateOutUpRight) {\n 0% {\n @include transform-origin(right bottom);\n @include rotate(0);\n opacity: 1; }\n 100% {\n @include transform-origin(right bottom);\n @include rotate(90deg);\n opacity: 0; } }\n","// ---------------------------------------------------------------------------\n@include keyframes(rotateIn) {\n 0% {\n @include transform-origin(center center);\n @include rotate(-200deg);\n opacity: 0; }\n 100% {\n @include transform-origin(center center);\n @include rotate(0);\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(rotateInDownLeft) {\n 0% {\n @include transform-origin(left bottom);\n @include rotate(-90deg);\n opacity: 0; }\n 100% {\n @include transform-origin(left bottom);\n @include rotate(0);\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(rotateInUpLeft) {\n 0% {\n @include transform-origin(left bottom);\n @include rotate(90deg);\n opacity: 0; }\n 100% {\n @include transform-origin(left bottom);\n @include rotate(0);\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(rotateInUpRight) {\n 0% {\n @include transform-origin(right bottom);\n @include rotate(-90deg);\n opacity: 0; }\n 100% {\n @include transform-origin(right bottom);\n @include rotate(0);\n opacity: 1; } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(rotateInDownRight) {\n 0% {\n @include transform-origin(right bottom);\n @include rotate(90deg);\n opacity: 0; }\n 100% {\n @include transform-origin(right bottom);\n @include rotate(0);\n opacity: 1; } }\n","// ---------------------------------------------------------------------------\n@include keyframes(hinge) {\n 0% {\n @include rotate(0);\n @include transform-origin(top left);\n @include animation-timing-function(ease-in-out); }\n 20%, 60% {\n @include rotate(80deg);\n @include transform-origin(top left);\n @include animation-timing-function(ease-in-out); }\n 40% {\n @include rotate(60deg);\n @include transform-origin(top left);\n @include animation-timing-function(ease-in-out); }\n 80% {\n @include transform(rotate(60deg) translateY(0));\n @include opacity(1);\n @include transform-origin(top left);\n @include animation-timing-function(ease-in-out); }\n 100% {\n @include translateY(700px);\n @include opacity(0); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(rollIn) {\n 0% {\n @include opacity(0);\n @include transform(translateX(-100%) rotate(-120deg)); }\n 100% {\n @include opacity(1);\n @include transform(translateX(0px) rotate(0deg)); } }\n\n\n// ---------------------------------------------------------------------------\n@include keyframes(rollOut) {\n 0% {\n @include opacity(1);\n @include transform(translateX(0px) rotate(0deg)); }\n 100% {\n @include opacity(0);\n @include transform(translateX(-100%) rotate(-120deg)); } }\n","/*!\n * Bootstrap v4.5.3 (https://getbootstrap.com/)\n * Copyright 2011-2020 The Bootstrap Authors\n * Copyright 2011-2020 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"code\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"input-group\";\n@import \"custom-forms\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"jumbotron\";\n@import \"alert\";\n@import \"progress\";\n@import \"media\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"utilities\";\n@import \"print\";\n","// Do not forget to update getting-started/theming.md!\n:root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$color}: #{$value};\n }\n\n @each $bp, $value in $grid-breakpoints {\n --breakpoint-#{$bp}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --font-family-sans-serif: #{inspect($font-family-sans-serif)};\n --font-family-monospace: #{inspect($font-family-monospace)};\n}\n","// stylelint-disable at-rule-no-vendor-prefix, declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n// 2. Change the default font family in all browsers.\n// 3. Correct the line height in all browsers.\n// 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.\n// 5. Change the default tap highlight to be completely transparent in iOS.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box; // 1\n}\n\nhtml {\n font-family: sans-serif; // 2\n line-height: 1.15; // 3\n -webkit-text-size-adjust: 100%; // 4\n -webkit-tap-highlight-color: rgba($black, 0); // 5\n}\n\n// Shim for \"new\" HTML5 structural elements to display correctly (IE10, older browsers)\n// TODO: remove in v5\n// stylelint-disable-next-line selector-list-comma-newline-after\narticle, aside, figcaption, figure, footer, header, hgroup, main, nav, section {\n display: block;\n}\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Set an explicit initial text-align value so that we can later use\n// the `inherit` value on things like `` elements.\n\nbody {\n margin: 0; // 1\n font-family: $font-family-base;\n @include font-size($font-size-base);\n font-weight: $font-weight-base;\n line-height: $line-height-base;\n color: $body-color;\n text-align: left; // 3\n background-color: $body-bg; // 2\n}\n\n// Future-proof rule: in browsers that support :focus-visible, suppress the focus outline\n// on elements that programmatically receive focus but wouldn't normally show a visible\n// focus outline. In general, this would mean that the outline is only applied if the\n// interaction that led to the element receiving programmatic focus was a keyboard interaction,\n// or the browser has somehow determined that the user is primarily a keyboard user and/or\n// wants focus outlines to always be presented.\n//\n// See https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible\n// and https://developer.paciellogroup.com/blog/2018/03/focus-visible-and-backwards-compatibility/\n[tabindex=\"-1\"]:focus:not(:focus-visible) {\n outline: 0 !important;\n}\n\n\n// Content grouping\n//\n// 1. Add the correct box sizing in Firefox.\n// 2. Show the overflow in Edge and IE.\n\nhr {\n box-sizing: content-box; // 1\n height: 0; // 1\n overflow: visible; // 2\n}\n\n\n//\n// Typography\n//\n\n// Remove top margins from headings\n//\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n// stylelint-disable-next-line selector-list-comma-newline-after\nh1, h2, h3, h4, h5, h6 {\n margin-top: 0;\n margin-bottom: $headings-margin-bottom;\n}\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Remove the bottom border in Firefox 39-.\n// 5. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-original-title] { // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n border-bottom: 0; // 4\n text-decoration-skip-ink: none; // 5\n}\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // Undo browser default\n}\n\nblockquote {\n margin: 0 0 1rem;\n}\n\nb,\nstrong {\n font-weight: $font-weight-bolder; // Add the correct font weight in Chrome, Edge, and Safari\n}\n\nsmall {\n @include font-size(80%); // Add the correct font size in all browsers\n}\n\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n//\n\nsub,\nsup {\n position: relative;\n @include font-size(75%);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n//\n// Links\n//\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n background-color: transparent; // Remove the gray background on active links in IE 10.\n\n @include hover() {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n color: inherit;\n text-decoration: none;\n\n @include hover() {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n//\n// Code\n//\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-monospace;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n}\n\npre {\n // Remove browser default top margin\n margin-top: 0;\n // Reset browser default of `1em` to use `rem`s\n margin-bottom: 1rem;\n // Don't allow content to break outside\n overflow: auto;\n // Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,\n // making it impossible to interact with the content\n -ms-overflow-style: scrollbar;\n}\n\n\n//\n// Figures\n//\n\nfigure {\n // Apply a consistent margin strategy (matches our type styles).\n margin: 0 0 1rem;\n}\n\n\n//\n// Images and content\n//\n\nimg {\n vertical-align: middle;\n border-style: none; // Remove the border on images inside links in IE 10-.\n}\n\nsvg {\n // Workaround for the SVG overflow bug in IE10/11 is still required.\n // See https://github.com/twbs/bootstrap/issues/26878\n overflow: hidden;\n vertical-align: middle;\n}\n\n\n//\n// Tables\n//\n\ntable {\n border-collapse: collapse; // Prevent double borders\n}\n\ncaption {\n padding-top: $table-cell-padding;\n padding-bottom: $table-cell-padding;\n color: $table-caption-color;\n text-align: left;\n caption-side: bottom;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\n\n//\n// Forms\n//\n\nlabel {\n // Allow labels to use `margin` for spacing.\n display: inline-block;\n margin-bottom: $label-margin-bottom;\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24093\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Work around a Firefox/IE bug where the transparent `button` background\n// results in a loss of the default `button` focus styles.\n//\n// Credit: https://github.com/suitcss/base/\nbutton:focus {\n outline: 1px dotted;\n outline: 5px auto -webkit-focus-ring-color;\n}\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // Remove the margin in Firefox and Safari\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\nbutton,\ninput {\n overflow: visible; // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// Set the cursor for non-` +

+ + +
+ + + +
+
+
+
+
+ +

Get tons of UI components, Plugins, multiple layouts, 20+ sample pages, and more!

+ Upgrade To Pro + +
+
+
+
+
+
+
+
+

Sessions by channel

+
+ +
+

8.234

+ Total Leads +
+
+
+
+ +

Assigned

+
+
+ +

Not Assigned

+
+
+ +

Reassigned

+
+
+
+
+
+
+
+
+
+

Performance Indicator

+

+ 7d + 2w + 1m + 3m + 6m +

+
+
+
+ +

Complaints (2098)

+
+
+ +

Task Done (1123)

+
+
+ +

Attends (876)

+
+
+
+
+
+
+
+ +
+
+
+
+
Quick Actions
+

How are your active users trending overtime?

+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+ +
+
+
+
+
+
+
+
Report Summary
Updated Report +
+
+
+
+
+
+ EXPENSE +

$32123

+ 2 Reports +
+
+ +
+
+
+
+ PURCHASE +

95,458

+ 3 Reports +
+
+ +
+
+
+
+ QUANTITY +

2650

+ 5 Reports +
+
+ +
+
+
+
+ RETURN +

25,542

+ 9 Reports +
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
Income And Expenses Summary
+

A comparison of people who mark themselves of their ineterest from the date range given above. Learn more.

+
+
+

Total Income

+

$ 1,766.00

+
+
+

Total Expense

+

$ 5,698.30

+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Products Inventory

+ View all Products +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Store IDAmountGatewayCreated atPaid atStatus
+ profile image Katie Holmes + $3621alipay alipay04 Jun 201918 Jul 2019 +
Paid
+
+ profile image Minnie Copeland + $6245alipay Paypal25 Sep 201907 Oct 2019 +
Pending
+
+ profile image Rodney Sims + $9265alipay alipay12 dec 201926 Aug 2019 +
Failed
+
+ profile image Carolyn Barker + $2263alipay alipay30 Sep 201920 Oct 2019 +
Paid
+
+
+
+

Showing 1 to 10 of 57 entries

+ +
+
+
+
+
+
+ + + + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/js/Chart.min.js b/INCUBATE/incubate/incubate/static/js/Chart.min.js new file mode 100644 index 0000000000000000000000000000000000000000..c74a7914a35f60ba32c6d8ecca9209208bced1ce --- /dev/null +++ b/INCUBATE/incubate/incubate/static/js/Chart.min.js @@ -0,0 +1,7 @@ +/*! + * Chart.js v2.8.0 + * https://www.chartjs.org + * (c) 2019 Chart.js Contributors + * Released under the MIT License + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(function(){try{return require("moment")}catch(t){}}()):"function"==typeof define&&define.amd?define(["require"],function(t){return e(function(){try{return t("moment")}catch(t){}}())}):t.Chart=e(t.moment)}(this,function(t){"use strict";t=t&&t.hasOwnProperty("default")?t.default:t;var e={rgb2hsl:i,rgb2hsv:n,rgb2hwb:a,rgb2cmyk:o,rgb2keyword:s,rgb2xyz:l,rgb2lab:d,rgb2lch:function(t){return x(d(t))},hsl2rgb:u,hsl2hsv:function(t){var e=t[0],i=t[1]/100,n=t[2]/100;if(0===n)return[0,0,0];return[e,100*(2*(i*=(n*=2)<=1?n:2-n)/(n+i)),100*((n+i)/2)]},hsl2hwb:function(t){return a(u(t))},hsl2cmyk:function(t){return o(u(t))},hsl2keyword:function(t){return s(u(t))},hsv2rgb:h,hsv2hsl:function(t){var e,i,n=t[0],a=t[1]/100,o=t[2]/100;return e=a*o,[n,100*(e=(e/=(i=(2-a)*o)<=1?i:2-i)||0),100*(i/=2)]},hsv2hwb:function(t){return a(h(t))},hsv2cmyk:function(t){return o(h(t))},hsv2keyword:function(t){return s(h(t))},hwb2rgb:c,hwb2hsl:function(t){return i(c(t))},hwb2hsv:function(t){return n(c(t))},hwb2cmyk:function(t){return o(c(t))},hwb2keyword:function(t){return s(c(t))},cmyk2rgb:f,cmyk2hsl:function(t){return i(f(t))},cmyk2hsv:function(t){return n(f(t))},cmyk2hwb:function(t){return a(f(t))},cmyk2keyword:function(t){return s(f(t))},keyword2rgb:w,keyword2hsl:function(t){return i(w(t))},keyword2hsv:function(t){return n(w(t))},keyword2hwb:function(t){return a(w(t))},keyword2cmyk:function(t){return o(w(t))},keyword2lab:function(t){return d(w(t))},keyword2xyz:function(t){return l(w(t))},xyz2rgb:p,xyz2lab:m,xyz2lch:function(t){return x(m(t))},lab2xyz:v,lab2rgb:y,lab2lch:x,lch2lab:k,lch2xyz:function(t){return v(k(t))},lch2rgb:function(t){return y(k(t))}};function i(t){var e,i,n=t[0]/255,a=t[1]/255,o=t[2]/255,r=Math.min(n,a,o),s=Math.max(n,a,o),l=s-r;return s==r?e=0:n==s?e=(a-o)/l:a==s?e=2+(o-n)/l:o==s&&(e=4+(n-a)/l),(e=Math.min(60*e,360))<0&&(e+=360),i=(r+s)/2,[e,100*(s==r?0:i<=.5?l/(s+r):l/(2-s-r)),100*i]}function n(t){var e,i,n=t[0],a=t[1],o=t[2],r=Math.min(n,a,o),s=Math.max(n,a,o),l=s-r;return i=0==s?0:l/s*1e3/10,s==r?e=0:n==s?e=(a-o)/l:a==s?e=2+(o-n)/l:o==s&&(e=4+(n-a)/l),(e=Math.min(60*e,360))<0&&(e+=360),[e,i,s/255*1e3/10]}function a(t){var e=t[0],n=t[1],a=t[2];return[i(t)[0],100*(1/255*Math.min(e,Math.min(n,a))),100*(a=1-1/255*Math.max(e,Math.max(n,a)))]}function o(t){var e,i=t[0]/255,n=t[1]/255,a=t[2]/255;return[100*((1-i-(e=Math.min(1-i,1-n,1-a)))/(1-e)||0),100*((1-n-e)/(1-e)||0),100*((1-a-e)/(1-e)||0),100*e]}function s(t){return _[JSON.stringify(t)]}function l(t){var e=t[0]/255,i=t[1]/255,n=t[2]/255;return[100*(.4124*(e=e>.04045?Math.pow((e+.055)/1.055,2.4):e/12.92)+.3576*(i=i>.04045?Math.pow((i+.055)/1.055,2.4):i/12.92)+.1805*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)),100*(.2126*e+.7152*i+.0722*n),100*(.0193*e+.1192*i+.9505*n)]}function d(t){var e=l(t),i=e[0],n=e[1],a=e[2];return n/=100,a/=108.883,i=(i/=95.047)>.008856?Math.pow(i,1/3):7.787*i+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(i-n),200*(n-(a=a>.008856?Math.pow(a,1/3):7.787*a+16/116))]}function u(t){var e,i,n,a,o,r=t[0]/360,s=t[1]/100,l=t[2]/100;if(0==s)return[o=255*l,o,o];e=2*l-(i=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var d=0;d<3;d++)(n=r+1/3*-(d-1))<0&&n++,n>1&&n--,o=6*n<1?e+6*(i-e)*n:2*n<1?i:3*n<2?e+(i-e)*(2/3-n)*6:e,a[d]=255*o;return a}function h(t){var e=t[0]/60,i=t[1]/100,n=t[2]/100,a=Math.floor(e)%6,o=e-Math.floor(e),r=255*n*(1-i),s=255*n*(1-i*o),l=255*n*(1-i*(1-o));n*=255;switch(a){case 0:return[n,l,r];case 1:return[s,n,r];case 2:return[r,n,l];case 3:return[r,s,n];case 4:return[l,r,n];case 5:return[n,r,s]}}function c(t){var e,i,n,a,o=t[0]/360,s=t[1]/100,l=t[2]/100,d=s+l;switch(d>1&&(s/=d,l/=d),n=6*o-(e=Math.floor(6*o)),0!=(1&e)&&(n=1-n),a=s+n*((i=1-l)-s),e){default:case 6:case 0:r=i,g=a,b=s;break;case 1:r=a,g=i,b=s;break;case 2:r=s,g=i,b=a;break;case 3:r=s,g=a,b=i;break;case 4:r=a,g=s,b=i;break;case 5:r=i,g=s,b=a}return[255*r,255*g,255*b]}function f(t){var e=t[0]/100,i=t[1]/100,n=t[2]/100,a=t[3]/100;return[255*(1-Math.min(1,e*(1-a)+a)),255*(1-Math.min(1,i*(1-a)+a)),255*(1-Math.min(1,n*(1-a)+a))]}function p(t){var e,i,n,a=t[0]/100,o=t[1]/100,r=t[2]/100;return i=-.9689*a+1.8758*o+.0415*r,n=.0557*a+-.204*o+1.057*r,e=(e=3.2406*a+-1.5372*o+-.4986*r)>.0031308?1.055*Math.pow(e,1/2.4)-.055:e*=12.92,i=i>.0031308?1.055*Math.pow(i,1/2.4)-.055:i*=12.92,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:n*=12.92,[255*(e=Math.min(Math.max(0,e),1)),255*(i=Math.min(Math.max(0,i),1)),255*(n=Math.min(Math.max(0,n),1))]}function m(t){var e=t[0],i=t[1],n=t[2];return i/=100,n/=108.883,e=(e/=95.047)>.008856?Math.pow(e,1/3):7.787*e+16/116,[116*(i=i>.008856?Math.pow(i,1/3):7.787*i+16/116)-16,500*(e-i),200*(i-(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116))]}function v(t){var e,i,n,a,o=t[0],r=t[1],s=t[2];return o<=8?a=(i=100*o/903.3)/100*7.787+16/116:(i=100*Math.pow((o+16)/116,3),a=Math.pow(i/100,1/3)),[e=e/95.047<=.008856?e=95.047*(r/500+a-16/116)/7.787:95.047*Math.pow(r/500+a,3),i,n=n/108.883<=.008859?n=108.883*(a-s/200-16/116)/7.787:108.883*Math.pow(a-s/200,3)]}function x(t){var e,i=t[0],n=t[1],a=t[2];return(e=360*Math.atan2(a,n)/2/Math.PI)<0&&(e+=360),[i,Math.sqrt(n*n+a*a),e]}function y(t){return p(v(t))}function k(t){var e,i=t[0],n=t[1];return e=t[2]/360*2*Math.PI,[i,n*Math.cos(e),n*Math.sin(e)]}function w(t){return M[t]}var M={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},_={};for(var C in M)_[JSON.stringify(M[C])]=C;var S=function(){return new T};for(var P in e){S[P+"Raw"]=function(t){return function(i){return"number"==typeof i&&(i=Array.prototype.slice.call(arguments)),e[t](i)}}(P);var I=/(\w+)2(\w+)/.exec(P),A=I[1],D=I[2];(S[A]=S[A]||{})[D]=S[P]=function(t){return function(i){"number"==typeof i&&(i=Array.prototype.slice.call(arguments));var n=e[t](i);if("string"==typeof n||void 0===n)return n;for(var a=0;a=0&&e<1?H(Math.round(255*e)):"")},rgbString:function(t,e){if(e<1||t[3]&&t[3]<1)return N(t,e);return"rgb("+t[0]+", "+t[1]+", "+t[2]+")"},rgbaString:N,percentString:function(t,e){if(e<1||t[3]&&t[3]<1)return W(t,e);var i=Math.round(t[0]/255*100),n=Math.round(t[1]/255*100),a=Math.round(t[2]/255*100);return"rgb("+i+"%, "+n+"%, "+a+"%)"},percentaString:W,hslString:function(t,e){if(e<1||t[3]&&t[3]<1)return V(t,e);return"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)"},hslaString:V,hwbString:function(t,e){void 0===e&&(e=void 0!==t[3]?t[3]:1);return"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+(void 0!==e&&1!==e?", "+e:"")+")"},keyword:function(t){return j[t.slice(0,3)]}};function O(t){if(t){var e=[0,0,0],i=1,n=t.match(/^#([a-fA-F0-9]{3,4})$/i),a="";if(n){a=(n=n[1])[3];for(var o=0;oi?(e+.05)/(i+.05):(i+.05)/(e+.05)},level:function(t){var e=this.contrast(t);return e>=7.1?"AAA":e>=4.5?"AA":""},dark:function(){var t=this.values.rgb;return(299*t[0]+587*t[1]+114*t[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var t=[],e=0;e<3;e++)t[e]=255-this.values.rgb[e];return this.setValues("rgb",t),this},lighten:function(t){var e=this.values.hsl;return e[2]+=e[2]*t,this.setValues("hsl",e),this},darken:function(t){var e=this.values.hsl;return e[2]-=e[2]*t,this.setValues("hsl",e),this},saturate:function(t){var e=this.values.hsl;return e[1]+=e[1]*t,this.setValues("hsl",e),this},desaturate:function(t){var e=this.values.hsl;return e[1]-=e[1]*t,this.setValues("hsl",e),this},whiten:function(t){var e=this.values.hwb;return e[1]+=e[1]*t,this.setValues("hwb",e),this},blacken:function(t){var e=this.values.hwb;return e[2]+=e[2]*t,this.setValues("hwb",e),this},greyscale:function(){var t=this.values.rgb,e=.3*t[0]+.59*t[1]+.11*t[2];return this.setValues("rgb",[e,e,e]),this},clearer:function(t){var e=this.values.alpha;return this.setValues("alpha",e-e*t),this},opaquer:function(t){var e=this.values.alpha;return this.setValues("alpha",e+e*t),this},rotate:function(t){var e=this.values.hsl,i=(e[0]+t)%360;return e[0]=i<0?360+i:i,this.setValues("hsl",e),this},mix:function(t,e){var i=t,n=void 0===e?.5:e,a=2*n-1,o=this.alpha()-i.alpha(),r=((a*o==-1?a:(a+o)/(1+a*o))+1)/2,s=1-r;return this.rgb(r*this.red()+s*i.red(),r*this.green()+s*i.green(),r*this.blue()+s*i.blue()).alpha(this.alpha()*n+i.alpha()*(1-n))},toJSON:function(){return this.rgb()},clone:function(){var t,e,i=new Y,n=this.values,a=i.values;for(var o in n)n.hasOwnProperty(o)&&(t=n[o],"[object Array]"===(e={}.toString.call(t))?a[o]=t.slice(0):"[object Number]"===e?a[o]=t:console.error("unexpected color value:",t));return i}},Y.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},Y.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},Y.prototype.getValues=function(t){for(var e=this.values,i={},n=0;n=0;a--)e.call(i,t[a],a);else for(a=0;a=1?t:-(Math.sqrt(1-t*t)-1)},easeOutCirc:function(t){return Math.sqrt(1-(t-=1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:1===t?1:(i||(i=.3),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),-n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i))},easeOutElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:1===t?1:(i||(i=.3),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),n*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/i)+1)},easeInOutElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:2==(t/=.5)?1:(i||(i=.45),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),t<1?n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*-.5:n*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*.5+1)},easeInBack:function(t){var e=1.70158;return t*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:function(t){return 1-Z.easeOutBounce(1-t)},easeOutBounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInOutBounce:function(t){return t<.5?.5*Z.easeInBounce(2*t):.5*Z.easeOutBounce(2*t-1)+.5}},$={effects:Z};G.easingEffects=Z;var J=Math.PI,Q=J/180,tt=2*J,et=J/2,it=J/4,nt=2*J/3,at={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,i,n,a,o){if(o){var r=Math.min(o,a/2,n/2),s=e+r,l=i+r,d=e+n-r,u=i+a-r;t.moveTo(e,l),se.left-1e-6&&t.xe.top-1e-6&&t.y0&&this.requestAnimationFrame()},advance:function(){for(var t,e,i,n,a=this.animations,o=0;o=i?(ut.callback(t.onAnimationComplete,[t],e),e.animating=!1,a.splice(o,1)):++o}},xt=ut.options.resolve,yt=["push","pop","shift","splice","unshift"];function kt(t,e){var i=t._chartjs;if(i){var n=i.listeners,a=n.indexOf(e);-1!==a&&n.splice(a,1),n.length>0||(yt.forEach(function(e){delete t[e]}),delete t._chartjs)}}var wt=function(t,e){this.initialize(t,e)};ut.extend(wt.prototype,{datasetElementType:null,dataElementType:null,initialize:function(t,e){this.chart=t,this.index=e,this.linkScales(),this.addElements()},updateIndex:function(t){this.index=t},linkScales:function(){var t=this,e=t.getMeta(),i=t.getDataset();null!==e.xAxisID&&e.xAxisID in t.chart.scales||(e.xAxisID=i.xAxisID||t.chart.options.scales.xAxes[0].id),null!==e.yAxisID&&e.yAxisID in t.chart.scales||(e.yAxisID=i.yAxisID||t.chart.options.scales.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(t){return this.chart.scales[t]},_getValueScaleId:function(){return this.getMeta().yAxisID},_getIndexScaleId:function(){return this.getMeta().xAxisID},_getValueScale:function(){return this.getScaleForId(this._getValueScaleId())},_getIndexScale:function(){return this.getScaleForId(this._getIndexScaleId())},reset:function(){this.update(!0)},destroy:function(){this._data&&kt(this._data,this)},createMetaDataset:function(){var t=this.datasetElementType;return t&&new t({_chart:this.chart,_datasetIndex:this.index})},createMetaData:function(t){var e=this.dataElementType;return e&&new e({_chart:this.chart,_datasetIndex:this.index,_index:t})},addElements:function(){var t,e,i=this.getMeta(),n=this.getDataset().data||[],a=i.data;for(t=0,e=n.length;ti&&this.insertElements(i,n-i)},insertElements:function(t,e){for(var i=0;is;)a-=2*Math.PI;for(;a=r&&a<=s,d=o>=i.innerRadius&&o<=i.outerRadius;return l&&d}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,i=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*i,y:t.y+Math.sin(e)*i}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,i=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*i,y:t.y+Math.sin(e)*i}},draw:function(){var t,e=this._chart.ctx,i=this._view,n=i.startAngle,a=i.endAngle,o="inner"===i.borderAlign?.33:0;e.save(),e.beginPath(),e.arc(i.x,i.y,Math.max(i.outerRadius-o,0),n,a),e.arc(i.x,i.y,i.innerRadius,a,n,!0),e.closePath(),e.fillStyle=i.backgroundColor,e.fill(),i.borderWidth&&("inner"===i.borderAlign?(e.beginPath(),t=o/i.outerRadius,e.arc(i.x,i.y,i.outerRadius,n-t,a+t),i.innerRadius>o?(t=o/i.innerRadius,e.arc(i.x,i.y,i.innerRadius-o,a+t,n-t,!0)):e.arc(i.x,i.y,o,a+Math.PI/2,n-Math.PI/2),e.closePath(),e.clip(),e.beginPath(),e.arc(i.x,i.y,i.outerRadius,n,a),e.arc(i.x,i.y,i.innerRadius,a,n,!0),e.closePath(),e.lineWidth=2*i.borderWidth,e.lineJoin="round"):(e.lineWidth=i.borderWidth,e.lineJoin="bevel"),e.strokeStyle=i.borderColor,e.stroke()),e.restore()}}),Ct=ut.valueOrDefault,St=st.global.defaultColor;st._set("global",{elements:{line:{tension:.4,backgroundColor:St,borderWidth:3,borderColor:St,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0}}});var Pt=pt.extend({draw:function(){var t,e,i,n,a=this._view,o=this._chart.ctx,r=a.spanGaps,s=this._children.slice(),l=st.global,d=l.elements.line,u=-1;for(this._loop&&s.length&&s.push(s[0]),o.save(),o.lineCap=a.borderCapStyle||d.borderCapStyle,o.setLineDash&&o.setLineDash(a.borderDash||d.borderDash),o.lineDashOffset=Ct(a.borderDashOffset,d.borderDashOffset),o.lineJoin=a.borderJoinStyle||d.borderJoinStyle,o.lineWidth=Ct(a.borderWidth,d.borderWidth),o.strokeStyle=a.borderColor||l.defaultColor,o.beginPath(),u=-1,t=0;tt.x&&(e=Ot(e,"left","right")):t.basei?i:n,r:l.right||a<0?0:a>e?e:a,b:l.bottom||o<0?0:o>i?i:o,l:l.left||r<0?0:r>e?e:r}}function Bt(t,e,i){var n=null===e,a=null===i,o=!(!t||n&&a)&&Rt(t);return o&&(n||e>=o.left&&e<=o.right)&&(a||i>=o.top&&i<=o.bottom)}st._set("global",{elements:{rectangle:{backgroundColor:Ft,borderColor:Ft,borderSkipped:"bottom",borderWidth:0}}});var Nt=pt.extend({draw:function(){var t=this._chart.ctx,e=this._view,i=function(t){var e=Rt(t),i=e.right-e.left,n=e.bottom-e.top,a=zt(t,i/2,n/2);return{outer:{x:e.left,y:e.top,w:i,h:n},inner:{x:e.left+a.l,y:e.top+a.t,w:i-a.l-a.r,h:n-a.t-a.b}}}(e),n=i.outer,a=i.inner;t.fillStyle=e.backgroundColor,t.fillRect(n.x,n.y,n.w,n.h),n.w===a.w&&n.h===a.h||(t.save(),t.beginPath(),t.rect(n.x,n.y,n.w,n.h),t.clip(),t.fillStyle=e.borderColor,t.rect(a.x,a.y,a.w,a.h),t.fill("evenodd"),t.restore())},height:function(){var t=this._view;return t.base-t.y},inRange:function(t,e){return Bt(this._view,t,e)},inLabelRange:function(t,e){var i=this._view;return Lt(i)?Bt(i,t,null):Bt(i,null,e)},inXRange:function(t){return Bt(this._view,t,null)},inYRange:function(t){return Bt(this._view,null,t)},getCenterPoint:function(){var t,e,i=this._view;return Lt(i)?(t=i.x,e=(i.y+i.base)/2):(t=(i.x+i.base)/2,e=i.y),{x:t,y:e}},getArea:function(){var t=this._view;return Lt(t)?t.width*Math.abs(t.y-t.base):t.height*Math.abs(t.x-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}}),Wt={},Vt=_t,Et=Pt,Ht=Tt,jt=Nt;Wt.Arc=Vt,Wt.Line=Et,Wt.Point=Ht,Wt.Rectangle=jt;var qt=ut.options.resolve;st._set("bar",{hover:{mode:"label"},scales:{xAxes:[{type:"category",categoryPercentage:.8,barPercentage:.9,offset:!0,gridLines:{offsetGridLines:!0}}],yAxes:[{type:"linear"}]}});var Yt=Mt.extend({dataElementType:Wt.Rectangle,initialize:function(){var t;Mt.prototype.initialize.apply(this,arguments),(t=this.getMeta()).stack=this.getDataset().stack,t.bar=!0},update:function(t){var e,i,n=this.getMeta().data;for(this._ruler=this.getRuler(),e=0,i=n.length;e0?Math.min(r,n-i):r,i=n;return r}(i,l):-1,pixels:l,start:r,end:s,stackCount:n,scale:i}},calculateBarValuePixels:function(t,e){var i,n,a,o,r,s,l=this.chart,d=this.getMeta(),u=this._getValueScale(),h=u.isHorizontal(),c=l.data.datasets,f=+u.getRightValue(c[t].data[e]),g=u.options.minBarLength,p=u.options.stacked,m=d.stack,v=0;if(p||void 0===p&&void 0!==m)for(i=0;i=0&&a>0)&&(v+=a));return o=u.getPixelForValue(v),s=(r=u.getPixelForValue(v+f))-o,void 0!==g&&Math.abs(s)=0&&!h||f<0&&h?o-g:o+g),{size:s,base:o,head:r,center:r+s/2}},calculateBarIndexPixels:function(t,e,i){var n=i.scale.options,a="flex"===n.barThickness?function(t,e,i){var n,a=e.pixels,o=a[t],r=t>0?a[t-1]:null,s=t');var i=t.data,n=i.datasets,a=i.labels;if(n.length)for(var o=0;o'),a[o]&&e.push(a[o]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(i,n){var a=t.getDatasetMeta(0),o=e.datasets[0],r=a.data[n],s=r&&r.custom||{},l=t.options.elements.arc;return{text:i,fillStyle:Gt([s.backgroundColor,o.backgroundColor,l.backgroundColor],void 0,n),strokeStyle:Gt([s.borderColor,o.borderColor,l.borderColor],void 0,n),lineWidth:Gt([s.borderWidth,o.borderWidth,l.borderWidth],void 0,n),hidden:isNaN(o.data[n])||a.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var i,n,a,o=e.index,r=this.chart;for(i=0,n=(r.data.datasets||[]).length;i=Math.PI?-1:m<-Math.PI?1:0))+g,b={x:Math.cos(m),y:Math.sin(m)},x={x:Math.cos(v),y:Math.sin(v)},y=m<=0&&v>=0||m<=2*Math.PI&&2*Math.PI<=v,k=m<=.5*Math.PI&&.5*Math.PI<=v||m<=2.5*Math.PI&&2.5*Math.PI<=v,w=m<=-Math.PI&&-Math.PI<=v||m<=Math.PI&&Math.PI<=v,M=m<=.5*-Math.PI&&.5*-Math.PI<=v||m<=1.5*Math.PI&&1.5*Math.PI<=v,_=f/100,C={x:w?-1:Math.min(b.x*(b.x<0?1:_),x.x*(x.x<0?1:_)),y:M?-1:Math.min(b.y*(b.y<0?1:_),x.y*(x.y<0?1:_))},S={x:y?1:Math.max(b.x*(b.x>0?1:_),x.x*(x.x>0?1:_)),y:k?1:Math.max(b.y*(b.y>0?1:_),x.y*(x.y>0?1:_))},P={width:.5*(S.x-C.x),height:.5*(S.y-C.y)};d=Math.min(s/P.width,l/P.height),u={x:-.5*(S.x+C.x),y:-.5*(S.y+C.y)}}for(e=0,i=c.length;e0&&!isNaN(t)?2*Math.PI*(Math.abs(t)/e):0},getMaxBorderWidth:function(t){var e,i,n,a,o,r,s,l,d=0,u=this.chart;if(!t)for(e=0,i=u.data.datasets.length;e(d=s>d?s:d)?l:d);return d},setHoverStyle:function(t){var e=t._model,i=t._options,n=ut.getHoverColor;t.$previousStyle={backgroundColor:e.backgroundColor,borderColor:e.borderColor,borderWidth:e.borderWidth},e.backgroundColor=Zt(i.hoverBackgroundColor,n(i.backgroundColor)),e.borderColor=Zt(i.hoverBorderColor,n(i.borderColor)),e.borderWidth=Zt(i.hoverBorderWidth,i.borderWidth)},_resolveElementOptions:function(t,e){var i,n,a,o=this.chart,r=this.getDataset(),s=t.custom||{},l=o.options.elements.arc,d={},u={chart:o,dataIndex:e,dataset:r,datasetIndex:this.index},h=["backgroundColor","borderColor","borderWidth","borderAlign","hoverBackgroundColor","hoverBorderColor","hoverBorderWidth"];for(i=0,n=h.length;i0&&ee(l[t-1]._model,s)&&(i.controlPointPreviousX=d(i.controlPointPreviousX,s.left,s.right),i.controlPointPreviousY=d(i.controlPointPreviousY,s.top,s.bottom)),t');var i=t.data,n=i.datasets,a=i.labels;if(n.length)for(var o=0;o'),a[o]&&e.push(a[o]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(i,n){var a=t.getDatasetMeta(0),o=e.datasets[0],r=a.data[n].custom||{},s=t.options.elements.arc;return{text:i,fillStyle:ae([r.backgroundColor,o.backgroundColor,s.backgroundColor],void 0,n),strokeStyle:ae([r.borderColor,o.borderColor,s.borderColor],void 0,n),lineWidth:ae([r.borderWidth,o.borderWidth,s.borderWidth],void 0,n),hidden:isNaN(o.data[n])||a.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var i,n,a,o=e.index,r=this.chart;for(i=0,n=(r.data.datasets||[]).length;i0&&(o=t.getDatasetMeta(o[0]._datasetIndex).data),o},"x-axis":function(t,e){return me(t,e,{intersect:!1})},point:function(t,e){return fe(t,he(e,t))},nearest:function(t,e,i){var n=he(e,t);i.axis=i.axis||"xy";var a=pe(i.axis);return ge(t,n,i.intersect,a)},x:function(t,e,i){var n=he(e,t),a=[],o=!1;return ce(t,function(t){t.inXRange(n.x)&&a.push(t),t.inRange(n.x,n.y)&&(o=!0)}),i.intersect&&!o&&(a=[]),a},y:function(t,e,i){var n=he(e,t),a=[],o=!1;return ce(t,function(t){t.inYRange(n.y)&&a.push(t),t.inRange(n.x,n.y)&&(o=!0)}),i.intersect&&!o&&(a=[]),a}}};function be(t,e){return ut.where(t,function(t){return t.position===e})}function xe(t,e){t.forEach(function(t,e){return t._tmpIndex_=e,t}),t.sort(function(t,i){var n=e?i:t,a=e?t:i;return n.weight===a.weight?n._tmpIndex_-a._tmpIndex_:n.weight-a.weight}),t.forEach(function(t){delete t._tmpIndex_})}function ye(t,e){ut.each(t,function(t){e[t.position]+=t.isHorizontal()?t.height:t.width})}st._set("global",{layout:{padding:{top:0,right:0,bottom:0,left:0}}});var ke={defaults:{},addBox:function(t,e){t.boxes||(t.boxes=[]),e.fullWidth=e.fullWidth||!1,e.position=e.position||"top",e.weight=e.weight||0,t.boxes.push(e)},removeBox:function(t,e){var i=t.boxes?t.boxes.indexOf(e):-1;-1!==i&&t.boxes.splice(i,1)},configure:function(t,e,i){for(var n,a=["fullWidth","position","weight"],o=a.length,r=0;rdiv{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0}"}))&&we.default||we,_e="$chartjs",Ce="chartjs-size-monitor",Se="chartjs-render-monitor",Pe="chartjs-render-animation",Ie=["animationstart","webkitAnimationStart"],Ae={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function De(t,e){var i=ut.getStyle(t,e),n=i&&i.match(/^(\d+)(\.\d+)?px$/);return n?Number(n[1]):void 0}var Te=!!function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("e",null,e)}catch(t){}return t}()&&{passive:!0};function Fe(t,e,i){t.addEventListener(e,i,Te)}function Le(t,e,i){t.removeEventListener(e,i,Te)}function Re(t,e,i,n,a){return{type:t,chart:e,native:a||null,x:void 0!==i?i:null,y:void 0!==n?n:null}}function Oe(t){var e=document.createElement("div");return e.className=t||"",e}function ze(t,e,i){var n,a,o,r,s=t[_e]||(t[_e]={}),l=s.resizer=function(t){var e=Oe(Ce),i=Oe(Ce+"-expand"),n=Oe(Ce+"-shrink");i.appendChild(Oe()),n.appendChild(Oe()),e.appendChild(i),e.appendChild(n),e._reset=function(){i.scrollLeft=1e6,i.scrollTop=1e6,n.scrollLeft=1e6,n.scrollTop=1e6};var a=function(){e._reset(),t()};return Fe(i,"scroll",a.bind(i,"expand")),Fe(n,"scroll",a.bind(n,"shrink")),e}((n=function(){if(s.resizer){var n=i.options.maintainAspectRatio&&t.parentNode,a=n?n.clientWidth:0;e(Re("resize",i)),n&&n.clientWidth0){var o=t[0];o.label?i=o.label:o.xLabel?i=o.xLabel:a>0&&o.index-1?t.split("\n"):t}function Xe(t){var e=st.global;return{xPadding:t.xPadding,yPadding:t.yPadding,xAlign:t.xAlign,yAlign:t.yAlign,bodyFontColor:t.bodyFontColor,_bodyFontFamily:je(t.bodyFontFamily,e.defaultFontFamily),_bodyFontStyle:je(t.bodyFontStyle,e.defaultFontStyle),_bodyAlign:t.bodyAlign,bodyFontSize:je(t.bodyFontSize,e.defaultFontSize),bodySpacing:t.bodySpacing,titleFontColor:t.titleFontColor,_titleFontFamily:je(t.titleFontFamily,e.defaultFontFamily),_titleFontStyle:je(t.titleFontStyle,e.defaultFontStyle),titleFontSize:je(t.titleFontSize,e.defaultFontSize),_titleAlign:t.titleAlign,titleSpacing:t.titleSpacing,titleMarginBottom:t.titleMarginBottom,footerFontColor:t.footerFontColor,_footerFontFamily:je(t.footerFontFamily,e.defaultFontFamily),_footerFontStyle:je(t.footerFontStyle,e.defaultFontStyle),footerFontSize:je(t.footerFontSize,e.defaultFontSize),_footerAlign:t.footerAlign,footerSpacing:t.footerSpacing,footerMarginTop:t.footerMarginTop,caretSize:t.caretSize,cornerRadius:t.cornerRadius,backgroundColor:t.backgroundColor,opacity:0,legendColorBackground:t.multiKeyBackground,displayColors:t.displayColors,borderColor:t.borderColor,borderWidth:t.borderWidth}}function Ke(t,e){return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-t.xPadding:t.x+t.xPadding}function Ge(t){return Ye([],Ue(t))}var Ze=pt.extend({initialize:function(){this._model=Xe(this._options),this._lastActive=[]},getTitle:function(){var t=this._options.callbacks,e=t.beforeTitle.apply(this,arguments),i=t.title.apply(this,arguments),n=t.afterTitle.apply(this,arguments),a=[];return a=Ye(a,Ue(e)),a=Ye(a,Ue(i)),a=Ye(a,Ue(n))},getBeforeBody:function(){return Ge(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(t,e){var i=this,n=i._options.callbacks,a=[];return ut.each(t,function(t){var o={before:[],lines:[],after:[]};Ye(o.before,Ue(n.beforeLabel.call(i,t,e))),Ye(o.lines,n.label.call(i,t,e)),Ye(o.after,Ue(n.afterLabel.call(i,t,e))),a.push(o)}),a},getAfterBody:function(){return Ge(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var t=this._options.callbacks,e=t.beforeFooter.apply(this,arguments),i=t.footer.apply(this,arguments),n=t.afterFooter.apply(this,arguments),a=[];return a=Ye(a,Ue(e)),a=Ye(a,Ue(i)),a=Ye(a,Ue(n))},update:function(t){var e,i,n,a,o,r,s,l,d,u,h=this,c=h._options,f=h._model,g=h._model=Xe(c),p=h._active,m=h._data,v={xAlign:f.xAlign,yAlign:f.yAlign},b={x:f.x,y:f.y},x={width:f.width,height:f.height},y={x:f.caretX,y:f.caretY};if(p.length){g.opacity=1;var k=[],w=[];y=qe[c.position].call(h,p,h._eventPosition);var M=[];for(e=0,i=p.length;en.width&&(a=n.width-e.width),a<0&&(a=0)),"top"===u?o+=h:o-="bottom"===u?e.height+h:e.height/2,"center"===u?"left"===d?a+=h:"right"===d&&(a-=h):"left"===d?a-=c:"right"===d&&(a+=c),{x:a,y:o}}(g,x,v=function(t,e){var i,n,a,o,r,s=t._model,l=t._chart,d=t._chart.chartArea,u="center",h="center";s.yl.height-e.height&&(h="bottom");var c=(d.left+d.right)/2,f=(d.top+d.bottom)/2;"center"===h?(i=function(t){return t<=c},n=function(t){return t>c}):(i=function(t){return t<=e.width/2},n=function(t){return t>=l.width-e.width/2}),a=function(t){return t+e.width+s.caretSize+s.caretPadding>l.width},o=function(t){return t-e.width-s.caretSize-s.caretPadding<0},r=function(t){return t<=f?"top":"bottom"},i(s.x)?(u="left",a(s.x)&&(u="center",h=r(s.y))):n(s.x)&&(u="right",o(s.x)&&(u="center",h=r(s.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:u,yAlign:g.yAlign?g.yAlign:h}}(this,x),h._chart)}else g.opacity=0;return g.xAlign=v.xAlign,g.yAlign=v.yAlign,g.x=b.x,g.y=b.y,g.width=x.width,g.height=x.height,g.caretX=y.x,g.caretY=y.y,h._model=g,t&&c.custom&&c.custom.call(h,g),h},drawCaret:function(t,e){var i=this._chart.ctx,n=this._view,a=this.getCaretPosition(t,e,n);i.lineTo(a.x1,a.y1),i.lineTo(a.x2,a.y2),i.lineTo(a.x3,a.y3)},getCaretPosition:function(t,e,i){var n,a,o,r,s,l,d=i.caretSize,u=i.cornerRadius,h=i.xAlign,c=i.yAlign,f=t.x,g=t.y,p=e.width,m=e.height;if("center"===c)s=g+m/2,"left"===h?(a=(n=f)-d,o=n,r=s+d,l=s-d):(a=(n=f+p)+d,o=n,r=s-d,l=s+d);else if("left"===h?(n=(a=f+u+d)-d,o=a+d):"right"===h?(n=(a=f+p-u-d)-d,o=a+d):(n=(a=i.caretX)-d,o=a+d),"top"===c)s=(r=g)-d,l=r;else{s=(r=g+m)+d,l=r;var v=o;o=n,n=v}return{x1:n,x2:a,x3:o,y1:r,y2:s,y3:l}},drawTitle:function(t,e,i){var n=e.title;if(n.length){t.x=Ke(e,e._titleAlign),i.textAlign=e._titleAlign,i.textBaseline="top";var a,o,r=e.titleFontSize,s=e.titleSpacing;for(i.fillStyle=e.titleFontColor,i.font=ut.fontString(r,e._titleFontStyle,e._titleFontFamily),a=0,o=n.length;a0&&i.stroke()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var i={width:e.width,height:e.height},n={x:e.x,y:e.y},a=Math.abs(e.opacity<.001)?0:e.opacity,o=e.title.length||e.beforeBody.length||e.body.length||e.afterBody.length||e.footer.length;this._options.enabled&&o&&(t.save(),t.globalAlpha=a,this.drawBackground(n,e,t,i),n.y+=e.yPadding,this.drawTitle(n,e,t),this.drawBody(n,e,t),this.drawFooter(n,e,t),t.restore())}},handleEvent:function(t){var e,i=this,n=i._options;return i._lastActive=i._lastActive||[],"mouseout"===t.type?i._active=[]:i._active=i._chart.getElementsAtEventForMode(t,n.mode,n),(e=!ut.arrayEquals(i._active,i._lastActive))&&(i._lastActive=i._active,(n.enabled||n.custom)&&(i._eventPosition={x:t.x,y:t.y},i.update(!0),i.pivot())),e}}),$e=qe,Je=Ze;Je.positioners=$e;var Qe=ut.valueOrDefault;function ti(){return ut.merge({},[].slice.call(arguments),{merger:function(t,e,i,n){if("xAxes"===t||"yAxes"===t){var a,o,r,s=i[t].length;for(e[t]||(e[t]=[]),a=0;a=e[t].length&&e[t].push({}),!e[t][a].type||r.type&&r.type!==e[t][a].type?ut.merge(e[t][a],[He.getScaleDefaults(o),r]):ut.merge(e[t][a],r)}else ut._merger(t,e,i,n)}})}function ei(){return ut.merge({},[].slice.call(arguments),{merger:function(t,e,i,n){var a=e[t]||{},o=i[t];"scales"===t?e[t]=ti(a,o):"scale"===t?e[t]=ut.merge(a,[He.getScaleDefaults(o.type),o]):ut._merger(t,e,i,n)}})}function ii(t){return"top"===t||"bottom"===t}st._set("global",{elements:{},events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,maintainAspectRatio:!0,responsive:!0,responsiveAnimationDuration:0});var ni=function(t,e){return this.construct(t,e),this};ut.extend(ni.prototype,{construct:function(t,e){var i=this;e=function(t){var e=(t=t||{}).data=t.data||{};return e.datasets=e.datasets||[],e.labels=e.labels||[],t.options=ei(st.global,st[t.type],t.options||{}),t}(e);var n=Ve.acquireContext(t,e),a=n&&n.canvas,o=a&&a.height,r=a&&a.width;i.id=ut.uid(),i.ctx=n,i.canvas=a,i.config=e,i.width=r,i.height=o,i.aspectRatio=o?r/o:null,i.options=e.options,i._bufferedRender=!1,i.chart=i,i.controller=i,ni.instances[i.id]=i,Object.defineProperty(i,"data",{get:function(){return i.config.data},set:function(t){i.config.data=t}}),n&&a?(i.initialize(),i.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var t=this;return Ee.notify(t,"beforeInit"),ut.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.initToolTip(),Ee.notify(t,"afterInit"),t},clear:function(){return ut.canvas.clear(this),this},stop:function(){return bt.cancelAnimation(this),this},resize:function(t){var e=this,i=e.options,n=e.canvas,a=i.maintainAspectRatio&&e.aspectRatio||null,o=Math.max(0,Math.floor(ut.getMaximumWidth(n))),r=Math.max(0,Math.floor(a?o/a:ut.getMaximumHeight(n)));if((e.width!==o||e.height!==r)&&(n.width=e.width=o,n.height=e.height=r,n.style.width=o+"px",n.style.height=r+"px",ut.retinaScale(e,i.devicePixelRatio),!t)){var s={width:o,height:r};Ee.notify(e,"resize",[s]),i.onResize&&i.onResize(e,s),e.stop(),e.update({duration:i.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},i=t.scale;ut.each(e.xAxes,function(t,e){t.id=t.id||"x-axis-"+e}),ut.each(e.yAxes,function(t,e){t.id=t.id||"y-axis-"+e}),i&&(i.id=i.id||"scale")},buildOrUpdateScales:function(){var t=this,e=t.options,i=t.scales||{},n=[],a=Object.keys(i).reduce(function(t,e){return t[e]=!1,t},{});e.scales&&(n=n.concat((e.scales.xAxes||[]).map(function(t){return{options:t,dtype:"category",dposition:"bottom"}}),(e.scales.yAxes||[]).map(function(t){return{options:t,dtype:"linear",dposition:"left"}}))),e.scale&&n.push({options:e.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),ut.each(n,function(e){var n=e.options,o=n.id,r=Qe(n.type,e.dtype);ii(n.position)!==ii(e.dposition)&&(n.position=e.dposition),a[o]=!0;var s=null;if(o in i&&i[o].type===r)(s=i[o]).options=n,s.ctx=t.ctx,s.chart=t;else{var l=He.getScaleConstructor(r);if(!l)return;s=new l({id:o,type:r,options:n,ctx:t.ctx,chart:t}),i[s.id]=s}s.mergeTicksOptions(),e.isDefault&&(t.scale=s)}),ut.each(a,function(t,e){t||delete i[e]}),t.scales=i,He.addScalesToLayout(this)},buildOrUpdateControllers:function(){var t=this,e=[];return ut.each(t.data.datasets,function(i,n){var a=t.getDatasetMeta(n),o=i.type||t.config.type;if(a.type&&a.type!==o&&(t.destroyDatasetMeta(n),a=t.getDatasetMeta(n)),a.type=o,a.controller)a.controller.updateIndex(n),a.controller.linkScales();else{var r=ue[a.type];if(void 0===r)throw new Error('"'+a.type+'" is not a chart type.');a.controller=new r(t,n),e.push(a.controller)}},t),e},resetElements:function(){var t=this;ut.each(t.data.datasets,function(e,i){t.getDatasetMeta(i).controller.reset()},t)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(t){var e,i,n=this;if(t&&"object"==typeof t||(t={duration:t,lazy:arguments[1]}),i=(e=n).options,ut.each(e.scales,function(t){ke.removeBox(e,t)}),i=ei(st.global,st[e.config.type],i),e.options=e.config.options=i,e.ensureScalesHaveIDs(),e.buildOrUpdateScales(),e.tooltip._options=i.tooltips,e.tooltip.initialize(),Ee._invalidate(n),!1!==Ee.notify(n,"beforeUpdate")){n.tooltip._data=n.data;var a=n.buildOrUpdateControllers();ut.each(n.data.datasets,function(t,e){n.getDatasetMeta(e).controller.buildOrUpdateElements()},n),n.updateLayout(),n.options.animation&&n.options.animation.duration&&ut.each(a,function(t){t.reset()}),n.updateDatasets(),n.tooltip.initialize(),n.lastActive=[],Ee.notify(n,"afterUpdate"),n._bufferedRender?n._bufferedRequest={duration:t.duration,easing:t.easing,lazy:t.lazy}:n.render(t)}},updateLayout:function(){!1!==Ee.notify(this,"beforeLayout")&&(ke.update(this,this.width,this.height),Ee.notify(this,"afterScaleUpdate"),Ee.notify(this,"afterLayout"))},updateDatasets:function(){if(!1!==Ee.notify(this,"beforeDatasetsUpdate")){for(var t=0,e=this.data.datasets.length;t=0;--i)e.isDatasetVisible(i)&&e.drawDataset(i,t);Ee.notify(e,"afterDatasetsDraw",[t])}},drawDataset:function(t,e){var i=this.getDatasetMeta(t),n={meta:i,index:t,easingValue:e};!1!==Ee.notify(this,"beforeDatasetDraw",[n])&&(i.controller.draw(e),Ee.notify(this,"afterDatasetDraw",[n]))},_drawTooltip:function(t){var e=this.tooltip,i={tooltip:e,easingValue:t};!1!==Ee.notify(this,"beforeTooltipDraw",[i])&&(e.draw(),Ee.notify(this,"afterTooltipDraw",[i]))},getElementAtEvent:function(t){return ve.modes.single(this,t)},getElementsAtEvent:function(t){return ve.modes.label(this,t,{intersect:!0})},getElementsAtXAxis:function(t){return ve.modes["x-axis"](this,t,{intersect:!0})},getElementsAtEventForMode:function(t,e,i){var n=ve.modes[e];return"function"==typeof n?n(this,t,i):[]},getDatasetAtEvent:function(t){return ve.modes.dataset(this,t,{intersect:!0})},getDatasetMeta:function(t){var e=this.data.datasets[t];e._meta||(e._meta={});var i=e._meta[this.id];return i||(i=e._meta[this.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null}),i},getVisibleDatasetCount:function(){for(var t=0,e=0,i=this.data.datasets.length;e3?i[2]-i[1]:i[1]-i[0];Math.abs(n)>1&&t!==Math.floor(t)&&(n=t-Math.floor(t));var a=ut.log10(Math.abs(n)),o="";if(0!==t)if(Math.max(Math.abs(i[0]),Math.abs(i[i.length-1]))<1e-4){var r=ut.log10(Math.abs(t));o=t.toExponential(Math.floor(r)-Math.floor(a))}else{var s=-1*Math.floor(a);s=Math.max(Math.min(s,20),0),o=t.toFixed(s)}else o="0";return o},logarithmic:function(t,e,i){var n=t/Math.pow(10,Math.floor(ut.log10(t)));return 0===t?"0":1===n||2===n||5===n||0===e||e===i.length-1?t.toExponential():""}}},di=ut.valueOrDefault,ui=ut.valueAtIndexOrDefault;function hi(t){var e,i,n=[];for(e=0,i=t.length;ed&&ot.maxHeight){o--;break}o++,l=r*s}t.labelRotation=o},afterCalculateTickRotation:function(){ut.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){ut.callback(this.options.beforeFit,[this])},fit:function(){var t=this,e=t.minSize={width:0,height:0},i=hi(t._ticks),n=t.options,a=n.ticks,o=n.scaleLabel,r=n.gridLines,s=t._isVisible(),l=n.position,d=t.isHorizontal(),u=ut.options._parseFont,h=u(a),c=n.gridLines.tickMarkLength;if(e.width=d?t.isFullWidth()?t.maxWidth-t.margins.left-t.margins.right:t.maxWidth:s&&r.drawTicks?c:0,e.height=d?s&&r.drawTicks?c:0:t.maxHeight,o.display&&s){var f=u(o),g=ut.options.toPadding(o.padding),p=f.lineHeight+g.height;d?e.height+=p:e.width+=p}if(a.display&&s){var m=ut.longestText(t.ctx,h.string,i,t.longestTextCache),v=ut.numberOfLabelLines(i),b=.5*h.size,x=t.options.ticks.padding;if(t._maxLabelLines=v,t.longestLabelWidth=m,d){var y=ut.toRadians(t.labelRotation),k=Math.cos(y),w=Math.sin(y)*m+h.lineHeight*v+b;e.height=Math.min(t.maxHeight,e.height+w+x),t.ctx.font=h.string;var M,_,C=ci(t.ctx,i[0],h.string),S=ci(t.ctx,i[i.length-1],h.string),P=t.getPixelForTick(0)-t.left,I=t.right-t.getPixelForTick(i.length-1);0!==t.labelRotation?(M="bottom"===l?k*C:k*b,_="bottom"===l?k*b:k*S):(M=C/2,_=S/2),t.paddingLeft=Math.max(M-P,0)+3,t.paddingRight=Math.max(_-I,0)+3}else a.mirror?m=0:m+=x+b,e.width=Math.min(t.maxWidth,e.width+m),t.paddingTop=h.size/2,t.paddingBottom=h.size/2}t.handleMargins(),t.width=e.width,t.height=e.height},handleMargins:function(){var t=this;t.margins&&(t.paddingLeft=Math.max(t.paddingLeft-t.margins.left,0),t.paddingTop=Math.max(t.paddingTop-t.margins.top,0),t.paddingRight=Math.max(t.paddingRight-t.margins.right,0),t.paddingBottom=Math.max(t.paddingBottom-t.margins.bottom,0))},afterFit:function(){ut.callback(this.options.afterFit,[this])},isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(ut.isNullOrUndef(t))return NaN;if(("number"==typeof t||t instanceof Number)&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},getLabelForIndex:ut.noop,getPixelForValue:ut.noop,getValueForPixel:ut.noop,getPixelForTick:function(t){var e=this,i=e.options.offset;if(e.isHorizontal()){var n=(e.width-(e.paddingLeft+e.paddingRight))/Math.max(e._ticks.length-(i?0:1),1),a=n*t+e.paddingLeft;i&&(a+=n/2);var o=e.left+a;return o+=e.isFullWidth()?e.margins.left:0}var r=e.height-(e.paddingTop+e.paddingBottom);return e.top+t*(r/(e._ticks.length-1))},getPixelForDecimal:function(t){var e=this;if(e.isHorizontal()){var i=(e.width-(e.paddingLeft+e.paddingRight))*t+e.paddingLeft,n=e.left+i;return n+=e.isFullWidth()?e.margins.left:0}return e.top+t*e.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this.min,e=this.max;return this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0},_autoSkip:function(t){var e,i,n=this,a=n.isHorizontal(),o=n.options.ticks.minor,r=t.length,s=!1,l=o.maxTicksLimit,d=n._tickSize()*(r-1),u=a?n.width-(n.paddingLeft+n.paddingRight):n.height-(n.paddingTop+n.PaddingBottom),h=[];for(d>u&&(s=1+Math.floor(d/u)),r>l&&(s=Math.max(s,1+Math.floor(r/l))),e=0;e1&&e%s>0&&delete i.label,h.push(i);return h},_tickSize:function(){var t=this,e=t.isHorizontal(),i=t.options.ticks.minor,n=ut.toRadians(t.labelRotation),a=Math.abs(Math.cos(n)),o=Math.abs(Math.sin(n)),r=i.autoSkipPadding||0,s=t.longestLabelWidth+r||0,l=ut.options._parseFont(i),d=t._maxLabelLines*l.lineHeight+r||0;return e?d*a>s*o?s/a:d/o:d*o0&&n>0&&(t.min=0)}var a=void 0!==e.min||void 0!==e.suggestedMin,o=void 0!==e.max||void 0!==e.suggestedMax;void 0!==e.min?t.min=e.min:void 0!==e.suggestedMin&&(null===t.min?t.min=e.suggestedMin:t.min=Math.min(t.min,e.suggestedMin)),void 0!==e.max?t.max=e.max:void 0!==e.suggestedMax&&(null===t.max?t.max=e.suggestedMax:t.max=Math.max(t.max,e.suggestedMax)),a!==o&&t.min>=t.max&&(a?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:function(){var t,e=this.options.ticks,i=e.stepSize,n=e.maxTicksLimit;return i?t=Math.ceil(this.max/i)-Math.floor(this.min/i)+1:(t=this._computeTickLimit(),n=n||11),n&&(t=Math.min(n,t)),t},_computeTickLimit:function(){return Number.POSITIVE_INFINITY},handleDirectionalChanges:mi,buildTicks:function(){var t=this,e=t.options.ticks,i=t.getTickLimit(),n={maxTicks:i=Math.max(2,i),min:e.min,max:e.max,precision:e.precision,stepSize:ut.valueOrDefault(e.fixedStepSize,e.stepSize)},a=t.ticks=function(t,e){var i,n,a,o,r=[],s=t.stepSize,l=s||1,d=t.maxTicks-1,u=t.min,h=t.max,c=t.precision,f=e.min,g=e.max,p=ut.niceNum((g-f)/d/l)*l;if(p<1e-14&&vi(u)&&vi(h))return[f,g];(o=Math.ceil(g/p)-Math.floor(f/p))>d&&(p=ut.niceNum(o*p/d/l)*l),s||vi(c)?i=Math.pow(10,ut._decimalPlaces(p)):(i=Math.pow(10,c),p=Math.ceil(p*i)/i),n=Math.floor(f/p)*p,a=Math.ceil(g/p)*p,s&&(!vi(u)&&ut.almostWhole(u/p,p/1e3)&&(n=u),!vi(h)&&ut.almostWhole(h/p,p/1e3)&&(a=h)),o=(a-n)/p,o=ut.almostEquals(o,Math.round(o),p/1e3)?Math.round(o):Math.ceil(o),n=Math.round(n*i)/i,a=Math.round(a*i)/i,r.push(vi(u)?n:u);for(var m=1;mt.max&&(t.max=n))})});t.min=isFinite(t.min)&&!isNaN(t.min)?t.min:0,t.max=isFinite(t.max)&&!isNaN(t.max)?t.max:1,this.handleTickRangeOptions()},_computeTickLimit:function(){var t;return this.isHorizontal()?Math.ceil(this.width/40):(t=ut.options._parseFont(this.options.ticks),Math.ceil(this.height/t.lineHeight))},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForValue:function(t){var e=this,i=e.start,n=+e.getRightValue(t),a=e.end-i;return e.isHorizontal()?e.left+e.width/a*(n-i):e.bottom-e.height/a*(n-i)},getValueForPixel:function(t){var e=this,i=e.isHorizontal(),n=i?e.width:e.height,a=(i?t-e.left:e.bottom-t)/n;return e.start+(e.end-e.start)*a},getPixelForTick:function(t){return this.getPixelForValue(this.ticksAsNumbers[t])}}),ki=xi;yi._defaults=ki;var wi=ut.valueOrDefault;var Mi={position:"left",ticks:{callback:li.formatters.logarithmic}};function _i(t,e){return ut.isFinite(t)&&t>=0?t:e}var Ci=fi.extend({determineDataLimits:function(){var t=this,e=t.options,i=t.chart,n=i.data.datasets,a=t.isHorizontal();function o(e){return a?e.xAxisID===t.id:e.yAxisID===t.id}t.min=null,t.max=null,t.minNotZero=null;var r=e.stacked;if(void 0===r&&ut.each(n,function(t,e){if(!r){var n=i.getDatasetMeta(e);i.isDatasetVisible(e)&&o(n)&&void 0!==n.stack&&(r=!0)}}),e.stacked||r){var s={};ut.each(n,function(n,a){var r=i.getDatasetMeta(a),l=[r.type,void 0===e.stacked&&void 0===r.stack?a:"",r.stack].join(".");i.isDatasetVisible(a)&&o(r)&&(void 0===s[l]&&(s[l]=[]),ut.each(n.data,function(e,i){var n=s[l],a=+t.getRightValue(e);isNaN(a)||r.data[i].hidden||a<0||(n[i]=n[i]||0,n[i]+=a)}))}),ut.each(s,function(e){if(e.length>0){var i=ut.min(e),n=ut.max(e);t.min=null===t.min?i:Math.min(t.min,i),t.max=null===t.max?n:Math.max(t.max,n)}})}else ut.each(n,function(e,n){var a=i.getDatasetMeta(n);i.isDatasetVisible(n)&&o(a)&&ut.each(e.data,function(e,i){var n=+t.getRightValue(e);isNaN(n)||a.data[i].hidden||n<0||(null===t.min?t.min=n:nt.max&&(t.max=n),0!==n&&(null===t.minNotZero||n0?t.minNotZero=t.min:t.max<1?t.minNotZero=Math.pow(10,Math.floor(ut.log10(t.max))):t.minNotZero=1)},buildTicks:function(){var t=this,e=t.options.ticks,i=!t.isHorizontal(),n={min:_i(e.min),max:_i(e.max)},a=t.ticks=function(t,e){var i,n,a=[],o=wi(t.min,Math.pow(10,Math.floor(ut.log10(e.min)))),r=Math.floor(ut.log10(e.max)),s=Math.ceil(e.max/Math.pow(10,r));0===o?(i=Math.floor(ut.log10(e.minNotZero)),n=Math.floor(e.minNotZero/Math.pow(10,i)),a.push(o),o=n*Math.pow(10,i)):(i=Math.floor(ut.log10(o)),n=Math.floor(o/Math.pow(10,i)));var l=i<0?Math.pow(10,Math.abs(i)):1;do{a.push(o),10==++n&&(n=1,l=++i>=0?1:l),o=Math.round(n*Math.pow(10,i)*l)/l}while(ia?{start:e-i,end:e}:{start:e,end:e+i}}function Ri(t){return 0===t||180===t?"center":t<180?"left":"right"}function Oi(t,e,i,n){var a,o,r=i.y+n/2;if(ut.isArray(e))for(a=0,o=e.length;a270||t<90)&&(i.y-=e.h)}function Bi(t){return ut.isNumber(t)?t:0}var Ni=bi.extend({setDimensions:function(){var t=this;t.width=t.maxWidth,t.height=t.maxHeight,t.paddingTop=Fi(t.options)/2,t.xCenter=Math.floor(t.width/2),t.yCenter=Math.floor((t.height-t.paddingTop)/2),t.drawingArea=Math.min(t.height-t.paddingTop,t.width)/2},determineDataLimits:function(){var t=this,e=t.chart,i=Number.POSITIVE_INFINITY,n=Number.NEGATIVE_INFINITY;ut.each(e.data.datasets,function(a,o){if(e.isDatasetVisible(o)){var r=e.getDatasetMeta(o);ut.each(a.data,function(e,a){var o=+t.getRightValue(e);isNaN(o)||r.data[a].hidden||(i=Math.min(o,i),n=Math.max(o,n))})}}),t.min=i===Number.POSITIVE_INFINITY?0:i,t.max=n===Number.NEGATIVE_INFINITY?0:n,t.handleTickRangeOptions()},_computeTickLimit:function(){return Math.ceil(this.drawingArea/Fi(this.options))},convertTicksToLabels:function(){var t=this;bi.prototype.convertTicksToLabels.call(t),t.pointLabels=t.chart.data.labels.map(t.options.pointLabels.callback,t)},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},fit:function(){var t=this.options;t.display&&t.pointLabels.display?function(t){var e,i,n,a=ut.options._parseFont(t.options.pointLabels),o={l:0,r:t.width,t:0,b:t.height-t.paddingTop},r={};t.ctx.font=a.string,t._pointLabelSizes=[];var s,l,d,u=Ti(t);for(e=0;eo.r&&(o.r=f.end,r.r=h),g.starto.b&&(o.b=g.end,r.b=h)}t.setReductions(t.drawingArea,o,r)}(this):this.setCenterPoint(0,0,0,0)},setReductions:function(t,e,i){var n=this,a=e.l/Math.sin(i.l),o=Math.max(e.r-n.width,0)/Math.sin(i.r),r=-e.t/Math.cos(i.t),s=-Math.max(e.b-(n.height-n.paddingTop),0)/Math.cos(i.b);a=Bi(a),o=Bi(o),r=Bi(r),s=Bi(s),n.drawingArea=Math.min(Math.floor(t-(a+o)/2),Math.floor(t-(r+s)/2)),n.setCenterPoint(a,o,r,s)},setCenterPoint:function(t,e,i,n){var a=this,o=a.width-e-a.drawingArea,r=t+a.drawingArea,s=i+a.drawingArea,l=a.height-a.paddingTop-n-a.drawingArea;a.xCenter=Math.floor((r+o)/2+a.left),a.yCenter=Math.floor((s+l)/2+a.top+a.paddingTop)},getIndexAngle:function(t){return t*(2*Math.PI/Ti(this))+(this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0)*Math.PI*2/360},getDistanceFromCenterForValue:function(t){var e=this;if(null===t)return 0;var i=e.drawingArea/(e.max-e.min);return e.options.ticks.reverse?(e.max-t)*i:(t-e.min)*i},getPointPosition:function(t,e){var i=this.getIndexAngle(t)-Math.PI/2;return{x:Math.cos(i)*e+this.xCenter,y:Math.sin(i)*e+this.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(){var t=this.min,e=this.max;return this.getPointPositionForValue(0,this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0)},draw:function(){var t=this,e=t.options,i=e.gridLines,n=e.ticks;if(e.display){var a=t.ctx,o=this.getIndexAngle(0),r=ut.options._parseFont(n);(e.angleLines.display||e.pointLabels.display)&&function(t){var e=t.ctx,i=t.options,n=i.angleLines,a=i.gridLines,o=i.pointLabels,r=Pi(n.lineWidth,a.lineWidth),s=Pi(n.color,a.color),l=Fi(i);e.save(),e.lineWidth=r,e.strokeStyle=s,e.setLineDash&&(e.setLineDash(Ai([n.borderDash,a.borderDash,[]])),e.lineDashOffset=Ai([n.borderDashOffset,a.borderDashOffset,0]));var d=t.getDistanceFromCenterForValue(i.ticks.reverse?t.min:t.max),u=ut.options._parseFont(o);e.font=u.string,e.textBaseline="middle";for(var h=Ti(t)-1;h>=0;h--){if(n.display&&r&&s){var c=t.getPointPosition(h,d);e.beginPath(),e.moveTo(t.xCenter,t.yCenter),e.lineTo(c.x,c.y),e.stroke()}if(o.display){var f=0===h?l/2:0,g=t.getPointPosition(h,d+f+5),p=Ii(o.fontColor,h,st.global.defaultFontColor);e.fillStyle=p;var m=t.getIndexAngle(h),v=ut.toDegrees(m);e.textAlign=Ri(v),zi(v,t._pointLabelSizes[h],g),Oi(e,t.pointLabels[h]||"",g,u.lineHeight)}}e.restore()}(t),ut.each(t.ticks,function(e,s){if(s>0||n.reverse){var l=t.getDistanceFromCenterForValue(t.ticksAsNumbers[s]);if(i.display&&0!==s&&function(t,e,i,n){var a,o=t.ctx,r=e.circular,s=Ti(t),l=Ii(e.color,n-1),d=Ii(e.lineWidth,n-1);if((r||s)&&l&&d){if(o.save(),o.strokeStyle=l,o.lineWidth=d,o.setLineDash&&(o.setLineDash(e.borderDash||[]),o.lineDashOffset=e.borderDashOffset||0),o.beginPath(),r)o.arc(t.xCenter,t.yCenter,i,0,2*Math.PI);else{a=t.getPointPosition(0,i),o.moveTo(a.x,a.y);for(var u=1;u=0&&r<=s;){if(a=t[(n=r+s>>1)-1]||null,o=t[n],!a)return{lo:null,hi:o};if(o[e]i))return{lo:a,hi:o};s=n-1}}return{lo:o,hi:null}}(t,e,i),o=a.lo?a.hi?a.lo:t[t.length-2]:t[0],r=a.lo?a.hi?a.hi:t[t.length-1]:t[1],s=r[e]-o[e],l=s?(i-o[e])/s:0,d=(r[n]-o[n])*l;return o[n]+d}function Ki(t,e){var i=t._adapter,n=t.options.time,a=n.parser,o=a||n.format,r=e;return"function"==typeof a&&(r=a(r)),ut.isFinite(r)||(r="string"==typeof o?i.parse(r,o):i.parse(r)),null!==r?+r:(a||"function"!=typeof o||(r=o(e),ut.isFinite(r)||(r=i.parse(r))),r)}function Gi(t,e){if(ut.isNullOrUndef(e))return null;var i=t.options.time,n=Ki(t,t.getRightValue(e));return null===n?n:(i.round&&(n=+t._adapter.startOf(n,i.round)),n)}function Zi(t){for(var e=qi.indexOf(t)+1,i=qi.length;e=a&&i<=o&&d.push(i);return n.min=a,n.max=o,n._unit=s.unit||function(t,e,i,n,a){var o,r;for(o=qi.length-1;o>=qi.indexOf(i);o--)if(r=qi[o],ji[r].common&&t._adapter.diff(a,n,r)>=e.length)return r;return qi[i?qi.indexOf(i):0]}(n,d,s.minUnit,n.min,n.max),n._majorUnit=Zi(n._unit),n._table=function(t,e,i,n){if("linear"===n||!t.length)return[{time:e,pos:0},{time:i,pos:1}];var a,o,r,s,l,d=[],u=[e];for(a=0,o=t.length;ae&&s=0&&t0?r:1}}),Qi={position:"bottom",distribution:"linear",bounds:"data",adapters:{},time:{parser:!1,format:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}};Ji._defaults=Qi;var tn={category:gi,linear:yi,logarithmic:Ci,radialLinear:Ni,time:Ji},en={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};si._date.override("function"==typeof t?{_id:"moment",formats:function(){return en},parse:function(e,i){return"string"==typeof e&&"string"==typeof i?e=t(e,i):e instanceof t||(e=t(e)),e.isValid()?e.valueOf():null},format:function(e,i){return t(e).format(i)},add:function(e,i,n){return t(e).add(i,n).valueOf()},diff:function(e,i,n){return t.duration(t(e).diff(t(i))).as(n)},startOf:function(e,i,n){return e=t(e),"isoWeek"===i?e.isoWeekday(n).valueOf():e.startOf(i).valueOf()},endOf:function(e,i){return t(e).endOf(i).valueOf()},_create:function(e){return t(e)}}:{}),st._set("global",{plugins:{filler:{propagate:!0}}});var nn={dataset:function(t){var e=t.fill,i=t.chart,n=i.getDatasetMeta(e),a=n&&i.isDatasetVisible(e)&&n.dataset._children||[],o=a.length||0;return o?function(t,e){return e=i)&&n;switch(o){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return o;default:return!1}}function on(t){var e,i=t.el._model||{},n=t.el._scale||{},a=t.fill,o=null;if(isFinite(a))return null;if("start"===a?o=void 0===i.scaleBottom?n.bottom:i.scaleBottom:"end"===a?o=void 0===i.scaleTop?n.top:i.scaleTop:void 0!==i.scaleZero?o=i.scaleZero:n.getBasePosition?o=n.getBasePosition():n.getBasePixel&&(o=n.getBasePixel()),null!=o){if(void 0!==o.x&&void 0!==o.y)return o;if(ut.isFinite(o))return{x:(e=n.isHorizontal())?o:null,y:e?null:o}}return null}function rn(t,e,i){var n,a=t[e].fill,o=[e];if(!i)return a;for(;!1!==a&&-1===o.indexOf(a);){if(!isFinite(a))return a;if(!(n=t[a]))return!1;if(n.visible)return a;o.push(a),a=n.fill}return!1}function sn(t){var e=t.fill,i="dataset";return!1===e?null:(isFinite(e)||(i="boundary"),nn[i](t))}function ln(t){return t&&!t.skip}function dn(t,e,i,n,a){var o;if(n&&a){for(t.moveTo(e[0].x,e[0].y),o=1;o0;--o)ut.canvas.lineTo(t,i[o],i[o-1],!0)}}var un={id:"filler",afterDatasetsUpdate:function(t,e){var i,n,a,o,r=(t.data.datasets||[]).length,s=e.propagate,l=[];for(n=0;ne?e:t.boxWidth}st._set("global",{legend:{display:!0,position:"top",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(t,e){var i=e.datasetIndex,n=this.chart,a=n.getDatasetMeta(i);a.hidden=null===a.hidden?!n.data.datasets[i].hidden:null,n.update()},onHover:null,onLeave:null,labels:{boxWidth:40,padding:10,generateLabels:function(t){var e=t.data;return ut.isArray(e.datasets)?e.datasets.map(function(e,i){return{text:e.label,fillStyle:ut.isArray(e.backgroundColor)?e.backgroundColor[0]:e.backgroundColor,hidden:!t.isDatasetVisible(i),lineCap:e.borderCapStyle,lineDash:e.borderDash,lineDashOffset:e.borderDashOffset,lineJoin:e.borderJoinStyle,lineWidth:e.borderWidth,strokeStyle:e.borderColor,pointStyle:e.pointStyle,datasetIndex:i}},this):[]}}},legendCallback:function(t){var e=[];e.push('
    ');for(var i=0;i'),t.data.datasets[i].label&&e.push(t.data.datasets[i].label),e.push("");return e.push("
"),e.join("")}});var gn=pt.extend({initialize:function(t){ut.extend(this,t),this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1},beforeUpdate:hn,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:hn,beforeSetDimensions:hn,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:hn,beforeBuildLabels:hn,buildLabels:function(){var t=this,e=t.options.labels||{},i=ut.callback(e.generateLabels,[t.chart],t)||[];e.filter&&(i=i.filter(function(i){return e.filter(i,t.chart.data)})),t.options.reverse&&i.reverse(),t.legendItems=i},afterBuildLabels:hn,beforeFit:hn,fit:function(){var t=this,e=t.options,i=e.labels,n=e.display,a=t.ctx,o=ut.options._parseFont(i),r=o.size,s=t.legendHitBoxes=[],l=t.minSize,d=t.isHorizontal();if(d?(l.width=t.maxWidth,l.height=n?10:0):(l.width=n?10:0,l.height=t.maxHeight),n)if(a.font=o.string,d){var u=t.lineWidths=[0],h=0;a.textAlign="left",a.textBaseline="top",ut.each(t.legendItems,function(t,e){var n=fn(i,r)+r/2+a.measureText(t.text).width;(0===e||u[u.length-1]+n+i.padding>l.width)&&(h+=r+i.padding,u[u.length-(e>0?0:1)]=i.padding),s[e]={left:0,top:0,width:n,height:r},u[u.length-1]+=n+i.padding}),l.height+=h}else{var c=i.padding,f=t.columnWidths=[],g=i.padding,p=0,m=0,v=r+c;ut.each(t.legendItems,function(t,e){var n=fn(i,r)+r/2+a.measureText(t.text).width;e>0&&m+v>l.height-c&&(g+=p+i.padding,f.push(p),p=0,m=0),p=Math.max(p,n),m+=v,s[e]={left:0,top:0,width:n,height:r}}),g+=p,f.push(p),l.width+=g}t.width=l.width,t.height=l.height},afterFit:hn,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var t=this,e=t.options,i=e.labels,n=st.global,a=n.defaultColor,o=n.elements.line,r=t.width,s=t.lineWidths;if(e.display){var l,d=t.ctx,u=cn(i.fontColor,n.defaultFontColor),h=ut.options._parseFont(i),c=h.size;d.textAlign="left",d.textBaseline="middle",d.lineWidth=.5,d.strokeStyle=u,d.fillStyle=u,d.font=h.string;var f=fn(i,c),g=t.legendHitBoxes,p=t.isHorizontal();l=p?{x:t.left+(r-s[0])/2+i.padding,y:t.top+i.padding,line:0}:{x:t.left+i.padding,y:t.top+i.padding,line:0};var m=c+i.padding;ut.each(t.legendItems,function(n,u){var h=d.measureText(n.text).width,v=f+c/2+h,b=l.x,x=l.y;p?u>0&&b+v+i.padding>t.left+t.minSize.width&&(x=l.y+=m,l.line++,b=l.x=t.left+(r-s[l.line])/2+i.padding):u>0&&x+m>t.top+t.minSize.height&&(b=l.x=b+t.columnWidths[l.line]+i.padding,x=l.y=t.top+i.padding,l.line++),function(t,i,n){if(!(isNaN(f)||f<=0)){d.save();var r=cn(n.lineWidth,o.borderWidth);if(d.fillStyle=cn(n.fillStyle,a),d.lineCap=cn(n.lineCap,o.borderCapStyle),d.lineDashOffset=cn(n.lineDashOffset,o.borderDashOffset),d.lineJoin=cn(n.lineJoin,o.borderJoinStyle),d.lineWidth=r,d.strokeStyle=cn(n.strokeStyle,a),d.setLineDash&&d.setLineDash(cn(n.lineDash,o.borderDash)),e.labels&&e.labels.usePointStyle){var s=f*Math.SQRT2/2,l=t+f/2,u=i+c/2;ut.canvas.drawPoint(d,n.pointStyle,s,l,u)}else 0!==r&&d.strokeRect(t,i,f,c),d.fillRect(t,i,f,c);d.restore()}}(b,x,n),g[u].left=b,g[u].top=x,function(t,e,i,n){var a=c/2,o=f+a+t,r=e+a;d.fillText(i.text,o,r),i.hidden&&(d.beginPath(),d.lineWidth=2,d.moveTo(o,r),d.lineTo(o+n,r),d.stroke())}(b,x,n,h),p?l.x+=v+i.padding:l.y+=m})}},_getLegendItemAt:function(t,e){var i,n,a,o=this;if(t>=o.left&&t<=o.right&&e>=o.top&&e<=o.bottom)for(a=o.legendHitBoxes,i=0;i=(n=a[i]).left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height)return o.legendItems[i];return null},handleEvent:function(t){var e,i=this,n=i.options,a="mouseup"===t.type?"click":t.type;if("mousemove"===a){if(!n.onHover&&!n.onLeave)return}else{if("click"!==a)return;if(!n.onClick)return}e=i._getLegendItemAt(t.x,t.y),"click"===a?e&&n.onClick&&n.onClick.call(i,t.native,e):(n.onLeave&&e!==i._hoveredItem&&(i._hoveredItem&&n.onLeave.call(i,t.native,i._hoveredItem),i._hoveredItem=e),n.onHover&&e&&n.onHover.call(i,t.native,e))}});function pn(t,e){var i=new gn({ctx:t.ctx,options:e,chart:t});ke.configure(t,i,e),ke.addBox(t,i),t.legend=i}var mn={id:"legend",_element:gn,beforeInit:function(t){var e=t.options.legend;e&&pn(t,e)},beforeUpdate:function(t){var e=t.options.legend,i=t.legend;e?(ut.mergeIf(e,st.global.legend),i?(ke.configure(t,i,e),i.options=e):pn(t,e)):i&&(ke.removeBox(t,i),delete t.legend)},afterEvent:function(t,e){var i=t.legend;i&&i.handleEvent(e)}},vn=ut.noop;st._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,padding:10,position:"top",text:"",weight:2e3}});var bn=pt.extend({initialize:function(t){ut.extend(this,t),this.legendHitBoxes=[]},beforeUpdate:vn,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:vn,beforeSetDimensions:vn,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:vn,beforeBuildLabels:vn,buildLabels:vn,afterBuildLabels:vn,beforeFit:vn,fit:function(){var t=this,e=t.options,i=e.display,n=t.minSize,a=ut.isArray(e.text)?e.text.length:1,o=ut.options._parseFont(e),r=i?a*o.lineHeight+2*e.padding:0;t.isHorizontal()?(n.width=t.maxWidth,n.height=r):(n.width=r,n.height=t.maxHeight),t.width=n.width,t.height=n.height},afterFit:vn,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,i=t.options;if(i.display){var n,a,o,r=ut.options._parseFont(i),s=r.lineHeight,l=s/2+i.padding,d=0,u=t.top,h=t.left,c=t.bottom,f=t.right;e.fillStyle=ut.valueOrDefault(i.fontColor,st.global.defaultFontColor),e.font=r.string,t.isHorizontal()?(a=h+(f-h)/2,o=u+l,n=f-h):(a="left"===i.position?h+l:f-l,o=u+(c-u)/2,n=c-u,d=Math.PI*("left"===i.position?-.5:.5)),e.save(),e.translate(a,o),e.rotate(d),e.textAlign="center",e.textBaseline="middle";var g=i.text;if(ut.isArray(g))for(var p=0,m=0;m=0;n--){var a=t[n];if(e(a))return a}},ut.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},ut.almostEquals=function(t,e,i){return Math.abs(t-e)t},ut.max=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.max(t,e)},Number.NEGATIVE_INFINITY)},ut.min=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.min(t,e)},Number.POSITIVE_INFINITY)},ut.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return 0==(t=+t)||isNaN(t)?t:t>0?1:-1},ut.log10=Math.log10?function(t){return Math.log10(t)}:function(t){var e=Math.log(t)*Math.LOG10E,i=Math.round(e);return t===Math.pow(10,i)?i:e},ut.toRadians=function(t){return t*(Math.PI/180)},ut.toDegrees=function(t){return t*(180/Math.PI)},ut._decimalPlaces=function(t){if(ut.isFinite(t)){for(var e=1,i=0;Math.round(t*e)/e!==t;)e*=10,i++;return i}},ut.getAngleFromPoint=function(t,e){var i=e.x-t.x,n=e.y-t.y,a=Math.sqrt(i*i+n*n),o=Math.atan2(n,i);return o<-.5*Math.PI&&(o+=2*Math.PI),{angle:o,distance:a}},ut.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},ut.aliasPixel=function(t){return t%2==0?0:.5},ut._alignPixel=function(t,e,i){var n=t.currentDevicePixelRatio,a=i/2;return Math.round((e-a)*n)/n+a},ut.splineCurve=function(t,e,i,n){var a=t.skip?e:t,o=e,r=i.skip?e:i,s=Math.sqrt(Math.pow(o.x-a.x,2)+Math.pow(o.y-a.y,2)),l=Math.sqrt(Math.pow(r.x-o.x,2)+Math.pow(r.y-o.y,2)),d=s/(s+l),u=l/(s+l),h=n*(d=isNaN(d)?0:d),c=n*(u=isNaN(u)?0:u);return{previous:{x:o.x-h*(r.x-a.x),y:o.y-h*(r.y-a.y)},next:{x:o.x+c*(r.x-a.x),y:o.y+c*(r.y-a.y)}}},ut.EPSILON=Number.EPSILON||1e-14,ut.splineCurveMonotone=function(t){var e,i,n,a,o,r,s,l,d,u=(t||[]).map(function(t){return{model:t._model,deltaK:0,mK:0}}),h=u.length;for(e=0;e0?u[e-1]:null,(a=e0?u[e-1]:null,a=e=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},ut.previousItem=function(t,e,i){return i?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},ut.niceNum=function(t,e){var i=Math.floor(ut.log10(t)),n=t/Math.pow(10,i);return(e?n<1.5?1:n<3?2:n<7?5:10:n<=1?1:n<=2?2:n<=5?5:10)*Math.pow(10,i)},ut.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},ut.getRelativePosition=function(t,e){var i,n,a=t.originalEvent||t,o=t.target||t.srcElement,r=o.getBoundingClientRect(),s=a.touches;s&&s.length>0?(i=s[0].clientX,n=s[0].clientY):(i=a.clientX,n=a.clientY);var l=parseFloat(ut.getStyle(o,"padding-left")),d=parseFloat(ut.getStyle(o,"padding-top")),u=parseFloat(ut.getStyle(o,"padding-right")),h=parseFloat(ut.getStyle(o,"padding-bottom")),c=r.right-r.left-l-u,f=r.bottom-r.top-d-h;return{x:i=Math.round((i-r.left-l)/c*o.width/e.currentDevicePixelRatio),y:n=Math.round((n-r.top-d)/f*o.height/e.currentDevicePixelRatio)}},ut.getConstraintWidth=function(t){return i(t,"max-width","clientWidth")},ut.getConstraintHeight=function(t){return i(t,"max-height","clientHeight")},ut._calculatePadding=function(t,e,i){return(e=ut.getStyle(t,e)).indexOf("%")>-1?i*parseInt(e,10)/100:parseInt(e,10)},ut._getParentNode=function(t){var e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e},ut.getMaximumWidth=function(t){var e=ut._getParentNode(t);if(!e)return t.clientWidth;var i=e.clientWidth,n=i-ut._calculatePadding(e,"padding-left",i)-ut._calculatePadding(e,"padding-right",i),a=ut.getConstraintWidth(t);return isNaN(a)?n:Math.min(n,a)},ut.getMaximumHeight=function(t){var e=ut._getParentNode(t);if(!e)return t.clientHeight;var i=e.clientHeight,n=i-ut._calculatePadding(e,"padding-top",i)-ut._calculatePadding(e,"padding-bottom",i),a=ut.getConstraintHeight(t);return isNaN(a)?n:Math.min(n,a)},ut.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},ut.retinaScale=function(t,e){var i=t.currentDevicePixelRatio=e||"undefined"!=typeof window&&window.devicePixelRatio||1;if(1!==i){var n=t.canvas,a=t.height,o=t.width;n.height=a*i,n.width=o*i,t.ctx.scale(i,i),n.style.height||n.style.width||(n.style.height=a+"px",n.style.width=o+"px")}},ut.fontString=function(t,e,i){return e+" "+t+"px "+i},ut.longestText=function(t,e,i,n){var a=(n=n||{}).data=n.data||{},o=n.garbageCollect=n.garbageCollect||[];n.font!==e&&(a=n.data={},o=n.garbageCollect=[],n.font=e),t.font=e;var r=0;ut.each(i,function(e){null!=e&&!0!==ut.isArray(e)?r=ut.measureText(t,a,o,r,e):ut.isArray(e)&&ut.each(e,function(e){null==e||ut.isArray(e)||(r=ut.measureText(t,a,o,r,e))})});var s=o.length/2;if(s>i.length){for(var l=0;ln&&(n=o),n},ut.numberOfLabelLines=function(t){var e=1;return ut.each(t,function(t){ut.isArray(t)&&t.length>e&&(e=t.length)}),e},ut.color=X?function(t){return t instanceof CanvasGradient&&(t=st.global.defaultColor),X(t)}:function(t){return console.error("Color.js not found!"),t},ut.getHoverColor=function(t){return t instanceof CanvasPattern||t instanceof CanvasGradient?t:ut.color(t).saturate(.5).darken(.1).rgbString()}}(),ai._adapters=si,ai.Animation=vt,ai.animationService=bt,ai.controllers=ue,ai.DatasetController=Mt,ai.defaults=st,ai.Element=pt,ai.elements=Wt,ai.Interaction=ve,ai.layouts=ke,ai.platform=Ve,ai.plugins=Ee,ai.Scale=fi,ai.scaleService=He,ai.Ticks=li,ai.Tooltip=Je,ai.helpers.each(tn,function(t,e){ai.scaleService.registerScaleType(e,t,t._defaults)}),yn)yn.hasOwnProperty(_n)&&ai.plugins.register(yn[_n]);ai.platform.initialize();var Cn=ai;return"undefined"!=typeof window&&(window.Chart=ai),ai.Chart=ai,ai.Legend=yn.legend._element,ai.Title=yn.title._element,ai.pluginService=ai.plugins,ai.PluginBase=ai.Element.extend({}),ai.canvasHelpers=ai.helpers.canvas,ai.layoutService=ai.layouts,ai.LinearScaleBase=bi,ai.helpers.each(["Bar","Bubble","Doughnut","Line","PolarArea","Radar","Scatter"],function(t){ai[t]=function(e,i){return new ai(e,ai.helpers.merge(i||{},{type:t.charAt(0).toLowerCase()+t.slice(1)}))}}),Cn}); diff --git a/INCUBATE/incubate/incubate/static/js/bootstrap.min.js.map b/INCUBATE/incubate/incubate/static/js/bootstrap.min.js.map new file mode 100644 index 0000000000000000000000000000000000000000..1bcefd0bda6fa829e0c8d57f556712bb58c8c550 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/js/bootstrap.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../js/src/util.js","../../js/src/alert.js","../../js/src/button.js","../../js/src/carousel.js","../../js/src/collapse.js","../../js/src/dropdown.js","../../js/src/modal.js","../../js/src/tools/sanitizer.js","../../js/src/tooltip.js","../../js/src/popover.js","../../js/src/scrollspy.js","../../js/src/tab.js","../../js/src/toast.js","../../js/src/index.js"],"names":["TRANSITION_END","transitionEndEmulator","duration","_this","this","called","$","one","Util","setTimeout","triggerTransitionEnd","getUID","prefix","Math","random","document","getElementById","getSelectorFromElement","element","selector","getAttribute","hrefAttr","trim","querySelector","err","getTransitionDurationFromElement","transitionDuration","css","transitionDelay","floatTransitionDuration","parseFloat","floatTransitionDelay","split","reflow","offsetHeight","trigger","supportsTransitionEnd","Boolean","isElement","obj","nodeType","typeCheckConfig","componentName","config","configTypes","property","Object","prototype","hasOwnProperty","call","expectedTypes","value","valueType","toString","match","toLowerCase","RegExp","test","Error","toUpperCase","findShadowRoot","documentElement","attachShadow","getRootNode","ShadowRoot","parentNode","root","fn","emulateTransitionEnd","event","special","bindType","delegateType","handle","target","is","handleObj","handler","apply","arguments","NAME","DATA_KEY","EVENT_KEY","JQUERY_NO_CONFLICT","Event","CLOSE","CLOSED","CLICK_DATA_API","ClassName","Alert","_element","close","rootElement","_getRootElement","_triggerCloseEvent","isDefaultPrevented","_removeElement","dispose","removeData","parent","closest","closeEvent","removeClass","hasClass","_destroyElement","detach","remove","_jQueryInterface","each","$element","data","_handleDismiss","alertInstance","preventDefault","on","Constructor","noConflict","DATA_API_KEY","Selector","FOCUS_BLUR_DATA_API","Button","toggle","triggerChangeEvent","addAriaPressed","input","type","checked","classList","contains","activeElement","hasAttribute","focus","setAttribute","toggleClass","button","Default","interval","keyboard","slide","pause","wrap","touch","DefaultType","Direction","SLIDE","SLID","KEYDOWN","MOUSEENTER","MOUSELEAVE","TOUCHSTART","TOUCHMOVE","TOUCHEND","POINTERDOWN","POINTERUP","DRAG_START","LOAD_DATA_API","PointerType","TOUCH","PEN","Carousel","_items","_interval","_activeElement","_isPaused","_isSliding","touchTimeout","touchStartX","touchDeltaX","_config","_getConfig","_indicatorsElement","_touchSupported","navigator","maxTouchPoints","_pointerEvent","window","PointerEvent","MSPointerEvent","_addEventListeners","next","_slide","nextWhenVisible","hidden","prev","cycle","clearInterval","setInterval","visibilityState","bind","to","index","activeIndex","_getItemIndex","length","direction","off","_objectSpread","_handleSwipe","absDeltax","abs","_this2","_keydown","_addTouchEventListeners","_this3","start","originalEvent","pointerType","clientX","touches","end","clearTimeout","querySelectorAll","e","add","tagName","which","slice","indexOf","_getItemByDirection","isNextDirection","isPrevDirection","lastItemIndex","itemIndex","_triggerSlideEvent","relatedTarget","eventDirectionName","targetIndex","fromIndex","slideEvent","from","_setActiveIndicatorElement","indicators","nextIndicator","children","addClass","directionalClassName","orderClassName","_this4","activeElementIndex","nextElement","nextElementIndex","isCycling","slidEvent","nextElementInterval","parseInt","defaultInterval","action","TypeError","ride","_dataApiClickHandler","slideIndex","carousels","i","len","$carousel","SHOW","SHOWN","HIDE","HIDDEN","Dimension","Collapse","_isTransitioning","_triggerArray","id","toggleList","elem","filterElement","filter","foundElem","_selector","push","_parent","_getParent","_addAriaAndCollapsedClass","hide","show","actives","activesData","not","startEvent","dimension","_getDimension","style","attr","setTransitioning","scrollSize","getBoundingClientRect","triggerArrayLength","isTransitioning","jquery","_getTargetFromElement","triggerArray","isOpen","$this","currentTarget","$trigger","selectors","$target","REGEXP_KEYDOWN","ARROW_UP_KEYCODE","CLICK","KEYDOWN_DATA_API","KEYUP_DATA_API","AttachmentMap","offset","flip","boundary","reference","display","Dropdown","_popper","_menu","_getMenuElement","_inNavbar","_detectNavbar","disabled","_getParentFromElement","isActive","_clearMenus","showEvent","Popper","referenceElement","_getPopperConfig","body","noop","hideEvent","destroy","update","scheduleUpdate","stopPropagation","constructor","_getPlacement","$parentDropdown","placement","_getOffset","offsets","popperConfig","modifiers","enabled","preventOverflow","boundariesElement","applyStyle","toggles","context","clickEvent","dropdownMenu","_dataApiKeydownHandler","items","backdrop","FOCUSIN","RESIZE","CLICK_DISMISS","KEYDOWN_DISMISS","MOUSEUP_DISMISS","MOUSEDOWN_DISMISS","Modal","_dialog","_backdrop","_isShown","_isBodyOverflowing","_ignoreBackdropClick","_scrollbarWidth","_checkScrollbar","_setScrollbar","_adjustDialog","_setEscapeEvent","_setResizeEvent","_showBackdrop","_showElement","transition","_hideModal","forEach","htmlElement","handleUpdate","Node","ELEMENT_NODE","appendChild","removeAttribute","scrollTop","_enforceFocus","shownEvent","transitionComplete","has","_this5","_this6","_this7","_resetAdjustments","_resetScrollbar","_removeBackdrop","callback","_this8","animate","createElement","className","appendTo","backdropTransitionDuration","callbackRemove","isModalOverflowing","scrollHeight","clientHeight","paddingLeft","paddingRight","rect","left","right","innerWidth","_getScrollbarWidth","_this9","fixedContent","stickyContent","actualPadding","calculatedPadding","actualMargin","marginRight","calculatedMargin","padding","elements","margin","scrollDiv","scrollbarWidth","width","clientWidth","removeChild","_this10","uriAttrs","DefaultWhitelist","*","a","area","b","br","col","code","div","em","hr","h1","h2","h3","h4","h5","h6","img","li","ol","p","pre","s","small","span","sub","sup","strong","u","ul","SAFE_URL_PATTERN","DATA_URL_PATTERN","sanitizeHtml","unsafeHtml","whiteList","sanitizeFn","createdDocument","DOMParser","parseFromString","whitelistKeys","keys","_loop","el","elName","nodeName","attributeList","attributes","whitelistedAttributes","concat","allowedAttributeList","attrName","nodeValue","regExp","attrRegex","l","allowedAttribute","innerHTML","CLASS_PREFIX","BSCLS_PREFIX_REGEX","DISALLOWED_ATTRIBUTES","animation","template","title","delay","html","container","fallbackPlacement","sanitize","AUTO","TOP","RIGHT","BOTTOM","LEFT","HoverState","INSERTED","FOCUSOUT","Trigger","Tooltip","_isEnabled","_timeout","_hoverState","_activeTrigger","tip","_setListeners","enable","disable","toggleEnabled","dataKey","_getDelegateConfig","click","_isWithActiveTrigger","_enter","_leave","getTipElement","isWithContent","shadowRoot","isInTheDom","ownerDocument","tipId","setContent","attachment","_getAttachment","addAttachmentClass","_getContainer","behavior","arrow","onCreate","originalPlacement","_handlePopperPlacementChange","onUpdate","complete","_fixTransition","prevHoverState","_cleanTipClass","getTitle","setElementContent","content","text","empty","append","find","eventIn","eventOut","_fixTitle","titleType","dataAttributes","dataAttr","key","$tip","tabClass","join","popperData","popperInstance","instance","popper","initConfigAnimation","Popover","_getContent","method","ACTIVATE","SCROLL","OffsetMethod","ScrollSpy","_scrollElement","_offsets","_targets","_activeTarget","_scrollHeight","_process","refresh","autoMethod","offsetMethod","offsetBase","_getScrollTop","_getScrollHeight","map","targetSelector","targetBCR","height","top","item","sort","pageYOffset","max","_getOffsetHeight","innerHeight","maxScroll","_activate","_clear","queries","$link","parents","node","scrollSpys","$spy","Tab","previous","listElement","itemSelector","makeArray","hiddenEvent","active","_transitionComplete","dropdownChild","dropdownElement","dropdownToggleList","autohide","Toast","withoutTimeout","_close","version"],"mappings":"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","sourcesContent":["/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): util.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\n\n/**\n * ------------------------------------------------------------------------\n * Private TransitionEnd Helpers\n * ------------------------------------------------------------------------\n */\n\nconst TRANSITION_END = 'transitionend'\nconst MAX_UID = 1000000\nconst MILLISECONDS_MULTIPLIER = 1000\n\n// Shoutout AngusCroll (https://goo.gl/pxwQGp)\nfunction toType(obj) {\n return {}.toString.call(obj).match(/\\s([a-z]+)/i)[1].toLowerCase()\n}\n\nfunction getSpecialTransitionEndEvent() {\n return {\n bindType: TRANSITION_END,\n delegateType: TRANSITION_END,\n handle(event) {\n if ($(event.target).is(this)) {\n return event.handleObj.handler.apply(this, arguments) // eslint-disable-line prefer-rest-params\n }\n return undefined // eslint-disable-line no-undefined\n }\n }\n}\n\nfunction transitionEndEmulator(duration) {\n let called = false\n\n $(this).one(Util.TRANSITION_END, () => {\n called = true\n })\n\n setTimeout(() => {\n if (!called) {\n Util.triggerTransitionEnd(this)\n }\n }, duration)\n\n return this\n}\n\nfunction setTransitionEndSupport() {\n $.fn.emulateTransitionEnd = transitionEndEmulator\n $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent()\n}\n\n/**\n * --------------------------------------------------------------------------\n * Public Util Api\n * --------------------------------------------------------------------------\n */\n\nconst Util = {\n\n TRANSITION_END: 'bsTransitionEnd',\n\n getUID(prefix) {\n do {\n // eslint-disable-next-line no-bitwise\n prefix += ~~(Math.random() * MAX_UID) // \"~~\" acts like a faster Math.floor() here\n } while (document.getElementById(prefix))\n return prefix\n },\n\n getSelectorFromElement(element) {\n let selector = element.getAttribute('data-target')\n\n if (!selector || selector === '#') {\n const hrefAttr = element.getAttribute('href')\n selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : ''\n }\n\n try {\n return document.querySelector(selector) ? selector : null\n } catch (err) {\n return null\n }\n },\n\n getTransitionDurationFromElement(element) {\n if (!element) {\n return 0\n }\n\n // Get transition-duration of the element\n let transitionDuration = $(element).css('transition-duration')\n let transitionDelay = $(element).css('transition-delay')\n\n const floatTransitionDuration = parseFloat(transitionDuration)\n const floatTransitionDelay = parseFloat(transitionDelay)\n\n // Return 0 if element or transition duration is not found\n if (!floatTransitionDuration && !floatTransitionDelay) {\n return 0\n }\n\n // If multiple durations are defined, take the first\n transitionDuration = transitionDuration.split(',')[0]\n transitionDelay = transitionDelay.split(',')[0]\n\n return (parseFloat(transitionDuration) + parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER\n },\n\n reflow(element) {\n return element.offsetHeight\n },\n\n triggerTransitionEnd(element) {\n $(element).trigger(TRANSITION_END)\n },\n\n // TODO: Remove in v5\n supportsTransitionEnd() {\n return Boolean(TRANSITION_END)\n },\n\n isElement(obj) {\n return (obj[0] || obj).nodeType\n },\n\n typeCheckConfig(componentName, config, configTypes) {\n for (const property in configTypes) {\n if (Object.prototype.hasOwnProperty.call(configTypes, property)) {\n const expectedTypes = configTypes[property]\n const value = config[property]\n const valueType = value && Util.isElement(value)\n ? 'element' : toType(value)\n\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new Error(\n `${componentName.toUpperCase()}: ` +\n `Option \"${property}\" provided type \"${valueType}\" ` +\n `but expected type \"${expectedTypes}\".`)\n }\n }\n }\n },\n\n findShadowRoot(element) {\n if (!document.documentElement.attachShadow) {\n return null\n }\n\n // Can find the shadow root otherwise it'll return the document\n if (typeof element.getRootNode === 'function') {\n const root = element.getRootNode()\n return root instanceof ShadowRoot ? root : null\n }\n\n if (element instanceof ShadowRoot) {\n return element\n }\n\n // when we don't find a shadow root\n if (!element.parentNode) {\n return null\n }\n\n return Util.findShadowRoot(element.parentNode)\n }\n}\n\nsetTransitionEndSupport()\n\nexport default Util\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): alert.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'alert'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.alert'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst Selector = {\n DISMISS : '[data-dismiss=\"alert\"]'\n}\n\nconst Event = {\n CLOSE : `close${EVENT_KEY}`,\n CLOSED : `closed${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n ALERT : 'alert',\n FADE : 'fade',\n SHOW : 'show'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Alert {\n constructor(element) {\n this._element = element\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n // Public\n\n close(element) {\n let rootElement = this._element\n if (element) {\n rootElement = this._getRootElement(element)\n }\n\n const customEvent = this._triggerCloseEvent(rootElement)\n\n if (customEvent.isDefaultPrevented()) {\n return\n }\n\n this._removeElement(rootElement)\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n // Private\n\n _getRootElement(element) {\n const selector = Util.getSelectorFromElement(element)\n let parent = false\n\n if (selector) {\n parent = document.querySelector(selector)\n }\n\n if (!parent) {\n parent = $(element).closest(`.${ClassName.ALERT}`)[0]\n }\n\n return parent\n }\n\n _triggerCloseEvent(element) {\n const closeEvent = $.Event(Event.CLOSE)\n\n $(element).trigger(closeEvent)\n return closeEvent\n }\n\n _removeElement(element) {\n $(element).removeClass(ClassName.SHOW)\n\n if (!$(element).hasClass(ClassName.FADE)) {\n this._destroyElement(element)\n return\n }\n\n const transitionDuration = Util.getTransitionDurationFromElement(element)\n\n $(element)\n .one(Util.TRANSITION_END, (event) => this._destroyElement(element, event))\n .emulateTransitionEnd(transitionDuration)\n }\n\n _destroyElement(element) {\n $(element)\n .detach()\n .trigger(Event.CLOSED)\n .remove()\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $element = $(this)\n let data = $element.data(DATA_KEY)\n\n if (!data) {\n data = new Alert(this)\n $element.data(DATA_KEY, data)\n }\n\n if (config === 'close') {\n data[config](this)\n }\n })\n }\n\n static _handleDismiss(alertInstance) {\n return function (event) {\n if (event) {\n event.preventDefault()\n }\n\n alertInstance.close(this)\n }\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document).on(\n Event.CLICK_DATA_API,\n Selector.DISMISS,\n Alert._handleDismiss(new Alert())\n)\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Alert._jQueryInterface\n$.fn[NAME].Constructor = Alert\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Alert._jQueryInterface\n}\n\nexport default Alert\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): button.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'button'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.button'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst ClassName = {\n ACTIVE : 'active',\n BUTTON : 'btn',\n FOCUS : 'focus'\n}\n\nconst Selector = {\n DATA_TOGGLE_CARROT : '[data-toggle^=\"button\"]',\n DATA_TOGGLE : '[data-toggle=\"buttons\"]',\n INPUT : 'input:not([type=\"hidden\"])',\n ACTIVE : '.active',\n BUTTON : '.btn'\n}\n\nconst Event = {\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`,\n FOCUS_BLUR_DATA_API : `focus${EVENT_KEY}${DATA_API_KEY} ` +\n `blur${EVENT_KEY}${DATA_API_KEY}`\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Button {\n constructor(element) {\n this._element = element\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n // Public\n\n toggle() {\n let triggerChangeEvent = true\n let addAriaPressed = true\n const rootElement = $(this._element).closest(\n Selector.DATA_TOGGLE\n )[0]\n\n if (rootElement) {\n const input = this._element.querySelector(Selector.INPUT)\n\n if (input) {\n if (input.type === 'radio') {\n if (input.checked &&\n this._element.classList.contains(ClassName.ACTIVE)) {\n triggerChangeEvent = false\n } else {\n const activeElement = rootElement.querySelector(Selector.ACTIVE)\n\n if (activeElement) {\n $(activeElement).removeClass(ClassName.ACTIVE)\n }\n }\n }\n\n if (triggerChangeEvent) {\n if (input.hasAttribute('disabled') ||\n rootElement.hasAttribute('disabled') ||\n input.classList.contains('disabled') ||\n rootElement.classList.contains('disabled')) {\n return\n }\n input.checked = !this._element.classList.contains(ClassName.ACTIVE)\n $(input).trigger('change')\n }\n\n input.focus()\n addAriaPressed = false\n }\n }\n\n if (addAriaPressed) {\n this._element.setAttribute('aria-pressed',\n !this._element.classList.contains(ClassName.ACTIVE))\n }\n\n if (triggerChangeEvent) {\n $(this._element).toggleClass(ClassName.ACTIVE)\n }\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n\n if (!data) {\n data = new Button(this)\n $(this).data(DATA_KEY, data)\n }\n\n if (config === 'toggle') {\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document)\n .on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE_CARROT, (event) => {\n event.preventDefault()\n\n let button = event.target\n\n if (!$(button).hasClass(ClassName.BUTTON)) {\n button = $(button).closest(Selector.BUTTON)\n }\n\n Button._jQueryInterface.call($(button), 'toggle')\n })\n .on(Event.FOCUS_BLUR_DATA_API, Selector.DATA_TOGGLE_CARROT, (event) => {\n const button = $(event.target).closest(Selector.BUTTON)[0]\n $(button).toggleClass(ClassName.FOCUS, /^focus(in)?$/.test(event.type))\n })\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Button._jQueryInterface\n$.fn[NAME].Constructor = Button\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Button._jQueryInterface\n}\n\nexport default Button\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): carousel.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'carousel'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.carousel'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst ARROW_LEFT_KEYCODE = 37 // KeyboardEvent.which value for left arrow key\nconst ARROW_RIGHT_KEYCODE = 39 // KeyboardEvent.which value for right arrow key\nconst TOUCHEVENT_COMPAT_WAIT = 500 // Time for mouse compat events to fire after touch\nconst SWIPE_THRESHOLD = 40\n\nconst Default = {\n interval : 5000,\n keyboard : true,\n slide : false,\n pause : 'hover',\n wrap : true,\n touch : true\n}\n\nconst DefaultType = {\n interval : '(number|boolean)',\n keyboard : 'boolean',\n slide : '(boolean|string)',\n pause : '(string|boolean)',\n wrap : 'boolean',\n touch : 'boolean'\n}\n\nconst Direction = {\n NEXT : 'next',\n PREV : 'prev',\n LEFT : 'left',\n RIGHT : 'right'\n}\n\nconst Event = {\n SLIDE : `slide${EVENT_KEY}`,\n SLID : `slid${EVENT_KEY}`,\n KEYDOWN : `keydown${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`,\n TOUCHSTART : `touchstart${EVENT_KEY}`,\n TOUCHMOVE : `touchmove${EVENT_KEY}`,\n TOUCHEND : `touchend${EVENT_KEY}`,\n POINTERDOWN : `pointerdown${EVENT_KEY}`,\n POINTERUP : `pointerup${EVENT_KEY}`,\n DRAG_START : `dragstart${EVENT_KEY}`,\n LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n CAROUSEL : 'carousel',\n ACTIVE : 'active',\n SLIDE : 'slide',\n RIGHT : 'carousel-item-right',\n LEFT : 'carousel-item-left',\n NEXT : 'carousel-item-next',\n PREV : 'carousel-item-prev',\n ITEM : 'carousel-item',\n POINTER_EVENT : 'pointer-event'\n}\n\nconst Selector = {\n ACTIVE : '.active',\n ACTIVE_ITEM : '.active.carousel-item',\n ITEM : '.carousel-item',\n ITEM_IMG : '.carousel-item img',\n NEXT_PREV : '.carousel-item-next, .carousel-item-prev',\n INDICATORS : '.carousel-indicators',\n DATA_SLIDE : '[data-slide], [data-slide-to]',\n DATA_RIDE : '[data-ride=\"carousel\"]'\n}\n\nconst PointerType = {\n TOUCH : 'touch',\n PEN : 'pen'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\nclass Carousel {\n constructor(element, config) {\n this._items = null\n this._interval = null\n this._activeElement = null\n this._isPaused = false\n this._isSliding = false\n this.touchTimeout = null\n this.touchStartX = 0\n this.touchDeltaX = 0\n\n this._config = this._getConfig(config)\n this._element = element\n this._indicatorsElement = this._element.querySelector(Selector.INDICATORS)\n this._touchSupported = 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0\n this._pointerEvent = Boolean(window.PointerEvent || window.MSPointerEvent)\n\n this._addEventListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n next() {\n if (!this._isSliding) {\n this._slide(Direction.NEXT)\n }\n }\n\n nextWhenVisible() {\n // Don't call next when the page isn't visible\n // or the carousel or its parent isn't visible\n if (!document.hidden &&\n ($(this._element).is(':visible') && $(this._element).css('visibility') !== 'hidden')) {\n this.next()\n }\n }\n\n prev() {\n if (!this._isSliding) {\n this._slide(Direction.PREV)\n }\n }\n\n pause(event) {\n if (!event) {\n this._isPaused = true\n }\n\n if (this._element.querySelector(Selector.NEXT_PREV)) {\n Util.triggerTransitionEnd(this._element)\n this.cycle(true)\n }\n\n clearInterval(this._interval)\n this._interval = null\n }\n\n cycle(event) {\n if (!event) {\n this._isPaused = false\n }\n\n if (this._interval) {\n clearInterval(this._interval)\n this._interval = null\n }\n\n if (this._config.interval && !this._isPaused) {\n this._interval = setInterval(\n (document.visibilityState ? this.nextWhenVisible : this.next).bind(this),\n this._config.interval\n )\n }\n }\n\n to(index) {\n this._activeElement = this._element.querySelector(Selector.ACTIVE_ITEM)\n\n const activeIndex = this._getItemIndex(this._activeElement)\n\n if (index > this._items.length - 1 || index < 0) {\n return\n }\n\n if (this._isSliding) {\n $(this._element).one(Event.SLID, () => this.to(index))\n return\n }\n\n if (activeIndex === index) {\n this.pause()\n this.cycle()\n return\n }\n\n const direction = index > activeIndex\n ? Direction.NEXT\n : Direction.PREV\n\n this._slide(direction, this._items[index])\n }\n\n dispose() {\n $(this._element).off(EVENT_KEY)\n $.removeData(this._element, DATA_KEY)\n\n this._items = null\n this._config = null\n this._element = null\n this._interval = null\n this._isPaused = null\n this._isSliding = null\n this._activeElement = null\n this._indicatorsElement = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _handleSwipe() {\n const absDeltax = Math.abs(this.touchDeltaX)\n\n if (absDeltax <= SWIPE_THRESHOLD) {\n return\n }\n\n const direction = absDeltax / this.touchDeltaX\n\n // swipe left\n if (direction > 0) {\n this.prev()\n }\n\n // swipe right\n if (direction < 0) {\n this.next()\n }\n }\n\n _addEventListeners() {\n if (this._config.keyboard) {\n $(this._element)\n .on(Event.KEYDOWN, (event) => this._keydown(event))\n }\n\n if (this._config.pause === 'hover') {\n $(this._element)\n .on(Event.MOUSEENTER, (event) => this.pause(event))\n .on(Event.MOUSELEAVE, (event) => this.cycle(event))\n }\n\n if (this._config.touch) {\n this._addTouchEventListeners()\n }\n }\n\n _addTouchEventListeners() {\n if (!this._touchSupported) {\n return\n }\n\n const start = (event) => {\n if (this._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) {\n this.touchStartX = event.originalEvent.clientX\n } else if (!this._pointerEvent) {\n this.touchStartX = event.originalEvent.touches[0].clientX\n }\n }\n\n const move = (event) => {\n // ensure swiping with one touch and not pinching\n if (event.originalEvent.touches && event.originalEvent.touches.length > 1) {\n this.touchDeltaX = 0\n } else {\n this.touchDeltaX = event.originalEvent.touches[0].clientX - this.touchStartX\n }\n }\n\n const end = (event) => {\n if (this._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) {\n this.touchDeltaX = event.originalEvent.clientX - this.touchStartX\n }\n\n this._handleSwipe()\n if (this._config.pause === 'hover') {\n // If it's a touch-enabled device, mouseenter/leave are fired as\n // part of the mouse compatibility events on first tap - the carousel\n // would stop cycling until user tapped out of it;\n // here, we listen for touchend, explicitly pause the carousel\n // (as if it's the second time we tap on it, mouseenter compat event\n // is NOT fired) and after a timeout (to allow for mouse compatibility\n // events to fire) we explicitly restart cycling\n\n this.pause()\n if (this.touchTimeout) {\n clearTimeout(this.touchTimeout)\n }\n this.touchTimeout = setTimeout((event) => this.cycle(event), TOUCHEVENT_COMPAT_WAIT + this._config.interval)\n }\n }\n\n $(this._element.querySelectorAll(Selector.ITEM_IMG)).on(Event.DRAG_START, (e) => e.preventDefault())\n if (this._pointerEvent) {\n $(this._element).on(Event.POINTERDOWN, (event) => start(event))\n $(this._element).on(Event.POINTERUP, (event) => end(event))\n\n this._element.classList.add(ClassName.POINTER_EVENT)\n } else {\n $(this._element).on(Event.TOUCHSTART, (event) => start(event))\n $(this._element).on(Event.TOUCHMOVE, (event) => move(event))\n $(this._element).on(Event.TOUCHEND, (event) => end(event))\n }\n }\n\n _keydown(event) {\n if (/input|textarea/i.test(event.target.tagName)) {\n return\n }\n\n switch (event.which) {\n case ARROW_LEFT_KEYCODE:\n event.preventDefault()\n this.prev()\n break\n case ARROW_RIGHT_KEYCODE:\n event.preventDefault()\n this.next()\n break\n default:\n }\n }\n\n _getItemIndex(element) {\n this._items = element && element.parentNode\n ? [].slice.call(element.parentNode.querySelectorAll(Selector.ITEM))\n : []\n return this._items.indexOf(element)\n }\n\n _getItemByDirection(direction, activeElement) {\n const isNextDirection = direction === Direction.NEXT\n const isPrevDirection = direction === Direction.PREV\n const activeIndex = this._getItemIndex(activeElement)\n const lastItemIndex = this._items.length - 1\n const isGoingToWrap = isPrevDirection && activeIndex === 0 ||\n isNextDirection && activeIndex === lastItemIndex\n\n if (isGoingToWrap && !this._config.wrap) {\n return activeElement\n }\n\n const delta = direction === Direction.PREV ? -1 : 1\n const itemIndex = (activeIndex + delta) % this._items.length\n\n return itemIndex === -1\n ? this._items[this._items.length - 1] : this._items[itemIndex]\n }\n\n _triggerSlideEvent(relatedTarget, eventDirectionName) {\n const targetIndex = this._getItemIndex(relatedTarget)\n const fromIndex = this._getItemIndex(this._element.querySelector(Selector.ACTIVE_ITEM))\n const slideEvent = $.Event(Event.SLIDE, {\n relatedTarget,\n direction: eventDirectionName,\n from: fromIndex,\n to: targetIndex\n })\n\n $(this._element).trigger(slideEvent)\n\n return slideEvent\n }\n\n _setActiveIndicatorElement(element) {\n if (this._indicatorsElement) {\n const indicators = [].slice.call(this._indicatorsElement.querySelectorAll(Selector.ACTIVE))\n $(indicators)\n .removeClass(ClassName.ACTIVE)\n\n const nextIndicator = this._indicatorsElement.children[\n this._getItemIndex(element)\n ]\n\n if (nextIndicator) {\n $(nextIndicator).addClass(ClassName.ACTIVE)\n }\n }\n }\n\n _slide(direction, element) {\n const activeElement = this._element.querySelector(Selector.ACTIVE_ITEM)\n const activeElementIndex = this._getItemIndex(activeElement)\n const nextElement = element || activeElement &&\n this._getItemByDirection(direction, activeElement)\n const nextElementIndex = this._getItemIndex(nextElement)\n const isCycling = Boolean(this._interval)\n\n let directionalClassName\n let orderClassName\n let eventDirectionName\n\n if (direction === Direction.NEXT) {\n directionalClassName = ClassName.LEFT\n orderClassName = ClassName.NEXT\n eventDirectionName = Direction.LEFT\n } else {\n directionalClassName = ClassName.RIGHT\n orderClassName = ClassName.PREV\n eventDirectionName = Direction.RIGHT\n }\n\n if (nextElement && $(nextElement).hasClass(ClassName.ACTIVE)) {\n this._isSliding = false\n return\n }\n\n const slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName)\n if (slideEvent.isDefaultPrevented()) {\n return\n }\n\n if (!activeElement || !nextElement) {\n // Some weirdness is happening, so we bail\n return\n }\n\n this._isSliding = true\n\n if (isCycling) {\n this.pause()\n }\n\n this._setActiveIndicatorElement(nextElement)\n\n const slidEvent = $.Event(Event.SLID, {\n relatedTarget: nextElement,\n direction: eventDirectionName,\n from: activeElementIndex,\n to: nextElementIndex\n })\n\n if ($(this._element).hasClass(ClassName.SLIDE)) {\n $(nextElement).addClass(orderClassName)\n\n Util.reflow(nextElement)\n\n $(activeElement).addClass(directionalClassName)\n $(nextElement).addClass(directionalClassName)\n\n const nextElementInterval = parseInt(nextElement.getAttribute('data-interval'), 10)\n if (nextElementInterval) {\n this._config.defaultInterval = this._config.defaultInterval || this._config.interval\n this._config.interval = nextElementInterval\n } else {\n this._config.interval = this._config.defaultInterval || this._config.interval\n }\n\n const transitionDuration = Util.getTransitionDurationFromElement(activeElement)\n\n $(activeElement)\n .one(Util.TRANSITION_END, () => {\n $(nextElement)\n .removeClass(`${directionalClassName} ${orderClassName}`)\n .addClass(ClassName.ACTIVE)\n\n $(activeElement).removeClass(`${ClassName.ACTIVE} ${orderClassName} ${directionalClassName}`)\n\n this._isSliding = false\n\n setTimeout(() => $(this._element).trigger(slidEvent), 0)\n })\n .emulateTransitionEnd(transitionDuration)\n } else {\n $(activeElement).removeClass(ClassName.ACTIVE)\n $(nextElement).addClass(ClassName.ACTIVE)\n\n this._isSliding = false\n $(this._element).trigger(slidEvent)\n }\n\n if (isCycling) {\n this.cycle()\n }\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n let _config = {\n ...Default,\n ...$(this).data()\n }\n\n if (typeof config === 'object') {\n _config = {\n ..._config,\n ...config\n }\n }\n\n const action = typeof config === 'string' ? config : _config.slide\n\n if (!data) {\n data = new Carousel(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'number') {\n data.to(config)\n } else if (typeof action === 'string') {\n if (typeof data[action] === 'undefined') {\n throw new TypeError(`No method named \"${action}\"`)\n }\n data[action]()\n } else if (_config.interval && _config.ride) {\n data.pause()\n data.cycle()\n }\n })\n }\n\n static _dataApiClickHandler(event) {\n const selector = Util.getSelectorFromElement(this)\n\n if (!selector) {\n return\n }\n\n const target = $(selector)[0]\n\n if (!target || !$(target).hasClass(ClassName.CAROUSEL)) {\n return\n }\n\n const config = {\n ...$(target).data(),\n ...$(this).data()\n }\n const slideIndex = this.getAttribute('data-slide-to')\n\n if (slideIndex) {\n config.interval = false\n }\n\n Carousel._jQueryInterface.call($(target), config)\n\n if (slideIndex) {\n $(target).data(DATA_KEY).to(slideIndex)\n }\n\n event.preventDefault()\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document)\n .on(Event.CLICK_DATA_API, Selector.DATA_SLIDE, Carousel._dataApiClickHandler)\n\n$(window).on(Event.LOAD_DATA_API, () => {\n const carousels = [].slice.call(document.querySelectorAll(Selector.DATA_RIDE))\n for (let i = 0, len = carousels.length; i < len; i++) {\n const $carousel = $(carousels[i])\n Carousel._jQueryInterface.call($carousel, $carousel.data())\n }\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Carousel._jQueryInterface\n$.fn[NAME].Constructor = Carousel\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Carousel._jQueryInterface\n}\n\nexport default Carousel\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): collapse.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'collapse'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.collapse'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst Default = {\n toggle : true,\n parent : ''\n}\n\nconst DefaultType = {\n toggle : 'boolean',\n parent : '(string|element)'\n}\n\nconst Event = {\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n SHOW : 'show',\n COLLAPSE : 'collapse',\n COLLAPSING : 'collapsing',\n COLLAPSED : 'collapsed'\n}\n\nconst Dimension = {\n WIDTH : 'width',\n HEIGHT : 'height'\n}\n\nconst Selector = {\n ACTIVES : '.show, .collapsing',\n DATA_TOGGLE : '[data-toggle=\"collapse\"]'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Collapse {\n constructor(element, config) {\n this._isTransitioning = false\n this._element = element\n this._config = this._getConfig(config)\n this._triggerArray = [].slice.call(document.querySelectorAll(\n `[data-toggle=\"collapse\"][href=\"#${element.id}\"],` +\n `[data-toggle=\"collapse\"][data-target=\"#${element.id}\"]`\n ))\n\n const toggleList = [].slice.call(document.querySelectorAll(Selector.DATA_TOGGLE))\n for (let i = 0, len = toggleList.length; i < len; i++) {\n const elem = toggleList[i]\n const selector = Util.getSelectorFromElement(elem)\n const filterElement = [].slice.call(document.querySelectorAll(selector))\n .filter((foundElem) => foundElem === element)\n\n if (selector !== null && filterElement.length > 0) {\n this._selector = selector\n this._triggerArray.push(elem)\n }\n }\n\n this._parent = this._config.parent ? this._getParent() : null\n\n if (!this._config.parent) {\n this._addAriaAndCollapsedClass(this._element, this._triggerArray)\n }\n\n if (this._config.toggle) {\n this.toggle()\n }\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n toggle() {\n if ($(this._element).hasClass(ClassName.SHOW)) {\n this.hide()\n } else {\n this.show()\n }\n }\n\n show() {\n if (this._isTransitioning ||\n $(this._element).hasClass(ClassName.SHOW)) {\n return\n }\n\n let actives\n let activesData\n\n if (this._parent) {\n actives = [].slice.call(this._parent.querySelectorAll(Selector.ACTIVES))\n .filter((elem) => {\n if (typeof this._config.parent === 'string') {\n return elem.getAttribute('data-parent') === this._config.parent\n }\n\n return elem.classList.contains(ClassName.COLLAPSE)\n })\n\n if (actives.length === 0) {\n actives = null\n }\n }\n\n if (actives) {\n activesData = $(actives).not(this._selector).data(DATA_KEY)\n if (activesData && activesData._isTransitioning) {\n return\n }\n }\n\n const startEvent = $.Event(Event.SHOW)\n $(this._element).trigger(startEvent)\n if (startEvent.isDefaultPrevented()) {\n return\n }\n\n if (actives) {\n Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide')\n if (!activesData) {\n $(actives).data(DATA_KEY, null)\n }\n }\n\n const dimension = this._getDimension()\n\n $(this._element)\n .removeClass(ClassName.COLLAPSE)\n .addClass(ClassName.COLLAPSING)\n\n this._element.style[dimension] = 0\n\n if (this._triggerArray.length) {\n $(this._triggerArray)\n .removeClass(ClassName.COLLAPSED)\n .attr('aria-expanded', true)\n }\n\n this.setTransitioning(true)\n\n const complete = () => {\n $(this._element)\n .removeClass(ClassName.COLLAPSING)\n .addClass(ClassName.COLLAPSE)\n .addClass(ClassName.SHOW)\n\n this._element.style[dimension] = ''\n\n this.setTransitioning(false)\n\n $(this._element).trigger(Event.SHOWN)\n }\n\n const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1)\n const scrollSize = `scroll${capitalizedDimension}`\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n\n this._element.style[dimension] = `${this._element[scrollSize]}px`\n }\n\n hide() {\n if (this._isTransitioning ||\n !$(this._element).hasClass(ClassName.SHOW)) {\n return\n }\n\n const startEvent = $.Event(Event.HIDE)\n $(this._element).trigger(startEvent)\n if (startEvent.isDefaultPrevented()) {\n return\n }\n\n const dimension = this._getDimension()\n\n this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`\n\n Util.reflow(this._element)\n\n $(this._element)\n .addClass(ClassName.COLLAPSING)\n .removeClass(ClassName.COLLAPSE)\n .removeClass(ClassName.SHOW)\n\n const triggerArrayLength = this._triggerArray.length\n if (triggerArrayLength > 0) {\n for (let i = 0; i < triggerArrayLength; i++) {\n const trigger = this._triggerArray[i]\n const selector = Util.getSelectorFromElement(trigger)\n\n if (selector !== null) {\n const $elem = $([].slice.call(document.querySelectorAll(selector)))\n if (!$elem.hasClass(ClassName.SHOW)) {\n $(trigger).addClass(ClassName.COLLAPSED)\n .attr('aria-expanded', false)\n }\n }\n }\n }\n\n this.setTransitioning(true)\n\n const complete = () => {\n this.setTransitioning(false)\n $(this._element)\n .removeClass(ClassName.COLLAPSING)\n .addClass(ClassName.COLLAPSE)\n .trigger(Event.HIDDEN)\n }\n\n this._element.style[dimension] = ''\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n }\n\n setTransitioning(isTransitioning) {\n this._isTransitioning = isTransitioning\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n\n this._config = null\n this._parent = null\n this._element = null\n this._triggerArray = null\n this._isTransitioning = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n config.toggle = Boolean(config.toggle) // Coerce string values\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _getDimension() {\n const hasWidth = $(this._element).hasClass(Dimension.WIDTH)\n return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT\n }\n\n _getParent() {\n let parent\n\n if (Util.isElement(this._config.parent)) {\n parent = this._config.parent\n\n // It's a jQuery object\n if (typeof this._config.parent.jquery !== 'undefined') {\n parent = this._config.parent[0]\n }\n } else {\n parent = document.querySelector(this._config.parent)\n }\n\n const selector =\n `[data-toggle=\"collapse\"][data-parent=\"${this._config.parent}\"]`\n\n const children = [].slice.call(parent.querySelectorAll(selector))\n $(children).each((i, element) => {\n this._addAriaAndCollapsedClass(\n Collapse._getTargetFromElement(element),\n [element]\n )\n })\n\n return parent\n }\n\n _addAriaAndCollapsedClass(element, triggerArray) {\n const isOpen = $(element).hasClass(ClassName.SHOW)\n\n if (triggerArray.length) {\n $(triggerArray)\n .toggleClass(ClassName.COLLAPSED, !isOpen)\n .attr('aria-expanded', isOpen)\n }\n }\n\n // Static\n\n static _getTargetFromElement(element) {\n const selector = Util.getSelectorFromElement(element)\n return selector ? document.querySelector(selector) : null\n }\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $this = $(this)\n let data = $this.data(DATA_KEY)\n const _config = {\n ...Default,\n ...$this.data(),\n ...typeof config === 'object' && config ? config : {}\n }\n\n if (!data && _config.toggle && /show|hide/.test(config)) {\n _config.toggle = false\n }\n\n if (!data) {\n data = new Collapse(this, _config)\n $this.data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n // preventDefault only for elements (which change the URL) not inside the collapsible element\n if (event.currentTarget.tagName === 'A') {\n event.preventDefault()\n }\n\n const $trigger = $(this)\n const selector = Util.getSelectorFromElement(this)\n const selectors = [].slice.call(document.querySelectorAll(selector))\n\n $(selectors).each(function () {\n const $target = $(this)\n const data = $target.data(DATA_KEY)\n const config = data ? 'toggle' : $trigger.data()\n Collapse._jQueryInterface.call($target, config)\n })\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Collapse._jQueryInterface\n$.fn[NAME].Constructor = Collapse\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Collapse._jQueryInterface\n}\n\nexport default Collapse\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): dropdown.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Popper from 'popper.js'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'dropdown'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.dropdown'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key\nconst SPACE_KEYCODE = 32 // KeyboardEvent.which value for space key\nconst TAB_KEYCODE = 9 // KeyboardEvent.which value for tab key\nconst ARROW_UP_KEYCODE = 38 // KeyboardEvent.which value for up arrow key\nconst ARROW_DOWN_KEYCODE = 40 // KeyboardEvent.which value for down arrow key\nconst RIGHT_MOUSE_BUTTON_WHICH = 3 // MouseEvent.which value for the right button (assuming a right-handed mouse)\nconst REGEXP_KEYDOWN = new RegExp(`${ARROW_UP_KEYCODE}|${ARROW_DOWN_KEYCODE}|${ESCAPE_KEYCODE}`)\n\nconst Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`,\n KEYDOWN_DATA_API : `keydown${EVENT_KEY}${DATA_API_KEY}`,\n KEYUP_DATA_API : `keyup${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n DISABLED : 'disabled',\n SHOW : 'show',\n DROPUP : 'dropup',\n DROPRIGHT : 'dropright',\n DROPLEFT : 'dropleft',\n MENURIGHT : 'dropdown-menu-right',\n MENULEFT : 'dropdown-menu-left',\n POSITION_STATIC : 'position-static'\n}\n\nconst Selector = {\n DATA_TOGGLE : '[data-toggle=\"dropdown\"]',\n FORM_CHILD : '.dropdown form',\n MENU : '.dropdown-menu',\n NAVBAR_NAV : '.navbar-nav',\n VISIBLE_ITEMS : '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)'\n}\n\nconst AttachmentMap = {\n TOP : 'top-start',\n TOPEND : 'top-end',\n BOTTOM : 'bottom-start',\n BOTTOMEND : 'bottom-end',\n RIGHT : 'right-start',\n RIGHTEND : 'right-end',\n LEFT : 'left-start',\n LEFTEND : 'left-end'\n}\n\nconst Default = {\n offset : 0,\n flip : true,\n boundary : 'scrollParent',\n reference : 'toggle',\n display : 'dynamic'\n}\n\nconst DefaultType = {\n offset : '(number|string|function)',\n flip : 'boolean',\n boundary : '(string|element)',\n reference : '(string|element)',\n display : 'string'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Dropdown {\n constructor(element, config) {\n this._element = element\n this._popper = null\n this._config = this._getConfig(config)\n this._menu = this._getMenuElement()\n this._inNavbar = this._detectNavbar()\n\n this._addEventListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Public\n\n toggle() {\n if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED)) {\n return\n }\n\n const parent = Dropdown._getParentFromElement(this._element)\n const isActive = $(this._menu).hasClass(ClassName.SHOW)\n\n Dropdown._clearMenus()\n\n if (isActive) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n const showEvent = $.Event(Event.SHOW, relatedTarget)\n\n $(parent).trigger(showEvent)\n\n if (showEvent.isDefaultPrevented()) {\n return\n }\n\n // Disable totally Popper.js for Dropdown in Navbar\n if (!this._inNavbar) {\n /**\n * Check for Popper dependency\n * Popper - https://popper.js.org\n */\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap\\'s dropdowns require Popper.js (https://popper.js.org/)')\n }\n\n let referenceElement = this._element\n\n if (this._config.reference === 'parent') {\n referenceElement = parent\n } else if (Util.isElement(this._config.reference)) {\n referenceElement = this._config.reference\n\n // Check if it's jQuery element\n if (typeof this._config.reference.jquery !== 'undefined') {\n referenceElement = this._config.reference[0]\n }\n }\n\n // If boundary is not `scrollParent`, then set position to `static`\n // to allow the menu to \"escape\" the scroll parent's boundaries\n // https://github.com/twbs/bootstrap/issues/24251\n if (this._config.boundary !== 'scrollParent') {\n $(parent).addClass(ClassName.POSITION_STATIC)\n }\n this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig())\n }\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement &&\n $(parent).closest(Selector.NAVBAR_NAV).length === 0) {\n $(document.body).children().on('mouseover', null, $.noop)\n }\n\n this._element.focus()\n this._element.setAttribute('aria-expanded', true)\n\n $(this._menu).toggleClass(ClassName.SHOW)\n $(parent)\n .toggleClass(ClassName.SHOW)\n .trigger($.Event(Event.SHOWN, relatedTarget))\n }\n\n show() {\n if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED) || $(this._menu).hasClass(ClassName.SHOW)) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n const showEvent = $.Event(Event.SHOW, relatedTarget)\n const parent = Dropdown._getParentFromElement(this._element)\n\n $(parent).trigger(showEvent)\n\n if (showEvent.isDefaultPrevented()) {\n return\n }\n\n $(this._menu).toggleClass(ClassName.SHOW)\n $(parent)\n .toggleClass(ClassName.SHOW)\n .trigger($.Event(Event.SHOWN, relatedTarget))\n }\n\n hide() {\n if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED) || !$(this._menu).hasClass(ClassName.SHOW)) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n const hideEvent = $.Event(Event.HIDE, relatedTarget)\n const parent = Dropdown._getParentFromElement(this._element)\n\n $(parent).trigger(hideEvent)\n\n if (hideEvent.isDefaultPrevented()) {\n return\n }\n\n $(this._menu).toggleClass(ClassName.SHOW)\n $(parent)\n .toggleClass(ClassName.SHOW)\n .trigger($.Event(Event.HIDDEN, relatedTarget))\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n $(this._element).off(EVENT_KEY)\n this._element = null\n this._menu = null\n if (this._popper !== null) {\n this._popper.destroy()\n this._popper = null\n }\n }\n\n update() {\n this._inNavbar = this._detectNavbar()\n if (this._popper !== null) {\n this._popper.scheduleUpdate()\n }\n }\n\n // Private\n\n _addEventListeners() {\n $(this._element).on(Event.CLICK, (event) => {\n event.preventDefault()\n event.stopPropagation()\n this.toggle()\n })\n }\n\n _getConfig(config) {\n config = {\n ...this.constructor.Default,\n ...$(this._element).data(),\n ...config\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n return config\n }\n\n _getMenuElement() {\n if (!this._menu) {\n const parent = Dropdown._getParentFromElement(this._element)\n\n if (parent) {\n this._menu = parent.querySelector(Selector.MENU)\n }\n }\n return this._menu\n }\n\n _getPlacement() {\n const $parentDropdown = $(this._element.parentNode)\n let placement = AttachmentMap.BOTTOM\n\n // Handle dropup\n if ($parentDropdown.hasClass(ClassName.DROPUP)) {\n placement = AttachmentMap.TOP\n if ($(this._menu).hasClass(ClassName.MENURIGHT)) {\n placement = AttachmentMap.TOPEND\n }\n } else if ($parentDropdown.hasClass(ClassName.DROPRIGHT)) {\n placement = AttachmentMap.RIGHT\n } else if ($parentDropdown.hasClass(ClassName.DROPLEFT)) {\n placement = AttachmentMap.LEFT\n } else if ($(this._menu).hasClass(ClassName.MENURIGHT)) {\n placement = AttachmentMap.BOTTOMEND\n }\n return placement\n }\n\n _detectNavbar() {\n return $(this._element).closest('.navbar').length > 0\n }\n\n _getOffset() {\n const offset = {}\n\n if (typeof this._config.offset === 'function') {\n offset.fn = (data) => {\n data.offsets = {\n ...data.offsets,\n ...this._config.offset(data.offsets, this._element) || {}\n }\n\n return data\n }\n } else {\n offset.offset = this._config.offset\n }\n\n return offset\n }\n\n _getPopperConfig() {\n const popperConfig = {\n placement: this._getPlacement(),\n modifiers: {\n offset: this._getOffset(),\n flip: {\n enabled: this._config.flip\n },\n preventOverflow: {\n boundariesElement: this._config.boundary\n }\n }\n }\n\n // Disable Popper.js if we have a static display\n if (this._config.display === 'static') {\n popperConfig.modifiers.applyStyle = {\n enabled: false\n }\n }\n\n return popperConfig\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' ? config : null\n\n if (!data) {\n data = new Dropdown(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n\n static _clearMenus(event) {\n if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH ||\n event.type === 'keyup' && event.which !== TAB_KEYCODE)) {\n return\n }\n\n const toggles = [].slice.call(document.querySelectorAll(Selector.DATA_TOGGLE))\n\n for (let i = 0, len = toggles.length; i < len; i++) {\n const parent = Dropdown._getParentFromElement(toggles[i])\n const context = $(toggles[i]).data(DATA_KEY)\n const relatedTarget = {\n relatedTarget: toggles[i]\n }\n\n if (event && event.type === 'click') {\n relatedTarget.clickEvent = event\n }\n\n if (!context) {\n continue\n }\n\n const dropdownMenu = context._menu\n if (!$(parent).hasClass(ClassName.SHOW)) {\n continue\n }\n\n if (event && (event.type === 'click' &&\n /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) &&\n $.contains(parent, event.target)) {\n continue\n }\n\n const hideEvent = $.Event(Event.HIDE, relatedTarget)\n $(parent).trigger(hideEvent)\n if (hideEvent.isDefaultPrevented()) {\n continue\n }\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n $(document.body).children().off('mouseover', null, $.noop)\n }\n\n toggles[i].setAttribute('aria-expanded', 'false')\n\n $(dropdownMenu).removeClass(ClassName.SHOW)\n $(parent)\n .removeClass(ClassName.SHOW)\n .trigger($.Event(Event.HIDDEN, relatedTarget))\n }\n }\n\n static _getParentFromElement(element) {\n let parent\n const selector = Util.getSelectorFromElement(element)\n\n if (selector) {\n parent = document.querySelector(selector)\n }\n\n return parent || element.parentNode\n }\n\n // eslint-disable-next-line complexity\n static _dataApiKeydownHandler(event) {\n // If not input/textarea:\n // - And not a key in REGEXP_KEYDOWN => not a dropdown command\n // If input/textarea:\n // - If space key => not a dropdown command\n // - If key is other than escape\n // - If key is not up or down => not a dropdown command\n // - If trigger inside the menu => not a dropdown command\n if (/input|textarea/i.test(event.target.tagName)\n ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE &&\n (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE ||\n $(event.target).closest(Selector.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) {\n return\n }\n\n event.preventDefault()\n event.stopPropagation()\n\n if (this.disabled || $(this).hasClass(ClassName.DISABLED)) {\n return\n }\n\n const parent = Dropdown._getParentFromElement(this)\n const isActive = $(parent).hasClass(ClassName.SHOW)\n\n if (!isActive || isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) {\n if (event.which === ESCAPE_KEYCODE) {\n const toggle = parent.querySelector(Selector.DATA_TOGGLE)\n $(toggle).trigger('focus')\n }\n\n $(this).trigger('click')\n return\n }\n\n const items = [].slice.call(parent.querySelectorAll(Selector.VISIBLE_ITEMS))\n\n if (items.length === 0) {\n return\n }\n\n let index = items.indexOf(event.target)\n\n if (event.which === ARROW_UP_KEYCODE && index > 0) { // Up\n index--\n }\n\n if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { // Down\n index++\n }\n\n if (index < 0) {\n index = 0\n }\n\n items[index].focus()\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document)\n .on(Event.KEYDOWN_DATA_API, Selector.DATA_TOGGLE, Dropdown._dataApiKeydownHandler)\n .on(Event.KEYDOWN_DATA_API, Selector.MENU, Dropdown._dataApiKeydownHandler)\n .on(`${Event.CLICK_DATA_API} ${Event.KEYUP_DATA_API}`, Dropdown._clearMenus)\n .on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n event.preventDefault()\n event.stopPropagation()\n Dropdown._jQueryInterface.call($(this), 'toggle')\n })\n .on(Event.CLICK_DATA_API, Selector.FORM_CHILD, (e) => {\n e.stopPropagation()\n })\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Dropdown._jQueryInterface\n$.fn[NAME].Constructor = Dropdown\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Dropdown._jQueryInterface\n}\n\n\nexport default Dropdown\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): modal.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'modal'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.modal'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key\n\nconst Default = {\n backdrop : true,\n keyboard : true,\n focus : true,\n show : true\n}\n\nconst DefaultType = {\n backdrop : '(boolean|string)',\n keyboard : 'boolean',\n focus : 'boolean',\n show : 'boolean'\n}\n\nconst Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n RESIZE : `resize${EVENT_KEY}`,\n CLICK_DISMISS : `click.dismiss${EVENT_KEY}`,\n KEYDOWN_DISMISS : `keydown.dismiss${EVENT_KEY}`,\n MOUSEUP_DISMISS : `mouseup.dismiss${EVENT_KEY}`,\n MOUSEDOWN_DISMISS : `mousedown.dismiss${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n SCROLLABLE : 'modal-dialog-scrollable',\n SCROLLBAR_MEASURER : 'modal-scrollbar-measure',\n BACKDROP : 'modal-backdrop',\n OPEN : 'modal-open',\n FADE : 'fade',\n SHOW : 'show'\n}\n\nconst Selector = {\n DIALOG : '.modal-dialog',\n MODAL_BODY : '.modal-body',\n DATA_TOGGLE : '[data-toggle=\"modal\"]',\n DATA_DISMISS : '[data-dismiss=\"modal\"]',\n FIXED_CONTENT : '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top',\n STICKY_CONTENT : '.sticky-top'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Modal {\n constructor(element, config) {\n this._config = this._getConfig(config)\n this._element = element\n this._dialog = element.querySelector(Selector.DIALOG)\n this._backdrop = null\n this._isShown = false\n this._isBodyOverflowing = false\n this._ignoreBackdropClick = false\n this._isTransitioning = false\n this._scrollbarWidth = 0\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget)\n }\n\n show(relatedTarget) {\n if (this._isShown || this._isTransitioning) {\n return\n }\n\n if ($(this._element).hasClass(ClassName.FADE)) {\n this._isTransitioning = true\n }\n\n const showEvent = $.Event(Event.SHOW, {\n relatedTarget\n })\n\n $(this._element).trigger(showEvent)\n\n if (this._isShown || showEvent.isDefaultPrevented()) {\n return\n }\n\n this._isShown = true\n\n this._checkScrollbar()\n this._setScrollbar()\n\n this._adjustDialog()\n\n this._setEscapeEvent()\n this._setResizeEvent()\n\n $(this._element).on(\n Event.CLICK_DISMISS,\n Selector.DATA_DISMISS,\n (event) => this.hide(event)\n )\n\n $(this._dialog).on(Event.MOUSEDOWN_DISMISS, () => {\n $(this._element).one(Event.MOUSEUP_DISMISS, (event) => {\n if ($(event.target).is(this._element)) {\n this._ignoreBackdropClick = true\n }\n })\n })\n\n this._showBackdrop(() => this._showElement(relatedTarget))\n }\n\n hide(event) {\n if (event) {\n event.preventDefault()\n }\n\n if (!this._isShown || this._isTransitioning) {\n return\n }\n\n const hideEvent = $.Event(Event.HIDE)\n\n $(this._element).trigger(hideEvent)\n\n if (!this._isShown || hideEvent.isDefaultPrevented()) {\n return\n }\n\n this._isShown = false\n const transition = $(this._element).hasClass(ClassName.FADE)\n\n if (transition) {\n this._isTransitioning = true\n }\n\n this._setEscapeEvent()\n this._setResizeEvent()\n\n $(document).off(Event.FOCUSIN)\n\n $(this._element).removeClass(ClassName.SHOW)\n\n $(this._element).off(Event.CLICK_DISMISS)\n $(this._dialog).off(Event.MOUSEDOWN_DISMISS)\n\n\n if (transition) {\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, (event) => this._hideModal(event))\n .emulateTransitionEnd(transitionDuration)\n } else {\n this._hideModal()\n }\n }\n\n dispose() {\n [window, this._element, this._dialog]\n .forEach((htmlElement) => $(htmlElement).off(EVENT_KEY))\n\n /**\n * `document` has 2 events `Event.FOCUSIN` and `Event.CLICK_DATA_API`\n * Do not move `document` in `htmlElements` array\n * It will remove `Event.CLICK_DATA_API` event that should remain\n */\n $(document).off(Event.FOCUSIN)\n\n $.removeData(this._element, DATA_KEY)\n\n this._config = null\n this._element = null\n this._dialog = null\n this._backdrop = null\n this._isShown = null\n this._isBodyOverflowing = null\n this._ignoreBackdropClick = null\n this._isTransitioning = null\n this._scrollbarWidth = null\n }\n\n handleUpdate() {\n this._adjustDialog()\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _showElement(relatedTarget) {\n const transition = $(this._element).hasClass(ClassName.FADE)\n\n if (!this._element.parentNode ||\n this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {\n // Don't move modal's DOM position\n document.body.appendChild(this._element)\n }\n\n this._element.style.display = 'block'\n this._element.removeAttribute('aria-hidden')\n this._element.setAttribute('aria-modal', true)\n\n if ($(this._dialog).hasClass(ClassName.SCROLLABLE)) {\n this._dialog.querySelector(Selector.MODAL_BODY).scrollTop = 0\n } else {\n this._element.scrollTop = 0\n }\n\n if (transition) {\n Util.reflow(this._element)\n }\n\n $(this._element).addClass(ClassName.SHOW)\n\n if (this._config.focus) {\n this._enforceFocus()\n }\n\n const shownEvent = $.Event(Event.SHOWN, {\n relatedTarget\n })\n\n const transitionComplete = () => {\n if (this._config.focus) {\n this._element.focus()\n }\n this._isTransitioning = false\n $(this._element).trigger(shownEvent)\n }\n\n if (transition) {\n const transitionDuration = Util.getTransitionDurationFromElement(this._dialog)\n\n $(this._dialog)\n .one(Util.TRANSITION_END, transitionComplete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n transitionComplete()\n }\n }\n\n _enforceFocus() {\n $(document)\n .off(Event.FOCUSIN) // Guard against infinite focus loop\n .on(Event.FOCUSIN, (event) => {\n if (document !== event.target &&\n this._element !== event.target &&\n $(this._element).has(event.target).length === 0) {\n this._element.focus()\n }\n })\n }\n\n _setEscapeEvent() {\n if (this._isShown && this._config.keyboard) {\n $(this._element).on(Event.KEYDOWN_DISMISS, (event) => {\n if (event.which === ESCAPE_KEYCODE) {\n event.preventDefault()\n this.hide()\n }\n })\n } else if (!this._isShown) {\n $(this._element).off(Event.KEYDOWN_DISMISS)\n }\n }\n\n _setResizeEvent() {\n if (this._isShown) {\n $(window).on(Event.RESIZE, (event) => this.handleUpdate(event))\n } else {\n $(window).off(Event.RESIZE)\n }\n }\n\n _hideModal() {\n this._element.style.display = 'none'\n this._element.setAttribute('aria-hidden', true)\n this._element.removeAttribute('aria-modal')\n this._isTransitioning = false\n this._showBackdrop(() => {\n $(document.body).removeClass(ClassName.OPEN)\n this._resetAdjustments()\n this._resetScrollbar()\n $(this._element).trigger(Event.HIDDEN)\n })\n }\n\n _removeBackdrop() {\n if (this._backdrop) {\n $(this._backdrop).remove()\n this._backdrop = null\n }\n }\n\n _showBackdrop(callback) {\n const animate = $(this._element).hasClass(ClassName.FADE)\n ? ClassName.FADE : ''\n\n if (this._isShown && this._config.backdrop) {\n this._backdrop = document.createElement('div')\n this._backdrop.className = ClassName.BACKDROP\n\n if (animate) {\n this._backdrop.classList.add(animate)\n }\n\n $(this._backdrop).appendTo(document.body)\n\n $(this._element).on(Event.CLICK_DISMISS, (event) => {\n if (this._ignoreBackdropClick) {\n this._ignoreBackdropClick = false\n return\n }\n if (event.target !== event.currentTarget) {\n return\n }\n if (this._config.backdrop === 'static') {\n this._element.focus()\n } else {\n this.hide()\n }\n })\n\n if (animate) {\n Util.reflow(this._backdrop)\n }\n\n $(this._backdrop).addClass(ClassName.SHOW)\n\n if (!callback) {\n return\n }\n\n if (!animate) {\n callback()\n return\n }\n\n const backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop)\n\n $(this._backdrop)\n .one(Util.TRANSITION_END, callback)\n .emulateTransitionEnd(backdropTransitionDuration)\n } else if (!this._isShown && this._backdrop) {\n $(this._backdrop).removeClass(ClassName.SHOW)\n\n const callbackRemove = () => {\n this._removeBackdrop()\n if (callback) {\n callback()\n }\n }\n\n if ($(this._element).hasClass(ClassName.FADE)) {\n const backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop)\n\n $(this._backdrop)\n .one(Util.TRANSITION_END, callbackRemove)\n .emulateTransitionEnd(backdropTransitionDuration)\n } else {\n callbackRemove()\n }\n } else if (callback) {\n callback()\n }\n }\n\n // ----------------------------------------------------------------------\n // the following methods are used to handle overflowing modals\n // todo (fat): these should probably be refactored out of modal.js\n // ----------------------------------------------------------------------\n\n _adjustDialog() {\n const isModalOverflowing =\n this._element.scrollHeight > document.documentElement.clientHeight\n\n if (!this._isBodyOverflowing && isModalOverflowing) {\n this._element.style.paddingLeft = `${this._scrollbarWidth}px`\n }\n\n if (this._isBodyOverflowing && !isModalOverflowing) {\n this._element.style.paddingRight = `${this._scrollbarWidth}px`\n }\n }\n\n _resetAdjustments() {\n this._element.style.paddingLeft = ''\n this._element.style.paddingRight = ''\n }\n\n _checkScrollbar() {\n const rect = document.body.getBoundingClientRect()\n this._isBodyOverflowing = rect.left + rect.right < window.innerWidth\n this._scrollbarWidth = this._getScrollbarWidth()\n }\n\n _setScrollbar() {\n if (this._isBodyOverflowing) {\n // Note: DOMNode.style.paddingRight returns the actual value or '' if not set\n // while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set\n const fixedContent = [].slice.call(document.querySelectorAll(Selector.FIXED_CONTENT))\n const stickyContent = [].slice.call(document.querySelectorAll(Selector.STICKY_CONTENT))\n\n // Adjust fixed content padding\n $(fixedContent).each((index, element) => {\n const actualPadding = element.style.paddingRight\n const calculatedPadding = $(element).css('padding-right')\n $(element)\n .data('padding-right', actualPadding)\n .css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`)\n })\n\n // Adjust sticky content margin\n $(stickyContent).each((index, element) => {\n const actualMargin = element.style.marginRight\n const calculatedMargin = $(element).css('margin-right')\n $(element)\n .data('margin-right', actualMargin)\n .css('margin-right', `${parseFloat(calculatedMargin) - this._scrollbarWidth}px`)\n })\n\n // Adjust body padding\n const actualPadding = document.body.style.paddingRight\n const calculatedPadding = $(document.body).css('padding-right')\n $(document.body)\n .data('padding-right', actualPadding)\n .css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`)\n }\n\n $(document.body).addClass(ClassName.OPEN)\n }\n\n _resetScrollbar() {\n // Restore fixed content padding\n const fixedContent = [].slice.call(document.querySelectorAll(Selector.FIXED_CONTENT))\n $(fixedContent).each((index, element) => {\n const padding = $(element).data('padding-right')\n $(element).removeData('padding-right')\n element.style.paddingRight = padding ? padding : ''\n })\n\n // Restore sticky content\n const elements = [].slice.call(document.querySelectorAll(`${Selector.STICKY_CONTENT}`))\n $(elements).each((index, element) => {\n const margin = $(element).data('margin-right')\n if (typeof margin !== 'undefined') {\n $(element).css('margin-right', margin).removeData('margin-right')\n }\n })\n\n // Restore body padding\n const padding = $(document.body).data('padding-right')\n $(document.body).removeData('padding-right')\n document.body.style.paddingRight = padding ? padding : ''\n }\n\n _getScrollbarWidth() { // thx d.walsh\n const scrollDiv = document.createElement('div')\n scrollDiv.className = ClassName.SCROLLBAR_MEASURER\n document.body.appendChild(scrollDiv)\n const scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth\n document.body.removeChild(scrollDiv)\n return scrollbarWidth\n }\n\n // Static\n\n static _jQueryInterface(config, relatedTarget) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = {\n ...Default,\n ...$(this).data(),\n ...typeof config === 'object' && config ? config : {}\n }\n\n if (!data) {\n data = new Modal(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config](relatedTarget)\n } else if (_config.show) {\n data.show(relatedTarget)\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n let target\n const selector = Util.getSelectorFromElement(this)\n\n if (selector) {\n target = document.querySelector(selector)\n }\n\n const config = $(target).data(DATA_KEY)\n ? 'toggle' : {\n ...$(target).data(),\n ...$(this).data()\n }\n\n if (this.tagName === 'A' || this.tagName === 'AREA') {\n event.preventDefault()\n }\n\n const $target = $(target).one(Event.SHOW, (showEvent) => {\n if (showEvent.isDefaultPrevented()) {\n // Only register focus restorer if modal will actually get shown\n return\n }\n\n $target.one(Event.HIDDEN, () => {\n if ($(this).is(':visible')) {\n this.focus()\n }\n })\n })\n\n Modal._jQueryInterface.call($(target), config, this)\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Modal._jQueryInterface\n$.fn[NAME].Constructor = Modal\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Modal._jQueryInterface\n}\n\nexport default Modal\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): tools/sanitizer.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst uriAttrs = [\n 'background',\n 'cite',\n 'href',\n 'itemtype',\n 'longdesc',\n 'poster',\n 'src',\n 'xlink:href'\n]\n\nconst ARIA_ATTRIBUTE_PATTERN = /^aria-[\\w-]*$/i\n\nexport const DefaultWhitelist = {\n // Global attributes allowed on any supplied element below.\n '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],\n a: ['target', 'href', 'title', 'rel'],\n area: [],\n b: [],\n br: [],\n col: [],\n code: [],\n div: [],\n em: [],\n hr: [],\n h1: [],\n h2: [],\n h3: [],\n h4: [],\n h5: [],\n h6: [],\n i: [],\n img: ['src', 'alt', 'title', 'width', 'height'],\n li: [],\n ol: [],\n p: [],\n pre: [],\n s: [],\n small: [],\n span: [],\n sub: [],\n sup: [],\n strong: [],\n u: [],\n ul: []\n}\n\n/**\n * A pattern that recognizes a commonly useful subset of URLs that are safe.\n *\n * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts\n */\nconst SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi\n\n/**\n * A pattern that matches safe data URLs. Only matches image, video and audio types.\n *\n * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts\n */\nconst DATA_URL_PATTERN = /^data:(?:image\\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\\/(?:mpeg|mp4|ogg|webm)|audio\\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i\n\nfunction allowedAttribute(attr, allowedAttributeList) {\n const attrName = attr.nodeName.toLowerCase()\n\n if (allowedAttributeList.indexOf(attrName) !== -1) {\n if (uriAttrs.indexOf(attrName) !== -1) {\n return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN))\n }\n\n return true\n }\n\n const regExp = allowedAttributeList.filter((attrRegex) => attrRegex instanceof RegExp)\n\n // Check if a regular expression validates the attribute.\n for (let i = 0, l = regExp.length; i < l; i++) {\n if (attrName.match(regExp[i])) {\n return true\n }\n }\n\n return false\n}\n\nexport function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) {\n if (unsafeHtml.length === 0) {\n return unsafeHtml\n }\n\n if (sanitizeFn && typeof sanitizeFn === 'function') {\n return sanitizeFn(unsafeHtml)\n }\n\n const domParser = new window.DOMParser()\n const createdDocument = domParser.parseFromString(unsafeHtml, 'text/html')\n const whitelistKeys = Object.keys(whiteList)\n const elements = [].slice.call(createdDocument.body.querySelectorAll('*'))\n\n for (let i = 0, len = elements.length; i < len; i++) {\n const el = elements[i]\n const elName = el.nodeName.toLowerCase()\n\n if (whitelistKeys.indexOf(el.nodeName.toLowerCase()) === -1) {\n el.parentNode.removeChild(el)\n\n continue\n }\n\n const attributeList = [].slice.call(el.attributes)\n const whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || [])\n\n attributeList.forEach((attr) => {\n if (!allowedAttribute(attr, whitelistedAttributes)) {\n el.removeAttribute(attr.nodeName)\n }\n })\n }\n\n return createdDocument.body.innerHTML\n}\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): tooltip.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport {\n DefaultWhitelist,\n sanitizeHtml\n} from './tools/sanitizer'\nimport $ from 'jquery'\nimport Popper from 'popper.js'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'tooltip'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.tooltip'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst CLASS_PREFIX = 'bs-tooltip'\nconst BSCLS_PREFIX_REGEX = new RegExp(`(^|\\\\s)${CLASS_PREFIX}\\\\S+`, 'g')\nconst DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn']\n\nconst DefaultType = {\n animation : 'boolean',\n template : 'string',\n title : '(string|element|function)',\n trigger : 'string',\n delay : '(number|object)',\n html : 'boolean',\n selector : '(string|boolean)',\n placement : '(string|function)',\n offset : '(number|string|function)',\n container : '(string|element|boolean)',\n fallbackPlacement : '(string|array)',\n boundary : '(string|element)',\n sanitize : 'boolean',\n sanitizeFn : '(null|function)',\n whiteList : 'object'\n}\n\nconst AttachmentMap = {\n AUTO : 'auto',\n TOP : 'top',\n RIGHT : 'right',\n BOTTOM : 'bottom',\n LEFT : 'left'\n}\n\nconst Default = {\n animation : true,\n template : '
' +\n '
' +\n '
',\n trigger : 'hover focus',\n title : '',\n delay : 0,\n html : false,\n selector : false,\n placement : 'top',\n offset : 0,\n container : false,\n fallbackPlacement : 'flip',\n boundary : 'scrollParent',\n sanitize : true,\n sanitizeFn : null,\n whiteList : DefaultWhitelist\n}\n\nconst HoverState = {\n SHOW : 'show',\n OUT : 'out'\n}\n\nconst Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n INSERTED : `inserted${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n FOCUSOUT : `focusout${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`\n}\n\nconst ClassName = {\n FADE : 'fade',\n SHOW : 'show'\n}\n\nconst Selector = {\n TOOLTIP : '.tooltip',\n TOOLTIP_INNER : '.tooltip-inner',\n ARROW : '.arrow'\n}\n\nconst Trigger = {\n HOVER : 'hover',\n FOCUS : 'focus',\n CLICK : 'click',\n MANUAL : 'manual'\n}\n\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Tooltip {\n constructor(element, config) {\n /**\n * Check for Popper dependency\n * Popper - https://popper.js.org\n */\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap\\'s tooltips require Popper.js (https://popper.js.org/)')\n }\n\n // private\n this._isEnabled = true\n this._timeout = 0\n this._hoverState = ''\n this._activeTrigger = {}\n this._popper = null\n\n // Protected\n this.element = element\n this.config = this._getConfig(config)\n this.tip = null\n\n this._setListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get NAME() {\n return NAME\n }\n\n static get DATA_KEY() {\n return DATA_KEY\n }\n\n static get Event() {\n return Event\n }\n\n static get EVENT_KEY() {\n return EVENT_KEY\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Public\n\n enable() {\n this._isEnabled = true\n }\n\n disable() {\n this._isEnabled = false\n }\n\n toggleEnabled() {\n this._isEnabled = !this._isEnabled\n }\n\n toggle(event) {\n if (!this._isEnabled) {\n return\n }\n\n if (event) {\n const dataKey = this.constructor.DATA_KEY\n let context = $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n context._activeTrigger.click = !context._activeTrigger.click\n\n if (context._isWithActiveTrigger()) {\n context._enter(null, context)\n } else {\n context._leave(null, context)\n }\n } else {\n if ($(this.getTipElement()).hasClass(ClassName.SHOW)) {\n this._leave(null, this)\n return\n }\n\n this._enter(null, this)\n }\n }\n\n dispose() {\n clearTimeout(this._timeout)\n\n $.removeData(this.element, this.constructor.DATA_KEY)\n\n $(this.element).off(this.constructor.EVENT_KEY)\n $(this.element).closest('.modal').off('hide.bs.modal')\n\n if (this.tip) {\n $(this.tip).remove()\n }\n\n this._isEnabled = null\n this._timeout = null\n this._hoverState = null\n this._activeTrigger = null\n if (this._popper !== null) {\n this._popper.destroy()\n }\n\n this._popper = null\n this.element = null\n this.config = null\n this.tip = null\n }\n\n show() {\n if ($(this.element).css('display') === 'none') {\n throw new Error('Please use show on visible elements')\n }\n\n const showEvent = $.Event(this.constructor.Event.SHOW)\n if (this.isWithContent() && this._isEnabled) {\n $(this.element).trigger(showEvent)\n\n const shadowRoot = Util.findShadowRoot(this.element)\n const isInTheDom = $.contains(\n shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement,\n this.element\n )\n\n if (showEvent.isDefaultPrevented() || !isInTheDom) {\n return\n }\n\n const tip = this.getTipElement()\n const tipId = Util.getUID(this.constructor.NAME)\n\n tip.setAttribute('id', tipId)\n this.element.setAttribute('aria-describedby', tipId)\n\n this.setContent()\n\n if (this.config.animation) {\n $(tip).addClass(ClassName.FADE)\n }\n\n const placement = typeof this.config.placement === 'function'\n ? this.config.placement.call(this, tip, this.element)\n : this.config.placement\n\n const attachment = this._getAttachment(placement)\n this.addAttachmentClass(attachment)\n\n const container = this._getContainer()\n $(tip).data(this.constructor.DATA_KEY, this)\n\n if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {\n $(tip).appendTo(container)\n }\n\n $(this.element).trigger(this.constructor.Event.INSERTED)\n\n this._popper = new Popper(this.element, tip, {\n placement: attachment,\n modifiers: {\n offset: this._getOffset(),\n flip: {\n behavior: this.config.fallbackPlacement\n },\n arrow: {\n element: Selector.ARROW\n },\n preventOverflow: {\n boundariesElement: this.config.boundary\n }\n },\n onCreate: (data) => {\n if (data.originalPlacement !== data.placement) {\n this._handlePopperPlacementChange(data)\n }\n },\n onUpdate: (data) => this._handlePopperPlacementChange(data)\n })\n\n $(tip).addClass(ClassName.SHOW)\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement) {\n $(document.body).children().on('mouseover', null, $.noop)\n }\n\n const complete = () => {\n if (this.config.animation) {\n this._fixTransition()\n }\n const prevHoverState = this._hoverState\n this._hoverState = null\n\n $(this.element).trigger(this.constructor.Event.SHOWN)\n\n if (prevHoverState === HoverState.OUT) {\n this._leave(null, this)\n }\n }\n\n if ($(this.tip).hasClass(ClassName.FADE)) {\n const transitionDuration = Util.getTransitionDurationFromElement(this.tip)\n\n $(this.tip)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n complete()\n }\n }\n }\n\n hide(callback) {\n const tip = this.getTipElement()\n const hideEvent = $.Event(this.constructor.Event.HIDE)\n const complete = () => {\n if (this._hoverState !== HoverState.SHOW && tip.parentNode) {\n tip.parentNode.removeChild(tip)\n }\n\n this._cleanTipClass()\n this.element.removeAttribute('aria-describedby')\n $(this.element).trigger(this.constructor.Event.HIDDEN)\n if (this._popper !== null) {\n this._popper.destroy()\n }\n\n if (callback) {\n callback()\n }\n }\n\n $(this.element).trigger(hideEvent)\n\n if (hideEvent.isDefaultPrevented()) {\n return\n }\n\n $(tip).removeClass(ClassName.SHOW)\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n $(document.body).children().off('mouseover', null, $.noop)\n }\n\n this._activeTrigger[Trigger.CLICK] = false\n this._activeTrigger[Trigger.FOCUS] = false\n this._activeTrigger[Trigger.HOVER] = false\n\n if ($(this.tip).hasClass(ClassName.FADE)) {\n const transitionDuration = Util.getTransitionDurationFromElement(tip)\n\n $(tip)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n complete()\n }\n\n this._hoverState = ''\n }\n\n update() {\n if (this._popper !== null) {\n this._popper.scheduleUpdate()\n }\n }\n\n // Protected\n\n isWithContent() {\n return Boolean(this.getTitle())\n }\n\n addAttachmentClass(attachment) {\n $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)\n }\n\n getTipElement() {\n this.tip = this.tip || $(this.config.template)[0]\n return this.tip\n }\n\n setContent() {\n const tip = this.getTipElement()\n this.setElementContent($(tip.querySelectorAll(Selector.TOOLTIP_INNER)), this.getTitle())\n $(tip).removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)\n }\n\n setElementContent($element, content) {\n if (typeof content === 'object' && (content.nodeType || content.jquery)) {\n // Content is a DOM node or a jQuery\n if (this.config.html) {\n if (!$(content).parent().is($element)) {\n $element.empty().append(content)\n }\n } else {\n $element.text($(content).text())\n }\n\n return\n }\n\n if (this.config.html) {\n if (this.config.sanitize) {\n content = sanitizeHtml(content, this.config.whiteList, this.config.sanitizeFn)\n }\n\n $element.html(content)\n } else {\n $element.text(content)\n }\n }\n\n getTitle() {\n let title = this.element.getAttribute('data-original-title')\n\n if (!title) {\n title = typeof this.config.title === 'function'\n ? this.config.title.call(this.element)\n : this.config.title\n }\n\n return title\n }\n\n // Private\n\n _getOffset() {\n const offset = {}\n\n if (typeof this.config.offset === 'function') {\n offset.fn = (data) => {\n data.offsets = {\n ...data.offsets,\n ...this.config.offset(data.offsets, this.element) || {}\n }\n\n return data\n }\n } else {\n offset.offset = this.config.offset\n }\n\n return offset\n }\n\n _getContainer() {\n if (this.config.container === false) {\n return document.body\n }\n\n if (Util.isElement(this.config.container)) {\n return $(this.config.container)\n }\n\n return $(document).find(this.config.container)\n }\n\n _getAttachment(placement) {\n return AttachmentMap[placement.toUpperCase()]\n }\n\n _setListeners() {\n const triggers = this.config.trigger.split(' ')\n\n triggers.forEach((trigger) => {\n if (trigger === 'click') {\n $(this.element).on(\n this.constructor.Event.CLICK,\n this.config.selector,\n (event) => this.toggle(event)\n )\n } else if (trigger !== Trigger.MANUAL) {\n const eventIn = trigger === Trigger.HOVER\n ? this.constructor.Event.MOUSEENTER\n : this.constructor.Event.FOCUSIN\n const eventOut = trigger === Trigger.HOVER\n ? this.constructor.Event.MOUSELEAVE\n : this.constructor.Event.FOCUSOUT\n\n $(this.element)\n .on(\n eventIn,\n this.config.selector,\n (event) => this._enter(event)\n )\n .on(\n eventOut,\n this.config.selector,\n (event) => this._leave(event)\n )\n }\n })\n\n $(this.element).closest('.modal').on(\n 'hide.bs.modal',\n () => {\n if (this.element) {\n this.hide()\n }\n }\n )\n\n if (this.config.selector) {\n this.config = {\n ...this.config,\n trigger: 'manual',\n selector: ''\n }\n } else {\n this._fixTitle()\n }\n }\n\n _fixTitle() {\n const titleType = typeof this.element.getAttribute('data-original-title')\n\n if (this.element.getAttribute('title') || titleType !== 'string') {\n this.element.setAttribute(\n 'data-original-title',\n this.element.getAttribute('title') || ''\n )\n\n this.element.setAttribute('title', '')\n }\n }\n\n _enter(event, context) {\n const dataKey = this.constructor.DATA_KEY\n context = context || $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n if (event) {\n context._activeTrigger[\n event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER\n ] = true\n }\n\n if ($(context.getTipElement()).hasClass(ClassName.SHOW) || context._hoverState === HoverState.SHOW) {\n context._hoverState = HoverState.SHOW\n return\n }\n\n clearTimeout(context._timeout)\n\n context._hoverState = HoverState.SHOW\n\n if (!context.config.delay || !context.config.delay.show) {\n context.show()\n return\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HoverState.SHOW) {\n context.show()\n }\n }, context.config.delay.show)\n }\n\n _leave(event, context) {\n const dataKey = this.constructor.DATA_KEY\n context = context || $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n if (event) {\n context._activeTrigger[\n event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER\n ] = false\n }\n\n if (context._isWithActiveTrigger()) {\n return\n }\n\n clearTimeout(context._timeout)\n\n context._hoverState = HoverState.OUT\n\n if (!context.config.delay || !context.config.delay.hide) {\n context.hide()\n return\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HoverState.OUT) {\n context.hide()\n }\n }, context.config.delay.hide)\n }\n\n _isWithActiveTrigger() {\n for (const trigger in this._activeTrigger) {\n if (this._activeTrigger[trigger]) {\n return true\n }\n }\n\n return false\n }\n\n _getConfig(config) {\n const dataAttributes = $(this.element).data()\n\n Object.keys(dataAttributes)\n .forEach((dataAttr) => {\n if (DISALLOWED_ATTRIBUTES.indexOf(dataAttr) !== -1) {\n delete dataAttributes[dataAttr]\n }\n })\n\n config = {\n ...this.constructor.Default,\n ...dataAttributes,\n ...typeof config === 'object' && config ? config : {}\n }\n\n if (typeof config.delay === 'number') {\n config.delay = {\n show: config.delay,\n hide: config.delay\n }\n }\n\n if (typeof config.title === 'number') {\n config.title = config.title.toString()\n }\n\n if (typeof config.content === 'number') {\n config.content = config.content.toString()\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n if (config.sanitize) {\n config.template = sanitizeHtml(config.template, config.whiteList, config.sanitizeFn)\n }\n\n return config\n }\n\n _getDelegateConfig() {\n const config = {}\n\n if (this.config) {\n for (const key in this.config) {\n if (this.constructor.Default[key] !== this.config[key]) {\n config[key] = this.config[key]\n }\n }\n }\n\n return config\n }\n\n _cleanTipClass() {\n const $tip = $(this.getTipElement())\n const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)\n if (tabClass !== null && tabClass.length) {\n $tip.removeClass(tabClass.join(''))\n }\n }\n\n _handlePopperPlacementChange(popperData) {\n const popperInstance = popperData.instance\n this.tip = popperInstance.popper\n this._cleanTipClass()\n this.addAttachmentClass(this._getAttachment(popperData.placement))\n }\n\n _fixTransition() {\n const tip = this.getTipElement()\n const initConfigAnimation = this.config.animation\n\n if (tip.getAttribute('x-placement') !== null) {\n return\n }\n\n $(tip).removeClass(ClassName.FADE)\n this.config.animation = false\n this.hide()\n this.show()\n this.config.animation = initConfigAnimation\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' && config\n\n if (!data && /dispose|hide/.test(config)) {\n return\n }\n\n if (!data) {\n data = new Tooltip(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Tooltip._jQueryInterface\n$.fn[NAME].Constructor = Tooltip\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Tooltip._jQueryInterface\n}\n\nexport default Tooltip\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): popover.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Tooltip from './tooltip'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'popover'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.popover'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst CLASS_PREFIX = 'bs-popover'\nconst BSCLS_PREFIX_REGEX = new RegExp(`(^|\\\\s)${CLASS_PREFIX}\\\\S+`, 'g')\n\nconst Default = {\n ...Tooltip.Default,\n placement : 'right',\n trigger : 'click',\n content : '',\n template : '
' +\n '
' +\n '

' +\n '
'\n}\n\nconst DefaultType = {\n ...Tooltip.DefaultType,\n content : '(string|element|function)'\n}\n\nconst ClassName = {\n FADE : 'fade',\n SHOW : 'show'\n}\n\nconst Selector = {\n TITLE : '.popover-header',\n CONTENT : '.popover-body'\n}\n\nconst Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n INSERTED : `inserted${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n FOCUSOUT : `focusout${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Popover extends Tooltip {\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get NAME() {\n return NAME\n }\n\n static get DATA_KEY() {\n return DATA_KEY\n }\n\n static get Event() {\n return Event\n }\n\n static get EVENT_KEY() {\n return EVENT_KEY\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Overrides\n\n isWithContent() {\n return this.getTitle() || this._getContent()\n }\n\n addAttachmentClass(attachment) {\n $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)\n }\n\n getTipElement() {\n this.tip = this.tip || $(this.config.template)[0]\n return this.tip\n }\n\n setContent() {\n const $tip = $(this.getTipElement())\n\n // We use append for html objects to maintain js events\n this.setElementContent($tip.find(Selector.TITLE), this.getTitle())\n let content = this._getContent()\n if (typeof content === 'function') {\n content = content.call(this.element)\n }\n this.setElementContent($tip.find(Selector.CONTENT), content)\n\n $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)\n }\n\n // Private\n\n _getContent() {\n return this.element.getAttribute('data-content') ||\n this.config.content\n }\n\n _cleanTipClass() {\n const $tip = $(this.getTipElement())\n const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)\n if (tabClass !== null && tabClass.length > 0) {\n $tip.removeClass(tabClass.join(''))\n }\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' ? config : null\n\n if (!data && /dispose|hide/.test(config)) {\n return\n }\n\n if (!data) {\n data = new Popover(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Popover._jQueryInterface\n$.fn[NAME].Constructor = Popover\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Popover._jQueryInterface\n}\n\nexport default Popover\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): scrollspy.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'scrollspy'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.scrollspy'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst Default = {\n offset : 10,\n method : 'auto',\n target : ''\n}\n\nconst DefaultType = {\n offset : 'number',\n method : 'string',\n target : '(string|element)'\n}\n\nconst Event = {\n ACTIVATE : `activate${EVENT_KEY}`,\n SCROLL : `scroll${EVENT_KEY}`,\n LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n DROPDOWN_ITEM : 'dropdown-item',\n DROPDOWN_MENU : 'dropdown-menu',\n ACTIVE : 'active'\n}\n\nconst Selector = {\n DATA_SPY : '[data-spy=\"scroll\"]',\n ACTIVE : '.active',\n NAV_LIST_GROUP : '.nav, .list-group',\n NAV_LINKS : '.nav-link',\n NAV_ITEMS : '.nav-item',\n LIST_ITEMS : '.list-group-item',\n DROPDOWN : '.dropdown',\n DROPDOWN_ITEMS : '.dropdown-item',\n DROPDOWN_TOGGLE : '.dropdown-toggle'\n}\n\nconst OffsetMethod = {\n OFFSET : 'offset',\n POSITION : 'position'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass ScrollSpy {\n constructor(element, config) {\n this._element = element\n this._scrollElement = element.tagName === 'BODY' ? window : element\n this._config = this._getConfig(config)\n this._selector = `${this._config.target} ${Selector.NAV_LINKS},` +\n `${this._config.target} ${Selector.LIST_ITEMS},` +\n `${this._config.target} ${Selector.DROPDOWN_ITEMS}`\n this._offsets = []\n this._targets = []\n this._activeTarget = null\n this._scrollHeight = 0\n\n $(this._scrollElement).on(Event.SCROLL, (event) => this._process(event))\n\n this.refresh()\n this._process()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n refresh() {\n const autoMethod = this._scrollElement === this._scrollElement.window\n ? OffsetMethod.OFFSET : OffsetMethod.POSITION\n\n const offsetMethod = this._config.method === 'auto'\n ? autoMethod : this._config.method\n\n const offsetBase = offsetMethod === OffsetMethod.POSITION\n ? this._getScrollTop() : 0\n\n this._offsets = []\n this._targets = []\n\n this._scrollHeight = this._getScrollHeight()\n\n const targets = [].slice.call(document.querySelectorAll(this._selector))\n\n targets\n .map((element) => {\n let target\n const targetSelector = Util.getSelectorFromElement(element)\n\n if (targetSelector) {\n target = document.querySelector(targetSelector)\n }\n\n if (target) {\n const targetBCR = target.getBoundingClientRect()\n if (targetBCR.width || targetBCR.height) {\n // TODO (fat): remove sketch reliance on jQuery position/offset\n return [\n $(target)[offsetMethod]().top + offsetBase,\n targetSelector\n ]\n }\n }\n return null\n })\n .filter((item) => item)\n .sort((a, b) => a[0] - b[0])\n .forEach((item) => {\n this._offsets.push(item[0])\n this._targets.push(item[1])\n })\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n $(this._scrollElement).off(EVENT_KEY)\n\n this._element = null\n this._scrollElement = null\n this._config = null\n this._selector = null\n this._offsets = null\n this._targets = null\n this._activeTarget = null\n this._scrollHeight = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...typeof config === 'object' && config ? config : {}\n }\n\n if (typeof config.target !== 'string') {\n let id = $(config.target).attr('id')\n if (!id) {\n id = Util.getUID(NAME)\n $(config.target).attr('id', id)\n }\n config.target = `#${id}`\n }\n\n Util.typeCheckConfig(NAME, config, DefaultType)\n\n return config\n }\n\n _getScrollTop() {\n return this._scrollElement === window\n ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop\n }\n\n _getScrollHeight() {\n return this._scrollElement.scrollHeight || Math.max(\n document.body.scrollHeight,\n document.documentElement.scrollHeight\n )\n }\n\n _getOffsetHeight() {\n return this._scrollElement === window\n ? window.innerHeight : this._scrollElement.getBoundingClientRect().height\n }\n\n _process() {\n const scrollTop = this._getScrollTop() + this._config.offset\n const scrollHeight = this._getScrollHeight()\n const maxScroll = this._config.offset +\n scrollHeight -\n this._getOffsetHeight()\n\n if (this._scrollHeight !== scrollHeight) {\n this.refresh()\n }\n\n if (scrollTop >= maxScroll) {\n const target = this._targets[this._targets.length - 1]\n\n if (this._activeTarget !== target) {\n this._activate(target)\n }\n return\n }\n\n if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {\n this._activeTarget = null\n this._clear()\n return\n }\n\n const offsetLength = this._offsets.length\n for (let i = offsetLength; i--;) {\n const isActiveTarget = this._activeTarget !== this._targets[i] &&\n scrollTop >= this._offsets[i] &&\n (typeof this._offsets[i + 1] === 'undefined' ||\n scrollTop < this._offsets[i + 1])\n\n if (isActiveTarget) {\n this._activate(this._targets[i])\n }\n }\n }\n\n _activate(target) {\n this._activeTarget = target\n\n this._clear()\n\n const queries = this._selector\n .split(',')\n .map((selector) => `${selector}[data-target=\"${target}\"],${selector}[href=\"${target}\"]`)\n\n const $link = $([].slice.call(document.querySelectorAll(queries.join(','))))\n\n if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {\n $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE)\n $link.addClass(ClassName.ACTIVE)\n } else {\n // Set triggered link as active\n $link.addClass(ClassName.ACTIVE)\n // Set triggered links parents as active\n // With both
',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:0,container:!1,fallbackPlacement:"flip",boundary:"scrollParent",sanitize:!0,sanitizeFn:null,whiteList:Ee},je="show",He="out",Re={HIDE:"hide"+De,HIDDEN:"hidden"+De,SHOW:"show"+De,SHOWN:"shown"+De,INSERTED:"inserted"+De,CLICK:"click"+De,FOCUSIN:"focusin"+De,FOCUSOUT:"focusout"+De,MOUSEENTER:"mouseenter"+De,MOUSELEAVE:"mouseleave"+De},xe="fade",Fe="show",Ue=".tooltip-inner",We=".arrow",qe="hover",Me="focus",Ke="click",Qe="manual",Be=function(){function i(t,e){if("undefined"==typeof u)throw new TypeError("Bootstrap's tooltips require Popper.js (https://popper.js.org/)");this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this.element=t,this.config=this._getConfig(e),this.tip=null,this._setListeners()}var t=i.prototype;return t.enable=function(){this._isEnabled=!0},t.disable=function(){this._isEnabled=!1},t.toggleEnabled=function(){this._isEnabled=!this._isEnabled},t.toggle=function(t){if(this._isEnabled)if(t){var e=this.constructor.DATA_KEY,n=g(t.currentTarget).data(e);n||(n=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(e,n)),n._activeTrigger.click=!n._activeTrigger.click,n._isWithActiveTrigger()?n._enter(null,n):n._leave(null,n)}else{if(g(this.getTipElement()).hasClass(Fe))return void this._leave(null,this);this._enter(null,this)}},t.dispose=function(){clearTimeout(this._timeout),g.removeData(this.element,this.constructor.DATA_KEY),g(this.element).off(this.constructor.EVENT_KEY),g(this.element).closest(".modal").off("hide.bs.modal"),this.tip&&g(this.tip).remove(),this._isEnabled=null,this._timeout=null,this._hoverState=null,(this._activeTrigger=null)!==this._popper&&this._popper.destroy(),this._popper=null,this.element=null,this.config=null,this.tip=null},t.show=function(){var e=this;if("none"===g(this.element).css("display"))throw new Error("Please use show on visible elements");var t=g.Event(this.constructor.Event.SHOW);if(this.isWithContent()&&this._isEnabled){g(this.element).trigger(t);var n=_.findShadowRoot(this.element),i=g.contains(null!==n?n:this.element.ownerDocument.documentElement,this.element);if(t.isDefaultPrevented()||!i)return;var o=this.getTipElement(),r=_.getUID(this.constructor.NAME);o.setAttribute("id",r),this.element.setAttribute("aria-describedby",r),this.setContent(),this.config.animation&&g(o).addClass(xe);var s="function"==typeof this.config.placement?this.config.placement.call(this,o,this.element):this.config.placement,a=this._getAttachment(s);this.addAttachmentClass(a);var l=this._getContainer();g(o).data(this.constructor.DATA_KEY,this),g.contains(this.element.ownerDocument.documentElement,this.tip)||g(o).appendTo(l),g(this.element).trigger(this.constructor.Event.INSERTED),this._popper=new u(this.element,o,{placement:a,modifiers:{offset:this._getOffset(),flip:{behavior:this.config.fallbackPlacement},arrow:{element:We},preventOverflow:{boundariesElement:this.config.boundary}},onCreate:function(t){t.originalPlacement!==t.placement&&e._handlePopperPlacementChange(t)},onUpdate:function(t){return e._handlePopperPlacementChange(t)}}),g(o).addClass(Fe),"ontouchstart"in document.documentElement&&g(document.body).children().on("mouseover",null,g.noop);var c=function(){e.config.animation&&e._fixTransition();var t=e._hoverState;e._hoverState=null,g(e.element).trigger(e.constructor.Event.SHOWN),t===He&&e._leave(null,e)};if(g(this.tip).hasClass(xe)){var h=_.getTransitionDurationFromElement(this.tip);g(this.tip).one(_.TRANSITION_END,c).emulateTransitionEnd(h)}else c()}},t.hide=function(t){var e=this,n=this.getTipElement(),i=g.Event(this.constructor.Event.HIDE),o=function(){e._hoverState!==je&&n.parentNode&&n.parentNode.removeChild(n),e._cleanTipClass(),e.element.removeAttribute("aria-describedby"),g(e.element).trigger(e.constructor.Event.HIDDEN),null!==e._popper&&e._popper.destroy(),t&&t()};if(g(this.element).trigger(i),!i.isDefaultPrevented()){if(g(n).removeClass(Fe),"ontouchstart"in document.documentElement&&g(document.body).children().off("mouseover",null,g.noop),this._activeTrigger[Ke]=!1,this._activeTrigger[Me]=!1,this._activeTrigger[qe]=!1,g(this.tip).hasClass(xe)){var r=_.getTransitionDurationFromElement(n);g(n).one(_.TRANSITION_END,o).emulateTransitionEnd(r)}else o();this._hoverState=""}},t.update=function(){null!==this._popper&&this._popper.scheduleUpdate()},t.isWithContent=function(){return Boolean(this.getTitle())},t.addAttachmentClass=function(t){g(this.getTipElement()).addClass(Ae+"-"+t)},t.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},t.setContent=function(){var t=this.getTipElement();this.setElementContent(g(t.querySelectorAll(Ue)),this.getTitle()),g(t).removeClass(xe+" "+Fe)},t.setElementContent=function(t,e){"object"!=typeof e||!e.nodeType&&!e.jquery?this.config.html?(this.config.sanitize&&(e=Se(e,this.config.whiteList,this.config.sanitizeFn)),t.html(e)):t.text(e):this.config.html?g(e).parent().is(t)||t.empty().append(e):t.text(g(e).text())},t.getTitle=function(){var t=this.element.getAttribute("data-original-title");return t||(t="function"==typeof this.config.title?this.config.title.call(this.element):this.config.title),t},t._getOffset=function(){var e=this,t={};return"function"==typeof this.config.offset?t.fn=function(t){return t.offsets=l({},t.offsets,e.config.offset(t.offsets,e.element)||{}),t}:t.offset=this.config.offset,t},t._getContainer=function(){return!1===this.config.container?document.body:_.isElement(this.config.container)?g(this.config.container):g(document).find(this.config.container)},t._getAttachment=function(t){return Pe[t.toUpperCase()]},t._setListeners=function(){var i=this;this.config.trigger.split(" ").forEach(function(t){if("click"===t)g(i.element).on(i.constructor.Event.CLICK,i.config.selector,function(t){return i.toggle(t)});else if(t!==Qe){var e=t===qe?i.constructor.Event.MOUSEENTER:i.constructor.Event.FOCUSIN,n=t===qe?i.constructor.Event.MOUSELEAVE:i.constructor.Event.FOCUSOUT;g(i.element).on(e,i.config.selector,function(t){return i._enter(t)}).on(n,i.config.selector,function(t){return i._leave(t)})}}),g(this.element).closest(".modal").on("hide.bs.modal",function(){i.element&&i.hide()}),this.config.selector?this.config=l({},this.config,{trigger:"manual",selector:""}):this._fixTitle()},t._fixTitle=function(){var t=typeof this.element.getAttribute("data-original-title");(this.element.getAttribute("title")||"string"!==t)&&(this.element.setAttribute("data-original-title",this.element.getAttribute("title")||""),this.element.setAttribute("title",""))},t._enter=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusin"===t.type?Me:qe]=!0),g(e.getTipElement()).hasClass(Fe)||e._hoverState===je?e._hoverState=je:(clearTimeout(e._timeout),e._hoverState=je,e.config.delay&&e.config.delay.show?e._timeout=setTimeout(function(){e._hoverState===je&&e.show()},e.config.delay.show):e.show())},t._leave=function(t,e){var n=this.constructor.DATA_KEY;(e=e||g(t.currentTarget).data(n))||(e=new this.constructor(t.currentTarget,this._getDelegateConfig()),g(t.currentTarget).data(n,e)),t&&(e._activeTrigger["focusout"===t.type?Me:qe]=!1),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState=He,e.config.delay&&e.config.delay.hide?e._timeout=setTimeout(function(){e._hoverState===He&&e.hide()},e.config.delay.hide):e.hide())},t._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},t._getConfig=function(t){var e=g(this.element).data();return Object.keys(e).forEach(function(t){-1!==Oe.indexOf(t)&&delete e[t]}),"number"==typeof(t=l({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),_.typeCheckConfig(be,t,this.constructor.DefaultType),t.sanitize&&(t.template=Se(t.template,t.whiteList,t.sanitizeFn)),t},t._getDelegateConfig=function(){var t={};if(this.config)for(var e in this.config)this.constructor.Default[e]!==this.config[e]&&(t[e]=this.config[e]);return t},t._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Ne);null!==e&&e.length&&t.removeClass(e.join(""))},t._handlePopperPlacementChange=function(t){var e=t.instance;this.tip=e.popper,this._cleanTipClass(),this.addAttachmentClass(this._getAttachment(t.placement))},t._fixTransition=function(){var t=this.getTipElement(),e=this.config.animation;null===t.getAttribute("x-placement")&&(g(t).removeClass(xe),this.config.animation=!1,this.hide(),this.show(),this.config.animation=e)},i._jQueryInterface=function(n){return this.each(function(){var t=g(this).data(Ie),e="object"==typeof n&&n;if((t||!/dispose|hide/.test(n))&&(t||(t=new i(this,e),g(this).data(Ie,t)),"string"==typeof n)){if("undefined"==typeof t[n])throw new TypeError('No method named "'+n+'"');t[n]()}})},s(i,null,[{key:"VERSION",get:function(){return"4.3.1"}},{key:"Default",get:function(){return Le}},{key:"NAME",get:function(){return be}},{key:"DATA_KEY",get:function(){return Ie}},{key:"Event",get:function(){return Re}},{key:"EVENT_KEY",get:function(){return De}},{key:"DefaultType",get:function(){return ke}}]),i}();g.fn[be]=Be._jQueryInterface,g.fn[be].Constructor=Be,g.fn[be].noConflict=function(){return g.fn[be]=we,Be._jQueryInterface};var Ve="popover",Ye="bs.popover",ze="."+Ye,Xe=g.fn[Ve],$e="bs-popover",Ge=new RegExp("(^|\\s)"+$e+"\\S+","g"),Je=l({},Be.Default,{placement:"right",trigger:"click",content:"",template:''}),Ze=l({},Be.DefaultType,{content:"(string|element|function)"}),tn="fade",en="show",nn=".popover-header",on=".popover-body",rn={HIDE:"hide"+ze,HIDDEN:"hidden"+ze,SHOW:"show"+ze,SHOWN:"shown"+ze,INSERTED:"inserted"+ze,CLICK:"click"+ze,FOCUSIN:"focusin"+ze,FOCUSOUT:"focusout"+ze,MOUSEENTER:"mouseenter"+ze,MOUSELEAVE:"mouseleave"+ze},sn=function(t){var e,n;function i(){return t.apply(this,arguments)||this}n=t,(e=i).prototype=Object.create(n.prototype),(e.prototype.constructor=e).__proto__=n;var o=i.prototype;return o.isWithContent=function(){return this.getTitle()||this._getContent()},o.addAttachmentClass=function(t){g(this.getTipElement()).addClass($e+"-"+t)},o.getTipElement=function(){return this.tip=this.tip||g(this.config.template)[0],this.tip},o.setContent=function(){var t=g(this.getTipElement());this.setElementContent(t.find(nn),this.getTitle());var e=this._getContent();"function"==typeof e&&(e=e.call(this.element)),this.setElementContent(t.find(on),e),t.removeClass(tn+" "+en)},o._getContent=function(){return this.element.getAttribute("data-content")||this.config.content},o._cleanTipClass=function(){var t=g(this.getTipElement()),e=t.attr("class").match(Ge);null!==e&&0=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||tt[n]-t[o]-1&&(t.reach[h]="end"),e&&(f.dispatchEvent(c("ps-scroll-"+h)),e<0?f.dispatchEvent(c("ps-scroll-"+u)):e>0&&f.dispatchEvent(c("ps-scroll-"+d)),r&&a(t,h)),t.reach[h]&&(e||l)&&f.dispatchEvent(c("ps-"+h+"-reach-"+t.reach[h]))}function u(t){return parseInt(t,10)||0}function d(t){return r(t,"input,[contenteditable]")||r(t,"select,[contenteditable]")||r(t,"textarea,[contenteditable]")||r(t,"button,[contenteditable]")}function f(e){var i=t(e);return u(i.width)+u(i.paddingLeft)+u(i.paddingRight)+u(i.borderLeftWidth)+u(i.borderRightWidth)}function p(t,e){return t.settings.minScrollbarLength&&(e=Math.max(e,t.settings.minScrollbarLength)),t.settings.maxScrollbarLength&&(e=Math.min(e,t.settings.maxScrollbarLength)),e}function b(t,i){var r={width:i.railXWidth},l=Math.floor(t.scrollTop);i.isRtl?r.left=i.negativeScrollAdjustment+t.scrollLeft+i.containerWidth-i.contentWidth:r.left=t.scrollLeft,i.isScrollbarXUsingBottom?r.bottom=i.scrollbarXBottom-l:r.top=i.scrollbarXTop+l,e(i.scrollbarXRail,r);var n={top:l,height:i.railYHeight};i.isScrollbarYUsingRight?i.isRtl?n.right=i.contentWidth-(i.negativeScrollAdjustment+t.scrollLeft)-i.scrollbarYRight-i.scrollbarYOuterWidth:n.right=i.scrollbarYRight-t.scrollLeft:i.isRtl?n.left=i.negativeScrollAdjustment+t.scrollLeft+2*i.containerWidth-i.contentWidth-i.scrollbarYLeft-i.scrollbarYOuterWidth:n.left=i.scrollbarYLeft+t.scrollLeft,e(i.scrollbarYRail,n),e(i.scrollbarX,{left:i.scrollbarXLeft,width:i.scrollbarXWidth-i.railBorderXWidth}),e(i.scrollbarY,{top:i.scrollbarYTop,height:i.scrollbarYHeight-i.railBorderYWidth})}function g(t,e){function i(e){b[d]=g+Y*(e[a]-v),o(t,f),R(t),e.stopPropagation(),e.preventDefault()}function r(){s(t,f),t[p].classList.remove(m.state.clicking),t.event.unbind(t.ownerDocument,"mousemove",i)}var l=e[0],n=e[1],a=e[2],c=e[3],h=e[4],u=e[5],d=e[6],f=e[7],p=e[8],b=t.element,g=null,v=null,Y=null;t.event.bind(t[h],"mousedown",function(e){g=b[d],v=e[a],Y=(t[n]-t[l])/(t[c]-t[u]),t.event.bind(t.ownerDocument,"mousemove",i),t.event.once(t.ownerDocument,"mouseup",r),t[p].classList.add(m.state.clicking),e.stopPropagation(),e.preventDefault()})}var v="undefined"!=typeof Element&&(Element.prototype.matches||Element.prototype.webkitMatchesSelector||Element.prototype.mozMatchesSelector||Element.prototype.msMatchesSelector),m={main:"ps",element:{thumb:function(t){return"ps__thumb-"+t},rail:function(t){return"ps__rail-"+t},consuming:"ps__child--consume"},state:{focus:"ps--focus",clicking:"ps--clicking",active:function(t){return"ps--active-"+t},scrolling:function(t){return"ps--scrolling-"+t}}},Y={x:null,y:null},X=function(t){this.element=t,this.handlers={}},w={isEmpty:{configurable:!0}};X.prototype.bind=function(t,e){void 0===this.handlers[t]&&(this.handlers[t]=[]),this.handlers[t].push(e),this.element.addEventListener(t,e,!1)},X.prototype.unbind=function(t,e){var i=this;this.handlers[t]=this.handlers[t].filter(function(r){return!(!e||r===e)||(i.element.removeEventListener(t,r,!1),!1)})},X.prototype.unbindAll=function(){var t=this;for(var e in t.handlers)t.unbind(e)},w.isEmpty.get=function(){var t=this;return Object.keys(this.handlers).every(function(e){return 0===t.handlers[e].length})},Object.defineProperties(X.prototype,w);var y=function(){this.eventElements=[]};y.prototype.eventElement=function(t){var e=this.eventElements.filter(function(e){return e.element===t})[0];return e||(e=new X(t),this.eventElements.push(e)),e},y.prototype.bind=function(t,e,i){this.eventElement(t).bind(e,i)},y.prototype.unbind=function(t,e,i){var r=this.eventElement(t);r.unbind(e,i),r.isEmpty&&this.eventElements.splice(this.eventElements.indexOf(r),1)},y.prototype.unbindAll=function(){this.eventElements.forEach(function(t){return t.unbindAll()}),this.eventElements=[]},y.prototype.once=function(t,e,i){var r=this.eventElement(t),l=function(t){r.unbind(e,l),i(t)};r.bind(e,l)};var W=function(t,e,i,r,l){void 0===r&&(r=!0),void 0===l&&(l=!1);var n;if("top"===e)n=["contentHeight","containerHeight","scrollTop","y","up","down"];else{if("left"!==e)throw new Error("A proper axis should be provided");n=["contentWidth","containerWidth","scrollLeft","x","left","right"]}h(t,i,n,r,l)},L={isWebKit:"undefined"!=typeof document&&"WebkitAppearance"in document.documentElement.style,supportsTouch:"undefined"!=typeof window&&("ontouchstart"in window||window.DocumentTouch&&document instanceof window.DocumentTouch),supportsIePointer:"undefined"!=typeof navigator&&navigator.msMaxTouchPoints,isChrome:"undefined"!=typeof navigator&&/Chrome/i.test(navigator&&navigator.userAgent)},R=function(t){var e=t.element,i=Math.floor(e.scrollTop);t.containerWidth=e.clientWidth,t.containerHeight=e.clientHeight,t.contentWidth=e.scrollWidth,t.contentHeight=e.scrollHeight,e.contains(t.scrollbarXRail)||(n(e,m.element.rail("x")).forEach(function(t){return l(t)}),e.appendChild(t.scrollbarXRail)),e.contains(t.scrollbarYRail)||(n(e,m.element.rail("y")).forEach(function(t){return l(t)}),e.appendChild(t.scrollbarYRail)),!t.settings.suppressScrollX&&t.containerWidth+t.settings.scrollXMarginOffset=t.railXWidth-t.scrollbarXWidth&&(t.scrollbarXLeft=t.railXWidth-t.scrollbarXWidth),t.scrollbarYTop>=t.railYHeight-t.scrollbarYHeight&&(t.scrollbarYTop=t.railYHeight-t.scrollbarYHeight),b(e,t),t.scrollbarXActive?e.classList.add(m.state.active("x")):(e.classList.remove(m.state.active("x")),t.scrollbarXWidth=0,t.scrollbarXLeft=0,e.scrollLeft=0),t.scrollbarYActive?e.classList.add(m.state.active("y")):(e.classList.remove(m.state.active("y")),t.scrollbarYHeight=0,t.scrollbarYTop=0,e.scrollTop=0)},T={"click-rail":function(t){t.event.bind(t.scrollbarY,"mousedown",function(t){return t.stopPropagation()}),t.event.bind(t.scrollbarYRail,"mousedown",function(e){var i=e.pageY-window.pageYOffset-t.scrollbarYRail.getBoundingClientRect().top>t.scrollbarYTop?1:-1;t.element.scrollTop+=i*t.containerHeight,R(t),e.stopPropagation()}),t.event.bind(t.scrollbarX,"mousedown",function(t){return t.stopPropagation()}),t.event.bind(t.scrollbarXRail,"mousedown",function(e){var i=e.pageX-window.pageXOffset-t.scrollbarXRail.getBoundingClientRect().left>t.scrollbarXLeft?1:-1;t.element.scrollLeft+=i*t.containerWidth,R(t),e.stopPropagation()})},"drag-thumb":function(t){g(t,["containerWidth","contentWidth","pageX","railXWidth","scrollbarX","scrollbarXWidth","scrollLeft","x","scrollbarXRail"]),g(t,["containerHeight","contentHeight","pageY","railYHeight","scrollbarY","scrollbarYHeight","scrollTop","y","scrollbarYRail"])},keyboard:function(t){function e(e,r){var l=Math.floor(i.scrollTop);if(0===e){if(!t.scrollbarYActive)return!1;if(0===l&&r>0||l>=t.contentHeight-t.containerHeight&&r<0)return!t.settings.wheelPropagation}var n=i.scrollLeft;if(0===r){if(!t.scrollbarXActive)return!1;if(0===n&&e<0||n>=t.contentWidth-t.containerWidth&&e>0)return!t.settings.wheelPropagation}return!0}var i=t.element,l=function(){return r(i,":hover")},n=function(){return r(t.scrollbarX,":focus")||r(t.scrollbarY,":focus")};t.event.bind(t.ownerDocument,"keydown",function(r){if(!(r.isDefaultPrevented&&r.isDefaultPrevented()||r.defaultPrevented)&&(l()||n())){var o=document.activeElement?document.activeElement:t.ownerDocument.activeElement;if(o){if("IFRAME"===o.tagName)o=o.contentDocument.activeElement;else for(;o.shadowRoot;)o=o.shadowRoot.activeElement;if(d(o))return}var s=0,a=0;switch(r.which){case 37:s=r.metaKey?-t.contentWidth:r.altKey?-t.containerWidth:-30;break;case 38:a=r.metaKey?t.contentHeight:r.altKey?t.containerHeight:30;break;case 39:s=r.metaKey?t.contentWidth:r.altKey?t.containerWidth:30;break;case 40:a=r.metaKey?-t.contentHeight:r.altKey?-t.containerHeight:-30;break;case 32:a=r.shiftKey?t.containerHeight:-t.containerHeight;break;case 33:a=t.containerHeight;break;case 34:a=-t.containerHeight;break;case 36:a=t.contentHeight;break;case 35:a=-t.contentHeight;break;default:return}t.settings.suppressScrollX&&0!==s||t.settings.suppressScrollY&&0!==a||(i.scrollTop-=a,i.scrollLeft+=s,R(t),e(s,a)&&r.preventDefault())}})},wheel:function(e){function i(t,i){var r=Math.floor(o.scrollTop),l=0===o.scrollTop,n=r+o.offsetHeight===o.scrollHeight,s=0===o.scrollLeft,a=o.scrollLeft+o.offsetWidth===o.scrollWidth;return!(Math.abs(i)>Math.abs(t)?l||n:s||a)||!e.settings.wheelPropagation}function r(t){var e=t.deltaX,i=-1*t.deltaY;return void 0!==e&&void 0!==i||(e=-1*t.wheelDeltaX/6,i=t.wheelDeltaY/6),t.deltaMode&&1===t.deltaMode&&(e*=10,i*=10),e!==e&&i!==i&&(e=0,i=t.wheelDelta),t.shiftKey?[-i,-e]:[e,i]}function l(e,i,r){if(!L.isWebKit&&o.querySelector("select:focus"))return!0;if(!o.contains(e))return!1;for(var l=e;l&&l!==o;){if(l.classList.contains(m.element.consuming))return!0;var n=t(l);if([n.overflow,n.overflowX,n.overflowY].join("").match(/(scroll|auto)/)){var s=l.scrollHeight-l.clientHeight;if(s>0&&!(0===l.scrollTop&&r>0||l.scrollTop===s&&r<0))return!0;var a=l.scrollWidth-l.clientWidth;if(a>0&&!(0===l.scrollLeft&&i<0||l.scrollLeft===a&&i>0))return!0}l=l.parentNode}return!1}function n(t){var n=r(t),s=n[0],a=n[1];if(!l(t.target,s,a)){var c=!1;e.settings.useBothWheelAxes?e.scrollbarYActive&&!e.scrollbarXActive?(a?o.scrollTop-=a*e.settings.wheelSpeed:o.scrollTop+=s*e.settings.wheelSpeed,c=!0):e.scrollbarXActive&&!e.scrollbarYActive&&(s?o.scrollLeft+=s*e.settings.wheelSpeed:o.scrollLeft-=a*e.settings.wheelSpeed,c=!0):(o.scrollTop-=a*e.settings.wheelSpeed,o.scrollLeft+=s*e.settings.wheelSpeed),R(e),(c=c||i(s,a))&&!t.ctrlKey&&(t.stopPropagation(),t.preventDefault())}}var o=e.element;void 0!==window.onwheel?e.event.bind(o,"wheel",n):void 0!==window.onmousewheel&&e.event.bind(o,"mousewheel",n)},touch:function(e){function i(t,i){var r=Math.floor(h.scrollTop),l=h.scrollLeft,n=Math.abs(t),o=Math.abs(i);if(o>n){if(i<0&&r===e.contentHeight-e.containerHeight||i>0&&0===r)return 0===window.scrollY&&i>0&&L.isChrome}else if(n>o&&(t<0&&l===e.contentWidth-e.containerWidth||t>0&&0===l))return!0;return!0}function r(t,i){h.scrollTop-=i,h.scrollLeft-=t,R(e)}function l(t){return t.targetTouches?t.targetTouches[0]:t}function n(t){return!(t.pointerType&&"pen"===t.pointerType&&0===t.buttons||(!t.targetTouches||1!==t.targetTouches.length)&&(!t.pointerType||"mouse"===t.pointerType||t.pointerType===t.MSPOINTER_TYPE_MOUSE))}function o(t){if(n(t)){var e=l(t);u.pageX=e.pageX,u.pageY=e.pageY,d=(new Date).getTime(),null!==p&&clearInterval(p)}}function s(e,i,r){if(!h.contains(e))return!1;for(var l=e;l&&l!==h;){if(l.classList.contains(m.element.consuming))return!0;var n=t(l);if([n.overflow,n.overflowX,n.overflowY].join("").match(/(scroll|auto)/)){var o=l.scrollHeight-l.clientHeight;if(o>0&&!(0===l.scrollTop&&r>0||l.scrollTop===o&&r<0))return!0;var s=l.scrollLeft-l.clientWidth;if(s>0&&!(0===l.scrollLeft&&i<0||l.scrollLeft===s&&i>0))return!0}l=l.parentNode}return!1}function a(t){if(n(t)){var e=l(t),o={pageX:e.pageX,pageY:e.pageY},a=o.pageX-u.pageX,c=o.pageY-u.pageY;if(s(t.target,a,c))return;r(a,c),u=o;var h=(new Date).getTime(),p=h-d;p>0&&(f.x=a/p,f.y=c/p,d=h),i(a,c)&&t.preventDefault()}}function c(){e.settings.swipeEasing&&(clearInterval(p),p=setInterval(function(){e.isInitialized?clearInterval(p):f.x||f.y?Math.abs(f.x)<.01&&Math.abs(f.y)<.01?clearInterval(p):(r(30*f.x,30*f.y),f.x*=.8,f.y*=.8):clearInterval(p)},10))}if(L.supportsTouch||L.supportsIePointer){var h=e.element,u={},d=0,f={},p=null;L.supportsTouch?(e.event.bind(h,"touchstart",o),e.event.bind(h,"touchmove",a),e.event.bind(h,"touchend",c)):L.supportsIePointer&&(window.PointerEvent?(e.event.bind(h,"pointerdown",o),e.event.bind(h,"pointermove",a),e.event.bind(h,"pointerup",c)):window.MSPointerEvent&&(e.event.bind(h,"MSPointerDown",o),e.event.bind(h,"MSPointerMove",a),e.event.bind(h,"MSPointerUp",c)))}}},H=function(r,l){var n=this;if(void 0===l&&(l={}),"string"==typeof r&&(r=document.querySelector(r)),!r||!r.nodeName)throw new Error("no element is specified to initialize PerfectScrollbar");this.element=r,r.classList.add(m.main),this.settings={handlers:["click-rail","drag-thumb","keyboard","wheel","touch"],maxScrollbarLength:null,minScrollbarLength:null,scrollingThreshold:1e3,scrollXMarginOffset:0,scrollYMarginOffset:0,suppressScrollX:!1,suppressScrollY:!1,swipeEasing:!0,useBothWheelAxes:!1,wheelPropagation:!0,wheelSpeed:1};for(var o in l)n.settings[o]=l[o];this.containerWidth=null,this.containerHeight=null,this.contentWidth=null,this.contentHeight=null;var s=function(){return r.classList.add(m.state.focus)},a=function(){return r.classList.remove(m.state.focus)};this.isRtl="rtl"===t(r).direction,this.isNegativeScroll=function(){var t=r.scrollLeft,e=null;return r.scrollLeft=-1,e=r.scrollLeft<0,r.scrollLeft=t,e}(),this.negativeScrollAdjustment=this.isNegativeScroll?r.scrollWidth-r.clientWidth:0,this.event=new y,this.ownerDocument=r.ownerDocument||document,this.scrollbarXRail=i(m.element.rail("x")),r.appendChild(this.scrollbarXRail),this.scrollbarX=i(m.element.thumb("x")),this.scrollbarXRail.appendChild(this.scrollbarX),this.scrollbarX.setAttribute("tabindex",0),this.event.bind(this.scrollbarX,"focus",s),this.event.bind(this.scrollbarX,"blur",a),this.scrollbarXActive=null,this.scrollbarXWidth=null,this.scrollbarXLeft=null;var c=t(this.scrollbarXRail);this.scrollbarXBottom=parseInt(c.bottom,10),isNaN(this.scrollbarXBottom)?(this.isScrollbarXUsingBottom=!1,this.scrollbarXTop=u(c.top)):this.isScrollbarXUsingBottom=!0,this.railBorderXWidth=u(c.borderLeftWidth)+u(c.borderRightWidth),e(this.scrollbarXRail,{display:"block"}),this.railXMarginWidth=u(c.marginLeft)+u(c.marginRight),e(this.scrollbarXRail,{display:""}),this.railXWidth=null,this.railXRatio=null,this.scrollbarYRail=i(m.element.rail("y")),r.appendChild(this.scrollbarYRail),this.scrollbarY=i(m.element.thumb("y")),this.scrollbarYRail.appendChild(this.scrollbarY),this.scrollbarY.setAttribute("tabindex",0),this.event.bind(this.scrollbarY,"focus",s),this.event.bind(this.scrollbarY,"blur",a),this.scrollbarYActive=null,this.scrollbarYHeight=null,this.scrollbarYTop=null;var h=t(this.scrollbarYRail);this.scrollbarYRight=parseInt(h.right,10),isNaN(this.scrollbarYRight)?(this.isScrollbarYUsingRight=!1,this.scrollbarYLeft=u(h.left)):this.isScrollbarYUsingRight=!0,this.scrollbarYOuterWidth=this.isRtl?f(this.scrollbarY):null,this.railBorderYWidth=u(h.borderTopWidth)+u(h.borderBottomWidth),e(this.scrollbarYRail,{display:"block"}),this.railYMarginHeight=u(h.marginTop)+u(h.marginBottom),e(this.scrollbarYRail,{display:""}),this.railYHeight=null,this.railYRatio=null,this.reach={x:r.scrollLeft<=0?"start":r.scrollLeft>=this.contentWidth-this.containerWidth?"end":null,y:r.scrollTop<=0?"start":r.scrollTop>=this.contentHeight-this.containerHeight?"end":null},this.isAlive=!0,this.settings.handlers.forEach(function(t){return T[t](n)}),this.lastScrollTop=Math.floor(r.scrollTop),this.lastScrollLeft=r.scrollLeft,this.event.bind(this.element,"scroll",function(t){return n.onScroll(t)}),R(this)};return H.prototype.update=function(){this.isAlive&&(this.negativeScrollAdjustment=this.isNegativeScroll?this.element.scrollWidth-this.element.clientWidth:0,e(this.scrollbarXRail,{display:"block"}),e(this.scrollbarYRail,{display:"block"}),this.railXMarginWidth=u(t(this.scrollbarXRail).marginLeft)+u(t(this.scrollbarXRail).marginRight),this.railYMarginHeight=u(t(this.scrollbarYRail).marginTop)+u(t(this.scrollbarYRail).marginBottom),e(this.scrollbarXRail,{display:"none"}),e(this.scrollbarYRail,{display:"none"}),R(this),W(this,"top",0,!1,!0),W(this,"left",0,!1,!0),e(this.scrollbarXRail,{display:""}),e(this.scrollbarYRail,{display:""}))},H.prototype.onScroll=function(t){this.isAlive&&(R(this),W(this,"top",this.element.scrollTop-this.lastScrollTop),W(this,"left",this.element.scrollLeft-this.lastScrollLeft),this.lastScrollTop=Math.floor(this.element.scrollTop),this.lastScrollLeft=this.element.scrollLeft)},H.prototype.destroy=function(){this.isAlive&&(this.event.unbindAll(),l(this.scrollbarX),l(this.scrollbarY),l(this.scrollbarXRail),l(this.scrollbarYRail),this.removePsClasses(),this.element=null,this.scrollbarX=null,this.scrollbarY=null,this.scrollbarXRail=null,this.scrollbarYRail=null,this.isAlive=!1)},H.prototype.removePsClasses=function(){this.element.className=this.element.className.split(" ").filter(function(t){return!t.match(/^ps([-_].+|)$/)}).join(" ")},H}); \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/package.json b/INCUBATE/incubate/incubate/static/package.json new file mode 100644 index 0000000000000000000000000000000000000000..02914092f27205c4f336487d2bb6c896a4057006 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/package.json @@ -0,0 +1,55 @@ +{ + "name": "purple_admin", + "version": "3.0.0", + "description": "", + "main": "index.html", + "dependencies": { + "bootstrap": "^4.3.1", + "chart.js": "^2.8.0", + "chartist": "^0.11.2", + "daterangepicker": "^3.0.5", + "flag-icon-css": "^3.3.0", + "jquery": "^3.4.1", + "moment": "^2.24.0", + "perfect-scrollbar": "^1.4.0", + "popper.js": "^1.15.0", + "progressbar.js": "^1.0.1", + "pwstabs": "^1.4.0", + "select2": "^4.0.7", + "select2-bootstrap-theme": "0.1.0-beta.10", + "simple-line-icons": "^2.4.1", + "twbs-pagination": "^1.4.1", + "typeahead.js": "^0.11.1" + }, + "devDependencies": { + "browser-sync": "^2.26.7", + "compass-mixins": "^0.12.10", + "del": "^5.0.0", + "gulp": "^4.0.2", + "gulp-autoprefixer": "^6.1.0", + "gulp-clean-css": "^4.2.0", + "gulp-concat": "^2.6.1", + "gulp-htmlmin": "^5.0.1", + "gulp-inject": "5.0.2", + "gulp-inject-partials": "^1.0.5", + "gulp-notify": "^3.2.0", + "gulp-plumber": "^1.2.1", + "gulp-prettify": "^0.5.0", + "gulp-rename": "^1.4.0", + "gulp-replace": "^1.0.0", + "gulp-sass": "^4.0.2", + "gulp-sourcemaps": "^2.6.5", + "gulp-util": "^3.0.8", + "merge-stream": "^2.0.0", + "minimatch": "^3.0.4", + "require-dir": "^1.2.0", + "run-sequence": "^2.2.1" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "bootstrapdash", + "url": "http://www.bootstrapdash.com/", + "copyright": "", + "license": "" +} diff --git a/INCUBATE/incubate/incubate/static/pages/charts/chartist.html b/INCUBATE/incubate/incubate/static/pages/charts/chartist.html new file mode 100644 index 0000000000000000000000000000000000000000..cc4ac0a10cc6dcfe40644647fa4924ea1fb694f9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/charts/chartist.html @@ -0,0 +1,309 @@ + + + + + + + Stellar Admin + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+
+ +
+
+
+
+

Simple Line chart

+
+
+
+
+
+
+
+

Line scatterer

+
+
+
+
+
+
+
+
+
+
+

Stacked bar chart

+
+
+
+
+
+
+
+

Horizontal bar chart

+
+
+
+
+
+
+
+
+
+

Pie chart

+
+
+
+
+
+
+
+

Donut

+
+
+
+
+
+
+ + + + +
+ +
+ +
+ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/pages/forms/basic_elements.html b/INCUBATE/incubate/incubate/static/pages/forms/basic_elements.html new file mode 100644 index 0000000000000000000000000000000000000000..66f64fa0cb4c29862ffc8eb245f10050eb6d1b7b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/forms/basic_elements.html @@ -0,0 +1,835 @@ + + + + + + + Stellar Admin + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+
+ +
+
+
+
+

Default form

+

Basic form layout

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+ + +
+
+
+
+
+
+
+

Horizontal Form

+

Horizontal form layout

+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ + +
+
+
+
+
+
+
+

Basic form elements

+

Basic form elements

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + + + +
+
+
+ + +
+
+ + +
+ + +
+
+
+
+
+
+
+

Input size

+

Add classes like .form-control-lg and .form-control-sm.

+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+
+
+

Select size

+

Add classes like .form-control-lg and .form-control-sm.

+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+
+
+

Basic input groups

+

Basic bootstrap input groups

+
+
+
+ @ +
+ +
+
+
+
+
+ $ +
+ +
+ .00 +
+
+
+
+
+
+ $ +
+
+ 0.00 +
+ +
+
+
+
+ +
+ +
+
+
+
+
+ + +
+
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+

Checkbox Controls

+

Checkbox and radio controls (default appearance is in primary color)

+
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+

Add class .form-check-{color} for checkbox and radio controls in theme colors

+
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+
+
+
+
+

Inline forms

+

Use the .form-inline class to display a series of labels, form controls, and buttons on a single horizontal row

+
+ + + +
+
+
@
+
+ +
+
+ +
+ +
+
+
+
+
+
+
+

Horizontal Two column

+
+

Personal info

+
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+
+
+
+

Address

+
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+
+
+
+ +
+ +
+
+
+
+
+ +
+ +
+
+
+
+
+
+
+
+
+
+
+

Select 2

+
+ + +
+
+ + +
+
+
+
+
+
+
+

Typeahead

+

A simple suggestion engine

+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+ + + + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/pages/icons/simple-line-icons.html b/INCUBATE/incubate/incubate/static/pages/icons/simple-line-icons.html new file mode 100644 index 0000000000000000000000000000000000000000..a5e09ef8e74d9beaa34f9109193cea1fed812b10 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/icons/simple-line-icons.html @@ -0,0 +1,803 @@ + + + + + + + Stellar Admin + + + + + + + + + + + + + + +
+ + + +
+ + + +
+
+ +
+
+
+
+

Simple line icons

+
+
+
icon-user
+
+
+
icon-people
+
+
+
icon-user-female
+
+
+
icon-user-follow
+
+
+
icon-user-following
+
+
+
icon-user-unfollow
+
+
+
icon-login
+
+
+
icon-logout
+
+
+
icon-emotsmile
+
+
+
icon-phone
+
+
+
icon-call-end
+
+
+
icon-call-in
+
+
+
icon-call-out
+
+
+
icon-map
+
+
+
icon-location-pin
+
+
+
icon-direction
+
+
+
icon-directions
+
+
+
icon-compass
+
+
+
icon-layers
+
+
+
icon-menu
+
+
+
icon-list
+
+
+
icon-options-vertical
+
+
+
icon-options
+
+
+
icon-arrow-down
+
+
+
icon-arrow-left
+
+
+
icon-arrow-right
+
+
+
icon-arrow-up
+
+
+
icon-arrow-up-circle
+
+
+
icon-arrow-left-circle
+
+
+
icon-arrow-right-circle
+
+
+
icon-arrow-down-circle
+
+
+
icon-check
+
+
+
icon-clock
+
+
+
icon-plus
+
+
+
icon-close
+
+
+
icon-trophy
+
+
+
icon-screen-smartphone
+
+
+
icon-screen-desktop
+
+
+
icon-plane
+
+
+
icon-notebook
+
+
+
icon-mustache
+
+
+
icon-mouse
+
+
+
icon-magnet
+
+
+
icon-energy
+
+
+
icon-disc
+
+
+
icon-cursor
+
+
+
icon-cursor-move
+
+
+
icon-crop
+
+
+
icon-chemistry
+
+
+
icon-speedometer
+
+
+
icon-shield
+
+
+
icon-screen-tablet
+
+
+
icon-magic-wand
+
+
+
icon-hourglass
+
+
+
icon-graduation
+
+
+
icon-ghost
+
+
+
icon-game-controller
+
+
+
icon-fire
+
+
+
icon-eyeglass
+
+
+
icon-envelope-open
+
+
+
icon-envelope-letter
+
+
+
icon-bell
+
+
+
icon-badge
+
+
+
icon-anchor
+
+
+
icon-wallet
+
+
+
icon-vector
+
+
+
icon-speech
+
+
+
icon-puzzle
+
+
+
icon-printer
+
+
+
icon-present
+
+
+
icon-playlist
+
+
+
icon-pin
+
+
+
icon-picture
+
+
+
icon-handbag
+
+
+
icon-globe-alt
+
+
+
icon-globe
+
+
+
icon-folder-alt
+
+
+
icon-folder
+
+
+
icon-film
+
+
+
icon-feed
+
+
+
icon-drop
+
+
+
icon-drawer
+
+
+
icon-docs
+
+
+
icon-doc
+
+
+
icon-diamond
+
+
+
icon-cup
+
+
+
icon-calculator
+
+
+
icon-bubbles
+
+
+
icon-briefcase
+
+
+
icon-book-open
+
+
+
icon-basket-loaded
+
+
+
icon-basket
+
+
+
icon-bag
+
+
+
icon-action-undo
+
+
+
icon-action-redo
+
+
+
icon-wrench
+
+
+
icon-umbrella
+
+
+
icon-trash
+
+
+
icon-tag
+
+
+
.icon-support
+
+
+
icon-frame
+
+
+
icon-size-fullscreen
+
+
+
icon-size-actual
+
+
+
icon-shuffle
+
+
+
icon-share-alt
+
+
+
icon-share
+
+
+
icon-rocket
+
+
+
icon-question
+
+
+
icon-pie-chart
+
+
+
icon-pencil
+
+
+
icon-note
+
+
+
icon-loop
+
+
+
icon-home
+
+
+
icon-grid
+
+
+
icon-graph
+
+
+
icon-microphone
+
+
+
icon-music-tone-alt
+
+
+
icon-music-tone
+
+
+
icon-earphones-alt
+
+
+
icon-earphones
+
+
+
icon-equalizer
+
+
+
icon-like
+
+
+
icon-dislike
+
+
+
icon-control-start
+
+
+
icon-control-rewind
+
+
+
icon-control-play
+
+
+
icon-control-pause
+
+
+
icon-control-forward
+
+
+
icon-control-end
+
+
+
icon-volume-1
+
+
+
icon-volume-2
+
+
+
icon-volume-off
+
+
+
icon-calendar
+
+
+
icon-bulb
+
+
+
icon-chart
+
+
+
icon-ban
+
+
+
icon-bubble
+
+
+
icon-camrecorder
+
+
+
icon-camera
+
+
+
icon-cloud-download
+
+
+
icon-cloud-upload
+
+
+
icon-eye
+
+
+
icon-flag
+
+
+
icon-heart
+
+
+
icon-info
+
+
+
icon-key
+
+
+
icon-link
+
+
+
icon-lock
+
+
+
icon-lock-open
+
+
+
icon-magnifier
+
+
+
icon-magnifier-add
+
+
+
icon-magnifier-remove
+
+
+
icon-paper-clip
+
+
+
icon-paper-plane
+
+
+
icon-power
+
+
+
icon-refresh
+
+
+
icon-reload
+
+
+
icon-settings
+
+
+
icon-star
+
+
+
icon-symbol-female
+
+
+
icon-symbol-male
+
+
+
icon-target
+
+
+
icon-credit-card
+
+
+
icon-paypal
+
+
+
icon-social-tumblr
+
+
+
icon-social-twitter
+
+
+
icon-social-facebook
+
+
+
icon-social-instagram
+
+
+
icon-social-linkedin
+
+
+
icon-social-pinterest
+
+
+
icon-social-github
+
+
+
icon-social-google
+
+
+
icon-social-reddit
+
+
+
icon-social-skype
+
+
+
icon-social-dribbble
+
+
+
icon-social-behance
+
+
+
icon-social-foursqare
+
+
+
icon-social-soundcloud
+
+
+
icon-social-spotify
+
+
+
icon-social-stumbleupon
+
+
+
icon-social-youtube
+
+
+
icon-social-dropbox
+
+
+
+
+
+
+
+ + + +
+
+
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/pages/samples/blank-page.html b/INCUBATE/incubate/incubate/static/pages/samples/blank-page.html new file mode 100644 index 0000000000000000000000000000000000000000..2ecfd5ea9fd8aa066882a21c4222578296034927 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/samples/blank-page.html @@ -0,0 +1,241 @@ + + + + + + + Stellar Admin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/pages/samples/error-404.html b/INCUBATE/incubate/incubate/static/pages/samples/error-404.html new file mode 100644 index 0000000000000000000000000000000000000000..6e7ab34ed3d04045cb9249c4ff252b8e3ccdc937 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/samples/error-404.html @@ -0,0 +1,64 @@ + + + + + + + Stellar Admin + + + + + + + + + + + + + + +
+
+
+
+
+
+
+

404

+
+
+

SORRY!

+

The page you’re looking for was not found.

+
+
+
+ +
+
+
+

Copyright © 2020 All rights reserved.

+
+
+
+
+
+ +
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/pages/samples/error-500.html b/INCUBATE/incubate/incubate/static/pages/samples/error-500.html new file mode 100644 index 0000000000000000000000000000000000000000..70cebb19e885ce9fb44ce8cf298550e2337b492d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/samples/error-500.html @@ -0,0 +1,64 @@ + + + + + + + Stellar Admin + + + + + + + + + + + + + + +
+
+
+
+
+
+
+

500

+
+
+

SORRY!

+

Internal server error!

+
+
+
+ +
+
+
+

Copyright © 2020 All rights reserved.

+
+
+
+
+
+ +
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/pages/samples/login.html b/INCUBATE/incubate/incubate/static/pages/samples/login.html new file mode 100644 index 0000000000000000000000000000000000000000..3094885748ebd9563ebb99d58f8551a3c7db57de --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/samples/login.html @@ -0,0 +1,69 @@ +{% load static %} + + + + + + + Login + + + + + + + + + + + + + + +
+
+
+
+
+
+ +

¡Hola! Bienvenido

+
Inicia sesión para continuar.
+
+
+ +
+
+ +
+ + +
¿No tienes una cuenta? Regístrate +
+
+
+
+
+
+ +
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/pages/samples/register.html b/INCUBATE/incubate/incubate/static/pages/samples/register.html new file mode 100644 index 0000000000000000000000000000000000000000..b4804eb1022838808b9aa162df0a1edab755e372 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/samples/register.html @@ -0,0 +1,74 @@ + + + + + + + Registro + + + + + + + + + + + + + + +
+
+
+
+
+
+ +

Regitro

+
Registrarse es fácil. Solo toma unos pocos pasos
+
+
+ +
+
+ +
+
+ +
+
+
+ +
+
+ +
¿Ya tienes una cuenta? Login +
+
+
+
+
+
+ +
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/pages/tables/basic-table.html b/INCUBATE/incubate/incubate/static/pages/tables/basic-table.html new file mode 100644 index 0000000000000000000000000000000000000000..fa785411b21408944cefb8df07ae4b47525f733d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/tables/basic-table.html @@ -0,0 +1,686 @@ + + + + + + + Stellar Admin + + + + + + + + + + + + + + +
+ + + +
+ + + +
+
+ +
+
+
+
+

Basic Table

+

Add class .table +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProfileVatNo.CreatedStatus
Jacob5327553112 May 2017
Messsy5327553215 May 2017
John5327553314 May 2017
Peter5327553416 May 2017
Dave5327553520 May 2017
+
+
+
+
+
+
+

Hoverable Table

+

Add class .table-hover +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
UserProductSaleStatus
JacobPhotoshop 28.76%
MesssyFlash 21.06%
JohnPremier 35.00%
PeterAfter effects 82.00%
Dave53275535 98.05%
+
+
+
+
+
+
+

Striped Table

+

Add class .table-striped +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
User First name Progress Amount Deadline
+ image + Herman Beck +
+
+
+
$ 77.99 May 15, 2015
+ image + Messsy Adam +
+
+
+
$245.30 July 1, 2015
+ image + John Richards +
+
+
+
$138.00 Apr 12, 2015
+ image + Peter Meggik +
+
+
+
$ 77.99 May 15, 2015
+ image + Edward +
+
+
+
$ 160.25 May 03, 2015
+ image + John Doe +
+
+
+
$ 123.21 April 05, 2015
+ image + Henry Tom +
+
+
+
$ 150.00 June 16, 2015
+
+
+
+
+
+
+

Bordered table

+

Add class .table-bordered +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
# First name Progress Amount Deadline
1 Herman Beck +
+
+
+
$ 77.99 May 15, 2015
2 Messsy Adam +
+
+
+
$245.30 July 1, 2015
3 John Richards +
+
+
+
$138.00 Apr 12, 2015
4 Peter Meggik +
+
+
+
$ 77.99 May 15, 2015
5 Edward +
+
+
+
$ 160.25 May 03, 2015
6 John Doe +
+
+
+
$ 123.21 April 05, 2015
7 Henry Tom +
+
+
+
$ 150.00 June 16, 2015
+
+
+
+
+
+
+

Inverse table

+

Add class .table-dark +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
# First name Amount Deadline
1 Herman Beck $ 77.99 May 15, 2015
2 Messsy Adam $245.30 July 1, 2015
3 John Richards $138.00 Apr 12, 2015
4 Peter Meggik $ 77.99 May 15, 2015
5 Edward $ 160.25 May 03, 2015
6 John Doe $ 123.21 April 05, 2015
7 Henry Tom $ 150.00 June 16, 2015
+
+
+
+
+
+
+

Table with contextual classes

+

Add class .table-{color} +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
# First name Product Amount Deadline
1 Herman Beck Photoshop $ 77.99 May 15, 2015
2 Messsy Adam Flash $245.30 July 1, 2015
3 John Richards Premeire $138.00 Apr 12, 2015
4 Peter Meggik After effects $ 77.99 May 15, 2015
5 Edward Illustrator $ 160.25 May 03, 2015
+
+
+
+
+
+ + + + +
+ +
+ +
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/pages/ui-features/buttons.html b/INCUBATE/incubate/incubate/static/pages/ui-features/buttons.html new file mode 100644 index 0000000000000000000000000000000000000000..12b6a3f9e836ced1ed718683c470a2daf5eff64b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/ui-features/buttons.html @@ -0,0 +1,611 @@ + + + + + + + Stellar Admin + + + + + + + + + + + + + + +
+ + + +
+ + + +
+
+ +
+
+
+
+

Single color buttons

+

Add class .btn-{color} for buttons in theme colors

+
+ + + + + + + + + +
+
+
+

Inverse buttons

+

Add class .btn-inverse-{color} for inverse buttons

+
+ + + + + + + + + +
+
+
+

Rounded buttons

+

Add class .btn-rounded

+
+ + + + + + + + + +
+
+
+

Outlined buttons

+

Add class .btn-outline-{color} for outline buttons

+
+ + + + + + + + + +
+
+
+

Normal buttons

+

Use any of the available button classes to quickly create a styled button.

+
+ + + + + + + + + +
+
+
+
+
+
+
+
+
+

Icon Buttons

+

Add class .btn-icon for buttons with only icons

+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+ + + + + +
+
+
+

Button Size

+

Use class .btn-{size}

+
+ + + +
+
+ + + +
+
+
+
+
+
+
+
+
+

Block buttons

+

Add class .btn-block

+
+ + + + +
+
+
+
+
+
+
+
+
+

Button groups

+

Wrap a series of buttons with .btn in .btn-group

+
+
+ + + +
+
+ + + +
+
+
+
+ + + +
+
+ + + +
+
+
+
+ + + +
+
+ +
+ + +
+ +
+
+ + + +
+
+
+
+ + + +
+
+
+
+

Button with text and icon

+

Wrap icon and text inside .btn-icon-text and use .btn-icon-prepend or .btn-icon-append for icon tags

+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+
+
+
+
+
+
+

Social Icon Buttons

+

Add class .btn-social-icon

+
+ + + + + + +
+
+ + + + + + +
+
+ + + + + + +
+
+
+
+
+
+
+

Social button with text

+

Add class .btn-social-icon-text

+
+ + + + + + +
+
+
+
+
+
+ + + + +
+ +
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/pages/ui-features/typography.html b/INCUBATE/incubate/incubate/static/pages/ui-features/typography.html new file mode 100644 index 0000000000000000000000000000000000000000..9e9a4b5578c76a7daac93ca0e7107a7a9a63c143 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/pages/ui-features/typography.html @@ -0,0 +1,597 @@ + + + + + + + Stellar Admin + + + + + + + + + + + + + + +
+ + + +
+ + + +
+
+ +
+
+
+
+

Headings

+

Add tags <h1> to <h6> or class .h1 to .h6 +

+
+

h1. Heading

+

h2. Heading

+

h3. Heading

+

h4. Heading

+
h5. Heading
+
h6. Heading
+
+
+
+
+
+
+
+

Headings with secondary text

+

Add faded secondary text to headings

+
+

h1. Heading Secondary text +

+

h2. Heading Secondary text +

+

h3. Heading Secondary text +

+

h4. Heading Secondary text +

+
h5. Heading Secondary text +
+
h6. Heading Secondary text +
+
+
+
+
+
+
+
+

Display headings

+

Add class .display1 to .display-4 +

+
+

Display 1

+

Display 2

+

Display 3

+

Display 4

+
+
+
+
+
+
+
+
+
+

Paragraph

+

Write text in <p> tag

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley not only five centuries,

+
+
+
+
+
+
+

Icon size

+

Add class .icon-lg, .icon-md, .icon-sm +

+
+
+
+ +

Icon-lg

+
+
+
+
+ +

Icon-md

+
+
+
+
+ +

Icon-sm

+
+
+
+
+
+
+
+
+
+
+
+

Blockquotes

+

Wrap content inside<blockquote class="blockquote"> +

+
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

+
+
+
+
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

+
Someone famous in Source Title
+
+
+
+
+
+
+
+

Address

+

Use <address> tag

+
+
+
+

Purple imc

+

695 lsom Ave,

+

Suite 00

+

San Francisco, CA 94107

+
+
+
+
+

E-mail

+

johndoe@examplemeail.com

+

Web Address

+

www.Purple.com

+
+
+
+
+
+

Lead

+

Use class .lead +

+

Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.

+
+
+
+
+
+
+

Text colors

+

Use class .text-primary, .text-secondary etc. for text in theme colors

+
+
+

.text-primary

+

.text-success

+

.text-danger

+

.text-warning

+

.text-info

+
+
+

.text-light

+

.text-secondary

+

.text-dark

+

.text-muted

+

.text-white

+
+
+
+
+
+
+
+
+

Top aligned media

+
+ +
+

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque.

+
+
+
+
+
+
+
+
+

Center aligned media

+
+ +
+

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque.

+
+
+
+
+
+
+
+
+

Bottom aligned media

+
+ +
+

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque.

+
+
+
+
+
+
+
+
+

Highlighted Text

+

Wrap the text in <mark> to highlight text

+

It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution

+
+
+
+
+
+
+

List Unordered

+
    +
  • Lorem ipsum dolor sit amet
  • +
  • Consectetur adipiscing elit
  • +
  • Integer molestie lorem at massa
  • +
  • Facilisis in pretium nisl aliquet
  • +
  • Nulla volutpat aliquam velit
  • +
+
+
+
+
+
+
+

Bold text

+

Use class.font-weight-bold +

+

It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution

+
+
+
+
+
+
+

List Ordered

+
    +
  1. Lorem ipsum dolor sit amet
  2. +
  3. Consectetur adipiscing elit
  4. +
  5. Integer molestie lorem at massa
  6. +
  7. Facilisis in pretium nisl aliquet
  8. +
  9. Nulla volutpat aliquam velit>
  10. +
+
+
+
+
+
+
+

Underline

+

Wrap in <u> tag for underline

+

+ lorem ipsum dolor sit amet, consectetur mod tempor incididunt ut labore et dolore magna aliqua. +

+
+
+

Lowercase

+

Use class .text-lowercase +

+

lorem ipsum dolor sit amet, consectetur mod tempor incididunt ut labore et dolore magna aliqua.

+
+
+

Uppercase

+

Use class .text-uppercase +

+

lorem ipsum dolor sit amet, consectetur mod tempor incididunt ut labore et dolore magna aliqua.

+
+
+
+
+
+
+

Mute

+

Use class .text-muted +

+

lorem ipsum dolor sit amet, consectetur mod tempor incididunt ut labore et dolore magna aliqua.

+
+
+

Strike

+

Wrap content in <del> tag

+

+ lorem ipsum dolor sit amet, consectetur mod tempor incididunt ut labore et dolore magna aliqua. +

+
+
+

Capitalized

+

Use class .text-capitalize +

+

lorem ipsum dolor sit amet, consectetur mod tempor incididunt ut labore et dolore magna aliqua.

+
+
+
+
+
+
+

List with icon

+

Add class .list-ticked to <ul>

+
    +
  • Lorem ipsum dolor sit amet
  • +
  • Consectetur adipiscing elit
  • +
  • Integer molestie lorem at massa
  • +
  • Facilisis in pretium nisl aliquet
  • +
  • Nulla volutpat aliquam velit>
  • +
+
+
+
+
+
+
+

List with icon

+

Add class .list-arrow to <ul>

+
    +
  • Lorem ipsum dolor sit amet
  • +
  • Consectetur adipiscing elit
  • +
  • Integer molestie lorem at massa
  • +
  • Facilisis in pretium nisl aliquet
  • +
  • Nulla volutpat aliquam velit>
  • +
+
+
+
+
+
+
+

List with icon

+

Add class .list-star to <ul>

+
    +
  • Lorem ipsum dolor sit amet
  • +
  • Consectetur adipiscing elit
  • +
  • Integer molestie lorem at massa
  • +
  • Facilisis in pretium nisl aliquet
  • +
  • Nulla volutpat aliquam velit>
  • +
+
+
+
+
+
+ + + + +
+ +
+ +
+ + + + + + + + + + + + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/partials/_footer.html b/INCUBATE/incubate/incubate/static/partials/_footer.html new file mode 100644 index 0000000000000000000000000000000000000000..6d356fc877f114a02e1e707495c37163d2b1e15f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/partials/_footer.html @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/partials/_navbar.html b/INCUBATE/incubate/incubate/static/partials/_navbar.html new file mode 100644 index 0000000000000000000000000000000000000000..586c14306883bf25e95adea4cbffaa039d7ffc90 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/partials/_navbar.html @@ -0,0 +1,96 @@ + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/partials/_sidebar.html b/INCUBATE/incubate/incubate/static/partials/_sidebar.html new file mode 100644 index 0000000000000000000000000000000000000000..24e1309045df8beca99825a896e91b80c2e37dfe --- /dev/null +++ b/INCUBATE/incubate/incubate/static/partials/_sidebar.html @@ -0,0 +1,87 @@ + \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/screenshot.jpg b/INCUBATE/incubate/incubate/static/screenshot.jpg new file mode 100644 index 0000000000000000000000000000000000000000..de4be6923cbc9bce5d34a0a8d5ab4e95e97bd25e Binary files /dev/null and b/INCUBATE/incubate/incubate/static/screenshot.jpg differ diff --git a/INCUBATE/incubate/incubate/static/scss/_dashboard.scss b/INCUBATE/incubate/incubate/static/scss/_dashboard.scss new file mode 100644 index 0000000000000000000000000000000000000000..bf97dfa6abe9e261ff2706b415a019ba42ce1dcc --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/_dashboard.scss @@ -0,0 +1,445 @@ + +.purchace-popup { + .close { + color: inherit; + opacity: 1; + + @include media-breakpoint-down(md) { + position: absolute; + top: 7px; + right: 10px; + } + } +} + +.quick-action-toolbar { + .card { + .card-header { + color: $white; + padding: 12px 30px; + background-image: linear-gradient(to left, #fad961, #f76b1c); + border: 0; + border-radius: 0; + h5 { + font-weight: 600; + font-size: 18px; + } + + p { + color: inherit; + } + i { + margin-left: 15px; + align-self: center; + } + } + + .quick-action-btns { + .btn-light { + background-color: transparent; + border: none; + font-size: 14px; + color: #111111; + font-weight: 600; + display: flex; + align-items: center; + + i { + color: #626262; + margin-right: 15px; + font-size: 18px; + .rtl & { + margin-left: 15px; + margin-right: 0; + } + } + } + .btn-wrapper{ + border-right: 1px solid $border-color; + display: flex; + justify-content: center; + + button { + display: flex; + align-items: center; + } + + &:first-child { + @media screen and (max-width:767px ) { + border-bottom: 1px solid $border-color; + } + @media screen and (max-width:576px ) { + border-right: none; + } + } + + &:nth-child(2) { + @media screen and (max-width:767px ) { + border-right: none; + border-bottom: 1px solid $border-color; + } + } + + &:nth-child(3) { + @media screen and (max-width:576px ) { + border-right: none; + border-bottom: 1px solid $border-color; + } + } + + &:last-child { + border: none; + } + } + } + } +} + +.income-expense-summary-chart-text { + h5 { + font-size: 18px; + font-weight: 600; + } + h3 { + font-size: 24px; + font-weight: bold; + } +} + +.income-expense-summary-chart-legend { + display: flex; + align-items: center; + + span { + display: inline-block; + width: 14px; + height: 14px; + border: 2px solid transparent; + margin-right: 10px; + + .rtl & { + margin-left: 10px; + margin-right: 0; + } + } +} + +#income-expense-summary-chart-daterange { + width: 280px; + border-radius: 4px; + border: solid 1px $border-color; + background-color: $white; + color: #969696; + + .input-group-text { + background-color: transparent; + color: inherit; + padding: 10px; + border: 0; + } + .form-control { + border: 0; + font-size: 12px; + font-weight: 600; + color: inherit; + padding: 0; + } +} + +.income-expense-summary-chart { + direction: ltr; //Fix for labels displacement in rtl + .ct-chart { + .ct-series { + .ct-line { + stroke-width: 3px; + stroke-dasharray: 0; + } + + &-a { + .ct-line { + stroke: #6469df; + } + .ct-area { + fill: #6469df; + } + } + + &-b { + .ct-line { + stroke: #33c92d; + } + .ct-area { + fill: #33c92d; + } + } + } + + .ct-labels { + .ct-label { + &.ct-horizontal { + @media screen and (max-width: 480px) { + transform: rotate(-90deg)translateY(-50%); + } + } + } + } + } +} + +.ct-chart{ + .ct-line { + stroke-dasharray: 0; + } +} + +.report-summary-header { + border-bottom: solid 1px $border-color; +} + +.report-inner-cards-wrapper { + padding-top: 25px; + + .report-inner-card { + display: flex; + border-right: solid 1px $border-color; + padding: 0 40px; + + .rtl & { + border-right: none; + border-left: solid 1px $border-color; + } + + @media screen and (max-width: 1199px) { + padding-top: 12.5px; + padding-bottom: 12.5px; + } + + &:first-child { + padding-left: 15px; + + .rtl & { + padding-right: 15px; + padding-left: 40px; + } + + @media screen and (max-width: 1199px) { + border-bottom: solid 1px $border-color; + } + + @media screen and (max-width:767px) { + border-right: none; + padding-right: 12.5px; + + .rtl & { + border-left: none; + padding-left: 12.5px; + } + } + } + + &:nth-child(2) { + + @media screen and (max-width: 1199px) { + padding-right: 12.5px; + border-bottom: solid 1px $border-color; + border-right: none; + + .rtl & { + border-left: none; + padding-left: 12.5px; + padding-right: 40px; + } + } + + @media screen and (max-width:767px) { + padding-left: 12.5px; + + .rtl &{ + padding-right: 12.5px; + } + } + + } + + &:nth-child(3) { + @media screen and (max-width: 1199px) { + padding-left: 12.5px; + + .rtl & { + padding-left: 40px; + padding-right: 12.5px; + } + } + @media screen and (max-width:767px) { + border-right: none; + padding-right: 12.5px; + border-bottom: solid 1px $border-color; + + .rtl & { + border-left: none; + padding-left: 12.5px; + } + } + } + + &:last-child { + border-right: 0; + padding-right: 15px; + + .rtl & { + border-left: none; + padding-left: 15px; + padding-right: 40px; + } + + @media screen and (max-width:767px) { + border-right: none; + padding-left: 12.5px; + + .rtl & { + border-left: none; + padding-right: 12.5px; + } + } + } + + .inner-card-text { + display: flex; + flex-direction: column; + justify-content: flex-end; + } + + .report-title { + font-size: 14px; + font-weight: 600; + color: #111111; + } + + h4 { + font-weight: bold; + } + + .report-count { + font-size: 14px; + color: #8e32e9; + } + + .inner-card-icon { + width: 62px; + height: 62px; + font-size: 25px; + color: $white; + display: flex; + align-items: center; + justify-content: center; + margin-left: auto; + + .rtl & { + margin-left: 0; + margin-right: auto; + } + } + } +} + +.aligner-wrapper { + position: relative; + .wrapper { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + } +} + +.square-indicator { + display: inline-block; + width: 13px; + height: 13px; + + & + p { + font-size: 12px; + font-weight: 600; + color: #a7afb7; + } +} + +#performance-indicator-chart { + .ct-series { + + &.ct-series-a { + line { + stroke: theme-color(danger); + } + } + + &.ct-series-b { + line { + stroke: theme-color(info); + } + } + + &.ct-series-c { + line { + stroke: theme-color(primary); + } + } + + .ct-bar { + stroke-width: 8px; + stroke-linecap: round; + + @media screen and (max-width: 480px) { + stroke-width: 4px; + } + } + + } + + .ct-labels { + .ct-label { + &.ct-horizontal { + @media screen and (max-width: 480px) { + transform: rotate(-90deg)translateY(20%); + } + } + } + } +} + +.performane-indicator-card { + .data-time-range { + color: #a7afb7; + font-size: 12px; + font-weight: 600; + margin-left: 20px; + + &.active { + color: #111111; + } + } +} +.table { + td { + img { + &.gateway-icon { + width: 20px; + height: 20px; + min-width: 20px; + } + } + } +} + +.pagination { + .page-item { + .page-link { + font-size: 12px; + font-weight: 600; + + @media screen and (max-width:576px) { + padding: 0.25rem 0.5rem; + } + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/_navbar.scss b/INCUBATE/incubate/incubate/static/scss/_navbar.scss new file mode 100644 index 0000000000000000000000000000000000000000..96fa60ab1943aa527b5a44d8dbad1772c2290fbd --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/_navbar.scss @@ -0,0 +1,378 @@ +/* Navbar */ + +.navbar { + font-family: $type1; + font-weight: $font-weight-light;; + background: $navbar-bg; + transition:background $action-transition-duration $action-transition-timing-function; + -webkit-transition:background $action-transition-duration $action-transition-timing-function; + -moz-transition:background $action-transition-duration $action-transition-timing-function; + -ms-transition:background $action-transition-duration $action-transition-timing-function; + + .navbar-brand { + width: 110px; + } + .navbar-brand-wrapper { + transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function; + -webkit-transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function; + -moz-transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function; + -ms-transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function; + background: $sidebar-dark-bg; + width: $sidebar-width-lg; + height: $navbar-height; + padding:0 $sidebar-menu-padding-x; + + @media (max-width: 991px) { + width: 55px; + padding-left: 15px; + padding-right: 15px; + } + + .navbar-brand { + color: lighten(color(gray-dark), 20%); + font-size: 1.5rem; + line-height: 48px; + margin-right: 0; + padding: .25rem 0; + + &:active, + &:focus, + &:hover { + color: lighten(color(gray-dark), 10%); + } + + img { + width: calc(#{$sidebar-width-lg} - 120px ); + max-width: 100%; + height: 28px; + margin: auto; + vertical-align: middle; + } + &.brand-logo-mini { + display: none; + @media screen and (max-width: 991px) { + display: flex; + } + img { + width: calc(#{$sidebar-width-icon} - 35px ); + max-width: 100%; + height: 28px; + margin: auto; + display: inline; + } + } + } + .navbar-toggler { + color: $sidebar-dark-menu-icon-color; + padding: 0; + margin-left: auto; + @media screen and (max-width: 991px) { + display:none; + } + .sidebar-icon-only & { + margin-right: auto; + margin-left: auto; + } + } + } + + .navbar-menu-wrapper { + transition: width $action-transition-duration $action-transition-timing-function; + -webkit-transition: width $action-transition-duration $action-transition-timing-function; + -moz-transition: width $action-transition-duration $action-transition-timing-function; + -ms-transition: width $action-transition-duration $action-transition-timing-function; + color: $navbar-menu-color; + padding-left: 24px; + padding-right: 24px; + width: calc(100% - #{$sidebar-width-lg}); + height: $navbar-height; + box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.11); + @media (max-width: 991px) { + width: auto; + padding-left: 15px; + padding-right: 15px; + } + + .navbar-toggler { + border: 0; + color: inherit; + height: $navbar-height; + @include border-radius(0px); + padding-left: 5px; + padding-right: 20px; + &:not(.navbar-toggler-right) { + font-size: 1.5rem; + @media (max-width: 991px) { + display: none; + } + } + &.navbar-toggler-right{ + @media (max-width:991px){ + padding-left: 15px; + padding-right: 11px; + border-right: none; + } + } + } + .search-form { + position: relative; + margin-right: 15px; + + i { + font-size: 20px; + position: absolute; + left: 0; + top: 50%; + transform: translateY(-50%); + color: $navbar-menu-icon-color; + } + + input{ + background-color: transparent; + border: none; + cursor: pointer; + width: 0; + height: 35px; + padding: 0 0 0 20px; + position: relative; + transition: width 400ms ease, background 400ms ease; + + &:focus{ + background-color: transparent; + border-bottom: 1px solid $navbar-menu-icon-color; + border-radius: 0; + padding-left: 30px; + background-position: 5px 7px; + cursor: text; + outline: 0; + width: 140px; + } + } + } + + .count-indicator { + position: relative; + + .count-symbol, + .count-number { + position: absolute; + border-radius: 100%; + border: 2px solid $white; + } + .count-symbol { + top: 17px; + right: -3px; + width: 10px; + height: 10px; + } + .count-number { + min-width: 14px; + height: 14px; + font-size: .5rem; + color: $white; + bottom: 16px; + right: -5px; + line-height: 1; + text-align: center; + } + &:after { + display: none; + } + } + .navbar-nav { + flex-direction: row; + align-items: center; + .nav-item { + .nav-link { + color: inherit; + font-size: $navbar-font-size; + margin-left: 15px; + margin-right: 15px; + height: $navbar-height / 2; + @include display-flex; + @include align-items(center); + @media (max-width: 767px) { + margin-left: .8rem; + margin-right: .8rem; + } + i { + font-size: $navbar-icon-font-size; + color: $navbar-menu-icon-color; + } + } + &.dropdown { + height: $navbar-height; + display: flex; + align-items: center; + .dropdown-toggle { + position: relative; + padding: 0 20px; + + &:after { + position: absolute; + top: 50%; + right: 0; + transform: translateY(-50%); + font-size: 14px; + color: grey; + } + } + .dropdown-menu { + @extend .dropdownAnimation; + border: none; + @include border-radius(5px); + -webkit-box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2); + -moz-box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2); + box-shadow: 0px 3px 21px 0px rgba(0, 0, 0, 0.2); + &.navbar-dropdown { + position: absolute; + font-size: 0.9rem; + margin-top: 0; + padding: 0; + + .dropdown-item { + @extend .d-flex; + @extend .align-items-center; + margin-bottom: 0; + padding: 11px 13px; + cursor: pointer; + + i { + font-size: 17px; + } + + .ellipsis { + max-width: 200px; + overflow: hidden; + text-overflow: ellipsis; + } + } + + .dropdown-divider { + margin: 0; + } + } + } + @media (max-width: 991px) { + position: static; + .navbar-dropdown { + left: 20px; + right: 20px; + top: $navbar-height; + width: calc(100% - 40px); + } + } + } + &.user-dropdown { + position: relative; + + .dropdown-menu { + min-width: 250px; + margin-top: 9px; + + .dropdown-header { + padding: 20px; + } + + .dropdown-item { + padding: 10px 15px; + + .dropdown-item-icon { + margin-right: 15px; + } + } + } + + .dropdown-toggle { + img{ + margin-right: 14px; + } + } + } + + &.language-dropdown { + margin-left: 24px; + + .dropdown-menu { + width: 170px; + left: -15px !important; + + .dropdown-item { + padding-left: 22px; + padding-right: 12px; + + i { + margin-right: 15px; + } + } + } + + .dropdown-toggle { + margin-right: 0; + margin-left: 0; + border-left: 1px solid #ecf0f4; + padding-left: 44px; + } + + i { + font-size: 14px; + } + + } + + & .message-dropdown.count-indicator { + .count{ + transform: translate(-50%); + position: absolute; + width: 10px; + height: 10px; + border-radius: 50%; + background-color: theme-color(danger); + font-size: 6px; + color: $white; + text-align: center; + top: 4px; + left: 50%; + } + } + } + &.navbar-nav-right { + @media (min-width: 992px) { + margin-left: auto; + } + } + } + } +} +@media (max-width:991px) { + .navbar { + flex-direction: row; + .navbar-brand-wrapper { + width: 75px; + .navbar-brand { + &.brand-logo { + display: none; + } + &.brand-logo-mini { + display: inline-block; + } + } + } + } + + .navbar-collapse { + display: flex; + margin-top: 0.5rem; + } +} + +@media (max-width:480px) { + .navbar { + .navbar-brand-wrapper { + width: 55px; + .brand-logo-mini{ + padding-top: 0px; + } + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/_sidebar.scss b/INCUBATE/incubate/incubate/static/scss/_sidebar.scss new file mode 100644 index 0000000000000000000000000000000000000000..9b503fca3d792f183d619aeb13a06b946e1ed065 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/_sidebar.scss @@ -0,0 +1,309 @@ +/* Sidebar */ + +.sidebar { + min-height: calc(100vh - #{$navbar-height}); + background: $sidebar-dark-bg; + font-family: $type1; + padding: 0; + width: $sidebar-width-lg; + z-index: 11; + transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function; + -webkit-transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function; + -moz-transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function; + -ms-transition: width $action-transition-duration $action-transition-timing-function, background $action-transition-duration $action-transition-timing-function; + + .nav { + overflow: hidden; + flex-wrap: nowrap; + flex-direction: column; + margin-bottom: 60px; + + .nav-item { + padding:0 $sidebar-menu-padding-x; + @include transition-duration(0.25s); + transition-property: background; + -webkit-transition-property: background; + .collapse { + z-index: 999; + } + + .nav-link { + @include display-flex; + @include align-items(center); + white-space: nowrap; + padding:$sidebar-menu-padding-y 0 $sidebar-menu-padding-y 0; + color: $sidebar-dark-menu-color; + @include transition-duration(0.45s); + transition-property: color; + -webkit-transition-property: color; + + :not(.sub-menu) & { + border-top: 1px solid $sidebar-nav-link-border-color; + } + + i { + color: inherit; + + &.menu-icon { + font-size: $sidebar-icon-font-size; + line-height: 1; + margin-left: auto; + color: $sidebar-dark-menu-icon-color; + &:before { + vertical-align: middle; + } + } + } + + .menu-title { + color: inherit; + display: inline-block; + font-size: $sidebar-menu-font-size; + line-height: 1; + vertical-align: middle; + } + + .badge { + margin-right: auto; + margin-left: 1rem; + } + + &[aria-expanded="true"]{ + .menu-arrow{ + &:before{ + content: "\f140"; + } + } + } + } + + &.active:not(.navbar-brand-mini-wrapper) { + background: $sidebar-dark-menu-active-bg; + > .nav-link { + .menu-title { + color: $sidebar-dark-menu-active-color; + font-family: $type1; + font-weight: $font-weight-medium;; + } + i { + color: theme-color(success); + } + } + } + &:not(.nav-category):hover{ + background: $sidebar-dark-menu-hover-bg; + } + &.nav-profile { + max-width: 270px; + margin-top: 10px; + margin-bottom: 10px; + + .nav-link { + display: flex; + border-top: none; + padding: 10px 0; + + .profile-image { + margin-right: 15px; + position: relative; + + .rtl & { + margin-right: 0; + margin-left: 15px; + } + } + + .dot-indicator { + position: absolute; + top: 50%; + right: 0px; + transform: translate(50%,-50%); + width: 7px; + height: 7px; + border-radius: 50%; + + .rtl & { + left: 0; + right: auto; + transform: translate(-50%,-50%); + } + } + + .profile-name { + margin-bottom: 5px; + font-weight: 500; + font-size: 15px; + } + + .designation { + margin-bottom: 0; + font-weight: 400; + color: $text-muted; + font-size: 12px; + } + + .icon-container{ + font-size: 16px; + position: relative; + color: $sidebar-dark-menu-icon-color; + margin-left: auto; + align-self: flex-start; + + .rtl & { + margin-left: 0; + margin-right: auto; + } + + .sidebar-mini & { + margin-right: auto; + } + + .dot-indicator{ + top: 0; + transform: none; + color: $sidebar-dark-menu-icon-color; + } + } + } + } + + &.nav-category { + color: $sidebar-nav-category-color; + font-size: 13px; + font-weight: 700; + text-transform: uppercase; + + .nav-link { + border: none; + } + + & ~ .nav-category { + + .nav-link{ + border-top: 1px solid $sidebar-nav-link-border-color; + } + } + + & + .nav-item { + & > .nav-link { + border-top: 1px solid $sidebar-nav-link-border-color; + + } + } + + .nav-link{ + color: inherit; + padding: $sidebar-nav-category-padding; + + .sidebar-dark & { + color: inherit; + } + } + } + &.pro-upgrade { + + .nav-link { + padding-top: 2.25rem; + .btn-upgrade { + background-image: linear-gradient(to left, #a25cff, #d78aff); + background-color: #a25cff; + color: $white; + } + } + &:hover { + background-color: transparent !important; + + .sidebar-dark & { + background-color: transparent !important; + } + } + } + + &.navbar-brand-mini-wrapper { + display: none; + + .nav-link { + width: 100%; + + .sidebar-icon-only & { + margin: 0; + } + } + + .sidebar-icon-only & { + display: block; + + } + } + } + + &:not(.sub-menu) { + > .nav-item { + &:hover { + &:not(.nav-category):not(.nav-profile) { + > .nav-link { + color: $sidebar-dark-menu-hover-color; + } + } + } + } + } + &.sub-menu { + margin-bottom: 20px; + margin-top:0; + list-style: none; + + .nav-item { + padding: 0; + .nav-link { + color: $sidebar-dark-submenu-color; + padding: $sidebar-submenu-item-padding; + position: relative; + font-size: $sidebar-submenu-font-size; + line-height: 1; + height: auto; + border-top: 0; + &:before { + content: "\e606"; + font-family: "simple-line-icons"; + display: block; + position: absolute; + left:0px; + top:50%; + @include transform(translateY(-50%)); + color: lighten($sidebar-dark-submenu-color, 10%); + font-size: .75rem; + } + &.active { + color: $sidebar-dark-menu-active-color; + background: transparent; + } + &:hover { + color: $sidebar-dark-submenu-hover-color; + } + } + &:hover { + background: transparent; + } + } + } + } +} + +/* style for off-canvas menu*/ +@media screen and (max-width: 991px) { + .sidebar-offcanvas { + position: fixed; + max-height: calc(100vh - #{$navbar-height}); + top: $navbar-height; + bottom: 0; + overflow: auto; + right: -$sidebar-width-lg; + -webkit-transition: all 0.25s ease-out; + -o-transition: all 0.25s ease-out; + transition: all 0.25s ease-out; + &.active { + right: 0; + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/_variables.scss b/INCUBATE/incubate/incubate/static/scss/_variables.scss new file mode 100644 index 0000000000000000000000000000000000000000..fb9bb18a889c4c706d83ccc14ec514d52675c708 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/_variables.scss @@ -0,0 +1,60 @@ + +////////// SIDEBAR //////// +$sidebar-width-lg: 240px; +$sidebar-width-mini: 185px; +$sidebar-width-icon: 70px; + +$sidebar-light-bg: $white; +$sidebar-light-menu-color: #3e4b5b; +$sidebar-light-submenu-color: #888; +$sidebar-light-menu-active-bg: $white; +$sidebar-light-menu-active-color: theme-color(success); +$sidebar-light-menu-hover-bg: darken($sidebar-light-bg, 1%); +$sidebar-light-menu-hover-color: darken($sidebar-light-menu-color, 10%); +$sidebar-light-submenu-hover-color: darken($sidebar-light-submenu-color, 20%); +$sidebar-light-menu-icon-color: #626262; +$sidebar-light-menu-arrow-color: #626262; +$sidebar-light-menu-border-color: #f2edf3; + +$sidebar-dark-bg: #181824; +$sidebar-dark-menu-color: $white; +$sidebar-dark-menu-active-bg: #282828; +$sidebar-dark-menu-active-color: darken($white, 30%); +$sidebar-dark-menu-hover-bg: lighten($sidebar-dark-bg, 10%); +$sidebar-dark-menu-hover-color: color(white); +$sidebar-dark-submenu-color: $sidebar-dark-menu-color; +$sidebar-dark-submenu-hover-bg: initial; +$sidebar-dark-submenu-hover-color: darken($sidebar-dark-submenu-color, 30%); +$sidebar-dark-menu-icon-color: #626262; +$sidebar-dark-menu-arrow-color: #626262; + +$sidebar-nav-category-color: theme-color(success); +$sidebar-nav-category-padding: 1rem 0 1.125rem; + +$sidebar-nav-link-border-color: rgba($white, 0.11); + +$sidebar-menu-font-size: $default-font-size; +$sidebar-menu-padding-y: 0.625rem; +$sidebar-menu-padding-x: 1.75rem; + +$sidebar-submenu-font-size: .8125rem; +$sidebar-submenu-item-padding: .75rem 2rem .75rem 2rem; + +$sidebar-icon-font-size: 1.125rem; +$sidebar-arrow-font-size: .625rem; + +$sidebar-profile-bg: transparent; +$sidebar-profile-padding: .75rem 1.625rem .75rem 1.188rem; + +$sidebar-mini-menu-padding: .8125rem 1rem .8125rem 1rem; + +$sidebar-icon-only-menu-padding: .5rem 1.625rem .5rem 1.188rem; +$sidebar-icon-only-submenu-padding: 0 0 0 1.5rem; + +$rtl-sidebar-submenu-padding: 0 1.5rem 0 0; + +$icon-only-collapse-width: 190px; +$icon-only-menu-bg-light: $sidebar-light-menu-hover-bg; +$icon-only-menu-bg-dark: $sidebar-dark-menu-hover-bg; + +///////// SIDEBAR //////// \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/components/_settings-panel.scss b/INCUBATE/incubate/incubate/static/scss/components/_settings-panel.scss new file mode 100644 index 0000000000000000000000000000000000000000..527778f177160c6d5c1f0d301036ab4e09ec4390 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/components/_settings-panel.scss @@ -0,0 +1,296 @@ +/* Settings Panel */ + +.settings-panel{ + display: block; + position: fixed; + top:0; + right: -$settings-panel-width; + bottom: 0; + width: $settings-panel-width; + height: 100vh; + min-height: 100%; + background: $white; + @include transition-duration($action-transition-duration); + @include transition-timing-function($action-transition-timing-function); + @include transition-property(right, box-shadow); + z-index: 9999; + .nav-tabs{ + @include display-flex; + @include justify-content(center); + width: auto; + margin:0; + border-bottom: none; + padding: 0; + .nav-item{ + border: none; + .nav-link{ + text-align: center; + border: none; + background: transparent; + color: rgba($white, 0.5); + @include transition-duration(0.4s); + transition-property: color; + -webkit-transition-property: color; + @include justify-content(center); + &.active{ + background: transparent; + color: $white; + } + } + } + } + .tab-content{ + border: none; + padding: 20px 0 0px 0; + .tab-pane{ + &.scroll-wrapper{ + position: relative; + max-height: 100vh; + height: 100%; + padding-bottom: 100px; + } + } + } + .settings-heading{ + padding: 16px 0 13px 35px; + font-size: $default-font-size; + font-family: $type1; +font-weight: $font-weight-semibold;; + line-height: 1; + color: rgba(0, 0, 0, 0.9); + opacity: 0.9; + margin-bottom: 0; + border-top: 1px solid $border-color; + border-bottom: 1px solid $border-color; + .rtl &{ + padding: 16px 35px 13px 0; + } + } + small.settings-heading{ + .rtl &{ + padding: 16px 0 13px 12px; + } + } + .sidebar-bg-options{ + padding: 13px 35px; + @include display-flex; + @include align-items(center); + font-size: $default-font-size; + line-height: 1; + color: lighten($black, 35%); + background: $white; + @include transition-duration($action-transition-duration); + @include transition-property(background); + &.selected{ + background: color(gray-lightest); + } + .rtl & { + .rounded-circle{ + @extend .mr-0; + @extend .ml-3; + } + } + } + .color-tiles{ + @include display-flex; + @include justify-content(space-between); + @include flex-wrap(wrap); + margin: 0px 35px 10px 35px; + padding-top: 15px; + .tiles{ + @extend .img-ss; + @extend .rounded-circle; + margin: 10px 18px; + @include display-flex; + @include align-items(center); + @include justify-content(center); + &:before{ + content: ""; + width: 0px; + height: 0px; + opacity: 0; + background: rgba($white , 0.5); + @include border-radius(100%); + border: 0px solid rgba($white , 0.4); + @include transition-duration($action-transition-duration); + @include transition-timing-function($action-transition-timing-function); + } + &.selected{ + &:before{ + width: 10px; + height: 10px; + opacity: 1; + border-width: $border-width; + } + } + &.primary{ + @extend .bg-primary; + } + &.success{ + @extend .bg-success; + } + &.warning{ + @extend .bg-warning; + } + &.danger{ + @extend .bg-danger; + } + &.pink{ + background: color(pink); + } + &.info{ + @extend .bg-info; + } + &.dark{ + @extend .bg-dark; + } + &.light{ + border:1px solid lighten(color(gray),60%); + @extend .bg-light; + } + } + } + .chat-list{ + padding-left: 0; + .list{ + padding: 0.4rem 0.8rem; + @include display-flex; + @include justify-content(space-between); + border-bottom: $border-width solid $border-color; + &:last-child{ + border-bottom: none; + } + .profile{ + position: relative; + margin-right: 1rem; + img{ + width:2.50rem; + height: 2.50rem; + @include border-radius(100%); + } + span{ + height: 0.75rem; + width: 0.75rem; + position: absolute; + bottom: 0.34rem; + right: 0; + border: 0.13rem solid $white; + @include border-radius(100%); + &.online{ + background: theme-color(success); + } + &.offline{ + background: theme-color(warning); + } + } + } + .info{ + margin-right: auto; + p{ + display: block; + margin-bottom: 0; + @extend %ellipsor; + &:last-child{ + opacity: 0.5; + font-size: 0.8rem; + } + } + } + &.active{ + background: theme-color(light); + } + } + } + &.open{ + right:0; + -webkit-box-shadow: 7px 0px 80px -9px rgba(0,0,0,0.15); + -moz-box-shadow: 7px 0px 80px -9px rgba(0,0,0,0.15); + box-shadow: 7px 0px 80px -9px rgba(0,0,0,0.15); + } + .settings-close{ + position: absolute; + top:8px; + right: 10px; + color: $white; + background: transparent; + @include border-radius(4px); + padding: 0 3px; + cursor: pointer; + @include transition-duration(0.2s); + z-index: 999; + &:hover{ + background: rgba($white,0.3); + } + .rtl & { + right: unset; + left: 10px; + } + } + .events{ + p{ + font-family: $type1; + } + } + .rtl & { + right: unset; + left: -$settings-panel-width; + @include transition-property(left); + .chat-list{ + padding-right: 0; + .list{ + .profile{ + margin-right: 0; + margin-left: 1rem; + } + .info{ + margin-right: 0; + margin-left: auto; + .badge { + margin-right: 10px; + } + } + } + } + &.open{ + left: 0; + right: unset; + } + } +} + +#theme-settings{ + .settings-close{ + top: 12px; + @extend .bg-primary; + } +} + +#settings-trigger{ + position: fixed; + bottom: 40px; + right: 30px; + height: 45px; + width: 45px; + background: theme-color(primary); + z-index: 99; + -webkit-box-shadow: 0px 0px 31px 6px rgba(0,0,0,0.17); + -moz-box-shadow: 0px 0px 31px 6px rgba(0,0,0,0.17); + box-shadow: 0px 0px 31px 6px rgba(0,0,0,0.17); + @include display-flex; + @include align-items(center); + @include justify-content(center); + @include border-radius(100%); + @extend .fadeInUp; + @include animation-duration(1s); + @include animation-delay(1s); + @include animation-fill-mode(both); + i{ + color: $white; + font-size: 1rem; + line-height: 1rem; + @extend .infinite-spin; + } + @media (max-width: 991px){ + display: none; + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/light/_variables.scss b/INCUBATE/incubate/incubate/static/scss/light/_variables.scss new file mode 100644 index 0000000000000000000000000000000000000000..ff12bf9c631a43dd3724f85de936d8a6a02c0802 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/light/_variables.scss @@ -0,0 +1,297 @@ +////////// COLOR SYSTEM ////////// + +$blue: #5E50F9; +$indigo: #6610f2; +$purple: #6a008a; +$pink: #E91E63; +$red: #f96868; +$orange: #f2a654; +$yellow: #f6e84e; +$green: #46c35f; +$teal: #58d8a3; +$cyan: #57c7d4; +$black: #000; +$white: #ffffff; +$white-smoke: #f2f7f8; +$violet: #41478a; +$darkslategray : #2e383e; +$dodger-blue : #3498db; + + +$colors: (blue: $blue, +indigo: $indigo, +purple: $purple, +pink: $pink, +red: $red, +orange: $orange, +yellow: $yellow, +green: $green, +teal: $teal, +cyan: $cyan, +white: $white, +gray: #434a54, +gray-light: #aab2bd, +gray-lighter: #e8eff4, +gray-lightest: #e6e9ed, +gray-dark: #0f1531, +black: #000000); + + +$theme-colors: (primary: #1bdbe0, +secondary: #d8d8d8, +success: #38ce3c, +info: #8e32e9, +warning: #ffde73, +danger: #ff4d6b, +light: #f8f9fa, +dark: #3e4b5b); + + +////////// COLOR SYSTEM ////////// + +////////// COLOR VARIABLES ////////// +$content-bg: #ecf0f4; +$footer-bg: $content-bg; +$footer-color: color(dark); +$border-color: #e8ecf1; +////////// COLOR VARIABLES ////////// + +////////// SOCIAL COLORS ////////// + +$social-colors: (twitter: #2caae1, +facebook: #3b579d, +google: #dc4a38, +linkedin: #0177b5, +pinterest: #cc2127, +youtube: #e52d27, +github: #333333, +behance: #1769ff, +dribbble: #ea4c89, +reddit: #ff4500); + +////////// SOCIAL COLORS ////////// + +////////// FONTS// + +$type1: 'Open Sans', +sans-serif; + +$font-weight-light: 300; +$font-weight-regular: 400; +$font-weight-medium: 600; +$font-weight-semibold: 700; + +$default-font-size: .875rem; // 14px as base font size + +$text-muted: #9c9fa6; +$body-color: #343a40; + +////////// FONT VARIABLES ////////// + +///////// CARD //////// +$card-bg: #fff; +$card-description-color: #76838f; +$card-title-color: $body-color; +///////// CARD //////// + +//////// TABLES //////// +$table-accent-bg: $content-bg; +$table-hover-bg: $content-bg; +$table-cell-padding: .9375rem; +$table-border-color: $border-color; +$table-inverse-bg: #2a2b32; +$table-inverse-color: color(white); +//////// TABLES //////// + +////////// MODALS VARIABLES ////////// +$modal-content-bg: $content-bg; +////////// MODALS VARIABLES ////////// + +///////// NAVBAR //////// +$navbar-bg: #fff; +$navbar-height: 70px; +$navbar-menu-color: #111111; +$navbar-menu-icon-color: #626262; + +$navbar-font-size: .875rem; +$navbar-icon-font-size: 1.25rem; + +///////// NAVBAR //////// + + + +///////// BUTTONS //////// + +$button-fixed-width: 150px; +$btn-padding-y: .875rem; +$btn-padding-x: 2.5rem; +$btn-line-height: 1; + +$btn-padding-y-xs: .5rem; +$btn-padding-x-xs: .75rem; + +$btn-padding-y-sm: .50rem; +$btn-padding-x-sm: .81rem; + +$btn-padding-y-lg: 1rem; +$btn-padding-x-lg: 3rem; + +$btn-font-size: .875rem; +$btn-font-size-xs: .625rem; +$btn-font-size-sm: .875rem; +$btn-font-size-lg: .875rem; + +$btn-border-radius: .1875rem; +$btn-border-radius-xs: .1875rem; +$btn-border-radius-sm: .1875rem; +$btn-border-radius-lg: .1875rem; + +///////// BUTTONS //////// + + + +////////// TOOLTIP VARIABLES ////////// + +//default styles +$tooltip-font-size: .75rem; +$tooltip-padding-y: .4rem; +$tooltip-padding-x: .75rem; +$tooltip-border-radius: .375rem; + +////////// TOOLTIP VARIABLES ////////// + + + +///////// FORMS ///////// + +$input-bg: color(white); +$input-border-radius: 2px; +$input-placeholder-color: #c9c8c8; +$input-font-size: .8125rem; + +$input-padding-y: 0.94rem; +$input-padding-x: 1.375rem; +$input-line-height: 1; + +$input-padding-y-xs: .5rem; +$input-padding-x-xs: .75rem; + +$input-padding-y-sm: .50rem; +$input-padding-x-sm: .81rem; + +$input-padding-y-lg: .94rem; +$input-padding-x-lg: 1.94rem; + +$input-height: 2.875rem; +$input-height-sm: 2.575rem; +$input-height-lg: 3.175rem; + +///////// FORMS ///////// + +//////// DROPDOWNS /////// +$dropdown-border-color: $border-color; +$dropdown-divider-bg: $border-color; +$dropdown-link-color: $body-color; +$dropdown-header-color: $body-color; +$dropdown-menu-box-shadow: 0px 1px 15px 1px rgba(230, 234, 236, 0.35); +//////// DROPDOWNS /////// + + +////////// MEASUREMENT AND PROPERTY VARIABLES ////////// + +$boxed-container-width: 1200px; +$border-property: 1px solid $border-color; +$card-spacing-y: 25px; +$card-padding-y: 1.875rem; +$card-padding-x: 1.875rem; +$card-border-radius: 0; +$grid-gutter-width: 20px; +$action-transition-duration: 0.25s; +$action-transition-timing-function: ease; +////////// OTHER VARIABLES ////////// + + + +////////// BREAD CRUMBS VARIABLES ////////// + +// default styles +$breadcrumb-padding-y: 0.56rem; +$breadcrumb-padding-x: 1.13rem; +$breadcrumb-item-padding: .5rem; +$breadcrumb-margin-bottom: 1rem; +$breadcrumb-font-size: $default-font-size; +$breadcrumb-bg: transparent; +$breadcrumb-border-color: $border-color; +$breadcrumb-divider-color: $gray-600; +$breadcrumb-active-color: $gray-700; +$breadcrumb-divider: "/"; + +// custom styles +$breadcrumb-custom-padding-y: 0; +$breadcrumb-custom-padding-x: 0; +$breadcrumb-custom-item-padding-y: 0.56rem; +$breadcrumb-custom-item-padding-x: 10px; +$breadcrumb-custom-item-color: $black; +$breadcrumb-item-bg: #dbe3e6; +////////// BREAD CRUMBS VARIABLES ////////// + + +////////// MODALS VARIABLES ////////// +$modal-inner-padding: .9375rem; +$modal-dialog-margin: 10px; +$modal-dialog-margin-y-sm-up: 30px; +$modal-title-line-height: $line-height-base; +$modal-content-box-shadow-xs: 0 3px 9px rgba($black, .5); +$modal-content-box-shadow-sm-up: 0 5px 15px rgba($black, .5); + +$modal-backdrop-bg: $black; +$modal-backdrop-opacity: .5; + +$modal-header-border-color: $border-color; +$modal-content-border-color: $border-color; +$modal-footer-border-color: $border-color; + +$modal-header-border-width: $border-width; +$modal-content-border-width: $border-width; +$modal-footer-border-width: $border-width; + +$modal-header-padding-x: 26px; +$modal-header-padding-y: 25px; + +$modal-body-padding-x: 26px; +$modal-body-padding-y: 35px; + +$modal-footer-padding-x: 31px; +$modal-footer-padding-y: 15px; + +$modal-lg: 90%; +$modal-md: 500px; +$modal-sm: 300px; +$modal-transition: transform .4s ease; + +////////// MODALS VARIABLES ////////// + +///////// TABS VARIABLES ////////// +$nav-tabs-border-color: #ebedf2; +$nav-tabs-link-bg: #f6f8fa; +$nav-tabs-link-color: #000000; +$nav-tabs-link-hover-border-color: $nav-tabs-border-color $nav-tabs-border-color $nav-tabs-border-color; +$nav-tabs-link-active-color: $body-color; +$nav-tabs-link-active-bg: $white; +$nav-tabs-link-active-border-color: $nav-tabs-border-color $nav-tabs-border-color $nav-tabs-link-active-bg; +$nav-pills-custom-bg: #fcfcfd; +//////// TABS VARIABLES ///////// + + +///////// SETTINGS PANEL //////// +$settings-panel-width: 300px; +///////// SETTINGS PANEL //////// + + +//////// CALENDAR ////////////// +$fullcalendar-color: #a8b2b9; +//////// CALENDAR ////////////// + +//////// MISC ////////////// +$page-title-color: $body-color; +//////// MISC ////////////// \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_chartist.scss b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_chartist.scss new file mode 100644 index 0000000000000000000000000000000000000000..2e57a7bb420851b452eca4d061cd06b789aa1f95 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_chartist.scss @@ -0,0 +1,154 @@ +/* Chartist */ + +// Line Charts Starts +// Data -1 + +.ct-series-a .ct-line { + stroke: lighten($blue, 15); + stroke-width: 3px; + stroke-dasharray: 10px 20px; +} + +.ct-series-a .ct-point { + stroke: lighten($blue, 1); + stroke-width: 10px; + stroke-linecap: round; +} +// Data -2 + +.ct-series-b .ct-line { + stroke: lighten($green, 15); + stroke-width: 3px; + stroke-dasharray: 10px 20px; +} + +.ct-series-b .ct-point { + stroke: lighten($green, 1); + stroke-width: 10px; + stroke-linecap: round; +} +// Data -3 + +.ct-series-c .ct-line { + stroke: lighten($orange, 15); + stroke-width: 3px; + stroke-dasharray: 10px 20px; +} + +.ct-series-c .ct-point { + stroke: lighten($orange, 1); + stroke-width: 10px; + stroke-linecap: round; +} +// Line Charts Ends +// Bar Charts Starts +// Data -1 + +.ct-series-a .ct-bar { + stroke: lighten($blue, 15); + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; +} +// Data -2 + +.ct-series-b .ct-bar { + stroke: lighten($green, 15); + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; +} +// Data -3 + +.ct-series-c .ct-bar { + stroke: lighten($orange, 15); + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; +} +// Data -4 + +.ct-series-d .ct-bar { + stroke: lighten($red, 15); + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; +} +// Bar Charts Ends +// Pie Chart Starts +// Data -1 +.ct-series-a .ct-slice-pie { + fill: lighten($blue, 15); + stroke-width: 4px; +} +// Data -2 + +.ct-series-b .ct-slice-pie { + fill: lighten($green, 15); + stroke-width: 4px; +} +// Data 3 + +.ct-series-c .ct-slice-pie { + fill: lighten($red, 15); + stroke-width: 4px; +} +// Data -4 + +.ct-series-d .ct-slice-pie { + fill: lighten($orange, 15); + stroke-width: 4px; +} +// Pie Chart Starts +// Donut chart Starts +// Data -1 +.ct-series-a .ct-slice-donut-solid { + fill: lighten($blue, 15); +} + +// Data -2 +.ct-series-b .ct-slice-donut-solid { + fill: lighten($green, 15); +} + +// Data -3 +.ct-series-c .ct-slice-donut-solid { + fill: lighten($red, 15); +} + +// Data -d +.ct-series-a .ct-slice-donut-solid { + fill: lighten($orange, 15); +} + +// E-commerce Dashboard Chart +#ct-chart-dash-barChart { + // Data -1 + .ct-series-a .ct-bar { + stroke: lighten($red, 10); + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; + } + // Data -2 + .ct-series-b .ct-bar { + stroke: lighten($blue, 10); + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; + } + // Data -3 + .ct-series-c .ct-bar { + stroke: lighten($blue, 15); + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; + } + // Data -4 + .ct-series-d .ct-bar { + stroke: lighten($blue, 20); + stroke-width: 20px; + stroke-dasharray: 0; + stroke-linecap: squre; + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_datepicker.scss b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_datepicker.scss new file mode 100644 index 0000000000000000000000000000000000000000..3335fa407324abd42e0654903a4acc7bc060d26c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_datepicker.scss @@ -0,0 +1,322 @@ +/* Datepicker */ + +.datepicker.datepicker-dropdown, +.datepicker.datepicker-inline { + padding: 0 25px; + width: 30%; + max-width: 500px; + min-width: 250px; + .datepicker-days { + table.table-condensed { + thead { + tr { + th { + text-align: center; + padding: .5rem 0; + &.prev { + color: color(gray); + padding-bottom: 1rem; + padding-top: 1rem; + text-align: left; + background: $white; + } + &.datepicker-switch { + color: color(gray); + background: $white; + padding-bottom: 1rem; + padding-top: 1rem; + font-size: 1rem; + font-weight: 600; + } + &.next { + color:grey; + padding-bottom: 1rem; + padding-top: 1rem; + text-align: right; + background: $white; + } + &.dow { + font-family: $type1; + color: color(gray); + font-size: .875rem; + font-weight: initial; + &:first-child { + text-align: left; + } + &:last-child { + text-align: right; + } + } + } + } + } + tbody { + position: relative; + top: 13px; + td { + text-align: center; + &.day { + font-size: .9375rem; + padding: .5rem 0; + color: color(gray); + &:hover { + background: $white; + } + &.active { + color:#fff; + background:transparent; + position: relative; + z-index: 1; + &:before { + content: ""; + width: 38px; + height: 38px; + background: theme-color(success); + @include border-radius(100%); + display: block; + margin: auto; + vertical-align: middle; + position: absolute; + top: 1px; + z-index: -1; + left: 0; + right: 0; + } + } + &.today { + color:#fff; + background:transparent; + position: relative; + z-index: 1; + &:before { + content: ""; + width: 38px; + height: 38px; + background: theme-color(info); + @include border-radius(100%); + display: block; + margin: auto; + vertical-align: middle; + position: absolute; + top: 1px; + z-index: -1; + left: 0; + right: 0; + } + } + } + &.old.day { + color: darken(color(gray-lightest),4.5%); + } + + &.range-start, + &.range-end { + background: transparent; + position: relative; + &::before { + content: ""; + width: 28px; + height: 28px; + background: rgba(theme-color(success), .2); + border-radius: 4px; + display: block; + margin: auto; + vertical-align: middle; + position: absolute; + top: 6px; + z-index: -1; + left: 0; + right: 0; + } + } + &.range { + position: relative; + background: transparent; + &::before { + content: ""; + width: 28px; + height: 28px; + background: #eee; + border-radius: 4px; + display: block; + margin: auto; + vertical-align: middle; + position: absolute; + top: 6px; + z-index: -1; + left: 0; + right: 0; + } + } + + } + } + } + } + .datepicker-days, + .datepicker-months, + .datepicker-years, + .datepicker-decades, + .datepicker-centuries { + padding: .8rem .7rem; + table.table-condensed { + width: 100%; + } + } +} +.datepicker.datepicker-inline{ + width:100%; + max-width: 100%; + min-width: 250px; + thead{ + tr{ + th{ + &.prev{ + color:grey; + padding-bottom:0.5rem; + padding-top:0.5rem; + } + &.datepicker-switch{ + color: theme-color(primary); + padding-bottom:0.5rem; + padding-top:0.5rem; + } + &.next{ + color:grey; + padding-bottom:0.5rem; + padding-top:0.5rem; + } + &.dow{ + + } + } + } + } +} +.datepicker { + > div { + display: initial; + } +} +.datepicker-custom { + width: 100%; + padding: 0; + .datepicker { + &.datepicker-inline { + display: block; + padding: 0; + height: 100%; + .datepicker-days { + display: block; + .table-condensed { + tbody { + tr { + td { + padding: 1rem; + @media (max-width: 991px) { + padding: 1rem .5rem; + } + text-align: center; + &.day { + &.today { + &:before { + @extend .bg-success; + top: 6px; + } + } + &.active { + &:before { + @extend .bg-warning; + top: 6px; + } + } + &:first-child { + padding-left: 2.5rem; + @media (max-width: 991px) { + padding-left: .5rem; + } + &.today, + &.active { + &:before { + left: 1.5rem; + @media (max-width: 991px) { + left: .25rem; + } + } + } + } + &:last-child { + padding-right: 2.5rem; + @media (max-width: 991px) { + padding-right: .5rem; + } + &.today, + &.active { + &:before { + right: 1.5rem; + } + } + } + } + } + } + } + } + } + .datepicker-days, + .datepicker-months, + .datepicker-years, + .datepicker-decades, + .datepicker-centuries { + height: 100%; + padding: 0 0 1rem 0; + .table-condensed { + height: 100%; + thead { + background: theme-color(success); + tr { + th { + &.next, + &.prev, + &.datepicker-switch, + &.dow { + background: transparent; + border-radius: 0; + color: $white; + padding: 2rem 1rem; + @media (max-width: 991px) { + padding: 2rem .5rem; + } + font-family: $type1; + font-weight: $font-weight-semibold; + &:first-child { + padding-left: 2.5rem; + @media (max-width: 991px) { + padding-left: .5rem; + } + } + &:last-child { + padding-right: 2.5rem; + @media (max-width: 991px) { + padding-right: .5rem; + } + } + } + &.datepicker-switch { + font-size: 2rem; + @media (max-width: 991px) { + font-size: 1rem; + } + } + &.next, + &.prev { + font-size: 1.5rem; + } + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_listify.scss b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_listify.scss new file mode 100644 index 0000000000000000000000000000000000000000..dd459fa2d6c8f63841a51e7280fdf76433e62f3c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_listify.scss @@ -0,0 +1,28 @@ +/* Listify */ + +.listify-list{ + input{ + border: 1px solid $white-smoke; + color: color(gray-light); + background: #fff; + } + button{ + + } + ul.list{ + list-style: none; + padding-left: 0; + li{ + display: block; + border-bottom: $border-property; + padding: 15px 10px; + h5{ + color: theme-color("primary"); + } + p{ + color: color(gray-light); + margin: 0; + } + } + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_progressbar-js.scss b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_progressbar-js.scss new file mode 100644 index 0000000000000000000000000000000000000000..48da70bcb743029cc721261ce40ce0905df3049a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_progressbar-js.scss @@ -0,0 +1,10 @@ +/* Progressbar-js */ + +.progress-bar-js-line { + height: 6px; +} + +.progressbar-js-circle { + width: 100%; + position: relative; +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_pws-tabs.scss b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_pws-tabs.scss new file mode 100644 index 0000000000000000000000000000000000000000..4cb88a577e70e554fc790e1b127fef676f025c65 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_pws-tabs.scss @@ -0,0 +1,143 @@ +/* Pws-tabs */ + +.pws_tabs_container { + ul.pws_tabs_controll { + border-bottom: 1px solid theme-color(primary); + li { + &:first-child { + a { + @include border-radius(5px 0px 0px 0px); + } + } + &:last-child { + a { + border-right: 1px solid theme-color(primary); + @include border-radius(0px 5px 0px 0px); + } + } + a { + border: 1px solid theme-color(primary); + border-bottom: none; + border-right: none; + background: #fff; + color: theme-color(primary); + padding: 0.6em 1.3em; + margin-right: 0; + + &:hover { + background: #fff; + color: theme-color(primary); + } + + &.pws_tab_active { + background: theme-color(primary); + color: #fff; + } + } + } + } + + .demo-tabs { + border: 1px solid theme-color(primary); + @include border-radius(0px 5px 5px 5px); + overflow: hidden; + background: color(white-smoke); + margin-bottom: 45px; + padding-top: 3.5rem; + + .CodeMirror { + margin-bottom: 20px; + } + } + // Styles for vertical Tab + &.pws_tabs_vertical { + .pws_tabs_controll { + border-right: none; + border-bottom:none; + li { + &:first-child { + a { + @include border-radius(5px 0px 0px 0px); + } + } + &:last-child { + a { + border-bottom: 1px solid theme-color(primary); + @include border-radius(0px 0px 0px 5px); + border-right: 0px; + } + } + a { + @include border-radius(0px); + border: 1px solid theme-color(primary); + border-right: none; + border-bottom: none; + margin-bottom: 0; + } + } + } + } + // Styles for vertical Tab + + // Styles for horizontal Tab + &.pws_tabs_horizontal_bottom { + .pws_tabs_list { + margin-bottom: 0; + } + .pws_tabs_controll { + border-top: 1px solid theme-color(primary); + border-right: none; + border-bottom: none; + li { + &:first-child { + a { + @include border-radius(0px 0px 0px 5px); + } + } + &:last-child { + a { + @include border-radius(0px 0px 5px 0px); + border-right: 1px solid theme-color(primary); + } + } + a { + @include border-radius(0px); + border: 1px solid theme-color(primary); + border-top: none; + border-right: none; + margin-right: 0; + margin-bottom: 0; + } + } + } + } + // Styles for vertical Tab + + // Styles for RTL Tab + &.pws_tabs_rtl { + .pws_tabs_controll { + li { + &:first-child { + a { + @include border-radius(0px 5px 0px 0px); + border-right: 1px solid theme-color(primary); + } + } + &:last-child { + a { + border-right: none; + @include border-radius(5px 0px 0px 0px); + } + } + a { + border: 1px solid theme-color(primary); + border-bottom: none; + border-right: none; + margin-right: 0; + margin-left: 0; + } + } + } + } + // Styles for RTL Tab +} diff --git a/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_select2.scss b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_select2.scss new file mode 100644 index 0000000000000000000000000000000000000000..1a5c776b57a42009eb9d1f4dc3ff1e574fc73d22 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_select2.scss @@ -0,0 +1,62 @@ +/* Select2 */ + +.select2-container--default { + .select2-results__option--highlighted[aria-selected] { + background: theme-color(primary); + } + .select2-selection--single, + .select2-dropdown, + .select2-selection--multiple { + border-color: $border-color; + .select2-search__field { + border-color: $border-color; + } + } + .select2-selection--single { + height: auto; + @extend .form-control; + .select2-search__field { + @extend .form-control; + } + .select2-selection__rendered { + line-height: 14px; + } + } + .select2-dropdown { + font-size: .8125rem; + } + &.select2-container--focus { + .select2-selection--multiple { + border-color: $border-color; + } + } + .select2-selection--multiple { + .select2-selection__choice { + color: color(white); + border: 0; + border-radius: 3px; + padding: 6px; + font-size: .625rem; + font-family: inherit; + line-height: 1; + .select2-selection__choice__remove { + color: color(white); + } + &:nth-child(5n+1) { + background: theme-color(primary); + } + &:nth-child(5n+2) { + background: theme-color(success); + } + &:nth-child(5n+3) { + background: theme-color(info); + } + &:nth-child(5n+4) { + background: theme-color(danger); + } + &:nth-child(5n+5) { + background: theme-color(warning); + } + } + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_typeahead.scss b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_typeahead.scss new file mode 100644 index 0000000000000000000000000000000000000000..ff53e36926dbebaf39a097f2fce3693c5cdfa697 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/light/components/plugin-overrides/_typeahead.scss @@ -0,0 +1,65 @@ +/* Typeahead */ + +.tt-menu, +.gist { + text-align: left; +} + +.twitter-typeahead { + max-width: 100%; +} + +.typeahead, +.tt-query, +.tt-hint { + @extend .form-control; +} + +.typeahead { + background-color: color(white); + &:focus { + border-color: $border-color; + } +} + + +.tt-query { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} + +.tt-hint { + color: color(gray) +} + +.tt-menu { + width: 100%; + margin: 12px 0; + padding: 8px 0; + background-color: color(white); + border: 1px solid $border-color; + -webkit-border-radius: 8px; + -moz-border-radius: 8px; + border-radius: 8px; + -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2); + -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2); + box-shadow: 0 5px 10px rgba(0,0,0,.2); +} + +.tt-suggestion { + padding: 3px 20px; + font-size: inherit; + &:hover { + cursor: pointer; + color: color(white); + background-color: theme-color(primary); + } + .tt-cursor { + color: color(white); + background-color: theme-color(primary); + } + p { + margin: 0; + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/_demo.scss b/INCUBATE/incubate/incubate/static/scss/shared/_demo.scss new file mode 100644 index 0000000000000000000000000000000000000000..065bff4027506521d42258f9c20c241321a1bcdb --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/_demo.scss @@ -0,0 +1,163 @@ +/* Demo Styles */ +// Add spacing to Boostrap components for demo purpose +.template-demo { + > .btn { + @extend .mt-3; + @extend .mr-3; + } + + .slider-wrap { + height: 100px; + } + + > .btn-toolbar { + @extend .mt-3; + @extend .mr-3; + } + + > .btn-group, + > .btn-group-vertical { + @extend .mt-2; + @extend .mr-2; + } + + .progress { + margin-top: 1.5rem; + } + + .circle-progress { + @extend .mt-2; + } + + > h2, + > h3, + > h4, + > h5, + > h6, + > h1 { + border-top: 1px solid $border-color; + padding: 0.5rem 0 0; + } + + .ul-slider { + &.noUi-horizontal { + margin-top: 2rem; + } + + &.noUi-vertical { + margin-right: 2rem; + } + } + + > .dropdown { + display: inline-block; + @extend .mr-2; + margin-bottom: 0.5rem; + } + + nav { + .breadcrumb { + margin-bottom: 1.375rem; + } + + &:last-child { + .breadcrumb { + margin-bottom: 0; + } + } + } + + .editable-form { + > .form-group { + border-bottom: 1px solid $border-color; + padding-bottom: 0.8rem; + margin-bottom: 0.8rem; + } + } + + .circle-progress { + padding: 15px; + } + + .circle-progress-block { + @extend .mb-3; + @extend .px-2; + } +} + +.demo-modal { + position: static; + display: block; + + .modal-dialog { + @extend .mt-0; + + &.modal-lg { + max-width: 100%; + } + } +} + +.loader-demo-box { + @extend .border; + @extend .border-secondary; + @extend .rounded; + width: 100%; + height: 200px; + @extend .d-flex; + @extend .align-items-center; +} + +.dropdown-menu-static-demo { + height: 250px; + margin-bottom: 20px; +} + +.rounded-legend { + ul { + li { + list-style-type: none; + color: $text-muted; + font-size: .75rem; + .legend-dots { + width: 1rem; + height: 1rem; + border-radius: 100%; + display: inline-block; + vertical-align: text-bottom; + margin-right: .5rem; + .rtl & { + margin-left: .5rem; + } + } + } + } + &.legend-horizontal { + @include display-flex; + ul { + li { + display: inline-block; + margin-right: 1.5rem; + .rtl & { + margin-right: auto; + margin-left: 1.5rem; + } + } + } + } + &.legend-top-right { + ul { + float: right; + .rtl & { + float: left; + } + } + } + &.legend-vertical { + ul { + li { + margin-top: 1rem; + } + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/_fonts.scss b/INCUBATE/incubate/incubate/static/scss/shared/_fonts.scss new file mode 100644 index 0000000000000000000000000000000000000000..edc10606476cc095c2a6ab0ed2b40b3da77c89f0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/_fonts.scss @@ -0,0 +1,33 @@ +// /* Fonts */ + +// //PT_Sans +// @font-face { +// font-family: 'ubuntu-light'; +// src: url('../../fonts/Ubuntu/Ubuntu-Light.eot'); /* IE9 Compat Modes */ +// src: url('../../fonts/Ubuntu/Ubuntu-Light.woff2') format('woff2'), /* Super Modern Browsers */ +// url('../../fonts/Ubuntu/Ubuntu-Light.woff') format('woff'), /* Pretty Modern Browsers */ +// url('../../fonts/Ubuntu/Ubuntu-Light.ttf') format('truetype'), /* Safari, Android, iOS */ +// } +// @font-face { +// font-family: 'ubuntu-regular'; +// src: url('../../fonts/Ubuntu/Ubuntu-Regular.eot'); /* IE9 Compat Modes */ +// src: url('../../fonts/Ubuntu/Ubuntu-Regular.woff2') format('woff2'), /* Super Modern Browsers */ +// url('../../fonts/Ubuntu/Ubuntu-Regular.woff') format('woff'), /* Pretty Modern Browsers */ +// url('../../fonts/Ubuntu/Ubuntu-Regular.ttf') format('truetype'), /* Safari, Android, iOS */ +// } +// @font-face { +// font-family: 'ubuntu-medium'; +// src: url('../../fonts/Ubuntu/Ubuntu-Medium.eot'); /* IE9 Compat Modes */ +// src: url('../../fonts/Ubuntu/Ubuntu-Medium.woff2') format('woff2'), /* Super Modern Browsers */ +// url('../../fonts/Ubuntu/Ubuntu-Medium.woff') format('woff'), /* Pretty Modern Browsers */ +// url('../../fonts/Ubuntu/Ubuntu-Medium.ttf') format('truetype'), /* Safari, Android, iOS */ +// } +// @font-face { +// font-family: 'ubuntu-bold'; +// src: url('../../fonts/Ubuntu/Ubuntu-Bold.eot'); /* IE9 Compat Modes */ +// src: url('../../fonts/Ubuntu/Ubuntu-Bold.woff2') format('woff2'), /* Super Modern Browsers */ +// url('../../fonts/Ubuntu/Ubuntu-Bold.woff') format('woff'), /* Pretty Modern Browsers */ +// url('../../fonts/Ubuntu/Ubuntu-Bold.ttf') format('truetype'), /* Safari, Android, iOS */ +// } + +@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&display=swap'); \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/_footer.scss b/INCUBATE/incubate/incubate/static/scss/shared/_footer.scss new file mode 100644 index 0000000000000000000000000000000000000000..d2f4af55d8ee40bef76d5ce6d381c016c2815c8b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/_footer.scss @@ -0,0 +1,21 @@ +/* Footer */ + +.footer { + background: $footer-bg; + color: $footer-color; + padding: 0 1.5rem 1.5rem; + transition: all $action-transition-duration $action-transition-timing-function; + -moz-transition: all $action-transition-duration $action-transition-timing-function; + -webkit-transition: all $action-transition-duration $action-transition-timing-function; + -ms-transition: all $action-transition-duration $action-transition-timing-function; + font-size: calc(#{$default-font-size} - 0.05rem); + font-family: $type1; + a { + color: theme-color(success); + font-size: inherit; + } + @media (max-width: 991px) { + margin-left: 0; + width: 100%; + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/_functions.scss b/INCUBATE/incubate/incubate/static/scss/shared/_functions.scss new file mode 100644 index 0000000000000000000000000000000000000000..e96c551cd38636de3e7dc00ad49375ac05d55484 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/_functions.scss @@ -0,0 +1,5 @@ +// Functions + +@function social-color($key: "twitter") { + @return map-get($social-colors, $key); +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/_misc.scss b/INCUBATE/incubate/incubate/static/scss/shared/_misc.scss new file mode 100644 index 0000000000000000000000000000000000000000..2ae4bd7131fe57114be125d20ef44346f11c93bb --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/_misc.scss @@ -0,0 +1,59 @@ +/* Miscellanoeous */ +body, +html { + overflow-x: hidden; + padding-right: 0 !important; // resets padding right added by Bootstrap modal +} + +*:-moz-full-screen, +*:-webkit-full-screen, +*:fullscreen *:-ms-fullscreen { + overflow: auto; +} + +.container-scroller { + overflow: hidden; +} + +pre { + background: color(gray-lighter); + padding: 15px; + font-size: 14px; +} + +code { + padding: 5px; + color: theme-color(danger); + font-family: $type1; + font-weight: $font-weight-light; + font-size: $default-font-size; + border-radius: 4px; +} + +.page-header { + @extend .d-flex; + @extend .justify-content-between; + @extend .align-items-center; + margin: 0 0 1.5rem 0; + .breadcrumb { + border: 0; + margin-bottom: 0; + } +} +.page-title { + color: $page-title-color; + font-size: 1.125rem; + margin-bottom: 0; + .page-title-icon { + display: inline-block; + width: 36px; + height: 36px; + border-radius: 4px; + text-align: center; + box-shadow: 0px 3px 8.3px 0.7px rgba(163, 93, 255, 0.35); + i { + font-size: .9375rem; + line-height: 36px; + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/_reset.scss b/INCUBATE/incubate/incubate/static/scss/shared/_reset.scss new file mode 100644 index 0000000000000000000000000000000000000000..598383ae8c2b69b794cbb1ddf0df39bebaef9a44 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/_reset.scss @@ -0,0 +1,136 @@ +/* Reset Styles */ + +body { + padding: 0; + margin: 0; + overflow-x: hidden; +} + +.form-control, +.form-control:focus { + -webkit-box-shadow: none; + -moz-box-shadow: none +} + +.form-control { + box-shadow: none +} + +.form-control:focus { + outline: 0; + box-shadow: none +} + +a, +div, +h1, +h2, +h3, +h4, +h5, +p, +span { + text-shadow: none +} + +[type=button]:focus, +a:active, +a:focus, +a:visited, +button::-moz-focus-inner, +input[type=reset]::-moz-focus-inner, +input[type=button]::-moz-focus-inner, +input[type=submit]::-moz-focus-inner, +input[type=file]>input[type=button]::-moz-focus-inner, +select::-moz-focus-inner { + outline: 0 +} + +input, +.form-control:focus, +input:focus, +select:focus, +textarea:focus, +button:focus { + outline: none; + outline-width: 0; + outline-color: transparent; + box-shadow: none; + outline-style: none; +} + +textarea { + resize: none; + overflow-x: hidden; +} + +.btn, +.btn-group.open .dropdown-toggle, +.btn:active, +.btn:focus, +.btn:hover, +.btn:visited, +a, +a:active, +a:checked, +a:focus, +a:hover, +a:visited, +body, +button, +button:active, +button:hover, +button:visited, +div, +input, +input:active, +input:focus, +input:hover, +input:visited, +select, +select:active, +select:focus, +select:visited, +textarea, +textarea:active, +textarea:focus, +textarea:hover, +textarea:visited { + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none +} + +.btn.active.focus, +.btn.active:focus, +.btn.focus, +.btn:active.focus, +.btn:active:focus, +.btn:focus, +button, +button:active, +button:checked, +button:focus, +button:hover, +button:visited { + outline: 0; + outline-offset: 0 +} + +.bootstrap-select .dropdown-toggle:focus { + outline: 0 ; + outline-offset: 0; +} + +.dropdown-menu>li>a:active, +.dropdown-menu>li>a:focus, +.dropdown-menu>li>a:hover, +.dropdown-menu>li>a:visited { + outline: 0; +} + +a:focus, +input:focus { + border-color: transparent; + outline: none +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/_typography.scss b/INCUBATE/incubate/incubate/static/scss/shared/_typography.scss new file mode 100644 index 0000000000000000000000000000000000000000..30a477b452a79fefcd780793caef9dd36f8b9c18 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/_typography.scss @@ -0,0 +1,119 @@ +/* Typography */ + +body { + font-size: 1rem; + font-family: $type1; + font-weight: initial; + line-height: normal; + -webkit-font-smoothing: antialiased; +} +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: $type1; + font-weight: $font-weight-medium +} +p { + font-size: $default-font-size; +} +h1, +.h1 { + font-size: 2.19rem; +} +h2, +.h2 { + font-size: 1.88rem; +} +h3, +.h3 { + font-size: 1.56rem; +} +h4, +.h4 { + font-size: 1.13rem; +} +h5, +.h5 { + font-size: 1rem; +} +h6, +.h6 { + font-size: .9375rem; +} +p { + font-size: .9375rem; + line-height: 1.5; +} +.display-1 { + font-size: 3.75rem; + @media (max-width: 991px) { + font-size: 3rem; + } +} +.display-2 { + font-size: 3.125rem; + @media (max-width: 991px) { + font-size: 2.5rem; + } +} +.display-3 { + font-size: 2.5rem; + @media (max-width: 991px) { + font-size: 2rem; + } +} +.display-4 { + font-size: 1.875rem; + @media (max-width: 991px) { + font-size: 1.5rem; + } +} +.display-5 { + font-size: 1.25rem; + @media (max-width: 991px) { + font-size: 1rem; + } +} +.blockquote { + padding: 1.25rem; + border: 1px solid $border-color; +} + +address { + p { + margin-bottom: 0; + } +} + +//blockqoute color variations +@each $color, $value in $theme-colors { + .blockquote-#{$color} { + @include blockquote($value); + } +} +.error-page { + h1 { + font-size: 12rem; + @media (max-width: 991px) { + font-size: 8rem; + } + } +} +.icon-lg { + font-size: 3.438rem; +} +.icon-md { + font-size: 1.875rem; +} +.icon-sm { + font-size: 1rem; +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/_utilities.scss b/INCUBATE/incubate/incubate/static/scss/shared/_utilities.scss new file mode 100644 index 0000000000000000000000000000000000000000..c8605eff9978011d0a14b593a64215bbfee01b29 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/_utilities.scss @@ -0,0 +1,124 @@ +/* Utilities */ + +.grid-margin { + margin-bottom: $card-spacing-y; +} +.grid-margin-sm-0 { + @media (min-width: 576px) { + margin-bottom: 0; + } +} +.grid-margin-md-0 { + @media (min-width: 768px) { + margin-bottom: 0; + } +} +.grid-margin-lg-0 { + @media (min-width: 992px) { + margin-bottom: 0; + } +} +.grid-margin-xl-0 { + @media (min-width: 1200px) { + margin-bottom: 0; + } +} +.img-lg { + width: 92px; + height: 92px; +} +.img-sm { + width: 43px; + height: 43px; +} +.img-xs { + width: 37px; + height: 37px; +} +.img-ss { + width: 26px; + height: 26px; +} +.stretch-card { + @include display-flex; + @include align-items(stretch); + @include justify-content(stretch); + >.card{ + width: 100%; + min-width: 100%; + } +} + +.border-right-sm { + @media (min-width: 576px) { + border-right: $border-width solid $border-color; + } +} +.border-right-md { + @media (min-width: 768px) { + border-right: $border-width solid $border-color; + } +} +.border-right-lg { + @media (min-width: 992px) { + border-right: $border-width solid $border-color; + } +} + +.border-left-sm { + @media (min-width: 576px) { + border-left: $border-width solid $border-color; + } +} +.border-left-md { + @media (min-width: 768px) { + border-left: $border-width solid $border-color; + } +} +.border-left-lg { + @media (min-width: 992px) { + border-left: $border-width solid $border-color; + } +} + +.text-gray { + color: #8c8c8c; +} + +.text-black { + color: $black; +} + +.text-small { + font-size: 12px; +} + +.flex-grow { + flex-grow: 1; +} + +.font-weight-light { + font-family: $type1; + font-weight: $font-weight-light; +} + +.font-weight-medium { + font-family: $type1; + font-weight: $font-weight-medium; +} + +.font-weight-semibold{ + font-family: $type1; + font-weight: $font-weight-semibold; +} + +.font-weight-bold { + font-family: $type1; + font-weight: bold; +} + + +.font-weight-normal { + font-family: $type1; + font-weight: $font-weight-regular; +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_buttons.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_buttons.scss new file mode 100644 index 0000000000000000000000000000000000000000..0d1c344d8ba7947c75e08d8a3f564e95cc5cae4d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_buttons.scss @@ -0,0 +1,107 @@ +/* Buttons */ + +.btn { + font-size: $btn-font-size; + line-height: 1; + font-family: $type1; + font-weight: $font-weight-medium; + i { + font-size: 1rem; + } + &.btn-rounded { + @include border-radius(50px); + } + &.btn-fw { + min-width: $button-fixed-width; + } + &.btn-sm { + font-size: $btn-font-size-sm; + } + &.btn-lg { + font-size: $btn-font-size-lg; + } + &.btn-xs { + padding: $btn-padding-y-xs $btn-padding-x-xs; + font-size: $btn-font-size-xs; + } + /* Buttons with only icons */ + &.btn-icon { + width: 42px; + height: 42px; + padding: 0; + } + /* Buttons with icon and text */ + &.btn-icon-text { + .btn-icon-prepend { + margin-right: .5rem; + } + .btn-icon-append { + margin-left: .5rem; + } + } + &.btn-social-icon { + width: 50px; + height: 50px; + padding: 0; + } + &.btn-no-hover-bg { + &:hover, + &:focus, + &:active { + background: transparent; + color: currentColor; + } + } +} + +.btn-group { + .btn { + + .btn { + border-left: 0; + } + } +} + +.btn-toolbar { + .btn-group { + +.btn-group { + @extend .ml-2; + } + } +} +/*social buttons*/ +@each $color, $value in $social-colors { + .btn-#{$color} { + @include social-button(social-color($color)); + } + .btn-outline-#{$color} { + @include social-outline-button(social-color($color)); + } +} +/* inverse buttons */ +@each $color, $value in $theme-colors { + .btn-inverse-#{$color} { + @include button-inverse-variant($value); + } + .btn-#{$color}:not(.btn-light) { + color: $white; + &:hover, + &:focus, + &:active { + color: $white; + } + &:focus, + &:active { + background: $value; + border-color: $value; + } + } + .btn-outline-#{$color} { + &:hover, + &:focus, + &:active { + background: theme-color($color); + color: $white; + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_cards.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_cards.scss new file mode 100644 index 0000000000000000000000000000000000000000..baf8349f48ce74947051fdca6cc457ebcf360f13 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_cards.scss @@ -0,0 +1,70 @@ +/* Cards */ + +.card { + border: 0; + .card-body { + padding: $card-padding-y $card-padding-x; + + .card-body { + padding-top: 1rem; + } + } + .card-title { + color: $card-title-color; + margin-bottom: .75rem; + text-transform: capitalize; + font-family: $type1; + font-weight: $font-weight-medium; + font-size: 1.125rem; + } + .card-subtitle { + @extend .text-gray; + font-family: $type1; + margin-top: 0.625rem; + margin-bottom: 0.625rem; + + } + .card-description { + color: $card-description-color; + margin-bottom: 1.5rem; + font-family: $type1; + } + &.card-outline-success { + border: 1px solid theme-color("success"); + } + &.card-outline-primary { + border: 1px solid theme-color("primary"); + } + &.card-outline-warning { + border: 1px solid theme-color("warning"); + } + &.card-outline-danger { + border: 1px solid theme-color("danger"); + } + &.card-rounded { + @include border-radius(5px); + } + + &.card-faded { + background: #b5b0b2; + border-color: #b5b0b2; + } + &.card-circle-progress { + color: $white; + text-align: center; + } + &.card-img-holder { + position: relative; + .card-img-absolute { + position: absolute; + top:0; + right: 0; + height: 100%; + } + } +} + +@each $color, $value in $theme-colors { + .card-inverse-#{$color} { + @include card-inverse-variant(rgba(theme-color($color), .2), theme-color-level($color, 1), theme-color-level($color, 3)); + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_checkbox-radio.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_checkbox-radio.scss new file mode 100644 index 0000000000000000000000000000000000000000..f067d83d9f6e48c97fab8adb0741a0c88086060a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_checkbox-radio.scss @@ -0,0 +1,225 @@ +/* Checkboxes and Radios */ + +.form-check { + position: relative; + display: block; + margin-top: 15px; + margin-bottom: 10px; + padding-left: 0; + + .form-check-label { + display: block; + margin-left: 1.75rem; + font-size: $default-font-size; + line-height: 1.5; + .rtl & { + margin-left: 0; + margin-right: 1.75rem; + } + + input { + position: absolute; + top: 0; + left: 0; + .rtl & { + left: auto; + right: 0; + } + margin-left: 0; + margin-top: 0; + z-index: 1; + cursor: pointer; + opacity: 0; + filter: alpha(opacity=0); + } + input[type="checkbox"] { + + .input-helper { + &:before, + &:after { + position: absolute; + top: 0; + left: 0; + .rtl & { + left: auto; + right: 0; + } + } + &:before { + content: ""; + width: 18px; + height: 18px; + border-radius: 2px; + border: solid theme-color(primary); + border-width: 2px; + @include transition(all); + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; + } + + &:after { + @include transition(all); + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; + opacity: 0; + filter: alpha(opacity=0); + content: ""; + height: 12px; + width: 5px; + -webkit-transform: rotate(45deg); + transform: rotate(45deg); + border-style: solid; + border-width: 2px; + border-color: transparent #ffffff #ffffff transparent; + left: 7px; + top: 1px; + font-weight: bold; + color: $white; + } + } + &:checked { + +.input-helper { + &:before { + background: theme-color(primary); + border-width: 0; + } + &:after { + opacity: 1; + line-height: 18px; + filter: alpha(opacity=100); + } + } + } + + &:disabled { + + .input-helper { + &:before { + border-color: $border-color; + } + } + + &:checked { + + .input-helper { + &:after { + border-color: transparent $border-color $border-color transparent; + } + } + } + } + } + input[type="radio"] { + +.input-helper { + &:before { + position: absolute; + content: ""; + top: 0; + left: 0; + .rtl & { + left: auto; + right: 0; + } + border: solid theme-color(primary); + border-width: 2px; + width: 20px; + height: 20px; + border-radius: 50%; + @include transition(all); + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; + } + + &:after { + content: ""; + width: 8px; + height: 8px; + background: $white; + border-radius: 50%; + top: 6px; + left: 6px; + .rtl & { + left: auto; + right: 6px; + } + -webkit-transition: all; + -o-transition: all; + transition: all; + transition-duration: 0s; + -webkit-transition-duration: 250ms; + transition-duration: 250ms; + opacity: 0; + filter: alpha(opacity=0); + -webkit-transform: scale(0); + -ms-transform: scale(0); + -o-transform: scale(0); + transform: scale(0); + position: absolute; + } + } + + &:checked { + +.input-helper { + &:before { + background: theme-color(primary); + border-width: 0; + } + + &:after { + opacity: 1; + line-height: 1.5; + filter: alpha(opacity=100); + -webkit-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); + } + } + } + + &:disabled { + + .input-helper { + &:before { + border-color: $border-color; + } + } + + &:checked { + + .input-helper { + &:before { + background: $border-color; + } + + &:after { + background: $white; + } + } + } + } + } + } +} + +@each $color, $value in $theme-colors { + .form-check-#{$color} { + &.form-check { + label { + input[type="checkbox"], + input[type="radio"] { + +.input-helper { + &:before { + border-color: theme-color($color); + } + } + &:checked { + +.input-helper { + &:before { + background: $value; + } + } + } + } + } + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_dropdown.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_dropdown.scss new file mode 100644 index 0000000000000000000000000000000000000000..336e1adb3c73a7bf168564a337f4170c7ce25b71 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_dropdown.scss @@ -0,0 +1,30 @@ +/* Dropdowns */ + +.dropdown { + .dropdown-toggle { + &:after { + border-top: 0; + border-right: 0; + border-left: 0; + border-bottom: 0; + font-family: "simple-line-icons"; + content: "\e604"; + width: auto; + height: auto; + vertical-align: baseline; + font-size: .75rem; + } + } + .dropdown-menu { + margin-top: .75rem; + font-size: $default-font-size; + box-shadow: $dropdown-menu-box-shadow; + .dropdown-item { + font-size: 1rem; + padding: .25rem 1.5rem; + &:active { + background: initial; + } + } + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_forms.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_forms.scss new file mode 100644 index 0000000000000000000000000000000000000000..3d01e336c4d87db9e5ce0b4e8f9a2de942da8621 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_forms.scss @@ -0,0 +1,62 @@ +/* Forms */ + +.form-group { + margin-bottom: 1.5rem; +} +.input-group-append, +.input-group-prepend { + color: $input-placeholder-color; + width: auto; + border: none; + + .input-group-text { + border-color: $border-color; + padding: $input-padding-y .75rem; + color: $input-placeholder-color; + } +} +.form-control { + border: 1px solid $border-color; + font-family: $type1; + font-size: $input-font-size; +} + +select { + &.form-control { + padding: .4375rem .75rem; + border: 0; + outline: 1px solid $border-color; + color: $input-placeholder-color; + &:focus { + outline: 1px solid $border-color; + } + @each $color, $value in $theme-colors { + &.border-#{$color} { + outline: 1px solid $value; + &:focus { + outline: 1px solid $value; + } + } + } + } +} +.form-group { + label { + font-size: $default-font-size; + line-height: 1; + vertical-align: top; + margin-bottom: .5rem; + } + &.has-danger { + .form-control { + border-color: theme-color(danger); + } + } + .file-upload-default { + visibility: hidden; + position: absolute; + } + .file-upload-info { + background: transparent; + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_icons.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_icons.scss new file mode 100644 index 0000000000000000000000000000000000000000..7a142da0f225003767268f66c294a6d347445348 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_icons.scss @@ -0,0 +1,25 @@ +/* Icons */ + +.icons-list { + border-left: 1px solid $border-color; + border-top: 1px solid $border-color; + + >div { + background: $card-bg; + border-bottom: 1px solid $border-color; + border-right: 1px solid $border-color; + @include display-flex; + @include align-items(center); + padding:15px 15px; + font-family: $type1; + font-size: $default-font-size; + + i { + display: inline-block; + font-size: 20px; + width: 40px; + text-align: left; + color: theme-color(primary); + } + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_lists.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_lists.scss new file mode 100644 index 0000000000000000000000000000000000000000..296bb61c53aa0829e96d47d2cb06ce933fb84024 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_lists.scss @@ -0,0 +1,113 @@ +/* Lists */ + +ul, +ol, +dl { + padding-left: 1rem; + font-size: $default-font-size; + li { + line-height: 1.8; + } +} + +.list-ticked, +.list-arrow, +.list-star { + list-style: none; + padding: 0; + li { + padding-left: 1.5rem; + &:before { + font-family: "simple-line-icons"; + margin-left: -1.5rem; + width: 1.5rem; + margin-right: .5rem; + } + } +} + +.list-ticked { + li { + &:before { + content: '\e080'; + color: theme-color(danger); + } + } +} + +.list-arrow { + li { + &:before { + content: '\e606'; + color: theme-color(success); + } + } +} + +.list-star { + li { + &:before { + content: '\e09b'; + color: theme-color(warning); + } + } +} + +.gradient-bullet-list { + padding-left: 0; + .rtl & { + padding-right: 0; + } + li { + position: relative; + list-style-type: none; + padding-left: 25px; + line-height: 1; + padding-bottom: 25px; + &:before, + &:after { + content:""; + position: absolute; + } + &:before { + top: 0; + left: 0; + width: 15px; + height: 15px; + border-radius: 100%; + } + &:after { + width: 11px; + height: 11px; + top: 2px; + left: 2px; + background: $card-bg; + border-radius: 100%; + } + &:nth-child(1) { + &:before { + background: theme-color(danger); + } + } + &:nth-child(2) { + &:before { + background: theme-color(info); + } + } + &:nth-child(3) { + &:before { + background: theme-color(warning); + } + } + &:nth-child(4) { + &:before { + background: theme-color(success); + } + } + &:nth-child(5) { + &:before { + background: theme-color(primary); + } + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_modals.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_modals.scss new file mode 100644 index 0000000000000000000000000000000000000000..5a72a75c15d093548d659e3f8f80e136a7e89f1c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_modals.scss @@ -0,0 +1,25 @@ +/* Modals */ + +.modal{ + .modal-dialog{ + margin-top: 100px; + .modal-content{ + .modal-header{ + padding: $modal-header-padding-y $modal-header-padding-x; + .close{ + span{ + font-size: 20px; + font-weight: 400; + color: #6a6a6a; + } + } + } + .modal-body{ + padding: $modal-body-padding-y $modal-body-padding-x; + } + .modal-footer{ + padding: $modal-footer-padding-y $modal-footer-padding-x; + } + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_pagination.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_pagination.scss new file mode 100644 index 0000000000000000000000000000000000000000..17badc6d93121c891e0d641fc9a1c2858166084c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_pagination.scss @@ -0,0 +1,110 @@ +/* Pagination */ + +.pagination{ + .page-item { + .page-link { + border-color: $border-color; + color: $body-color; + font-size: .875rem; + @include transition-duration(0.3s); + &:focus{ + background: inherit; + } + i { + &:before { + font-size: inherit; + line-height: 1; + vertical-align: middle; + } + } + } + &.active, + &:hover, + &:focus, + &:active { + .page-link { + background: theme-color("primary"); + border-color: theme-color("primary"); + color: color(white); + } + } + } + &.flat{ + .page-item{ + .page-link{ + border: none; + @include border-radius(2px); + } + } + } + &.separated{ + .page-item{ + margin-left: 2px; + margin-right: 2px; + &:first-child{ + margin-left: 0; + } + &:last-child{ + margin-right: 0; + } + .page-link{ + @include border-radius(2px); + } + } + } + &.rounded{ + .page-item{ + .page-link{} + &:first-child{ + .page-link{ + @include border-radius(25px 0 0 25px); + } + } + &:last-child{ + .page-link{ + @include border-radius(0 25px 25px 0); + } + } + } + } + &.rounded-flat{ + .page-item{ + margin-right: 3px; + margin-left: 3px; + .page-link{ + border: none; + @include border-radius(50px); + + } + } + } + &.rounded-separated{ + .page-item{ + margin-left: 2px; + margin-right: 2px; + &:first-child{ + margin-left: 0; + .page-link{ + @include border-radius(10px 0 0 10px); + } + } + &:last-child{ + margin-right: 0; + .page-link{ + @include border-radius(0 10px 10px 0); + } + } + .page-link{ + @include border-radius(2px); + } + } + } +} + + +/* pagination variations */ +@each $color, $value in $theme-colors { + .pagination-#{$color} { + @include pagination-variants($value); + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_preview.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_preview.scss new file mode 100644 index 0000000000000000000000000000000000000000..cc0071c0123fe0c66dbf7287ee0116e7562366ab --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_preview.scss @@ -0,0 +1,122 @@ +/* Preview */ + +.preview-list { + .preview-item { + @include display-flex; + @include flex-direction(row); + @include align-items(flex-start); + padding: .75rem 1.5rem; + font-size: .875rem; + &:last-child { + border-bottom: 0; + } + &:hover { + background: $dropdown-link-hover-bg; + } + .form-check { + margin-top: 8px; + margin-right: 1rem; + } + .preview-thumbnail { + color: color(white); + position: relative; + img, + .preview-icon { + width: 36px; + height: 36px; + border-radius: 100%; + } + .preview-icon { + padding: 6px; + text-align: center; + @include display-flex; + @include align-items(center); + @include justify-content(center); + i { + font-size: 1.125rem; + margin: 0; + .rtl & { + @extend .ml-0; + } + } + } + .badge { + border: 2px solid color(white); + border-radius: 100%; + bottom: 5px; + display: block; + height: 14px; + left: -5px; + padding: 0; + position: absolute; + width: 14px; + &.badge-online { + @extend .badge-success; + } + &.badge-offline { + @extend .badge-info; + } + &.badge-busy { + @extend .badge-warning; + } + } + } + .preview-item-content { + line-height: 1; + padding-left: 15px; + &:first-child { + padding-left: 0; + } + p { + margin-bottom: 10px; + .content-category { + font-family: 'source-sans-pro-semibold', sans-serif; + padding-right: 15px; + border-right: 1px solid $border-color; + @extend .text-muted; + } + } + .rtl & { + padding-left: 0; + padding-right: 1rem; + margin-right: 0; + margin-left: auto; + } + } + .preview-actions { + @include display-flex; + @include flex-direction(row); + i { + width: 29px; + color: color(gray-lightest); + height: 29px; + border: 2px solid color(gray-lightest); + border-radius: 100%; + padding: 3px 6px; + display: inline-block; + &:first-child { + margin-right: 10px; + } + } + } + } + &.comment-preview { + .preview-item { + padding: .87rem 0; + &:first-child { + padding-top: 0; + } + p { + line-height: 27px; + } + } + } + &.bordered { + .preview-item { + border-bottom: 1px solid $border-color; + &:last-child { + border-bottom: 0; + } + } + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/components/_tables.scss b/INCUBATE/incubate/incubate/static/scss/shared/components/_tables.scss new file mode 100644 index 0000000000000000000000000000000000000000..94fb70fb38abc6d1b4c22dfb3ba32a8e4a87acda --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/components/_tables.scss @@ -0,0 +1,47 @@ +/* Tables */ + +.table { + margin-bottom: 0; + + thead { + th { + border-top: 0; + border-bottom-width: 1px; + font-family: $type1; + font-weight: $font-weight-medium; + font-weight: initial; + + i { + margin-left: 0.325rem; + } + } + } + + th, + td { + vertical-align: middle; + font-size: $default-font-size; + line-height: 1; + white-space: nowrap; + + img { + width: 36px; + height: 36px; + border-radius: 100%; + } + + .badge { + margin-bottom: 0; + } + } + + &.table-borderless { + border: none; + + tr, + td, + th { + border: none; + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/landing-screens/_auth.scss b/INCUBATE/incubate/incubate/static/scss/shared/landing-screens/_auth.scss new file mode 100644 index 0000000000000000000000000000000000000000..81890202a5ee16dc35f38e0586ebea010a3d9639 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/landing-screens/_auth.scss @@ -0,0 +1,98 @@ +/* Auth */ + +.auth { + .login-half-bg { + background: url("../../images/auth/login-bg.jpg"); + background-size: cover; + } + .register-half-bg { + background: url("../../images/auth/register-bg.jpg"); + background-size: cover; + } + &.lock-full-bg { + background: url("../../images/auth/lockscreen-bg.jpg"); + background-size: cover; + } + .lock-profile-img { + width: 90px; + height: 90px; + border-radius: 100%; + } + .auth-form-dark { + background: rgba($black, .6); + color: $white; + .form-control { + border-color: rgba($white, .2); + color: $white; + @include input-placeholder{ + color: $white; + } + } + } + .auth-form-light { + background: $white; + select { + color: $input-placeholder-color; + } + .input-group { + .form-control { + &:focus, + &:active { + border-color: $border-color; + } + } + } + } + .auth-form-transparent { + background: transparent; + .form-control, + .input-group-text { + border-color: theme-color(secondary); + &:focus, + &:active { + border-color: theme-color(secondary); + } + } + select { + outline-color: theme-color(secondary); + } + } + &.auth-img-bg { + padding: 0; + .auth-form-transparent { + @media (min-width:768px) { + width: 55%; + margin: auto; + } + } + } + .brand-logo { + margin-bottom: 2rem; + img { + width: 150px; + } + } + form { + .form-group { + margin-bottom: 1.5rem; + label { + font-size: .8125rem; + } + .form-control { + background: transparent; + border-radius: 0; + font-size: .9375rem; + } + } + .auth-form-btn { + height: 50px; + line-height: 1.5; + } + .auth-link { + font-size: $default-font-size; + &:hover { + color: initial; + } + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/mixins/_animation.scss b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_animation.scss new file mode 100644 index 0000000000000000000000000000000000000000..9fffeec8056cf22223ee45ae5e614558cfcb3312 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_animation.scss @@ -0,0 +1,70 @@ +/* Animation Mixins */ +@keyframes dropdownAnimation { + from { + opacity: 0; + transform: translate3d(0, -30px, 0); + } + + to { + opacity: 1; + transform: none; + transform: translate3d(0, 0px, 0); + } +} + +.dropdownAnimation { + animation-name: dropdownAnimation; + @include animation-duration($action-transition-duration); + @include animation-fill-mode(both); +} +@mixin transition($settings) { + -webkit-transition: $settings; + -moz-transition: $settings; + -ms-transition: $settings; + -o-transition: $settings; + transition: $settings; +} +@keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} + +.fadeOut { + animation-name: fadeOut; +} + +.infinite-spin { + @keyframes spin { + from { + transform: rotate(0deg); + } + + to { + transform: rotate(360deg); + } + } + animation-name: spin; + animation-duration: 3s; + animation-iteration-count: infinite; + animation-timing-function: linear; +} +@keyframes fadeInUp { + from { + opacity: 0; + transform: translate3d(0, 100%, 0); + } + + to { + opacity: 1; + transform: none; + } +} + +.fadeInUp { + animation-name: fadeInUp; +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/mixins/_blockqoute.scss b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_blockqoute.scss new file mode 100644 index 0000000000000000000000000000000000000000..c0ce3cd9876c6903c6ca48e7ddd12bca8681e942 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_blockqoute.scss @@ -0,0 +1,8 @@ +// BlockQuote Mixins // + +@mixin blockquote($color) { + border-color: $color; + .blockquote-footer { + color: $color; + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/mixins/_buttons.scss b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_buttons.scss new file mode 100644 index 0000000000000000000000000000000000000000..a9d2036f9bf19e524d3efa13931e7c3010386d7f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_buttons.scss @@ -0,0 +1,60 @@ +@mixin social-button($color) { + background: $color; + color: $white; + + &:hover, + &:focus { + background: darken($color, 10%); + color: $white; + } + &.btn-social-icon-text { + padding: 0 1.5rem 0 0; + background: lighten($color, 10%); + i { + background: $color; + padding: .75rem; + display: inline-block; + margin-right: 1.5rem; + } + } +} +@mixin social-outline-button($color) { + border: 1px solid $color; + color: $color; + &:hover { + background: $color; + color: $white; + } +} +@mixin button-inverse-variant($color, $color-hover: $white) { + background-color: rgba($color, 0.2); + background-image: none; + border-color: rgba($color, 0); + &:not(.btn-inverse-light) { + color: $color; + } + @include hover { + color: $color-hover; + background-color: $color; + border-color: $color; + } + + &.focus, + &:focus { + box-shadow: 0 0 0 3px rgba($color, .5); + } + + &.disabled, + &:disabled { + color: $color; + background-color: transparent; + } + + &.active, + &:active, + .show > &.dropdown-toggle { + color: $color-hover; + background-color: $color; + border-color: $color; + } +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/mixins/_cards.scss b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_cards.scss new file mode 100644 index 0000000000000000000000000000000000000000..2a03679f26628456bd0b0a4c8c0fc6915705328f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_cards.scss @@ -0,0 +1,7 @@ +// Cards Mixins + +@mixin card-inverse-variant($bg, $border, $color) { + background: $bg; + border: 1px solid $border; + color: $color; +} diff --git a/INCUBATE/incubate/incubate/static/scss/shared/mixins/_misc.scss b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_misc.scss new file mode 100644 index 0000000000000000000000000000000000000000..3d0eda7e5de117f47321151833910ab4c8246585 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_misc.scss @@ -0,0 +1,59 @@ +/* Miscellaneous Mixins */ + +// general transform +@mixin transform($transforms) { + -moz-transform: $transforms; + -o-transform: $transforms; + -ms-transform: $transforms; + -webkit-transform: $transforms; + transform: $transforms; +} + +// rotate +@mixin rotate ($deg) { + @include transform(rotate(#{$deg}deg)); +} + +// scale +@mixin scale($scale) { + @include transform(scale($scale)); +} +// translate +@mixin translate ($x, $y) { + @include transform(translate($x, $y)); +} +// skew +@mixin skew ($x, $y) { + @include transform(skew(#{$x}deg, #{$y}deg)); +} +//transform origin +@mixin transform-origin ($origin) { + moz-transform-origin: $origin; + -o-transform-origin: $origin; + -ms-transform-origin: $origin; + -webkit-transform-origin: $origin; + transform-origin: $origin; +} +//Ellipsis +%ellipsor{ + text-overflow: ellipsis; + overflow: hidden; + max-width:100%; + white-space: nowrap; +} + +// Placeholder +@mixin placeholder { + &::-webkit-input-placeholder { + @content + } + &:-moz-placeholder { + @content + } + &::-moz-placeholder { + @content + } + &:-ms-input-placeholder { + @content + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/shared/mixins/_pagination.scss b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_pagination.scss new file mode 100644 index 0000000000000000000000000000000000000000..d403a3b2180b1e7cf3e87e13f78170967a8d4bc7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/shared/mixins/_pagination.scss @@ -0,0 +1,19 @@ +// Pagination variations +@mixin pagination-variants($color) { + .page-item { + &.active { + .page-link { + background: $color; + border-color: $color; + } + } + + .page-link { + &:hover { + background: lighten($color,5%); + border-color: $color; + color: $white; + } + } + } +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/style.scss b/INCUBATE/incubate/incubate/static/scss/style.scss new file mode 100644 index 0000000000000000000000000000000000000000..d75fb0824c96f65e22ab9c51b68f650eb5075793 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/style.scss @@ -0,0 +1,171 @@ +/*------------------------------------------------------------------- + ===== Table of Contents ===== + + * Bootstrap functions + * Template variables + * SCSS Compass Functions + * Boostrap Main SCSS + * Template mixins + + Animation Mixins + + Background Mixins + + Badge Mixins + + Button Mixins + + Miscellaneous Mixins + + BlockQuote Mixins + + Cards Mixins + + Color Functions Mixins + + Tooltips + + popovers + * Core Styles + + Reset Styles + + Fonts + + Functions + + Backgrounds + + Typography + + Miscellaneous + + Footer + + Layouts + + Utilities + + Demo styles + * Components + + Accordions + + Badges + + Bootstrap Alerts + + Boostrap Progress + + Buttons + + Breadcrumbs + + Cards + + Checkboxes and Radios + + Dropdowns + + Forms + + Google maps + + Icons + + Loaders + + Lists + + Modals + + Pagination + + Popover + + Preview + + Tables + + Tabs + + Timeline + + Todo List + + Tooltips + + User Profile + + Pricing table + * Email + + Mail Sidebar + + Mail List Container + + Message Content + * Plugin Overrides + + Ace Editor + + Avgrund Popup + + Bootstrap Tour + + Chartist + + CodeMirror + + Colcade + + Colorpicker + + Context Menu + + Data Tables + + Datepicker + + Dropify + + Dropzone + + Flot chart + + Full Calendar + + Google Charts + + Icheck + + Jquery File Upload + + Js-grid + + Jvectormap + + Light Gallery + + Listify + + No-ui-slider + + Owl-carousel + + Progressbar-js + + Pws-tabs + + Quill Editor + + Rating + + Select2 + + Summernote Editor + + SweetAlert + + Switchery + + Tags + + TinyMCE Editor + + Toast + + Typeahead + + Wysi Editor + + X-editable + + Wizard + * Landing screens + + Auth + + Lock Screen +-------------------------------------------------------------------*/ + +/*-------------------------------------------------------------------*/ +/* === Import Bootstrap functions and variables === */ +@import "../node_modules/bootstrap/scss/functions"; +@import "../node_modules/bootstrap/scss/variables"; + +/*-------------------------------------------------------------------*/ +/* === Import template variables === */ +@import "./light/variables"; +@import 'variables'; + +/*-------------------------------------------------------------------*/ +/* === SCSS Compass Functions === */ +@import "../node_modules/compass-mixins/lib/compass"; +@import "../node_modules/compass-mixins/lib/animate"; + +/*-------------------------------------------------------------------*/ +/* === Boostrap Main SCSS === */ +@import "../node_modules/bootstrap/scss/bootstrap"; + +/*-------------------------------------------------------------------*/ +/* === Template mixins === */ +@import "./shared/mixins/misc"; +@import "./shared/mixins/animation"; +@import "./shared/mixins/blockqoute"; +@import "./shared/mixins/buttons"; +@import "./shared/mixins/cards"; +@import "./shared/mixins/pagination"; + +/*-------------------------------------------------------------------*/ +/* === Core Styles === */ +@import "./shared/reset"; +@import "./shared/fonts"; +@import "./shared/functions"; +@import "./shared/typography"; +@import "./shared/misc"; +@import "./shared/footer"; +@import "./shared/utilities"; +@import "./shared/demo"; + +/*-------------------------------------------------------------------*/ +/* === Components === */ +@import "./shared/components/buttons"; +@import "./shared/components/cards"; +@import "./shared/components/checkbox-radio"; +@import "./shared/components/dropdown"; +@import "./shared/components/forms"; +@import "./shared/components/icons"; +@import "./shared/components/lists"; +@import "./shared/components/modals"; +@import "./shared/components/pagination"; +@import "./shared/components/tables"; +@import "./shared/components/preview"; + +/*-------------------------------------------------------------------*/ +/* === Plugin overrides === */ +@import "./light/components/plugin-overrides/chartist"; +@import "./light/components/plugin-overrides/select2"; +@import "./light/components/plugin-overrides/typeahead"; + +/*-------------------------------------------------------------------*/ +/* === Landing screens === */ +@import "./shared/landing-screens/auth"; + +@import 'navbar'; +@import 'sidebar'; +//@import './layouts'; +@import './vertical/vertical-wrapper'; +@import 'dashboard'; \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/scss/vertical/_vertical-wrapper.scss b/INCUBATE/incubate/incubate/static/scss/vertical/_vertical-wrapper.scss new file mode 100644 index 0000000000000000000000000000000000000000..63f5ada9eb88eecb73c543a3c9515dbc71d3c2a6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/scss/vertical/_vertical-wrapper.scss @@ -0,0 +1,39 @@ +.page-body-wrapper { + min-height: calc(100vh - #{$navbar-height}); + @include display-flex(); + @include flex-direction(row); + padding-left: 0; + padding-right: 0; + + &.full-page-wrapper { + width: 100%; + min-height: 100vh; + } +} + +.navbar { + &.fixed-top { + + .page-body-wrapper { + padding-top: $navbar-height; + } + } +} + +.main-panel { + transition: width $action-transition-duration $action-transition-timing-function, margin $action-transition-duration $action-transition-timing-function; + width: calc(100% - #{$sidebar-width-lg}); + min-height: calc(100vh - #{$navbar-height}); + @include display-flex(); + @include flex-direction(column); + @media (max-width: 991px) { + margin-left: 0; + width: 100%; + } +} + +.content-wrapper { + background: $content-bg; + padding: 2.75rem 1.5rem 0; + width: 100%; + @include flex-grow(1); +} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/vendors/chart.js/Chart.min.js b/INCUBATE/incubate/incubate/static/vendors/chart.js/Chart.min.js new file mode 100644 index 0000000000000000000000000000000000000000..c74a7914a35f60ba32c6d8ecca9209208bced1ce --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/chart.js/Chart.min.js @@ -0,0 +1,7 @@ +/*! + * Chart.js v2.8.0 + * https://www.chartjs.org + * (c) 2019 Chart.js Contributors + * Released under the MIT License + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(function(){try{return require("moment")}catch(t){}}()):"function"==typeof define&&define.amd?define(["require"],function(t){return e(function(){try{return t("moment")}catch(t){}}())}):t.Chart=e(t.moment)}(this,function(t){"use strict";t=t&&t.hasOwnProperty("default")?t.default:t;var e={rgb2hsl:i,rgb2hsv:n,rgb2hwb:a,rgb2cmyk:o,rgb2keyword:s,rgb2xyz:l,rgb2lab:d,rgb2lch:function(t){return x(d(t))},hsl2rgb:u,hsl2hsv:function(t){var e=t[0],i=t[1]/100,n=t[2]/100;if(0===n)return[0,0,0];return[e,100*(2*(i*=(n*=2)<=1?n:2-n)/(n+i)),100*((n+i)/2)]},hsl2hwb:function(t){return a(u(t))},hsl2cmyk:function(t){return o(u(t))},hsl2keyword:function(t){return s(u(t))},hsv2rgb:h,hsv2hsl:function(t){var e,i,n=t[0],a=t[1]/100,o=t[2]/100;return e=a*o,[n,100*(e=(e/=(i=(2-a)*o)<=1?i:2-i)||0),100*(i/=2)]},hsv2hwb:function(t){return a(h(t))},hsv2cmyk:function(t){return o(h(t))},hsv2keyword:function(t){return s(h(t))},hwb2rgb:c,hwb2hsl:function(t){return i(c(t))},hwb2hsv:function(t){return n(c(t))},hwb2cmyk:function(t){return o(c(t))},hwb2keyword:function(t){return s(c(t))},cmyk2rgb:f,cmyk2hsl:function(t){return i(f(t))},cmyk2hsv:function(t){return n(f(t))},cmyk2hwb:function(t){return a(f(t))},cmyk2keyword:function(t){return s(f(t))},keyword2rgb:w,keyword2hsl:function(t){return i(w(t))},keyword2hsv:function(t){return n(w(t))},keyword2hwb:function(t){return a(w(t))},keyword2cmyk:function(t){return o(w(t))},keyword2lab:function(t){return d(w(t))},keyword2xyz:function(t){return l(w(t))},xyz2rgb:p,xyz2lab:m,xyz2lch:function(t){return x(m(t))},lab2xyz:v,lab2rgb:y,lab2lch:x,lch2lab:k,lch2xyz:function(t){return v(k(t))},lch2rgb:function(t){return y(k(t))}};function i(t){var e,i,n=t[0]/255,a=t[1]/255,o=t[2]/255,r=Math.min(n,a,o),s=Math.max(n,a,o),l=s-r;return s==r?e=0:n==s?e=(a-o)/l:a==s?e=2+(o-n)/l:o==s&&(e=4+(n-a)/l),(e=Math.min(60*e,360))<0&&(e+=360),i=(r+s)/2,[e,100*(s==r?0:i<=.5?l/(s+r):l/(2-s-r)),100*i]}function n(t){var e,i,n=t[0],a=t[1],o=t[2],r=Math.min(n,a,o),s=Math.max(n,a,o),l=s-r;return i=0==s?0:l/s*1e3/10,s==r?e=0:n==s?e=(a-o)/l:a==s?e=2+(o-n)/l:o==s&&(e=4+(n-a)/l),(e=Math.min(60*e,360))<0&&(e+=360),[e,i,s/255*1e3/10]}function a(t){var e=t[0],n=t[1],a=t[2];return[i(t)[0],100*(1/255*Math.min(e,Math.min(n,a))),100*(a=1-1/255*Math.max(e,Math.max(n,a)))]}function o(t){var e,i=t[0]/255,n=t[1]/255,a=t[2]/255;return[100*((1-i-(e=Math.min(1-i,1-n,1-a)))/(1-e)||0),100*((1-n-e)/(1-e)||0),100*((1-a-e)/(1-e)||0),100*e]}function s(t){return _[JSON.stringify(t)]}function l(t){var e=t[0]/255,i=t[1]/255,n=t[2]/255;return[100*(.4124*(e=e>.04045?Math.pow((e+.055)/1.055,2.4):e/12.92)+.3576*(i=i>.04045?Math.pow((i+.055)/1.055,2.4):i/12.92)+.1805*(n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92)),100*(.2126*e+.7152*i+.0722*n),100*(.0193*e+.1192*i+.9505*n)]}function d(t){var e=l(t),i=e[0],n=e[1],a=e[2];return n/=100,a/=108.883,i=(i/=95.047)>.008856?Math.pow(i,1/3):7.787*i+16/116,[116*(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116)-16,500*(i-n),200*(n-(a=a>.008856?Math.pow(a,1/3):7.787*a+16/116))]}function u(t){var e,i,n,a,o,r=t[0]/360,s=t[1]/100,l=t[2]/100;if(0==s)return[o=255*l,o,o];e=2*l-(i=l<.5?l*(1+s):l+s-l*s),a=[0,0,0];for(var d=0;d<3;d++)(n=r+1/3*-(d-1))<0&&n++,n>1&&n--,o=6*n<1?e+6*(i-e)*n:2*n<1?i:3*n<2?e+(i-e)*(2/3-n)*6:e,a[d]=255*o;return a}function h(t){var e=t[0]/60,i=t[1]/100,n=t[2]/100,a=Math.floor(e)%6,o=e-Math.floor(e),r=255*n*(1-i),s=255*n*(1-i*o),l=255*n*(1-i*(1-o));n*=255;switch(a){case 0:return[n,l,r];case 1:return[s,n,r];case 2:return[r,n,l];case 3:return[r,s,n];case 4:return[l,r,n];case 5:return[n,r,s]}}function c(t){var e,i,n,a,o=t[0]/360,s=t[1]/100,l=t[2]/100,d=s+l;switch(d>1&&(s/=d,l/=d),n=6*o-(e=Math.floor(6*o)),0!=(1&e)&&(n=1-n),a=s+n*((i=1-l)-s),e){default:case 6:case 0:r=i,g=a,b=s;break;case 1:r=a,g=i,b=s;break;case 2:r=s,g=i,b=a;break;case 3:r=s,g=a,b=i;break;case 4:r=a,g=s,b=i;break;case 5:r=i,g=s,b=a}return[255*r,255*g,255*b]}function f(t){var e=t[0]/100,i=t[1]/100,n=t[2]/100,a=t[3]/100;return[255*(1-Math.min(1,e*(1-a)+a)),255*(1-Math.min(1,i*(1-a)+a)),255*(1-Math.min(1,n*(1-a)+a))]}function p(t){var e,i,n,a=t[0]/100,o=t[1]/100,r=t[2]/100;return i=-.9689*a+1.8758*o+.0415*r,n=.0557*a+-.204*o+1.057*r,e=(e=3.2406*a+-1.5372*o+-.4986*r)>.0031308?1.055*Math.pow(e,1/2.4)-.055:e*=12.92,i=i>.0031308?1.055*Math.pow(i,1/2.4)-.055:i*=12.92,n=n>.0031308?1.055*Math.pow(n,1/2.4)-.055:n*=12.92,[255*(e=Math.min(Math.max(0,e),1)),255*(i=Math.min(Math.max(0,i),1)),255*(n=Math.min(Math.max(0,n),1))]}function m(t){var e=t[0],i=t[1],n=t[2];return i/=100,n/=108.883,e=(e/=95.047)>.008856?Math.pow(e,1/3):7.787*e+16/116,[116*(i=i>.008856?Math.pow(i,1/3):7.787*i+16/116)-16,500*(e-i),200*(i-(n=n>.008856?Math.pow(n,1/3):7.787*n+16/116))]}function v(t){var e,i,n,a,o=t[0],r=t[1],s=t[2];return o<=8?a=(i=100*o/903.3)/100*7.787+16/116:(i=100*Math.pow((o+16)/116,3),a=Math.pow(i/100,1/3)),[e=e/95.047<=.008856?e=95.047*(r/500+a-16/116)/7.787:95.047*Math.pow(r/500+a,3),i,n=n/108.883<=.008859?n=108.883*(a-s/200-16/116)/7.787:108.883*Math.pow(a-s/200,3)]}function x(t){var e,i=t[0],n=t[1],a=t[2];return(e=360*Math.atan2(a,n)/2/Math.PI)<0&&(e+=360),[i,Math.sqrt(n*n+a*a),e]}function y(t){return p(v(t))}function k(t){var e,i=t[0],n=t[1];return e=t[2]/360*2*Math.PI,[i,n*Math.cos(e),n*Math.sin(e)]}function w(t){return M[t]}var M={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},_={};for(var C in M)_[JSON.stringify(M[C])]=C;var S=function(){return new T};for(var P in e){S[P+"Raw"]=function(t){return function(i){return"number"==typeof i&&(i=Array.prototype.slice.call(arguments)),e[t](i)}}(P);var I=/(\w+)2(\w+)/.exec(P),A=I[1],D=I[2];(S[A]=S[A]||{})[D]=S[P]=function(t){return function(i){"number"==typeof i&&(i=Array.prototype.slice.call(arguments));var n=e[t](i);if("string"==typeof n||void 0===n)return n;for(var a=0;a=0&&e<1?H(Math.round(255*e)):"")},rgbString:function(t,e){if(e<1||t[3]&&t[3]<1)return N(t,e);return"rgb("+t[0]+", "+t[1]+", "+t[2]+")"},rgbaString:N,percentString:function(t,e){if(e<1||t[3]&&t[3]<1)return W(t,e);var i=Math.round(t[0]/255*100),n=Math.round(t[1]/255*100),a=Math.round(t[2]/255*100);return"rgb("+i+"%, "+n+"%, "+a+"%)"},percentaString:W,hslString:function(t,e){if(e<1||t[3]&&t[3]<1)return V(t,e);return"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)"},hslaString:V,hwbString:function(t,e){void 0===e&&(e=void 0!==t[3]?t[3]:1);return"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+(void 0!==e&&1!==e?", "+e:"")+")"},keyword:function(t){return j[t.slice(0,3)]}};function O(t){if(t){var e=[0,0,0],i=1,n=t.match(/^#([a-fA-F0-9]{3,4})$/i),a="";if(n){a=(n=n[1])[3];for(var o=0;oi?(e+.05)/(i+.05):(i+.05)/(e+.05)},level:function(t){var e=this.contrast(t);return e>=7.1?"AAA":e>=4.5?"AA":""},dark:function(){var t=this.values.rgb;return(299*t[0]+587*t[1]+114*t[2])/1e3<128},light:function(){return!this.dark()},negate:function(){for(var t=[],e=0;e<3;e++)t[e]=255-this.values.rgb[e];return this.setValues("rgb",t),this},lighten:function(t){var e=this.values.hsl;return e[2]+=e[2]*t,this.setValues("hsl",e),this},darken:function(t){var e=this.values.hsl;return e[2]-=e[2]*t,this.setValues("hsl",e),this},saturate:function(t){var e=this.values.hsl;return e[1]+=e[1]*t,this.setValues("hsl",e),this},desaturate:function(t){var e=this.values.hsl;return e[1]-=e[1]*t,this.setValues("hsl",e),this},whiten:function(t){var e=this.values.hwb;return e[1]+=e[1]*t,this.setValues("hwb",e),this},blacken:function(t){var e=this.values.hwb;return e[2]+=e[2]*t,this.setValues("hwb",e),this},greyscale:function(){var t=this.values.rgb,e=.3*t[0]+.59*t[1]+.11*t[2];return this.setValues("rgb",[e,e,e]),this},clearer:function(t){var e=this.values.alpha;return this.setValues("alpha",e-e*t),this},opaquer:function(t){var e=this.values.alpha;return this.setValues("alpha",e+e*t),this},rotate:function(t){var e=this.values.hsl,i=(e[0]+t)%360;return e[0]=i<0?360+i:i,this.setValues("hsl",e),this},mix:function(t,e){var i=t,n=void 0===e?.5:e,a=2*n-1,o=this.alpha()-i.alpha(),r=((a*o==-1?a:(a+o)/(1+a*o))+1)/2,s=1-r;return this.rgb(r*this.red()+s*i.red(),r*this.green()+s*i.green(),r*this.blue()+s*i.blue()).alpha(this.alpha()*n+i.alpha()*(1-n))},toJSON:function(){return this.rgb()},clone:function(){var t,e,i=new Y,n=this.values,a=i.values;for(var o in n)n.hasOwnProperty(o)&&(t=n[o],"[object Array]"===(e={}.toString.call(t))?a[o]=t.slice(0):"[object Number]"===e?a[o]=t:console.error("unexpected color value:",t));return i}},Y.prototype.spaces={rgb:["red","green","blue"],hsl:["hue","saturation","lightness"],hsv:["hue","saturation","value"],hwb:["hue","whiteness","blackness"],cmyk:["cyan","magenta","yellow","black"]},Y.prototype.maxes={rgb:[255,255,255],hsl:[360,100,100],hsv:[360,100,100],hwb:[360,100,100],cmyk:[100,100,100,100]},Y.prototype.getValues=function(t){for(var e=this.values,i={},n=0;n=0;a--)e.call(i,t[a],a);else for(a=0;a=1?t:-(Math.sqrt(1-t*t)-1)},easeOutCirc:function(t){return Math.sqrt(1-(t-=1)*t)},easeInOutCirc:function(t){return(t/=.5)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},easeInElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:1===t?1:(i||(i=.3),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),-n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i))},easeOutElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:1===t?1:(i||(i=.3),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),n*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/i)+1)},easeInOutElastic:function(t){var e=1.70158,i=0,n=1;return 0===t?0:2==(t/=.5)?1:(i||(i=.45),n<1?(n=1,e=i/4):e=i/(2*Math.PI)*Math.asin(1/n),t<1?n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*-.5:n*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*.5+1)},easeInBack:function(t){var e=1.70158;return t*t*((e+1)*t-e)},easeOutBack:function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1},easeInOutBack:function(t){var e=1.70158;return(t/=.5)<1?t*t*((1+(e*=1.525))*t-e)*.5:.5*((t-=2)*t*((1+(e*=1.525))*t+e)+2)},easeInBounce:function(t){return 1-Z.easeOutBounce(1-t)},easeOutBounce:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},easeInOutBounce:function(t){return t<.5?.5*Z.easeInBounce(2*t):.5*Z.easeOutBounce(2*t-1)+.5}},$={effects:Z};G.easingEffects=Z;var J=Math.PI,Q=J/180,tt=2*J,et=J/2,it=J/4,nt=2*J/3,at={clear:function(t){t.ctx.clearRect(0,0,t.width,t.height)},roundedRect:function(t,e,i,n,a,o){if(o){var r=Math.min(o,a/2,n/2),s=e+r,l=i+r,d=e+n-r,u=i+a-r;t.moveTo(e,l),se.left-1e-6&&t.xe.top-1e-6&&t.y0&&this.requestAnimationFrame()},advance:function(){for(var t,e,i,n,a=this.animations,o=0;o=i?(ut.callback(t.onAnimationComplete,[t],e),e.animating=!1,a.splice(o,1)):++o}},xt=ut.options.resolve,yt=["push","pop","shift","splice","unshift"];function kt(t,e){var i=t._chartjs;if(i){var n=i.listeners,a=n.indexOf(e);-1!==a&&n.splice(a,1),n.length>0||(yt.forEach(function(e){delete t[e]}),delete t._chartjs)}}var wt=function(t,e){this.initialize(t,e)};ut.extend(wt.prototype,{datasetElementType:null,dataElementType:null,initialize:function(t,e){this.chart=t,this.index=e,this.linkScales(),this.addElements()},updateIndex:function(t){this.index=t},linkScales:function(){var t=this,e=t.getMeta(),i=t.getDataset();null!==e.xAxisID&&e.xAxisID in t.chart.scales||(e.xAxisID=i.xAxisID||t.chart.options.scales.xAxes[0].id),null!==e.yAxisID&&e.yAxisID in t.chart.scales||(e.yAxisID=i.yAxisID||t.chart.options.scales.yAxes[0].id)},getDataset:function(){return this.chart.data.datasets[this.index]},getMeta:function(){return this.chart.getDatasetMeta(this.index)},getScaleForId:function(t){return this.chart.scales[t]},_getValueScaleId:function(){return this.getMeta().yAxisID},_getIndexScaleId:function(){return this.getMeta().xAxisID},_getValueScale:function(){return this.getScaleForId(this._getValueScaleId())},_getIndexScale:function(){return this.getScaleForId(this._getIndexScaleId())},reset:function(){this.update(!0)},destroy:function(){this._data&&kt(this._data,this)},createMetaDataset:function(){var t=this.datasetElementType;return t&&new t({_chart:this.chart,_datasetIndex:this.index})},createMetaData:function(t){var e=this.dataElementType;return e&&new e({_chart:this.chart,_datasetIndex:this.index,_index:t})},addElements:function(){var t,e,i=this.getMeta(),n=this.getDataset().data||[],a=i.data;for(t=0,e=n.length;ti&&this.insertElements(i,n-i)},insertElements:function(t,e){for(var i=0;is;)a-=2*Math.PI;for(;a=r&&a<=s,d=o>=i.innerRadius&&o<=i.outerRadius;return l&&d}return!1},getCenterPoint:function(){var t=this._view,e=(t.startAngle+t.endAngle)/2,i=(t.innerRadius+t.outerRadius)/2;return{x:t.x+Math.cos(e)*i,y:t.y+Math.sin(e)*i}},getArea:function(){var t=this._view;return Math.PI*((t.endAngle-t.startAngle)/(2*Math.PI))*(Math.pow(t.outerRadius,2)-Math.pow(t.innerRadius,2))},tooltipPosition:function(){var t=this._view,e=t.startAngle+(t.endAngle-t.startAngle)/2,i=(t.outerRadius-t.innerRadius)/2+t.innerRadius;return{x:t.x+Math.cos(e)*i,y:t.y+Math.sin(e)*i}},draw:function(){var t,e=this._chart.ctx,i=this._view,n=i.startAngle,a=i.endAngle,o="inner"===i.borderAlign?.33:0;e.save(),e.beginPath(),e.arc(i.x,i.y,Math.max(i.outerRadius-o,0),n,a),e.arc(i.x,i.y,i.innerRadius,a,n,!0),e.closePath(),e.fillStyle=i.backgroundColor,e.fill(),i.borderWidth&&("inner"===i.borderAlign?(e.beginPath(),t=o/i.outerRadius,e.arc(i.x,i.y,i.outerRadius,n-t,a+t),i.innerRadius>o?(t=o/i.innerRadius,e.arc(i.x,i.y,i.innerRadius-o,a+t,n-t,!0)):e.arc(i.x,i.y,o,a+Math.PI/2,n-Math.PI/2),e.closePath(),e.clip(),e.beginPath(),e.arc(i.x,i.y,i.outerRadius,n,a),e.arc(i.x,i.y,i.innerRadius,a,n,!0),e.closePath(),e.lineWidth=2*i.borderWidth,e.lineJoin="round"):(e.lineWidth=i.borderWidth,e.lineJoin="bevel"),e.strokeStyle=i.borderColor,e.stroke()),e.restore()}}),Ct=ut.valueOrDefault,St=st.global.defaultColor;st._set("global",{elements:{line:{tension:.4,backgroundColor:St,borderWidth:3,borderColor:St,borderCapStyle:"butt",borderDash:[],borderDashOffset:0,borderJoinStyle:"miter",capBezierPoints:!0,fill:!0}}});var Pt=pt.extend({draw:function(){var t,e,i,n,a=this._view,o=this._chart.ctx,r=a.spanGaps,s=this._children.slice(),l=st.global,d=l.elements.line,u=-1;for(this._loop&&s.length&&s.push(s[0]),o.save(),o.lineCap=a.borderCapStyle||d.borderCapStyle,o.setLineDash&&o.setLineDash(a.borderDash||d.borderDash),o.lineDashOffset=Ct(a.borderDashOffset,d.borderDashOffset),o.lineJoin=a.borderJoinStyle||d.borderJoinStyle,o.lineWidth=Ct(a.borderWidth,d.borderWidth),o.strokeStyle=a.borderColor||l.defaultColor,o.beginPath(),u=-1,t=0;tt.x&&(e=Ot(e,"left","right")):t.basei?i:n,r:l.right||a<0?0:a>e?e:a,b:l.bottom||o<0?0:o>i?i:o,l:l.left||r<0?0:r>e?e:r}}function Bt(t,e,i){var n=null===e,a=null===i,o=!(!t||n&&a)&&Rt(t);return o&&(n||e>=o.left&&e<=o.right)&&(a||i>=o.top&&i<=o.bottom)}st._set("global",{elements:{rectangle:{backgroundColor:Ft,borderColor:Ft,borderSkipped:"bottom",borderWidth:0}}});var Nt=pt.extend({draw:function(){var t=this._chart.ctx,e=this._view,i=function(t){var e=Rt(t),i=e.right-e.left,n=e.bottom-e.top,a=zt(t,i/2,n/2);return{outer:{x:e.left,y:e.top,w:i,h:n},inner:{x:e.left+a.l,y:e.top+a.t,w:i-a.l-a.r,h:n-a.t-a.b}}}(e),n=i.outer,a=i.inner;t.fillStyle=e.backgroundColor,t.fillRect(n.x,n.y,n.w,n.h),n.w===a.w&&n.h===a.h||(t.save(),t.beginPath(),t.rect(n.x,n.y,n.w,n.h),t.clip(),t.fillStyle=e.borderColor,t.rect(a.x,a.y,a.w,a.h),t.fill("evenodd"),t.restore())},height:function(){var t=this._view;return t.base-t.y},inRange:function(t,e){return Bt(this._view,t,e)},inLabelRange:function(t,e){var i=this._view;return Lt(i)?Bt(i,t,null):Bt(i,null,e)},inXRange:function(t){return Bt(this._view,t,null)},inYRange:function(t){return Bt(this._view,null,t)},getCenterPoint:function(){var t,e,i=this._view;return Lt(i)?(t=i.x,e=(i.y+i.base)/2):(t=(i.x+i.base)/2,e=i.y),{x:t,y:e}},getArea:function(){var t=this._view;return Lt(t)?t.width*Math.abs(t.y-t.base):t.height*Math.abs(t.x-t.base)},tooltipPosition:function(){var t=this._view;return{x:t.x,y:t.y}}}),Wt={},Vt=_t,Et=Pt,Ht=Tt,jt=Nt;Wt.Arc=Vt,Wt.Line=Et,Wt.Point=Ht,Wt.Rectangle=jt;var qt=ut.options.resolve;st._set("bar",{hover:{mode:"label"},scales:{xAxes:[{type:"category",categoryPercentage:.8,barPercentage:.9,offset:!0,gridLines:{offsetGridLines:!0}}],yAxes:[{type:"linear"}]}});var Yt=Mt.extend({dataElementType:Wt.Rectangle,initialize:function(){var t;Mt.prototype.initialize.apply(this,arguments),(t=this.getMeta()).stack=this.getDataset().stack,t.bar=!0},update:function(t){var e,i,n=this.getMeta().data;for(this._ruler=this.getRuler(),e=0,i=n.length;e0?Math.min(r,n-i):r,i=n;return r}(i,l):-1,pixels:l,start:r,end:s,stackCount:n,scale:i}},calculateBarValuePixels:function(t,e){var i,n,a,o,r,s,l=this.chart,d=this.getMeta(),u=this._getValueScale(),h=u.isHorizontal(),c=l.data.datasets,f=+u.getRightValue(c[t].data[e]),g=u.options.minBarLength,p=u.options.stacked,m=d.stack,v=0;if(p||void 0===p&&void 0!==m)for(i=0;i=0&&a>0)&&(v+=a));return o=u.getPixelForValue(v),s=(r=u.getPixelForValue(v+f))-o,void 0!==g&&Math.abs(s)=0&&!h||f<0&&h?o-g:o+g),{size:s,base:o,head:r,center:r+s/2}},calculateBarIndexPixels:function(t,e,i){var n=i.scale.options,a="flex"===n.barThickness?function(t,e,i){var n,a=e.pixels,o=a[t],r=t>0?a[t-1]:null,s=t');var i=t.data,n=i.datasets,a=i.labels;if(n.length)for(var o=0;o'),a[o]&&e.push(a[o]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(i,n){var a=t.getDatasetMeta(0),o=e.datasets[0],r=a.data[n],s=r&&r.custom||{},l=t.options.elements.arc;return{text:i,fillStyle:Gt([s.backgroundColor,o.backgroundColor,l.backgroundColor],void 0,n),strokeStyle:Gt([s.borderColor,o.borderColor,l.borderColor],void 0,n),lineWidth:Gt([s.borderWidth,o.borderWidth,l.borderWidth],void 0,n),hidden:isNaN(o.data[n])||a.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var i,n,a,o=e.index,r=this.chart;for(i=0,n=(r.data.datasets||[]).length;i=Math.PI?-1:m<-Math.PI?1:0))+g,b={x:Math.cos(m),y:Math.sin(m)},x={x:Math.cos(v),y:Math.sin(v)},y=m<=0&&v>=0||m<=2*Math.PI&&2*Math.PI<=v,k=m<=.5*Math.PI&&.5*Math.PI<=v||m<=2.5*Math.PI&&2.5*Math.PI<=v,w=m<=-Math.PI&&-Math.PI<=v||m<=Math.PI&&Math.PI<=v,M=m<=.5*-Math.PI&&.5*-Math.PI<=v||m<=1.5*Math.PI&&1.5*Math.PI<=v,_=f/100,C={x:w?-1:Math.min(b.x*(b.x<0?1:_),x.x*(x.x<0?1:_)),y:M?-1:Math.min(b.y*(b.y<0?1:_),x.y*(x.y<0?1:_))},S={x:y?1:Math.max(b.x*(b.x>0?1:_),x.x*(x.x>0?1:_)),y:k?1:Math.max(b.y*(b.y>0?1:_),x.y*(x.y>0?1:_))},P={width:.5*(S.x-C.x),height:.5*(S.y-C.y)};d=Math.min(s/P.width,l/P.height),u={x:-.5*(S.x+C.x),y:-.5*(S.y+C.y)}}for(e=0,i=c.length;e0&&!isNaN(t)?2*Math.PI*(Math.abs(t)/e):0},getMaxBorderWidth:function(t){var e,i,n,a,o,r,s,l,d=0,u=this.chart;if(!t)for(e=0,i=u.data.datasets.length;e(d=s>d?s:d)?l:d);return d},setHoverStyle:function(t){var e=t._model,i=t._options,n=ut.getHoverColor;t.$previousStyle={backgroundColor:e.backgroundColor,borderColor:e.borderColor,borderWidth:e.borderWidth},e.backgroundColor=Zt(i.hoverBackgroundColor,n(i.backgroundColor)),e.borderColor=Zt(i.hoverBorderColor,n(i.borderColor)),e.borderWidth=Zt(i.hoverBorderWidth,i.borderWidth)},_resolveElementOptions:function(t,e){var i,n,a,o=this.chart,r=this.getDataset(),s=t.custom||{},l=o.options.elements.arc,d={},u={chart:o,dataIndex:e,dataset:r,datasetIndex:this.index},h=["backgroundColor","borderColor","borderWidth","borderAlign","hoverBackgroundColor","hoverBorderColor","hoverBorderWidth"];for(i=0,n=h.length;i0&&ee(l[t-1]._model,s)&&(i.controlPointPreviousX=d(i.controlPointPreviousX,s.left,s.right),i.controlPointPreviousY=d(i.controlPointPreviousY,s.top,s.bottom)),t');var i=t.data,n=i.datasets,a=i.labels;if(n.length)for(var o=0;o'),a[o]&&e.push(a[o]),e.push("");return e.push(""),e.join("")},legend:{labels:{generateLabels:function(t){var e=t.data;return e.labels.length&&e.datasets.length?e.labels.map(function(i,n){var a=t.getDatasetMeta(0),o=e.datasets[0],r=a.data[n].custom||{},s=t.options.elements.arc;return{text:i,fillStyle:ae([r.backgroundColor,o.backgroundColor,s.backgroundColor],void 0,n),strokeStyle:ae([r.borderColor,o.borderColor,s.borderColor],void 0,n),lineWidth:ae([r.borderWidth,o.borderWidth,s.borderWidth],void 0,n),hidden:isNaN(o.data[n])||a.data[n].hidden,index:n}}):[]}},onClick:function(t,e){var i,n,a,o=e.index,r=this.chart;for(i=0,n=(r.data.datasets||[]).length;i0&&(o=t.getDatasetMeta(o[0]._datasetIndex).data),o},"x-axis":function(t,e){return me(t,e,{intersect:!1})},point:function(t,e){return fe(t,he(e,t))},nearest:function(t,e,i){var n=he(e,t);i.axis=i.axis||"xy";var a=pe(i.axis);return ge(t,n,i.intersect,a)},x:function(t,e,i){var n=he(e,t),a=[],o=!1;return ce(t,function(t){t.inXRange(n.x)&&a.push(t),t.inRange(n.x,n.y)&&(o=!0)}),i.intersect&&!o&&(a=[]),a},y:function(t,e,i){var n=he(e,t),a=[],o=!1;return ce(t,function(t){t.inYRange(n.y)&&a.push(t),t.inRange(n.x,n.y)&&(o=!0)}),i.intersect&&!o&&(a=[]),a}}};function be(t,e){return ut.where(t,function(t){return t.position===e})}function xe(t,e){t.forEach(function(t,e){return t._tmpIndex_=e,t}),t.sort(function(t,i){var n=e?i:t,a=e?t:i;return n.weight===a.weight?n._tmpIndex_-a._tmpIndex_:n.weight-a.weight}),t.forEach(function(t){delete t._tmpIndex_})}function ye(t,e){ut.each(t,function(t){e[t.position]+=t.isHorizontal()?t.height:t.width})}st._set("global",{layout:{padding:{top:0,right:0,bottom:0,left:0}}});var ke={defaults:{},addBox:function(t,e){t.boxes||(t.boxes=[]),e.fullWidth=e.fullWidth||!1,e.position=e.position||"top",e.weight=e.weight||0,t.boxes.push(e)},removeBox:function(t,e){var i=t.boxes?t.boxes.indexOf(e):-1;-1!==i&&t.boxes.splice(i,1)},configure:function(t,e,i){for(var n,a=["fullWidth","position","weight"],o=a.length,r=0;rdiv{position:absolute;width:1000000px;height:1000000px;left:0;top:0}.chartjs-size-monitor-shrink>div{position:absolute;width:200%;height:200%;left:0;top:0}"}))&&we.default||we,_e="$chartjs",Ce="chartjs-size-monitor",Se="chartjs-render-monitor",Pe="chartjs-render-animation",Ie=["animationstart","webkitAnimationStart"],Ae={touchstart:"mousedown",touchmove:"mousemove",touchend:"mouseup",pointerenter:"mouseenter",pointerdown:"mousedown",pointermove:"mousemove",pointerup:"mouseup",pointerleave:"mouseout",pointerout:"mouseout"};function De(t,e){var i=ut.getStyle(t,e),n=i&&i.match(/^(\d+)(\.\d+)?px$/);return n?Number(n[1]):void 0}var Te=!!function(){var t=!1;try{var e=Object.defineProperty({},"passive",{get:function(){t=!0}});window.addEventListener("e",null,e)}catch(t){}return t}()&&{passive:!0};function Fe(t,e,i){t.addEventListener(e,i,Te)}function Le(t,e,i){t.removeEventListener(e,i,Te)}function Re(t,e,i,n,a){return{type:t,chart:e,native:a||null,x:void 0!==i?i:null,y:void 0!==n?n:null}}function Oe(t){var e=document.createElement("div");return e.className=t||"",e}function ze(t,e,i){var n,a,o,r,s=t[_e]||(t[_e]={}),l=s.resizer=function(t){var e=Oe(Ce),i=Oe(Ce+"-expand"),n=Oe(Ce+"-shrink");i.appendChild(Oe()),n.appendChild(Oe()),e.appendChild(i),e.appendChild(n),e._reset=function(){i.scrollLeft=1e6,i.scrollTop=1e6,n.scrollLeft=1e6,n.scrollTop=1e6};var a=function(){e._reset(),t()};return Fe(i,"scroll",a.bind(i,"expand")),Fe(n,"scroll",a.bind(n,"shrink")),e}((n=function(){if(s.resizer){var n=i.options.maintainAspectRatio&&t.parentNode,a=n?n.clientWidth:0;e(Re("resize",i)),n&&n.clientWidth0){var o=t[0];o.label?i=o.label:o.xLabel?i=o.xLabel:a>0&&o.index-1?t.split("\n"):t}function Xe(t){var e=st.global;return{xPadding:t.xPadding,yPadding:t.yPadding,xAlign:t.xAlign,yAlign:t.yAlign,bodyFontColor:t.bodyFontColor,_bodyFontFamily:je(t.bodyFontFamily,e.defaultFontFamily),_bodyFontStyle:je(t.bodyFontStyle,e.defaultFontStyle),_bodyAlign:t.bodyAlign,bodyFontSize:je(t.bodyFontSize,e.defaultFontSize),bodySpacing:t.bodySpacing,titleFontColor:t.titleFontColor,_titleFontFamily:je(t.titleFontFamily,e.defaultFontFamily),_titleFontStyle:je(t.titleFontStyle,e.defaultFontStyle),titleFontSize:je(t.titleFontSize,e.defaultFontSize),_titleAlign:t.titleAlign,titleSpacing:t.titleSpacing,titleMarginBottom:t.titleMarginBottom,footerFontColor:t.footerFontColor,_footerFontFamily:je(t.footerFontFamily,e.defaultFontFamily),_footerFontStyle:je(t.footerFontStyle,e.defaultFontStyle),footerFontSize:je(t.footerFontSize,e.defaultFontSize),_footerAlign:t.footerAlign,footerSpacing:t.footerSpacing,footerMarginTop:t.footerMarginTop,caretSize:t.caretSize,cornerRadius:t.cornerRadius,backgroundColor:t.backgroundColor,opacity:0,legendColorBackground:t.multiKeyBackground,displayColors:t.displayColors,borderColor:t.borderColor,borderWidth:t.borderWidth}}function Ke(t,e){return"center"===e?t.x+t.width/2:"right"===e?t.x+t.width-t.xPadding:t.x+t.xPadding}function Ge(t){return Ye([],Ue(t))}var Ze=pt.extend({initialize:function(){this._model=Xe(this._options),this._lastActive=[]},getTitle:function(){var t=this._options.callbacks,e=t.beforeTitle.apply(this,arguments),i=t.title.apply(this,arguments),n=t.afterTitle.apply(this,arguments),a=[];return a=Ye(a,Ue(e)),a=Ye(a,Ue(i)),a=Ye(a,Ue(n))},getBeforeBody:function(){return Ge(this._options.callbacks.beforeBody.apply(this,arguments))},getBody:function(t,e){var i=this,n=i._options.callbacks,a=[];return ut.each(t,function(t){var o={before:[],lines:[],after:[]};Ye(o.before,Ue(n.beforeLabel.call(i,t,e))),Ye(o.lines,n.label.call(i,t,e)),Ye(o.after,Ue(n.afterLabel.call(i,t,e))),a.push(o)}),a},getAfterBody:function(){return Ge(this._options.callbacks.afterBody.apply(this,arguments))},getFooter:function(){var t=this._options.callbacks,e=t.beforeFooter.apply(this,arguments),i=t.footer.apply(this,arguments),n=t.afterFooter.apply(this,arguments),a=[];return a=Ye(a,Ue(e)),a=Ye(a,Ue(i)),a=Ye(a,Ue(n))},update:function(t){var e,i,n,a,o,r,s,l,d,u,h=this,c=h._options,f=h._model,g=h._model=Xe(c),p=h._active,m=h._data,v={xAlign:f.xAlign,yAlign:f.yAlign},b={x:f.x,y:f.y},x={width:f.width,height:f.height},y={x:f.caretX,y:f.caretY};if(p.length){g.opacity=1;var k=[],w=[];y=qe[c.position].call(h,p,h._eventPosition);var M=[];for(e=0,i=p.length;en.width&&(a=n.width-e.width),a<0&&(a=0)),"top"===u?o+=h:o-="bottom"===u?e.height+h:e.height/2,"center"===u?"left"===d?a+=h:"right"===d&&(a-=h):"left"===d?a-=c:"right"===d&&(a+=c),{x:a,y:o}}(g,x,v=function(t,e){var i,n,a,o,r,s=t._model,l=t._chart,d=t._chart.chartArea,u="center",h="center";s.yl.height-e.height&&(h="bottom");var c=(d.left+d.right)/2,f=(d.top+d.bottom)/2;"center"===h?(i=function(t){return t<=c},n=function(t){return t>c}):(i=function(t){return t<=e.width/2},n=function(t){return t>=l.width-e.width/2}),a=function(t){return t+e.width+s.caretSize+s.caretPadding>l.width},o=function(t){return t-e.width-s.caretSize-s.caretPadding<0},r=function(t){return t<=f?"top":"bottom"},i(s.x)?(u="left",a(s.x)&&(u="center",h=r(s.y))):n(s.x)&&(u="right",o(s.x)&&(u="center",h=r(s.y)));var g=t._options;return{xAlign:g.xAlign?g.xAlign:u,yAlign:g.yAlign?g.yAlign:h}}(this,x),h._chart)}else g.opacity=0;return g.xAlign=v.xAlign,g.yAlign=v.yAlign,g.x=b.x,g.y=b.y,g.width=x.width,g.height=x.height,g.caretX=y.x,g.caretY=y.y,h._model=g,t&&c.custom&&c.custom.call(h,g),h},drawCaret:function(t,e){var i=this._chart.ctx,n=this._view,a=this.getCaretPosition(t,e,n);i.lineTo(a.x1,a.y1),i.lineTo(a.x2,a.y2),i.lineTo(a.x3,a.y3)},getCaretPosition:function(t,e,i){var n,a,o,r,s,l,d=i.caretSize,u=i.cornerRadius,h=i.xAlign,c=i.yAlign,f=t.x,g=t.y,p=e.width,m=e.height;if("center"===c)s=g+m/2,"left"===h?(a=(n=f)-d,o=n,r=s+d,l=s-d):(a=(n=f+p)+d,o=n,r=s-d,l=s+d);else if("left"===h?(n=(a=f+u+d)-d,o=a+d):"right"===h?(n=(a=f+p-u-d)-d,o=a+d):(n=(a=i.caretX)-d,o=a+d),"top"===c)s=(r=g)-d,l=r;else{s=(r=g+m)+d,l=r;var v=o;o=n,n=v}return{x1:n,x2:a,x3:o,y1:r,y2:s,y3:l}},drawTitle:function(t,e,i){var n=e.title;if(n.length){t.x=Ke(e,e._titleAlign),i.textAlign=e._titleAlign,i.textBaseline="top";var a,o,r=e.titleFontSize,s=e.titleSpacing;for(i.fillStyle=e.titleFontColor,i.font=ut.fontString(r,e._titleFontStyle,e._titleFontFamily),a=0,o=n.length;a0&&i.stroke()},draw:function(){var t=this._chart.ctx,e=this._view;if(0!==e.opacity){var i={width:e.width,height:e.height},n={x:e.x,y:e.y},a=Math.abs(e.opacity<.001)?0:e.opacity,o=e.title.length||e.beforeBody.length||e.body.length||e.afterBody.length||e.footer.length;this._options.enabled&&o&&(t.save(),t.globalAlpha=a,this.drawBackground(n,e,t,i),n.y+=e.yPadding,this.drawTitle(n,e,t),this.drawBody(n,e,t),this.drawFooter(n,e,t),t.restore())}},handleEvent:function(t){var e,i=this,n=i._options;return i._lastActive=i._lastActive||[],"mouseout"===t.type?i._active=[]:i._active=i._chart.getElementsAtEventForMode(t,n.mode,n),(e=!ut.arrayEquals(i._active,i._lastActive))&&(i._lastActive=i._active,(n.enabled||n.custom)&&(i._eventPosition={x:t.x,y:t.y},i.update(!0),i.pivot())),e}}),$e=qe,Je=Ze;Je.positioners=$e;var Qe=ut.valueOrDefault;function ti(){return ut.merge({},[].slice.call(arguments),{merger:function(t,e,i,n){if("xAxes"===t||"yAxes"===t){var a,o,r,s=i[t].length;for(e[t]||(e[t]=[]),a=0;a=e[t].length&&e[t].push({}),!e[t][a].type||r.type&&r.type!==e[t][a].type?ut.merge(e[t][a],[He.getScaleDefaults(o),r]):ut.merge(e[t][a],r)}else ut._merger(t,e,i,n)}})}function ei(){return ut.merge({},[].slice.call(arguments),{merger:function(t,e,i,n){var a=e[t]||{},o=i[t];"scales"===t?e[t]=ti(a,o):"scale"===t?e[t]=ut.merge(a,[He.getScaleDefaults(o.type),o]):ut._merger(t,e,i,n)}})}function ii(t){return"top"===t||"bottom"===t}st._set("global",{elements:{},events:["mousemove","mouseout","click","touchstart","touchmove"],hover:{onHover:null,mode:"nearest",intersect:!0,animationDuration:400},onClick:null,maintainAspectRatio:!0,responsive:!0,responsiveAnimationDuration:0});var ni=function(t,e){return this.construct(t,e),this};ut.extend(ni.prototype,{construct:function(t,e){var i=this;e=function(t){var e=(t=t||{}).data=t.data||{};return e.datasets=e.datasets||[],e.labels=e.labels||[],t.options=ei(st.global,st[t.type],t.options||{}),t}(e);var n=Ve.acquireContext(t,e),a=n&&n.canvas,o=a&&a.height,r=a&&a.width;i.id=ut.uid(),i.ctx=n,i.canvas=a,i.config=e,i.width=r,i.height=o,i.aspectRatio=o?r/o:null,i.options=e.options,i._bufferedRender=!1,i.chart=i,i.controller=i,ni.instances[i.id]=i,Object.defineProperty(i,"data",{get:function(){return i.config.data},set:function(t){i.config.data=t}}),n&&a?(i.initialize(),i.update()):console.error("Failed to create chart: can't acquire context from the given item")},initialize:function(){var t=this;return Ee.notify(t,"beforeInit"),ut.retinaScale(t,t.options.devicePixelRatio),t.bindEvents(),t.options.responsive&&t.resize(!0),t.ensureScalesHaveIDs(),t.buildOrUpdateScales(),t.initToolTip(),Ee.notify(t,"afterInit"),t},clear:function(){return ut.canvas.clear(this),this},stop:function(){return bt.cancelAnimation(this),this},resize:function(t){var e=this,i=e.options,n=e.canvas,a=i.maintainAspectRatio&&e.aspectRatio||null,o=Math.max(0,Math.floor(ut.getMaximumWidth(n))),r=Math.max(0,Math.floor(a?o/a:ut.getMaximumHeight(n)));if((e.width!==o||e.height!==r)&&(n.width=e.width=o,n.height=e.height=r,n.style.width=o+"px",n.style.height=r+"px",ut.retinaScale(e,i.devicePixelRatio),!t)){var s={width:o,height:r};Ee.notify(e,"resize",[s]),i.onResize&&i.onResize(e,s),e.stop(),e.update({duration:i.responsiveAnimationDuration})}},ensureScalesHaveIDs:function(){var t=this.options,e=t.scales||{},i=t.scale;ut.each(e.xAxes,function(t,e){t.id=t.id||"x-axis-"+e}),ut.each(e.yAxes,function(t,e){t.id=t.id||"y-axis-"+e}),i&&(i.id=i.id||"scale")},buildOrUpdateScales:function(){var t=this,e=t.options,i=t.scales||{},n=[],a=Object.keys(i).reduce(function(t,e){return t[e]=!1,t},{});e.scales&&(n=n.concat((e.scales.xAxes||[]).map(function(t){return{options:t,dtype:"category",dposition:"bottom"}}),(e.scales.yAxes||[]).map(function(t){return{options:t,dtype:"linear",dposition:"left"}}))),e.scale&&n.push({options:e.scale,dtype:"radialLinear",isDefault:!0,dposition:"chartArea"}),ut.each(n,function(e){var n=e.options,o=n.id,r=Qe(n.type,e.dtype);ii(n.position)!==ii(e.dposition)&&(n.position=e.dposition),a[o]=!0;var s=null;if(o in i&&i[o].type===r)(s=i[o]).options=n,s.ctx=t.ctx,s.chart=t;else{var l=He.getScaleConstructor(r);if(!l)return;s=new l({id:o,type:r,options:n,ctx:t.ctx,chart:t}),i[s.id]=s}s.mergeTicksOptions(),e.isDefault&&(t.scale=s)}),ut.each(a,function(t,e){t||delete i[e]}),t.scales=i,He.addScalesToLayout(this)},buildOrUpdateControllers:function(){var t=this,e=[];return ut.each(t.data.datasets,function(i,n){var a=t.getDatasetMeta(n),o=i.type||t.config.type;if(a.type&&a.type!==o&&(t.destroyDatasetMeta(n),a=t.getDatasetMeta(n)),a.type=o,a.controller)a.controller.updateIndex(n),a.controller.linkScales();else{var r=ue[a.type];if(void 0===r)throw new Error('"'+a.type+'" is not a chart type.');a.controller=new r(t,n),e.push(a.controller)}},t),e},resetElements:function(){var t=this;ut.each(t.data.datasets,function(e,i){t.getDatasetMeta(i).controller.reset()},t)},reset:function(){this.resetElements(),this.tooltip.initialize()},update:function(t){var e,i,n=this;if(t&&"object"==typeof t||(t={duration:t,lazy:arguments[1]}),i=(e=n).options,ut.each(e.scales,function(t){ke.removeBox(e,t)}),i=ei(st.global,st[e.config.type],i),e.options=e.config.options=i,e.ensureScalesHaveIDs(),e.buildOrUpdateScales(),e.tooltip._options=i.tooltips,e.tooltip.initialize(),Ee._invalidate(n),!1!==Ee.notify(n,"beforeUpdate")){n.tooltip._data=n.data;var a=n.buildOrUpdateControllers();ut.each(n.data.datasets,function(t,e){n.getDatasetMeta(e).controller.buildOrUpdateElements()},n),n.updateLayout(),n.options.animation&&n.options.animation.duration&&ut.each(a,function(t){t.reset()}),n.updateDatasets(),n.tooltip.initialize(),n.lastActive=[],Ee.notify(n,"afterUpdate"),n._bufferedRender?n._bufferedRequest={duration:t.duration,easing:t.easing,lazy:t.lazy}:n.render(t)}},updateLayout:function(){!1!==Ee.notify(this,"beforeLayout")&&(ke.update(this,this.width,this.height),Ee.notify(this,"afterScaleUpdate"),Ee.notify(this,"afterLayout"))},updateDatasets:function(){if(!1!==Ee.notify(this,"beforeDatasetsUpdate")){for(var t=0,e=this.data.datasets.length;t=0;--i)e.isDatasetVisible(i)&&e.drawDataset(i,t);Ee.notify(e,"afterDatasetsDraw",[t])}},drawDataset:function(t,e){var i=this.getDatasetMeta(t),n={meta:i,index:t,easingValue:e};!1!==Ee.notify(this,"beforeDatasetDraw",[n])&&(i.controller.draw(e),Ee.notify(this,"afterDatasetDraw",[n]))},_drawTooltip:function(t){var e=this.tooltip,i={tooltip:e,easingValue:t};!1!==Ee.notify(this,"beforeTooltipDraw",[i])&&(e.draw(),Ee.notify(this,"afterTooltipDraw",[i]))},getElementAtEvent:function(t){return ve.modes.single(this,t)},getElementsAtEvent:function(t){return ve.modes.label(this,t,{intersect:!0})},getElementsAtXAxis:function(t){return ve.modes["x-axis"](this,t,{intersect:!0})},getElementsAtEventForMode:function(t,e,i){var n=ve.modes[e];return"function"==typeof n?n(this,t,i):[]},getDatasetAtEvent:function(t){return ve.modes.dataset(this,t,{intersect:!0})},getDatasetMeta:function(t){var e=this.data.datasets[t];e._meta||(e._meta={});var i=e._meta[this.id];return i||(i=e._meta[this.id]={type:null,data:[],dataset:null,controller:null,hidden:null,xAxisID:null,yAxisID:null}),i},getVisibleDatasetCount:function(){for(var t=0,e=0,i=this.data.datasets.length;e3?i[2]-i[1]:i[1]-i[0];Math.abs(n)>1&&t!==Math.floor(t)&&(n=t-Math.floor(t));var a=ut.log10(Math.abs(n)),o="";if(0!==t)if(Math.max(Math.abs(i[0]),Math.abs(i[i.length-1]))<1e-4){var r=ut.log10(Math.abs(t));o=t.toExponential(Math.floor(r)-Math.floor(a))}else{var s=-1*Math.floor(a);s=Math.max(Math.min(s,20),0),o=t.toFixed(s)}else o="0";return o},logarithmic:function(t,e,i){var n=t/Math.pow(10,Math.floor(ut.log10(t)));return 0===t?"0":1===n||2===n||5===n||0===e||e===i.length-1?t.toExponential():""}}},di=ut.valueOrDefault,ui=ut.valueAtIndexOrDefault;function hi(t){var e,i,n=[];for(e=0,i=t.length;ed&&ot.maxHeight){o--;break}o++,l=r*s}t.labelRotation=o},afterCalculateTickRotation:function(){ut.callback(this.options.afterCalculateTickRotation,[this])},beforeFit:function(){ut.callback(this.options.beforeFit,[this])},fit:function(){var t=this,e=t.minSize={width:0,height:0},i=hi(t._ticks),n=t.options,a=n.ticks,o=n.scaleLabel,r=n.gridLines,s=t._isVisible(),l=n.position,d=t.isHorizontal(),u=ut.options._parseFont,h=u(a),c=n.gridLines.tickMarkLength;if(e.width=d?t.isFullWidth()?t.maxWidth-t.margins.left-t.margins.right:t.maxWidth:s&&r.drawTicks?c:0,e.height=d?s&&r.drawTicks?c:0:t.maxHeight,o.display&&s){var f=u(o),g=ut.options.toPadding(o.padding),p=f.lineHeight+g.height;d?e.height+=p:e.width+=p}if(a.display&&s){var m=ut.longestText(t.ctx,h.string,i,t.longestTextCache),v=ut.numberOfLabelLines(i),b=.5*h.size,x=t.options.ticks.padding;if(t._maxLabelLines=v,t.longestLabelWidth=m,d){var y=ut.toRadians(t.labelRotation),k=Math.cos(y),w=Math.sin(y)*m+h.lineHeight*v+b;e.height=Math.min(t.maxHeight,e.height+w+x),t.ctx.font=h.string;var M,_,C=ci(t.ctx,i[0],h.string),S=ci(t.ctx,i[i.length-1],h.string),P=t.getPixelForTick(0)-t.left,I=t.right-t.getPixelForTick(i.length-1);0!==t.labelRotation?(M="bottom"===l?k*C:k*b,_="bottom"===l?k*b:k*S):(M=C/2,_=S/2),t.paddingLeft=Math.max(M-P,0)+3,t.paddingRight=Math.max(_-I,0)+3}else a.mirror?m=0:m+=x+b,e.width=Math.min(t.maxWidth,e.width+m),t.paddingTop=h.size/2,t.paddingBottom=h.size/2}t.handleMargins(),t.width=e.width,t.height=e.height},handleMargins:function(){var t=this;t.margins&&(t.paddingLeft=Math.max(t.paddingLeft-t.margins.left,0),t.paddingTop=Math.max(t.paddingTop-t.margins.top,0),t.paddingRight=Math.max(t.paddingRight-t.margins.right,0),t.paddingBottom=Math.max(t.paddingBottom-t.margins.bottom,0))},afterFit:function(){ut.callback(this.options.afterFit,[this])},isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},isFullWidth:function(){return this.options.fullWidth},getRightValue:function(t){if(ut.isNullOrUndef(t))return NaN;if(("number"==typeof t||t instanceof Number)&&!isFinite(t))return NaN;if(t)if(this.isHorizontal()){if(void 0!==t.x)return this.getRightValue(t.x)}else if(void 0!==t.y)return this.getRightValue(t.y);return t},getLabelForIndex:ut.noop,getPixelForValue:ut.noop,getValueForPixel:ut.noop,getPixelForTick:function(t){var e=this,i=e.options.offset;if(e.isHorizontal()){var n=(e.width-(e.paddingLeft+e.paddingRight))/Math.max(e._ticks.length-(i?0:1),1),a=n*t+e.paddingLeft;i&&(a+=n/2);var o=e.left+a;return o+=e.isFullWidth()?e.margins.left:0}var r=e.height-(e.paddingTop+e.paddingBottom);return e.top+t*(r/(e._ticks.length-1))},getPixelForDecimal:function(t){var e=this;if(e.isHorizontal()){var i=(e.width-(e.paddingLeft+e.paddingRight))*t+e.paddingLeft,n=e.left+i;return n+=e.isFullWidth()?e.margins.left:0}return e.top+t*e.height},getBasePixel:function(){return this.getPixelForValue(this.getBaseValue())},getBaseValue:function(){var t=this.min,e=this.max;return this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0},_autoSkip:function(t){var e,i,n=this,a=n.isHorizontal(),o=n.options.ticks.minor,r=t.length,s=!1,l=o.maxTicksLimit,d=n._tickSize()*(r-1),u=a?n.width-(n.paddingLeft+n.paddingRight):n.height-(n.paddingTop+n.PaddingBottom),h=[];for(d>u&&(s=1+Math.floor(d/u)),r>l&&(s=Math.max(s,1+Math.floor(r/l))),e=0;e1&&e%s>0&&delete i.label,h.push(i);return h},_tickSize:function(){var t=this,e=t.isHorizontal(),i=t.options.ticks.minor,n=ut.toRadians(t.labelRotation),a=Math.abs(Math.cos(n)),o=Math.abs(Math.sin(n)),r=i.autoSkipPadding||0,s=t.longestLabelWidth+r||0,l=ut.options._parseFont(i),d=t._maxLabelLines*l.lineHeight+r||0;return e?d*a>s*o?s/a:d/o:d*o0&&n>0&&(t.min=0)}var a=void 0!==e.min||void 0!==e.suggestedMin,o=void 0!==e.max||void 0!==e.suggestedMax;void 0!==e.min?t.min=e.min:void 0!==e.suggestedMin&&(null===t.min?t.min=e.suggestedMin:t.min=Math.min(t.min,e.suggestedMin)),void 0!==e.max?t.max=e.max:void 0!==e.suggestedMax&&(null===t.max?t.max=e.suggestedMax:t.max=Math.max(t.max,e.suggestedMax)),a!==o&&t.min>=t.max&&(a?t.max=t.min+1:t.min=t.max-1),t.min===t.max&&(t.max++,e.beginAtZero||t.min--)},getTickLimit:function(){var t,e=this.options.ticks,i=e.stepSize,n=e.maxTicksLimit;return i?t=Math.ceil(this.max/i)-Math.floor(this.min/i)+1:(t=this._computeTickLimit(),n=n||11),n&&(t=Math.min(n,t)),t},_computeTickLimit:function(){return Number.POSITIVE_INFINITY},handleDirectionalChanges:mi,buildTicks:function(){var t=this,e=t.options.ticks,i=t.getTickLimit(),n={maxTicks:i=Math.max(2,i),min:e.min,max:e.max,precision:e.precision,stepSize:ut.valueOrDefault(e.fixedStepSize,e.stepSize)},a=t.ticks=function(t,e){var i,n,a,o,r=[],s=t.stepSize,l=s||1,d=t.maxTicks-1,u=t.min,h=t.max,c=t.precision,f=e.min,g=e.max,p=ut.niceNum((g-f)/d/l)*l;if(p<1e-14&&vi(u)&&vi(h))return[f,g];(o=Math.ceil(g/p)-Math.floor(f/p))>d&&(p=ut.niceNum(o*p/d/l)*l),s||vi(c)?i=Math.pow(10,ut._decimalPlaces(p)):(i=Math.pow(10,c),p=Math.ceil(p*i)/i),n=Math.floor(f/p)*p,a=Math.ceil(g/p)*p,s&&(!vi(u)&&ut.almostWhole(u/p,p/1e3)&&(n=u),!vi(h)&&ut.almostWhole(h/p,p/1e3)&&(a=h)),o=(a-n)/p,o=ut.almostEquals(o,Math.round(o),p/1e3)?Math.round(o):Math.ceil(o),n=Math.round(n*i)/i,a=Math.round(a*i)/i,r.push(vi(u)?n:u);for(var m=1;mt.max&&(t.max=n))})});t.min=isFinite(t.min)&&!isNaN(t.min)?t.min:0,t.max=isFinite(t.max)&&!isNaN(t.max)?t.max:1,this.handleTickRangeOptions()},_computeTickLimit:function(){var t;return this.isHorizontal()?Math.ceil(this.width/40):(t=ut.options._parseFont(this.options.ticks),Math.ceil(this.height/t.lineHeight))},handleDirectionalChanges:function(){this.isHorizontal()||this.ticks.reverse()},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},getPixelForValue:function(t){var e=this,i=e.start,n=+e.getRightValue(t),a=e.end-i;return e.isHorizontal()?e.left+e.width/a*(n-i):e.bottom-e.height/a*(n-i)},getValueForPixel:function(t){var e=this,i=e.isHorizontal(),n=i?e.width:e.height,a=(i?t-e.left:e.bottom-t)/n;return e.start+(e.end-e.start)*a},getPixelForTick:function(t){return this.getPixelForValue(this.ticksAsNumbers[t])}}),ki=xi;yi._defaults=ki;var wi=ut.valueOrDefault;var Mi={position:"left",ticks:{callback:li.formatters.logarithmic}};function _i(t,e){return ut.isFinite(t)&&t>=0?t:e}var Ci=fi.extend({determineDataLimits:function(){var t=this,e=t.options,i=t.chart,n=i.data.datasets,a=t.isHorizontal();function o(e){return a?e.xAxisID===t.id:e.yAxisID===t.id}t.min=null,t.max=null,t.minNotZero=null;var r=e.stacked;if(void 0===r&&ut.each(n,function(t,e){if(!r){var n=i.getDatasetMeta(e);i.isDatasetVisible(e)&&o(n)&&void 0!==n.stack&&(r=!0)}}),e.stacked||r){var s={};ut.each(n,function(n,a){var r=i.getDatasetMeta(a),l=[r.type,void 0===e.stacked&&void 0===r.stack?a:"",r.stack].join(".");i.isDatasetVisible(a)&&o(r)&&(void 0===s[l]&&(s[l]=[]),ut.each(n.data,function(e,i){var n=s[l],a=+t.getRightValue(e);isNaN(a)||r.data[i].hidden||a<0||(n[i]=n[i]||0,n[i]+=a)}))}),ut.each(s,function(e){if(e.length>0){var i=ut.min(e),n=ut.max(e);t.min=null===t.min?i:Math.min(t.min,i),t.max=null===t.max?n:Math.max(t.max,n)}})}else ut.each(n,function(e,n){var a=i.getDatasetMeta(n);i.isDatasetVisible(n)&&o(a)&&ut.each(e.data,function(e,i){var n=+t.getRightValue(e);isNaN(n)||a.data[i].hidden||n<0||(null===t.min?t.min=n:nt.max&&(t.max=n),0!==n&&(null===t.minNotZero||n0?t.minNotZero=t.min:t.max<1?t.minNotZero=Math.pow(10,Math.floor(ut.log10(t.max))):t.minNotZero=1)},buildTicks:function(){var t=this,e=t.options.ticks,i=!t.isHorizontal(),n={min:_i(e.min),max:_i(e.max)},a=t.ticks=function(t,e){var i,n,a=[],o=wi(t.min,Math.pow(10,Math.floor(ut.log10(e.min)))),r=Math.floor(ut.log10(e.max)),s=Math.ceil(e.max/Math.pow(10,r));0===o?(i=Math.floor(ut.log10(e.minNotZero)),n=Math.floor(e.minNotZero/Math.pow(10,i)),a.push(o),o=n*Math.pow(10,i)):(i=Math.floor(ut.log10(o)),n=Math.floor(o/Math.pow(10,i)));var l=i<0?Math.pow(10,Math.abs(i)):1;do{a.push(o),10==++n&&(n=1,l=++i>=0?1:l),o=Math.round(n*Math.pow(10,i)*l)/l}while(ia?{start:e-i,end:e}:{start:e,end:e+i}}function Ri(t){return 0===t||180===t?"center":t<180?"left":"right"}function Oi(t,e,i,n){var a,o,r=i.y+n/2;if(ut.isArray(e))for(a=0,o=e.length;a270||t<90)&&(i.y-=e.h)}function Bi(t){return ut.isNumber(t)?t:0}var Ni=bi.extend({setDimensions:function(){var t=this;t.width=t.maxWidth,t.height=t.maxHeight,t.paddingTop=Fi(t.options)/2,t.xCenter=Math.floor(t.width/2),t.yCenter=Math.floor((t.height-t.paddingTop)/2),t.drawingArea=Math.min(t.height-t.paddingTop,t.width)/2},determineDataLimits:function(){var t=this,e=t.chart,i=Number.POSITIVE_INFINITY,n=Number.NEGATIVE_INFINITY;ut.each(e.data.datasets,function(a,o){if(e.isDatasetVisible(o)){var r=e.getDatasetMeta(o);ut.each(a.data,function(e,a){var o=+t.getRightValue(e);isNaN(o)||r.data[a].hidden||(i=Math.min(o,i),n=Math.max(o,n))})}}),t.min=i===Number.POSITIVE_INFINITY?0:i,t.max=n===Number.NEGATIVE_INFINITY?0:n,t.handleTickRangeOptions()},_computeTickLimit:function(){return Math.ceil(this.drawingArea/Fi(this.options))},convertTicksToLabels:function(){var t=this;bi.prototype.convertTicksToLabels.call(t),t.pointLabels=t.chart.data.labels.map(t.options.pointLabels.callback,t)},getLabelForIndex:function(t,e){return+this.getRightValue(this.chart.data.datasets[e].data[t])},fit:function(){var t=this.options;t.display&&t.pointLabels.display?function(t){var e,i,n,a=ut.options._parseFont(t.options.pointLabels),o={l:0,r:t.width,t:0,b:t.height-t.paddingTop},r={};t.ctx.font=a.string,t._pointLabelSizes=[];var s,l,d,u=Ti(t);for(e=0;eo.r&&(o.r=f.end,r.r=h),g.starto.b&&(o.b=g.end,r.b=h)}t.setReductions(t.drawingArea,o,r)}(this):this.setCenterPoint(0,0,0,0)},setReductions:function(t,e,i){var n=this,a=e.l/Math.sin(i.l),o=Math.max(e.r-n.width,0)/Math.sin(i.r),r=-e.t/Math.cos(i.t),s=-Math.max(e.b-(n.height-n.paddingTop),0)/Math.cos(i.b);a=Bi(a),o=Bi(o),r=Bi(r),s=Bi(s),n.drawingArea=Math.min(Math.floor(t-(a+o)/2),Math.floor(t-(r+s)/2)),n.setCenterPoint(a,o,r,s)},setCenterPoint:function(t,e,i,n){var a=this,o=a.width-e-a.drawingArea,r=t+a.drawingArea,s=i+a.drawingArea,l=a.height-a.paddingTop-n-a.drawingArea;a.xCenter=Math.floor((r+o)/2+a.left),a.yCenter=Math.floor((s+l)/2+a.top+a.paddingTop)},getIndexAngle:function(t){return t*(2*Math.PI/Ti(this))+(this.chart.options&&this.chart.options.startAngle?this.chart.options.startAngle:0)*Math.PI*2/360},getDistanceFromCenterForValue:function(t){var e=this;if(null===t)return 0;var i=e.drawingArea/(e.max-e.min);return e.options.ticks.reverse?(e.max-t)*i:(t-e.min)*i},getPointPosition:function(t,e){var i=this.getIndexAngle(t)-Math.PI/2;return{x:Math.cos(i)*e+this.xCenter,y:Math.sin(i)*e+this.yCenter}},getPointPositionForValue:function(t,e){return this.getPointPosition(t,this.getDistanceFromCenterForValue(e))},getBasePosition:function(){var t=this.min,e=this.max;return this.getPointPositionForValue(0,this.beginAtZero?0:t<0&&e<0?e:t>0&&e>0?t:0)},draw:function(){var t=this,e=t.options,i=e.gridLines,n=e.ticks;if(e.display){var a=t.ctx,o=this.getIndexAngle(0),r=ut.options._parseFont(n);(e.angleLines.display||e.pointLabels.display)&&function(t){var e=t.ctx,i=t.options,n=i.angleLines,a=i.gridLines,o=i.pointLabels,r=Pi(n.lineWidth,a.lineWidth),s=Pi(n.color,a.color),l=Fi(i);e.save(),e.lineWidth=r,e.strokeStyle=s,e.setLineDash&&(e.setLineDash(Ai([n.borderDash,a.borderDash,[]])),e.lineDashOffset=Ai([n.borderDashOffset,a.borderDashOffset,0]));var d=t.getDistanceFromCenterForValue(i.ticks.reverse?t.min:t.max),u=ut.options._parseFont(o);e.font=u.string,e.textBaseline="middle";for(var h=Ti(t)-1;h>=0;h--){if(n.display&&r&&s){var c=t.getPointPosition(h,d);e.beginPath(),e.moveTo(t.xCenter,t.yCenter),e.lineTo(c.x,c.y),e.stroke()}if(o.display){var f=0===h?l/2:0,g=t.getPointPosition(h,d+f+5),p=Ii(o.fontColor,h,st.global.defaultFontColor);e.fillStyle=p;var m=t.getIndexAngle(h),v=ut.toDegrees(m);e.textAlign=Ri(v),zi(v,t._pointLabelSizes[h],g),Oi(e,t.pointLabels[h]||"",g,u.lineHeight)}}e.restore()}(t),ut.each(t.ticks,function(e,s){if(s>0||n.reverse){var l=t.getDistanceFromCenterForValue(t.ticksAsNumbers[s]);if(i.display&&0!==s&&function(t,e,i,n){var a,o=t.ctx,r=e.circular,s=Ti(t),l=Ii(e.color,n-1),d=Ii(e.lineWidth,n-1);if((r||s)&&l&&d){if(o.save(),o.strokeStyle=l,o.lineWidth=d,o.setLineDash&&(o.setLineDash(e.borderDash||[]),o.lineDashOffset=e.borderDashOffset||0),o.beginPath(),r)o.arc(t.xCenter,t.yCenter,i,0,2*Math.PI);else{a=t.getPointPosition(0,i),o.moveTo(a.x,a.y);for(var u=1;u=0&&r<=s;){if(a=t[(n=r+s>>1)-1]||null,o=t[n],!a)return{lo:null,hi:o};if(o[e]i))return{lo:a,hi:o};s=n-1}}return{lo:o,hi:null}}(t,e,i),o=a.lo?a.hi?a.lo:t[t.length-2]:t[0],r=a.lo?a.hi?a.hi:t[t.length-1]:t[1],s=r[e]-o[e],l=s?(i-o[e])/s:0,d=(r[n]-o[n])*l;return o[n]+d}function Ki(t,e){var i=t._adapter,n=t.options.time,a=n.parser,o=a||n.format,r=e;return"function"==typeof a&&(r=a(r)),ut.isFinite(r)||(r="string"==typeof o?i.parse(r,o):i.parse(r)),null!==r?+r:(a||"function"!=typeof o||(r=o(e),ut.isFinite(r)||(r=i.parse(r))),r)}function Gi(t,e){if(ut.isNullOrUndef(e))return null;var i=t.options.time,n=Ki(t,t.getRightValue(e));return null===n?n:(i.round&&(n=+t._adapter.startOf(n,i.round)),n)}function Zi(t){for(var e=qi.indexOf(t)+1,i=qi.length;e=a&&i<=o&&d.push(i);return n.min=a,n.max=o,n._unit=s.unit||function(t,e,i,n,a){var o,r;for(o=qi.length-1;o>=qi.indexOf(i);o--)if(r=qi[o],ji[r].common&&t._adapter.diff(a,n,r)>=e.length)return r;return qi[i?qi.indexOf(i):0]}(n,d,s.minUnit,n.min,n.max),n._majorUnit=Zi(n._unit),n._table=function(t,e,i,n){if("linear"===n||!t.length)return[{time:e,pos:0},{time:i,pos:1}];var a,o,r,s,l,d=[],u=[e];for(a=0,o=t.length;ae&&s=0&&t0?r:1}}),Qi={position:"bottom",distribution:"linear",bounds:"data",adapters:{},time:{parser:!1,format:!1,unit:!1,round:!1,displayFormat:!1,isoWeekday:!1,minUnit:"millisecond",displayFormats:{}},ticks:{autoSkip:!1,source:"auto",major:{enabled:!1}}};Ji._defaults=Qi;var tn={category:gi,linear:yi,logarithmic:Ci,radialLinear:Ni,time:Ji},en={datetime:"MMM D, YYYY, h:mm:ss a",millisecond:"h:mm:ss.SSS a",second:"h:mm:ss a",minute:"h:mm a",hour:"hA",day:"MMM D",week:"ll",month:"MMM YYYY",quarter:"[Q]Q - YYYY",year:"YYYY"};si._date.override("function"==typeof t?{_id:"moment",formats:function(){return en},parse:function(e,i){return"string"==typeof e&&"string"==typeof i?e=t(e,i):e instanceof t||(e=t(e)),e.isValid()?e.valueOf():null},format:function(e,i){return t(e).format(i)},add:function(e,i,n){return t(e).add(i,n).valueOf()},diff:function(e,i,n){return t.duration(t(e).diff(t(i))).as(n)},startOf:function(e,i,n){return e=t(e),"isoWeek"===i?e.isoWeekday(n).valueOf():e.startOf(i).valueOf()},endOf:function(e,i){return t(e).endOf(i).valueOf()},_create:function(e){return t(e)}}:{}),st._set("global",{plugins:{filler:{propagate:!0}}});var nn={dataset:function(t){var e=t.fill,i=t.chart,n=i.getDatasetMeta(e),a=n&&i.isDatasetVisible(e)&&n.dataset._children||[],o=a.length||0;return o?function(t,e){return e=i)&&n;switch(o){case"bottom":return"start";case"top":return"end";case"zero":return"origin";case"origin":case"start":case"end":return o;default:return!1}}function on(t){var e,i=t.el._model||{},n=t.el._scale||{},a=t.fill,o=null;if(isFinite(a))return null;if("start"===a?o=void 0===i.scaleBottom?n.bottom:i.scaleBottom:"end"===a?o=void 0===i.scaleTop?n.top:i.scaleTop:void 0!==i.scaleZero?o=i.scaleZero:n.getBasePosition?o=n.getBasePosition():n.getBasePixel&&(o=n.getBasePixel()),null!=o){if(void 0!==o.x&&void 0!==o.y)return o;if(ut.isFinite(o))return{x:(e=n.isHorizontal())?o:null,y:e?null:o}}return null}function rn(t,e,i){var n,a=t[e].fill,o=[e];if(!i)return a;for(;!1!==a&&-1===o.indexOf(a);){if(!isFinite(a))return a;if(!(n=t[a]))return!1;if(n.visible)return a;o.push(a),a=n.fill}return!1}function sn(t){var e=t.fill,i="dataset";return!1===e?null:(isFinite(e)||(i="boundary"),nn[i](t))}function ln(t){return t&&!t.skip}function dn(t,e,i,n,a){var o;if(n&&a){for(t.moveTo(e[0].x,e[0].y),o=1;o0;--o)ut.canvas.lineTo(t,i[o],i[o-1],!0)}}var un={id:"filler",afterDatasetsUpdate:function(t,e){var i,n,a,o,r=(t.data.datasets||[]).length,s=e.propagate,l=[];for(n=0;ne?e:t.boxWidth}st._set("global",{legend:{display:!0,position:"top",fullWidth:!0,reverse:!1,weight:1e3,onClick:function(t,e){var i=e.datasetIndex,n=this.chart,a=n.getDatasetMeta(i);a.hidden=null===a.hidden?!n.data.datasets[i].hidden:null,n.update()},onHover:null,onLeave:null,labels:{boxWidth:40,padding:10,generateLabels:function(t){var e=t.data;return ut.isArray(e.datasets)?e.datasets.map(function(e,i){return{text:e.label,fillStyle:ut.isArray(e.backgroundColor)?e.backgroundColor[0]:e.backgroundColor,hidden:!t.isDatasetVisible(i),lineCap:e.borderCapStyle,lineDash:e.borderDash,lineDashOffset:e.borderDashOffset,lineJoin:e.borderJoinStyle,lineWidth:e.borderWidth,strokeStyle:e.borderColor,pointStyle:e.pointStyle,datasetIndex:i}},this):[]}}},legendCallback:function(t){var e=[];e.push('
    ');for(var i=0;i'),t.data.datasets[i].label&&e.push(t.data.datasets[i].label),e.push("");return e.push("
"),e.join("")}});var gn=pt.extend({initialize:function(t){ut.extend(this,t),this.legendHitBoxes=[],this._hoveredItem=null,this.doughnutMode=!1},beforeUpdate:hn,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:hn,beforeSetDimensions:hn,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:hn,beforeBuildLabels:hn,buildLabels:function(){var t=this,e=t.options.labels||{},i=ut.callback(e.generateLabels,[t.chart],t)||[];e.filter&&(i=i.filter(function(i){return e.filter(i,t.chart.data)})),t.options.reverse&&i.reverse(),t.legendItems=i},afterBuildLabels:hn,beforeFit:hn,fit:function(){var t=this,e=t.options,i=e.labels,n=e.display,a=t.ctx,o=ut.options._parseFont(i),r=o.size,s=t.legendHitBoxes=[],l=t.minSize,d=t.isHorizontal();if(d?(l.width=t.maxWidth,l.height=n?10:0):(l.width=n?10:0,l.height=t.maxHeight),n)if(a.font=o.string,d){var u=t.lineWidths=[0],h=0;a.textAlign="left",a.textBaseline="top",ut.each(t.legendItems,function(t,e){var n=fn(i,r)+r/2+a.measureText(t.text).width;(0===e||u[u.length-1]+n+i.padding>l.width)&&(h+=r+i.padding,u[u.length-(e>0?0:1)]=i.padding),s[e]={left:0,top:0,width:n,height:r},u[u.length-1]+=n+i.padding}),l.height+=h}else{var c=i.padding,f=t.columnWidths=[],g=i.padding,p=0,m=0,v=r+c;ut.each(t.legendItems,function(t,e){var n=fn(i,r)+r/2+a.measureText(t.text).width;e>0&&m+v>l.height-c&&(g+=p+i.padding,f.push(p),p=0,m=0),p=Math.max(p,n),m+=v,s[e]={left:0,top:0,width:n,height:r}}),g+=p,f.push(p),l.width+=g}t.width=l.width,t.height=l.height},afterFit:hn,isHorizontal:function(){return"top"===this.options.position||"bottom"===this.options.position},draw:function(){var t=this,e=t.options,i=e.labels,n=st.global,a=n.defaultColor,o=n.elements.line,r=t.width,s=t.lineWidths;if(e.display){var l,d=t.ctx,u=cn(i.fontColor,n.defaultFontColor),h=ut.options._parseFont(i),c=h.size;d.textAlign="left",d.textBaseline="middle",d.lineWidth=.5,d.strokeStyle=u,d.fillStyle=u,d.font=h.string;var f=fn(i,c),g=t.legendHitBoxes,p=t.isHorizontal();l=p?{x:t.left+(r-s[0])/2+i.padding,y:t.top+i.padding,line:0}:{x:t.left+i.padding,y:t.top+i.padding,line:0};var m=c+i.padding;ut.each(t.legendItems,function(n,u){var h=d.measureText(n.text).width,v=f+c/2+h,b=l.x,x=l.y;p?u>0&&b+v+i.padding>t.left+t.minSize.width&&(x=l.y+=m,l.line++,b=l.x=t.left+(r-s[l.line])/2+i.padding):u>0&&x+m>t.top+t.minSize.height&&(b=l.x=b+t.columnWidths[l.line]+i.padding,x=l.y=t.top+i.padding,l.line++),function(t,i,n){if(!(isNaN(f)||f<=0)){d.save();var r=cn(n.lineWidth,o.borderWidth);if(d.fillStyle=cn(n.fillStyle,a),d.lineCap=cn(n.lineCap,o.borderCapStyle),d.lineDashOffset=cn(n.lineDashOffset,o.borderDashOffset),d.lineJoin=cn(n.lineJoin,o.borderJoinStyle),d.lineWidth=r,d.strokeStyle=cn(n.strokeStyle,a),d.setLineDash&&d.setLineDash(cn(n.lineDash,o.borderDash)),e.labels&&e.labels.usePointStyle){var s=f*Math.SQRT2/2,l=t+f/2,u=i+c/2;ut.canvas.drawPoint(d,n.pointStyle,s,l,u)}else 0!==r&&d.strokeRect(t,i,f,c),d.fillRect(t,i,f,c);d.restore()}}(b,x,n),g[u].left=b,g[u].top=x,function(t,e,i,n){var a=c/2,o=f+a+t,r=e+a;d.fillText(i.text,o,r),i.hidden&&(d.beginPath(),d.lineWidth=2,d.moveTo(o,r),d.lineTo(o+n,r),d.stroke())}(b,x,n,h),p?l.x+=v+i.padding:l.y+=m})}},_getLegendItemAt:function(t,e){var i,n,a,o=this;if(t>=o.left&&t<=o.right&&e>=o.top&&e<=o.bottom)for(a=o.legendHitBoxes,i=0;i=(n=a[i]).left&&t<=n.left+n.width&&e>=n.top&&e<=n.top+n.height)return o.legendItems[i];return null},handleEvent:function(t){var e,i=this,n=i.options,a="mouseup"===t.type?"click":t.type;if("mousemove"===a){if(!n.onHover&&!n.onLeave)return}else{if("click"!==a)return;if(!n.onClick)return}e=i._getLegendItemAt(t.x,t.y),"click"===a?e&&n.onClick&&n.onClick.call(i,t.native,e):(n.onLeave&&e!==i._hoveredItem&&(i._hoveredItem&&n.onLeave.call(i,t.native,i._hoveredItem),i._hoveredItem=e),n.onHover&&e&&n.onHover.call(i,t.native,e))}});function pn(t,e){var i=new gn({ctx:t.ctx,options:e,chart:t});ke.configure(t,i,e),ke.addBox(t,i),t.legend=i}var mn={id:"legend",_element:gn,beforeInit:function(t){var e=t.options.legend;e&&pn(t,e)},beforeUpdate:function(t){var e=t.options.legend,i=t.legend;e?(ut.mergeIf(e,st.global.legend),i?(ke.configure(t,i,e),i.options=e):pn(t,e)):i&&(ke.removeBox(t,i),delete t.legend)},afterEvent:function(t,e){var i=t.legend;i&&i.handleEvent(e)}},vn=ut.noop;st._set("global",{title:{display:!1,fontStyle:"bold",fullWidth:!0,padding:10,position:"top",text:"",weight:2e3}});var bn=pt.extend({initialize:function(t){ut.extend(this,t),this.legendHitBoxes=[]},beforeUpdate:vn,update:function(t,e,i){var n=this;return n.beforeUpdate(),n.maxWidth=t,n.maxHeight=e,n.margins=i,n.beforeSetDimensions(),n.setDimensions(),n.afterSetDimensions(),n.beforeBuildLabels(),n.buildLabels(),n.afterBuildLabels(),n.beforeFit(),n.fit(),n.afterFit(),n.afterUpdate(),n.minSize},afterUpdate:vn,beforeSetDimensions:vn,setDimensions:function(){var t=this;t.isHorizontal()?(t.width=t.maxWidth,t.left=0,t.right=t.width):(t.height=t.maxHeight,t.top=0,t.bottom=t.height),t.paddingLeft=0,t.paddingTop=0,t.paddingRight=0,t.paddingBottom=0,t.minSize={width:0,height:0}},afterSetDimensions:vn,beforeBuildLabels:vn,buildLabels:vn,afterBuildLabels:vn,beforeFit:vn,fit:function(){var t=this,e=t.options,i=e.display,n=t.minSize,a=ut.isArray(e.text)?e.text.length:1,o=ut.options._parseFont(e),r=i?a*o.lineHeight+2*e.padding:0;t.isHorizontal()?(n.width=t.maxWidth,n.height=r):(n.width=r,n.height=t.maxHeight),t.width=n.width,t.height=n.height},afterFit:vn,isHorizontal:function(){var t=this.options.position;return"top"===t||"bottom"===t},draw:function(){var t=this,e=t.ctx,i=t.options;if(i.display){var n,a,o,r=ut.options._parseFont(i),s=r.lineHeight,l=s/2+i.padding,d=0,u=t.top,h=t.left,c=t.bottom,f=t.right;e.fillStyle=ut.valueOrDefault(i.fontColor,st.global.defaultFontColor),e.font=r.string,t.isHorizontal()?(a=h+(f-h)/2,o=u+l,n=f-h):(a="left"===i.position?h+l:f-l,o=u+(c-u)/2,n=c-u,d=Math.PI*("left"===i.position?-.5:.5)),e.save(),e.translate(a,o),e.rotate(d),e.textAlign="center",e.textBaseline="middle";var g=i.text;if(ut.isArray(g))for(var p=0,m=0;m=0;n--){var a=t[n];if(e(a))return a}},ut.isNumber=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},ut.almostEquals=function(t,e,i){return Math.abs(t-e)t},ut.max=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.max(t,e)},Number.NEGATIVE_INFINITY)},ut.min=function(t){return t.reduce(function(t,e){return isNaN(e)?t:Math.min(t,e)},Number.POSITIVE_INFINITY)},ut.sign=Math.sign?function(t){return Math.sign(t)}:function(t){return 0==(t=+t)||isNaN(t)?t:t>0?1:-1},ut.log10=Math.log10?function(t){return Math.log10(t)}:function(t){var e=Math.log(t)*Math.LOG10E,i=Math.round(e);return t===Math.pow(10,i)?i:e},ut.toRadians=function(t){return t*(Math.PI/180)},ut.toDegrees=function(t){return t*(180/Math.PI)},ut._decimalPlaces=function(t){if(ut.isFinite(t)){for(var e=1,i=0;Math.round(t*e)/e!==t;)e*=10,i++;return i}},ut.getAngleFromPoint=function(t,e){var i=e.x-t.x,n=e.y-t.y,a=Math.sqrt(i*i+n*n),o=Math.atan2(n,i);return o<-.5*Math.PI&&(o+=2*Math.PI),{angle:o,distance:a}},ut.distanceBetweenPoints=function(t,e){return Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))},ut.aliasPixel=function(t){return t%2==0?0:.5},ut._alignPixel=function(t,e,i){var n=t.currentDevicePixelRatio,a=i/2;return Math.round((e-a)*n)/n+a},ut.splineCurve=function(t,e,i,n){var a=t.skip?e:t,o=e,r=i.skip?e:i,s=Math.sqrt(Math.pow(o.x-a.x,2)+Math.pow(o.y-a.y,2)),l=Math.sqrt(Math.pow(r.x-o.x,2)+Math.pow(r.y-o.y,2)),d=s/(s+l),u=l/(s+l),h=n*(d=isNaN(d)?0:d),c=n*(u=isNaN(u)?0:u);return{previous:{x:o.x-h*(r.x-a.x),y:o.y-h*(r.y-a.y)},next:{x:o.x+c*(r.x-a.x),y:o.y+c*(r.y-a.y)}}},ut.EPSILON=Number.EPSILON||1e-14,ut.splineCurveMonotone=function(t){var e,i,n,a,o,r,s,l,d,u=(t||[]).map(function(t){return{model:t._model,deltaK:0,mK:0}}),h=u.length;for(e=0;e0?u[e-1]:null,(a=e0?u[e-1]:null,a=e=t.length-1?t[0]:t[e+1]:e>=t.length-1?t[t.length-1]:t[e+1]},ut.previousItem=function(t,e,i){return i?e<=0?t[t.length-1]:t[e-1]:e<=0?t[0]:t[e-1]},ut.niceNum=function(t,e){var i=Math.floor(ut.log10(t)),n=t/Math.pow(10,i);return(e?n<1.5?1:n<3?2:n<7?5:10:n<=1?1:n<=2?2:n<=5?5:10)*Math.pow(10,i)},ut.requestAnimFrame="undefined"==typeof window?function(t){t()}:window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){return window.setTimeout(t,1e3/60)},ut.getRelativePosition=function(t,e){var i,n,a=t.originalEvent||t,o=t.target||t.srcElement,r=o.getBoundingClientRect(),s=a.touches;s&&s.length>0?(i=s[0].clientX,n=s[0].clientY):(i=a.clientX,n=a.clientY);var l=parseFloat(ut.getStyle(o,"padding-left")),d=parseFloat(ut.getStyle(o,"padding-top")),u=parseFloat(ut.getStyle(o,"padding-right")),h=parseFloat(ut.getStyle(o,"padding-bottom")),c=r.right-r.left-l-u,f=r.bottom-r.top-d-h;return{x:i=Math.round((i-r.left-l)/c*o.width/e.currentDevicePixelRatio),y:n=Math.round((n-r.top-d)/f*o.height/e.currentDevicePixelRatio)}},ut.getConstraintWidth=function(t){return i(t,"max-width","clientWidth")},ut.getConstraintHeight=function(t){return i(t,"max-height","clientHeight")},ut._calculatePadding=function(t,e,i){return(e=ut.getStyle(t,e)).indexOf("%")>-1?i*parseInt(e,10)/100:parseInt(e,10)},ut._getParentNode=function(t){var e=t.parentNode;return e&&"[object ShadowRoot]"===e.toString()&&(e=e.host),e},ut.getMaximumWidth=function(t){var e=ut._getParentNode(t);if(!e)return t.clientWidth;var i=e.clientWidth,n=i-ut._calculatePadding(e,"padding-left",i)-ut._calculatePadding(e,"padding-right",i),a=ut.getConstraintWidth(t);return isNaN(a)?n:Math.min(n,a)},ut.getMaximumHeight=function(t){var e=ut._getParentNode(t);if(!e)return t.clientHeight;var i=e.clientHeight,n=i-ut._calculatePadding(e,"padding-top",i)-ut._calculatePadding(e,"padding-bottom",i),a=ut.getConstraintHeight(t);return isNaN(a)?n:Math.min(n,a)},ut.getStyle=function(t,e){return t.currentStyle?t.currentStyle[e]:document.defaultView.getComputedStyle(t,null).getPropertyValue(e)},ut.retinaScale=function(t,e){var i=t.currentDevicePixelRatio=e||"undefined"!=typeof window&&window.devicePixelRatio||1;if(1!==i){var n=t.canvas,a=t.height,o=t.width;n.height=a*i,n.width=o*i,t.ctx.scale(i,i),n.style.height||n.style.width||(n.style.height=a+"px",n.style.width=o+"px")}},ut.fontString=function(t,e,i){return e+" "+t+"px "+i},ut.longestText=function(t,e,i,n){var a=(n=n||{}).data=n.data||{},o=n.garbageCollect=n.garbageCollect||[];n.font!==e&&(a=n.data={},o=n.garbageCollect=[],n.font=e),t.font=e;var r=0;ut.each(i,function(e){null!=e&&!0!==ut.isArray(e)?r=ut.measureText(t,a,o,r,e):ut.isArray(e)&&ut.each(e,function(e){null==e||ut.isArray(e)||(r=ut.measureText(t,a,o,r,e))})});var s=o.length/2;if(s>i.length){for(var l=0;ln&&(n=o),n},ut.numberOfLabelLines=function(t){var e=1;return ut.each(t,function(t){ut.isArray(t)&&t.length>e&&(e=t.length)}),e},ut.color=X?function(t){return t instanceof CanvasGradient&&(t=st.global.defaultColor),X(t)}:function(t){return console.error("Color.js not found!"),t},ut.getHoverColor=function(t){return t instanceof CanvasPattern||t instanceof CanvasGradient?t:ut.color(t).saturate(.5).darken(.1).rgbString()}}(),ai._adapters=si,ai.Animation=vt,ai.animationService=bt,ai.controllers=ue,ai.DatasetController=Mt,ai.defaults=st,ai.Element=pt,ai.elements=Wt,ai.Interaction=ve,ai.layouts=ke,ai.platform=Ve,ai.plugins=Ee,ai.Scale=fi,ai.scaleService=He,ai.Ticks=li,ai.Tooltip=Je,ai.helpers.each(tn,function(t,e){ai.scaleService.registerScaleType(e,t,t._defaults)}),yn)yn.hasOwnProperty(_n)&&ai.plugins.register(yn[_n]);ai.platform.initialize();var Cn=ai;return"undefined"!=typeof window&&(window.Chart=ai),ai.Chart=ai,ai.Legend=yn.legend._element,ai.Title=yn.title._element,ai.pluginService=ai.plugins,ai.PluginBase=ai.Element.extend({}),ai.canvasHelpers=ai.helpers.canvas,ai.layoutService=ai.layouts,ai.LinearScaleBase=bi,ai.helpers.each(["Bar","Bubble","Doughnut","Line","PolarArea","Radar","Scatter"],function(t){ai[t]=function(e,i){return new ai(e,ai.helpers.merge(i||{},{type:t.charAt(0).toLowerCase()+t.slice(1)}))}}),Cn}); diff --git a/INCUBATE/incubate/incubate/static/vendors/chartist/chartist.min.css b/INCUBATE/incubate/incubate/static/vendors/chartist/chartist.min.css new file mode 100644 index 0000000000000000000000000000000000000000..6a23d47015e6ab43add6bbb7684a2eb10bbdc42f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/chartist/chartist.min.css @@ -0,0 +1 @@ +.ct-double-octave:after,.ct-major-eleventh:after,.ct-major-second:after,.ct-major-seventh:after,.ct-major-sixth:after,.ct-major-tenth:after,.ct-major-third:after,.ct-major-twelfth:after,.ct-minor-second:after,.ct-minor-seventh:after,.ct-minor-sixth:after,.ct-minor-third:after,.ct-octave:after,.ct-perfect-fifth:after,.ct-perfect-fourth:after,.ct-square:after{content:"";clear:both}.ct-label{fill:rgba(0,0,0,.4);color:rgba(0,0,0,.4);font-size:.75rem;line-height:1}.ct-grid-background,.ct-line{fill:none}.ct-chart-bar .ct-label,.ct-chart-line .ct-label{display:block;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.ct-chart-donut .ct-label,.ct-chart-pie .ct-label{dominant-baseline:central}.ct-label.ct-horizontal.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-label.ct-horizontal.ct-end{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-label.ct-vertical.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-end;-webkit-justify-content:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end;text-align:right;text-anchor:end}.ct-label.ct-vertical.ct-end{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-chart-bar .ct-label.ct-horizontal.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;text-anchor:start}.ct-chart-bar .ct-label.ct-horizontal.ct-end{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;text-anchor:start}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:start}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:flex-end;-webkit-justify-content:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end;text-align:right;text-anchor:end}.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:flex-start;-webkit-justify-content:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start;text-align:left;text-anchor:end}.ct-grid{stroke:rgba(0,0,0,.2);stroke-width:1px;stroke-dasharray:2px}.ct-point{stroke-width:10px;stroke-linecap:round}.ct-line{stroke-width:4px}.ct-area{stroke:none;fill-opacity:.1}.ct-bar{fill:none;stroke-width:10px}.ct-slice-donut{fill:none;stroke-width:60px}.ct-series-a .ct-bar,.ct-series-a .ct-line,.ct-series-a .ct-point,.ct-series-a .ct-slice-donut{stroke:#d70206}.ct-series-a .ct-area,.ct-series-a .ct-slice-donut-solid,.ct-series-a .ct-slice-pie{fill:#d70206}.ct-series-b .ct-bar,.ct-series-b .ct-line,.ct-series-b .ct-point,.ct-series-b .ct-slice-donut{stroke:#f05b4f}.ct-series-b .ct-area,.ct-series-b .ct-slice-donut-solid,.ct-series-b .ct-slice-pie{fill:#f05b4f}.ct-series-c .ct-bar,.ct-series-c .ct-line,.ct-series-c .ct-point,.ct-series-c .ct-slice-donut{stroke:#f4c63d}.ct-series-c .ct-area,.ct-series-c .ct-slice-donut-solid,.ct-series-c .ct-slice-pie{fill:#f4c63d}.ct-series-d .ct-bar,.ct-series-d .ct-line,.ct-series-d .ct-point,.ct-series-d .ct-slice-donut{stroke:#d17905}.ct-series-d .ct-area,.ct-series-d .ct-slice-donut-solid,.ct-series-d .ct-slice-pie{fill:#d17905}.ct-series-e .ct-bar,.ct-series-e .ct-line,.ct-series-e .ct-point,.ct-series-e .ct-slice-donut{stroke:#453d3f}.ct-series-e .ct-area,.ct-series-e .ct-slice-donut-solid,.ct-series-e .ct-slice-pie{fill:#453d3f}.ct-series-f .ct-bar,.ct-series-f .ct-line,.ct-series-f .ct-point,.ct-series-f .ct-slice-donut{stroke:#59922b}.ct-series-f .ct-area,.ct-series-f .ct-slice-donut-solid,.ct-series-f .ct-slice-pie{fill:#59922b}.ct-series-g .ct-bar,.ct-series-g .ct-line,.ct-series-g .ct-point,.ct-series-g .ct-slice-donut{stroke:#0544d3}.ct-series-g .ct-area,.ct-series-g .ct-slice-donut-solid,.ct-series-g .ct-slice-pie{fill:#0544d3}.ct-series-h .ct-bar,.ct-series-h .ct-line,.ct-series-h .ct-point,.ct-series-h .ct-slice-donut{stroke:#6b0392}.ct-series-h .ct-area,.ct-series-h .ct-slice-donut-solid,.ct-series-h .ct-slice-pie{fill:#6b0392}.ct-series-i .ct-bar,.ct-series-i .ct-line,.ct-series-i .ct-point,.ct-series-i .ct-slice-donut{stroke:#f05b4f}.ct-series-i .ct-area,.ct-series-i .ct-slice-donut-solid,.ct-series-i .ct-slice-pie{fill:#f05b4f}.ct-series-j .ct-bar,.ct-series-j .ct-line,.ct-series-j .ct-point,.ct-series-j .ct-slice-donut{stroke:#dda458}.ct-series-j .ct-area,.ct-series-j .ct-slice-donut-solid,.ct-series-j .ct-slice-pie{fill:#dda458}.ct-series-k .ct-bar,.ct-series-k .ct-line,.ct-series-k .ct-point,.ct-series-k .ct-slice-donut{stroke:#eacf7d}.ct-series-k .ct-area,.ct-series-k .ct-slice-donut-solid,.ct-series-k .ct-slice-pie{fill:#eacf7d}.ct-series-l .ct-bar,.ct-series-l .ct-line,.ct-series-l .ct-point,.ct-series-l .ct-slice-donut{stroke:#86797d}.ct-series-l .ct-area,.ct-series-l .ct-slice-donut-solid,.ct-series-l .ct-slice-pie{fill:#86797d}.ct-series-m .ct-bar,.ct-series-m .ct-line,.ct-series-m .ct-point,.ct-series-m .ct-slice-donut{stroke:#b2c326}.ct-series-m .ct-area,.ct-series-m .ct-slice-donut-solid,.ct-series-m .ct-slice-pie{fill:#b2c326}.ct-series-n .ct-bar,.ct-series-n .ct-line,.ct-series-n .ct-point,.ct-series-n .ct-slice-donut{stroke:#6188e2}.ct-series-n .ct-area,.ct-series-n .ct-slice-donut-solid,.ct-series-n .ct-slice-pie{fill:#6188e2}.ct-series-o .ct-bar,.ct-series-o .ct-line,.ct-series-o .ct-point,.ct-series-o .ct-slice-donut{stroke:#a748ca}.ct-series-o .ct-area,.ct-series-o .ct-slice-donut-solid,.ct-series-o .ct-slice-pie{fill:#a748ca}.ct-square{display:block;position:relative;width:100%}.ct-square:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:100%}.ct-square:after{display:table}.ct-square>svg{display:block;position:absolute;top:0;left:0}.ct-minor-second{display:block;position:relative;width:100%}.ct-minor-second:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:93.75%}.ct-minor-second:after{display:table}.ct-minor-second>svg{display:block;position:absolute;top:0;left:0}.ct-major-second{display:block;position:relative;width:100%}.ct-major-second:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:88.8888888889%}.ct-major-second:after{display:table}.ct-major-second>svg{display:block;position:absolute;top:0;left:0}.ct-minor-third{display:block;position:relative;width:100%}.ct-minor-third:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:83.3333333333%}.ct-minor-third:after{display:table}.ct-minor-third>svg{display:block;position:absolute;top:0;left:0}.ct-major-third{display:block;position:relative;width:100%}.ct-major-third:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:80%}.ct-major-third:after{display:table}.ct-major-third>svg{display:block;position:absolute;top:0;left:0}.ct-perfect-fourth{display:block;position:relative;width:100%}.ct-perfect-fourth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:75%}.ct-perfect-fourth:after{display:table}.ct-perfect-fourth>svg{display:block;position:absolute;top:0;left:0}.ct-perfect-fifth{display:block;position:relative;width:100%}.ct-perfect-fifth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:66.6666666667%}.ct-perfect-fifth:after{display:table}.ct-perfect-fifth>svg{display:block;position:absolute;top:0;left:0}.ct-minor-sixth{display:block;position:relative;width:100%}.ct-minor-sixth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:62.5%}.ct-minor-sixth:after{display:table}.ct-minor-sixth>svg{display:block;position:absolute;top:0;left:0}.ct-golden-section{display:block;position:relative;width:100%}.ct-golden-section:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:61.804697157%}.ct-golden-section:after{content:"";display:table;clear:both}.ct-golden-section>svg{display:block;position:absolute;top:0;left:0}.ct-major-sixth{display:block;position:relative;width:100%}.ct-major-sixth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:60%}.ct-major-sixth:after{display:table}.ct-major-sixth>svg{display:block;position:absolute;top:0;left:0}.ct-minor-seventh{display:block;position:relative;width:100%}.ct-minor-seventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:56.25%}.ct-minor-seventh:after{display:table}.ct-minor-seventh>svg{display:block;position:absolute;top:0;left:0}.ct-major-seventh{display:block;position:relative;width:100%}.ct-major-seventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:53.3333333333%}.ct-major-seventh:after{display:table}.ct-major-seventh>svg{display:block;position:absolute;top:0;left:0}.ct-octave{display:block;position:relative;width:100%}.ct-octave:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:50%}.ct-octave:after{display:table}.ct-octave>svg{display:block;position:absolute;top:0;left:0}.ct-major-tenth{display:block;position:relative;width:100%}.ct-major-tenth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:40%}.ct-major-tenth:after{display:table}.ct-major-tenth>svg{display:block;position:absolute;top:0;left:0}.ct-major-eleventh{display:block;position:relative;width:100%}.ct-major-eleventh:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:37.5%}.ct-major-eleventh:after{display:table}.ct-major-eleventh>svg{display:block;position:absolute;top:0;left:0}.ct-major-twelfth{display:block;position:relative;width:100%}.ct-major-twelfth:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:33.3333333333%}.ct-major-twelfth:after{display:table}.ct-major-twelfth>svg{display:block;position:absolute;top:0;left:0}.ct-double-octave{display:block;position:relative;width:100%}.ct-double-octave:before{display:block;float:left;content:"";width:0;height:0;padding-bottom:25%}.ct-double-octave:after{display:table}.ct-double-octave>svg{display:block;position:absolute;top:0;left:0} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/vendors/chartist/chartist.min.js b/INCUBATE/incubate/incubate/static/vendors/chartist/chartist.min.js new file mode 100644 index 0000000000000000000000000000000000000000..634fb0e9b130940e33bac9aea3c694a43e575a4e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/chartist/chartist.min.js @@ -0,0 +1,10 @@ +/* Chartist.js 0.11.3 + * Copyright © 2019 Gion Kunz + * Free to use under either the WTFPL license or the MIT license. + * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-WTFPL + * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-MIT + */ + +!function(a,b){"function"==typeof define&&define.amd?define("Chartist",[],function(){return a.Chartist=b()}):"object"==typeof module&&module.exports?module.exports=b():a.Chartist=b()}(this,function(){var a={version:"0.11.3"};return function(a,b){"use strict";var c=a.window,d=a.document;b.namespaces={svg:"http://www.w3.org/2000/svg",xmlns:"http://www.w3.org/2000/xmlns/",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",ct:"http://gionkunz.github.com/chartist-js/ct"},b.noop=function(a){return a},b.alphaNumerate=function(a){return String.fromCharCode(97+a%26)},b.extend=function(a){var c,d,e;for(a=a||{},c=1;c":">",'"':""","'":"'"},b.serialize=function(a){return null===a||void 0===a?a:("number"==typeof a?a=""+a:"object"==typeof a&&(a=JSON.stringify({data:a})),Object.keys(b.escapingMap).reduce(function(a,c){return b.replaceAll(a,c,b.escapingMap[c])},a))},b.deserialize=function(a){if("string"!=typeof a)return a;a=Object.keys(b.escapingMap).reduce(function(a,c){return b.replaceAll(a,b.escapingMap[c],c)},a);try{a=JSON.parse(a),a=void 0!==a.data?a.data:a}catch(c){}return a},b.createSvg=function(a,c,d,e){var f;return c=c||"100%",d=d||"100%",Array.prototype.slice.call(a.querySelectorAll("svg")).filter(function(a){return a.getAttributeNS(b.namespaces.xmlns,"ct")}).forEach(function(b){a.removeChild(b)}),f=new b.Svg("svg").attr({width:c,height:d}).addClass(e),f._node.style.width=c,f._node.style.height=d,a.appendChild(f._node),f},b.normalizeData=function(a,c,d){var e,f={raw:a,normalized:{}};return f.normalized.series=b.getDataArray({series:a.series||[]},c,d),e=f.normalized.series.every(function(a){return a instanceof Array})?Math.max.apply(null,f.normalized.series.map(function(a){return a.length})):f.normalized.series.length,f.normalized.labels=(a.labels||[]).slice(),Array.prototype.push.apply(f.normalized.labels,b.times(Math.max(0,e-f.normalized.labels.length)).map(function(){return""})),c&&b.reverseData(f.normalized),f},b.safeHasProperty=function(a,b){return null!==a&&"object"==typeof a&&a.hasOwnProperty(b)},b.isDataHoleValue=function(a){return null===a||void 0===a||"number"==typeof a&&isNaN(a)},b.reverseData=function(a){a.labels.reverse(),a.series.reverse();for(var b=0;bf.high&&(f.high=c),h&&c0?f.low=0:(f.high=1,f.low=0)),f},b.isNumeric=function(a){return null!==a&&isFinite(a)},b.isFalseyButZero=function(a){return!a&&0!==a},b.getNumberOrUndefined=function(a){return b.isNumeric(a)?+a:void 0},b.isMultiValue=function(a){return"object"==typeof a&&("x"in a||"y"in a)},b.getMultiValue=function(a,c){return b.isMultiValue(a)?b.getNumberOrUndefined(a[c||"y"]):b.getNumberOrUndefined(a)},b.rho=function(a){function b(a,c){return a%c===0?c:b(c,a%c)}function c(a){return a*a+1}if(1===a)return a;var d,e=2,f=2;if(a%2===0)return 2;do e=c(e)%a,f=c(c(f))%a,d=b(Math.abs(e-f),a);while(1===d);return d},b.getBounds=function(a,c,d,e){function f(a,b){return a===(a+=b)&&(a*=1+(b>0?o:-o)),a}var g,h,i,j=0,k={high:c.high,low:c.low};k.valueRange=k.high-k.low,k.oom=b.orderOfMagnitude(k.valueRange),k.step=Math.pow(10,k.oom),k.min=Math.floor(k.low/k.step)*k.step,k.max=Math.ceil(k.high/k.step)*k.step,k.range=k.max-k.min,k.numberOfSteps=Math.round(k.range/k.step);var l=b.projectLength(a,k.step,k),m=l=d)k.step=1;else if(e&&n=d)k.step=n;else for(;;){if(m&&b.projectLength(a,k.step,k)<=d)k.step*=2;else{if(m||!(b.projectLength(a,k.step/2,k)>=d))break;if(k.step/=2,e&&k.step%1!==0){k.step*=2;break}}if(j++>1e3)throw new Error("Exceeded maximum number of iterations while optimizing scale step!")}var o=2.221e-16;for(k.step=Math.max(k.step,o),h=k.min,i=k.max;h+k.step<=k.low;)h=f(h,k.step);for(;i-k.step>=k.high;)i=f(i,-k.step);k.min=h,k.max=i,k.range=k.max-k.min;var p=[];for(g=k.min;g<=k.max;g=f(g,k.step)){var q=b.roundWithPrecision(g);q!==p[p.length-1]&&p.push(q)}return k.values=p,k},b.polarToCartesian=function(a,b,c,d){var e=(d-90)*Math.PI/180;return{x:a+c*Math.cos(e),y:b+c*Math.sin(e)}},b.createChartRect=function(a,c,d){var e=!(!c.axisX&&!c.axisY),f=e?c.axisY.offset:0,g=e?c.axisX.offset:0,h=a.width()||b.quantity(c.width).value||0,i=a.height()||b.quantity(c.height).value||0,j=b.normalizePadding(c.chartPadding,d);h=Math.max(h,f+j.left+j.right),i=Math.max(i,g+j.top+j.bottom);var k={padding:j,width:function(){return this.x2-this.x1},height:function(){return this.y1-this.y2}};return e?("start"===c.axisX.position?(k.y2=j.top+g,k.y1=Math.max(i-j.bottom,k.y2+1)):(k.y2=j.top,k.y1=Math.max(i-j.bottom-g,k.y2+1)),"start"===c.axisY.position?(k.x1=j.left+f,k.x2=Math.max(h-j.right,k.x1+1)):(k.x1=j.left,k.x2=Math.max(h-j.right-f,k.x1+1))):(k.x1=j.left,k.x2=Math.max(h-j.right,k.x1+1),k.y2=j.top,k.y1=Math.max(i-j.bottom,k.y2+1)),k},b.createGrid=function(a,c,d,e,f,g,h,i){var j={};j[d.units.pos+"1"]=a,j[d.units.pos+"2"]=a,j[d.counterUnits.pos+"1"]=e,j[d.counterUnits.pos+"2"]=e+f;var k=g.elem("line",j,h.join(" "));i.emit("draw",b.extend({type:"grid",axis:d,index:c,group:g,element:k},j))},b.createGridBackground=function(a,b,c,d){var e=a.elem("rect",{x:b.x1,y:b.y2,width:b.width(),height:b.height()},c,!0);d.emit("draw",{type:"gridBackground",group:a,element:e})},b.createLabel=function(a,c,e,f,g,h,i,j,k,l,m){var n,o={};if(o[g.units.pos]=a+i[g.units.pos],o[g.counterUnits.pos]=i[g.counterUnits.pos],o[g.units.len]=c,o[g.counterUnits.len]=Math.max(0,h-10),l){var p=d.createElement("span");p.className=k.join(" "),p.setAttribute("xmlns",b.namespaces.xhtml),p.innerText=f[e],p.style[g.units.len]=Math.round(o[g.units.len])+"px",p.style[g.counterUnits.len]=Math.round(o[g.counterUnits.len])+"px",n=j.foreignObject(p,b.extend({style:"overflow: visible;"},o))}else n=j.elem("text",o,k.join(" ")).text(f[e]);m.emit("draw",b.extend({type:"label",axis:g,index:e,group:j,element:n,text:f[e]},o))},b.getSeriesOption=function(a,b,c){if(a.name&&b.series&&b.series[a.name]){var d=b.series[a.name];return d.hasOwnProperty(c)?d[c]:b[c]}return b[c]},b.optionsProvider=function(a,d,e){function f(a){var f=h;if(h=b.extend({},j),d)for(i=0;i=2&&a[h]<=a[h-2]&&(g=!0),g&&(f.push({pathCoordinates:[],valueData:[]}),g=!1),f[f.length-1].pathCoordinates.push(a[h],a[h+1]),f[f.length-1].valueData.push(c[h/2]));return f}}(this,a),function(a,b){"use strict";b.Interpolation={},b.Interpolation.none=function(a){var c={fillHoles:!1};return a=b.extend({},c,a),function(c,d){for(var e=new b.Svg.Path,f=!0,g=0;g1){var i=[];return h.forEach(function(a){i.push(f(a.pathCoordinates,a.valueData))}),b.Svg.Path.join(i)}if(c=h[0].pathCoordinates,g=h[0].valueData,c.length<=4)return b.Interpolation.none()(c,g);for(var j,k=(new b.Svg.Path).move(c[0],c[1],!1,g[0]),l=0,m=c.length;m-2*!j>l;l+=2){var n=[{x:+c[l-2],y:+c[l-1]},{x:+c[l],y:+c[l+1]},{x:+c[l+2],y:+c[l+3]},{x:+c[l+4],y:+c[l+5]}];j?l?m-4===l?n[3]={x:+c[0],y:+c[1]}:m-2===l&&(n[2]={x:+c[0],y:+c[1]},n[3]={x:+c[2],y:+c[3]}):n[0]={x:+c[m-2],y:+c[m-1]}:m-4===l?n[3]=n[2]:l||(n[0]={x:+c[l],y:+c[l+1]}),k.curve(d*(-n[0].x+6*n[1].x+n[2].x)/6+e*n[2].x,d*(-n[0].y+6*n[1].y+n[2].y)/6+e*n[2].y,d*(n[1].x+6*n[2].x-n[3].x)/6+e*n[2].x,d*(n[1].y+6*n[2].y-n[3].y)/6+e*n[2].y,n[2].x,n[2].y,!1,g[(l+2)/2])}return k}return b.Interpolation.none()([])}},b.Interpolation.monotoneCubic=function(a){var c={fillHoles:!1};return a=b.extend({},c,a),function d(c,e){var f=b.splitIntoSegments(c,e,{fillHoles:a.fillHoles,increasingX:!0});if(f.length){if(f.length>1){var g=[];return f.forEach(function(a){g.push(d(a.pathCoordinates,a.valueData))}),b.Svg.Path.join(g)}if(c=f[0].pathCoordinates,e=f[0].valueData,c.length<=4)return b.Interpolation.none()(c,e);var h,i,j=[],k=[],l=c.length/2,m=[],n=[],o=[],p=[];for(h=0;h0!=n[h]>0?m[h]=0:(m[h]=3*(p[h-1]+p[h])/((2*p[h]+p[h-1])/n[h-1]+(p[h]+2*p[h-1])/n[h]),isFinite(m[h])||(m[h]=0));for(i=(new b.Svg.Path).move(j[0],k[0],!1,e[0]),h=0;h1}).map(function(a){var b=a.pathElements[0],c=a.pathElements[a.pathElements.length-1];return a.clone(!0).position(0).remove(1).move(b.x,r).line(b.x,b.y).position(a.pathElements.length+1).line(c.x,r)}).forEach(function(b){var h=i.elem("path",{d:b.stringify()},a.classNames.area,!0);this.eventEmitter.emit("draw",{type:"area",values:c.normalized.series[g],path:b.clone(),series:e,seriesIndex:g,axisX:d,axisY:f,chartRect:j,index:g,group:i,element:h})}.bind(this))}}.bind(this)),this.eventEmitter.emit("created",{bounds:f.bounds,chartRect:j,axisX:d,axisY:f,svg:this.svg,options:a})}function d(a,c,d,f){b.Line["super"].constructor.call(this,a,c,e,b.extend({},e,d),f)}var e=(a.window,a.document,{axisX:{offset:30,position:"end",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:b.noop,type:void 0},axisY:{offset:40,position:"start",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:b.noop,type:void 0,scaleMinSpace:20,onlyInteger:!1},width:void 0,height:void 0,showLine:!0,showPoint:!0,showArea:!1,areaBase:0,lineSmooth:!0,showGridBackground:!1,low:void 0,high:void 0,chartPadding:{top:15,right:15,bottom:5,left:10},fullWidth:!1,reverseData:!1,classNames:{chart:"ct-chart-line",label:"ct-label",labelGroup:"ct-labels",series:"ct-series",line:"ct-line",point:"ct-point",area:"ct-area",grid:"ct-grid",gridGroup:"ct-grids",gridBackground:"ct-grid-background",vertical:"ct-vertical",horizontal:"ct-horizontal",start:"ct-start",end:"ct-end"}});b.Line=b.Base.extend({constructor:d,createChart:c})}(this,a),function(a,b){"use strict";function c(a){var c,d;a.distributeSeries?(c=b.normalizeData(this.data,a.reverseData,a.horizontalBars?"x":"y"),c.normalized.series=c.normalized.series.map(function(a){return[a]})):c=b.normalizeData(this.data,a.reverseData,a.horizontalBars?"x":"y"),this.svg=b.createSvg(this.container,a.width,a.height,a.classNames.chart+(a.horizontalBars?" "+a.classNames.horizontalBars:""));var f=this.svg.elem("g").addClass(a.classNames.gridGroup),g=this.svg.elem("g"),h=this.svg.elem("g").addClass(a.classNames.labelGroup);if(a.stackBars&&0!==c.normalized.series.length){var i=b.serialMap(c.normalized.series,function(){ +return Array.prototype.slice.call(arguments).map(function(a){return a}).reduce(function(a,b){return{x:a.x+(b&&b.x)||0,y:a.y+(b&&b.y)||0}},{x:0,y:0})});d=b.getHighLow([i],a,a.horizontalBars?"x":"y")}else d=b.getHighLow(c.normalized.series,a,a.horizontalBars?"x":"y");d.high=+a.high||(0===a.high?0:d.high),d.low=+a.low||(0===a.low?0:d.low);var j,k,l,m,n,o=b.createChartRect(this.svg,a,e.padding);k=a.distributeSeries&&a.stackBars?c.normalized.labels.slice(0,1):c.normalized.labels,a.horizontalBars?(j=m=void 0===a.axisX.type?new b.AutoScaleAxis(b.Axis.units.x,c.normalized.series,o,b.extend({},a.axisX,{highLow:d,referenceValue:0})):a.axisX.type.call(b,b.Axis.units.x,c.normalized.series,o,b.extend({},a.axisX,{highLow:d,referenceValue:0})),l=n=void 0===a.axisY.type?new b.StepAxis(b.Axis.units.y,c.normalized.series,o,{ticks:k}):a.axisY.type.call(b,b.Axis.units.y,c.normalized.series,o,a.axisY)):(l=m=void 0===a.axisX.type?new b.StepAxis(b.Axis.units.x,c.normalized.series,o,{ticks:k}):a.axisX.type.call(b,b.Axis.units.x,c.normalized.series,o,a.axisX),j=n=void 0===a.axisY.type?new b.AutoScaleAxis(b.Axis.units.y,c.normalized.series,o,b.extend({},a.axisY,{highLow:d,referenceValue:0})):a.axisY.type.call(b,b.Axis.units.y,c.normalized.series,o,b.extend({},a.axisY,{highLow:d,referenceValue:0})));var p=a.horizontalBars?o.x1+j.projectValue(0):o.y1-j.projectValue(0),q=[];l.createGridAndLabels(f,h,this.supportsForeignObject,a,this.eventEmitter),j.createGridAndLabels(f,h,this.supportsForeignObject,a,this.eventEmitter),a.showGridBackground&&b.createGridBackground(f,o,a.classNames.gridBackground,this.eventEmitter),c.raw.series.forEach(function(d,e){var f,h,i=e-(c.raw.series.length-1)/2;f=a.distributeSeries&&!a.stackBars?l.axisLength/c.normalized.series.length/2:a.distributeSeries&&a.stackBars?l.axisLength/2:l.axisLength/c.normalized.series[e].length/2,h=g.elem("g"),h.attr({"ct:series-name":d.name,"ct:meta":b.serialize(d.meta)}),h.addClass([a.classNames.series,d.className||a.classNames.series+"-"+b.alphaNumerate(e)].join(" ")),c.normalized.series[e].forEach(function(g,k){var r,s,t,u;if(u=a.distributeSeries&&!a.stackBars?e:a.distributeSeries&&a.stackBars?0:k,r=a.horizontalBars?{x:o.x1+j.projectValue(g&&g.x?g.x:0,k,c.normalized.series[e]),y:o.y1-l.projectValue(g&&g.y?g.y:0,u,c.normalized.series[e])}:{x:o.x1+l.projectValue(g&&g.x?g.x:0,u,c.normalized.series[e]),y:o.y1-j.projectValue(g&&g.y?g.y:0,k,c.normalized.series[e])},l instanceof b.StepAxis&&(l.options.stretch||(r[l.units.pos]+=f*(a.horizontalBars?-1:1)),r[l.units.pos]+=a.stackBars||a.distributeSeries?0:i*a.seriesBarDistance*(a.horizontalBars?-1:1)),t=q[k]||p,q[k]=t-(p-r[l.counterUnits.pos]),void 0!==g){var v={};v[l.units.pos+"1"]=r[l.units.pos],v[l.units.pos+"2"]=r[l.units.pos],!a.stackBars||"accumulate"!==a.stackMode&&a.stackMode?(v[l.counterUnits.pos+"1"]=p,v[l.counterUnits.pos+"2"]=r[l.counterUnits.pos]):(v[l.counterUnits.pos+"1"]=t,v[l.counterUnits.pos+"2"]=q[k]),v.x1=Math.min(Math.max(v.x1,o.x1),o.x2),v.x2=Math.min(Math.max(v.x2,o.x1),o.x2),v.y1=Math.min(Math.max(v.y1,o.y2),o.y1),v.y2=Math.min(Math.max(v.y2,o.y2),o.y1);var w=b.getMetaData(d,k);s=h.elem("line",v,a.classNames.bar).attr({"ct:value":[g.x,g.y].filter(b.isNumeric).join(","),"ct:meta":b.serialize(w)}),this.eventEmitter.emit("draw",b.extend({type:"bar",value:g,index:k,meta:w,series:d,seriesIndex:e,axisX:m,axisY:n,chartRect:o,group:h,element:s},v))}}.bind(this))}.bind(this)),this.eventEmitter.emit("created",{bounds:j.bounds,chartRect:o,axisX:m,axisY:n,svg:this.svg,options:a})}function d(a,c,d,f){b.Bar["super"].constructor.call(this,a,c,e,b.extend({},e,d),f)}var e=(a.window,a.document,{axisX:{offset:30,position:"end",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:b.noop,scaleMinSpace:30,onlyInteger:!1},axisY:{offset:40,position:"start",labelOffset:{x:0,y:0},showLabel:!0,showGrid:!0,labelInterpolationFnc:b.noop,scaleMinSpace:20,onlyInteger:!1},width:void 0,height:void 0,high:void 0,low:void 0,referenceValue:0,chartPadding:{top:15,right:15,bottom:5,left:10},seriesBarDistance:15,stackBars:!1,stackMode:"accumulate",horizontalBars:!1,distributeSeries:!1,reverseData:!1,showGridBackground:!1,classNames:{chart:"ct-chart-bar",horizontalBars:"ct-horizontal-bars",label:"ct-label",labelGroup:"ct-labels",series:"ct-series",bar:"ct-bar",grid:"ct-grid",gridGroup:"ct-grids",gridBackground:"ct-grid-background",vertical:"ct-vertical",horizontal:"ct-horizontal",start:"ct-start",end:"ct-end"}});b.Bar=b.Base.extend({constructor:d,createChart:c})}(this,a),function(a,b){"use strict";function c(a,b,c){var d=b.x>a.x;return d&&"explode"===c||!d&&"implode"===c?"start":d&&"implode"===c||!d&&"explode"===c?"end":"middle"}function d(a){var d,e,g,h,i,j=b.normalizeData(this.data),k=[],l=a.startAngle;this.svg=b.createSvg(this.container,a.width,a.height,a.donut?a.classNames.chartDonut:a.classNames.chartPie),e=b.createChartRect(this.svg,a,f.padding),g=Math.min(e.width()/2,e.height()/2),i=a.total||j.normalized.series.reduce(function(a,b){return a+b},0);var m=b.quantity(a.donutWidth);"%"===m.unit&&(m.value*=g/100),g-=a.donut&&!a.donutSolid?m.value/2:0,h="outside"===a.labelPosition||a.donut&&!a.donutSolid?g:"center"===a.labelPosition?0:a.donutSolid?g-m.value/2:g/2,h+=a.labelOffset;var n={x:e.x1+e.width()/2,y:e.y2+e.height()/2},o=1===j.raw.series.filter(function(a){return a.hasOwnProperty("value")?0!==a.value:0!==a}).length;j.raw.series.forEach(function(a,b){k[b]=this.svg.elem("g",null,null)}.bind(this)),a.showLabel&&(d=this.svg.elem("g",null,null)),j.raw.series.forEach(function(e,f){if(0!==j.normalized.series[f]||!a.ignoreEmptyValues){k[f].attr({"ct:series-name":e.name}),k[f].addClass([a.classNames.series,e.className||a.classNames.series+"-"+b.alphaNumerate(f)].join(" "));var p=i>0?l+j.normalized.series[f]/i*360:0,q=Math.max(0,l-(0===f||o?0:.2));p-q>=359.99&&(p=q+359.99);var r,s,t,u=b.polarToCartesian(n.x,n.y,g,q),v=b.polarToCartesian(n.x,n.y,g,p),w=new b.Svg.Path(!a.donut||a.donutSolid).move(v.x,v.y).arc(g,g,0,p-l>180,0,u.x,u.y);a.donut?a.donutSolid&&(t=g-m.value,r=b.polarToCartesian(n.x,n.y,t,l-(0===f||o?0:.2)),s=b.polarToCartesian(n.x,n.y,t,p),w.line(r.x,r.y),w.arc(t,t,0,p-l>180,1,s.x,s.y)):w.line(n.x,n.y);var x=a.classNames.slicePie;a.donut&&(x=a.classNames.sliceDonut,a.donutSolid&&(x=a.classNames.sliceDonutSolid));var y=k[f].elem("path",{d:w.stringify()},x);if(y.attr({"ct:value":j.normalized.series[f],"ct:meta":b.serialize(e.meta)}),a.donut&&!a.donutSolid&&(y._node.style.strokeWidth=m.value+"px"),this.eventEmitter.emit("draw",{type:"slice",value:j.normalized.series[f],totalDataSum:i,index:f,meta:e.meta,series:e,group:k[f],element:y,path:w.clone(),center:n,radius:g,startAngle:l,endAngle:p}),a.showLabel){var z;z=1===j.raw.series.length?{x:n.x,y:n.y}:b.polarToCartesian(n.x,n.y,h,l+(p-l)/2);var A;A=j.normalized.labels&&!b.isFalseyButZero(j.normalized.labels[f])?j.normalized.labels[f]:j.normalized.series[f];var B=a.labelInterpolationFnc(A,f);if(B||0===B){var C=d.elem("text",{dx:z.x,dy:z.y,"text-anchor":c(n,z,a.labelDirection)},a.classNames.label).text(""+B);this.eventEmitter.emit("draw",{type:"label",index:f,group:d,element:C,text:""+B,x:z.x,y:z.y})}}l=p}}.bind(this)),this.eventEmitter.emit("created",{chartRect:e,svg:this.svg,options:a})}function e(a,c,d,e){b.Pie["super"].constructor.call(this,a,c,f,b.extend({},f,d),e)}var f=(a.window,a.document,{width:void 0,height:void 0,chartPadding:5,classNames:{chartPie:"ct-chart-pie",chartDonut:"ct-chart-donut",series:"ct-series",slicePie:"ct-slice-pie",sliceDonut:"ct-slice-donut",sliceDonutSolid:"ct-slice-donut-solid",label:"ct-label"},startAngle:0,total:void 0,donut:!1,donutSolid:!1,donutWidth:60,showLabel:!0,labelOffset:0,labelPosition:"inside",labelInterpolationFnc:b.noop,labelDirection:"neutral",reverseData:!1,ignoreEmptyValues:!1});b.Pie=b.Base.extend({constructor:e,createChart:d,determineAnchorPosition:c})}(this,a),a}); +//# sourceMappingURL=chartist.min.js.map \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/vendors/chartist/chartist.min.js.map b/INCUBATE/incubate/incubate/static/vendors/chartist/chartist.min.js.map new file mode 100644 index 0000000000000000000000000000000000000000..bb606dcf114467d6ab198db324bd4664a08837b5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/chartist/chartist.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["chartist.js"],"names":["root","factory","define","amd","module","exports","this","Chartist","version","globalRoot","window","document","namespaces","svg","xmlns","xhtml","xlink","ct","noop","n","alphaNumerate","String","fromCharCode","extend","target","i","source","sourceProp","arguments","length","prop","Array","replaceAll","str","subStr","newSubStr","replace","RegExp","ensureUnit","value","unit","quantity","input","match","exec","undefined","querySelector","query","Node","times","apply","sum","previous","current","mapMultiply","factor","num","mapAdd","addend","serialMap","arr","cb","result","Math","max","map","e","forEach","index","args","roundWithPrecision","digits","precision","pow","round","escapingMap","&","<",">","\"","'","serialize","data","JSON","stringify","Object","keys","reduce","key","deserialize","parse","createSvg","container","width","height","className","prototype","slice","call","querySelectorAll","filter","getAttributeNS","removeChild","Svg","attr","addClass","_node","style","appendChild","normalizeData","reverse","multi","labelCount","output","raw","normalized","series","getDataArray","every","labels","push","reverseData","safeHasProperty","object","property","hasOwnProperty","isDataHoleValue","isNaN","recursiveConvert","multiValue","getNumberOrUndefined","y","x","normalizePadding","padding","fallback","top","right","bottom","left","getMetaData","meta","orderOfMagnitude","floor","log","abs","LN10","projectLength","axisLength","bounds","range","getAvailableHeight","options","chartPadding","axisX","offset","getHighLow","dimension","recursiveHighLow","findHigh","highLow","high","findLow","low","toUpperCase","Number","MAX_VALUE","referenceValue","min","isNumeric","isFinite","isFalseyButZero","isMultiValue","getMultiValue","rho","gcd","p","q","f","divisor","x1","x2","getBounds","scaleMinSpace","onlyInteger","safeIncrement","increment","EPSILON","newMin","newMax","optimizationCounter","valueRange","oom","step","ceil","numberOfSteps","scaleUp","smallestFactor","Error","values","polarToCartesian","centerX","centerY","radius","angleInDegrees","angleInRadians","PI","cos","sin","createChartRect","fallbackPadding","hasAxis","axisY","yAxisOffset","xAxisOffset","normalizedPadding","chartRect","y1","y2","position","createGrid","axis","group","classes","eventEmitter","positionalData","units","pos","counterUnits","gridElement","elem","join","emit","type","element","createGridBackground","gridGroup","gridBackground","createLabel","axisOffset","labelOffset","useForeignObject","labelElement","len","content","createElement","setAttribute","innerText","foreignObject","text","getSeriesOption","name","seriesOptions","optionsProvider","responsiveOptions","updateCurrentOptions","mediaEvent","previousOptions","currentOptions","baseOptions","mql","matchMedia","matches","removeMediaQueryListeners","mediaQueryListeners","removeListener","addListener","getCurrentOptions","splitIntoSegments","pathCoordinates","valueData","defaultOptions","increasingX","fillHoles","segments","hole","Interpolation","none","path","Path","currX","currY","currData","move","line","simple","d","prevX","prevY","prevData","curve","cardinal","tension","t","c","paths","segment","z","iLen","monotoneCubic","xs","ys","ms","ds","dys","dxs","postpone","EventEmitter","addEventHandler","event","handler","handlers","removeEventHandler","splice","indexOf","starHandler","listToArray","list","properties","superProtoOverride","superProto","Class","proto","create","cloneDefinitions","constr","instance","fn","constructor","getOwnPropertyNames","propName","defineProperty","getOwnPropertyDescriptor","update","override","initializeTimeoutId","createChart","detach","clearTimeout","removeEventListener","resizeListener","on","off","initialize","addEventListener","bind","plugins","plugin","Base","supportsForeignObject","isSupported","supportsAnimations","__chartist__","setTimeout","attributes","parent","insertFirst","Element","createElementNS","xmlns:ct","firstChild","insertBefore","ns","getAttribute","namespacedAttribute","split","setAttributeNS","parentNode","SVGElement","node","nodeName","selector","foundNode","foundNodes","List","getNode","innerHTML","fnObj","createTextNode","empty","remove","newElement","replaceChild","append","trim","names","concat","self","removeClass","removedClasses","removeAllClasses","getBoundingClientRect","animate","animations","guided","attribute","createAnimate","animationDefinition","timeout","easing","attributeProperties","Easing","begin","dur","calcMode","keySplines","keyTimes","fill","from","attributeName","beginElement","err","to","params","SvgList","nodeList","svgElements","prototypeProperty","feature","implementation","hasFeature","easingCubicBeziers","easeInSine","easeOutSine","easeInOutSine","easeInQuad","easeOutQuad","easeInOutQuad","easeInCubic","easeOutCubic","easeInOutCubic","easeInQuart","easeOutQuart","easeInOutQuart","easeInQuint","easeOutQuint","easeInOutQuint","easeInExpo","easeOutExpo","easeInOutExpo","easeInCirc","easeOutCirc","easeInOutCirc","easeInBack","easeOutBack","easeInOutBack","command","pathElements","relative","pathElement","toLowerCase","forEachParam","pathElementIndex","elementDescriptions","paramName","paramIndex","SvgPath","close","count","arc","rx","ry","xAr","lAf","sf","chunks","pop","elements","chunk","shift","description","spliceArgs","accuracyMultiplier","accuracy","scale","translate","transform","transformFnc","transformed","clone","splitByCommand","joinedPath","j","m","l","a","Axis","ticks","axisUnits","rectEnd","rectStart","gridOffset","rectOffset","createGridAndLabels","labelGroup","chartOptions","axisOptions","projectedValues","projectValue","labelValues","labelInterpolationFnc","projectedValue","labelLength","showGrid","classNames","grid","dir","showLabel","label","AutoScaleAxis","axisUnit","FixedScaleAxis","sort","b","stepLength","StepAxis","calc","stretch","chart","seriesGroup","fullWidth","showGridBackground","seriesIndex","seriesElement","ct:series-name","ct:meta","pathData","valueIndex","lineSmooth","showPoint","showLine","showArea","areaBase","smoothing","point","ct:value","seriesMeta","areaBaseProjected","pathSegment","solidPathSegments","firstElement","lastElement","areaPath","area","Line","vertical","horizontal","start","end","distributeSeries","horizontalBars","stackBars","serialSums","prev","curr","valueAxis","labelAxisTicks","labelAxis","zeroPoint","stackedBarValues","periodHalfLength","biPol","projected","bar","previousStack","labelAxisValueIndex","seriesBarDistance","positions","stackMode","metaData","Bar","determineAnchorPosition","center","direction","toTheRight","labelsGroup","labelRadius","totalDataSum","seriesGroups","startAngle","donut","chartDonut","chartPie","total","previousValue","currentValue","donutWidth","donutSolid","labelPosition","hasSingleValInSeries","val","ignoreEmptyValues","endAngle","overlappigStartAngle","innerStart","innerEnd","donutSolidRadius","pathClassName","slicePie","sliceDonut","sliceDonutSolid","strokeWidth","rawValue","interpolatedValue","dx","dy","text-anchor","labelDirection","Pie"],"mappings":"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","file":"chartist.min.js","sourcesContent":["(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module unless amdModuleId is set\n define('Chartist', [], function () {\n return (root['Chartist'] = factory());\n });\n } else if (typeof module === 'object' && module.exports) {\n // Node. Does not work with strict CommonJS, but\n // only CommonJS-like environments that support module.exports,\n // like Node.\n module.exports = factory();\n } else {\n root['Chartist'] = factory();\n }\n}(this, function () {\n\n/* Chartist.js 0.11.3\n * Copyright © 2019 Gion Kunz\n * Free to use under either the WTFPL license or the MIT license.\n * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-WTFPL\n * https://raw.githubusercontent.com/gionkunz/chartist-js/master/LICENSE-MIT\n */\n/**\n * The core module of Chartist that is mainly providing static functions and higher level functions for chart modules.\n *\n * @module Chartist.Core\n */\nvar Chartist = {\n version: '0.11.3'\n};\n\n(function (globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n /**\n * This object contains all namespaces used within Chartist.\n *\n * @memberof Chartist.Core\n * @type {{svg: string, xmlns: string, xhtml: string, xlink: string, ct: string}}\n */\n Chartist.namespaces = {\n svg: 'http://www.w3.org/2000/svg',\n xmlns: 'http://www.w3.org/2000/xmlns/',\n xhtml: 'http://www.w3.org/1999/xhtml',\n xlink: 'http://www.w3.org/1999/xlink',\n ct: 'http://gionkunz.github.com/chartist-js/ct'\n };\n\n /**\n * Helps to simplify functional style code\n *\n * @memberof Chartist.Core\n * @param {*} n This exact value will be returned by the noop function\n * @return {*} The same value that was provided to the n parameter\n */\n Chartist.noop = function (n) {\n return n;\n };\n\n /**\n * Generates a-z from a number 0 to 26\n *\n * @memberof Chartist.Core\n * @param {Number} n A number from 0 to 26 that will result in a letter a-z\n * @return {String} A character from a-z based on the input number n\n */\n Chartist.alphaNumerate = function (n) {\n // Limit to a-z\n return String.fromCharCode(97 + n % 26);\n };\n\n /**\n * Simple recursive object extend\n *\n * @memberof Chartist.Core\n * @param {Object} target Target object where the source will be merged into\n * @param {Object...} sources This object (objects) will be merged into target and then target is returned\n * @return {Object} An object that has the same reference as target but is extended and merged with the properties of source\n */\n Chartist.extend = function (target) {\n var i, source, sourceProp;\n target = target || {};\n\n for (i = 1; i < arguments.length; i++) {\n source = arguments[i];\n for (var prop in source) {\n sourceProp = source[prop];\n if (typeof sourceProp === 'object' && sourceProp !== null && !(sourceProp instanceof Array)) {\n target[prop] = Chartist.extend(target[prop], sourceProp);\n } else {\n target[prop] = sourceProp;\n }\n }\n }\n\n return target;\n };\n\n /**\n * Replaces all occurrences of subStr in str with newSubStr and returns a new string.\n *\n * @memberof Chartist.Core\n * @param {String} str\n * @param {String} subStr\n * @param {String} newSubStr\n * @return {String}\n */\n Chartist.replaceAll = function(str, subStr, newSubStr) {\n return str.replace(new RegExp(subStr, 'g'), newSubStr);\n };\n\n /**\n * Converts a number to a string with a unit. If a string is passed then this will be returned unmodified.\n *\n * @memberof Chartist.Core\n * @param {Number} value\n * @param {String} unit\n * @return {String} Returns the passed number value with unit.\n */\n Chartist.ensureUnit = function(value, unit) {\n if(typeof value === 'number') {\n value = value + unit;\n }\n\n return value;\n };\n\n /**\n * Converts a number or string to a quantity object.\n *\n * @memberof Chartist.Core\n * @param {String|Number} input\n * @return {Object} Returns an object containing the value as number and the unit as string.\n */\n Chartist.quantity = function(input) {\n if (typeof input === 'string') {\n var match = (/^(\\d+)\\s*(.*)$/g).exec(input);\n return {\n value : +match[1],\n unit: match[2] || undefined\n };\n }\n return { value: input };\n };\n\n /**\n * This is a wrapper around document.querySelector that will return the query if it's already of type Node\n *\n * @memberof Chartist.Core\n * @param {String|Node} query The query to use for selecting a Node or a DOM node that will be returned directly\n * @return {Node}\n */\n Chartist.querySelector = function(query) {\n return query instanceof Node ? query : document.querySelector(query);\n };\n\n /**\n * Functional style helper to produce array with given length initialized with undefined values\n *\n * @memberof Chartist.Core\n * @param length\n * @return {Array}\n */\n Chartist.times = function(length) {\n return Array.apply(null, new Array(length));\n };\n\n /**\n * Sum helper to be used in reduce functions\n *\n * @memberof Chartist.Core\n * @param previous\n * @param current\n * @return {*}\n */\n Chartist.sum = function(previous, current) {\n return previous + (current ? current : 0);\n };\n\n /**\n * Multiply helper to be used in `Array.map` for multiplying each value of an array with a factor.\n *\n * @memberof Chartist.Core\n * @param {Number} factor\n * @returns {Function} Function that can be used in `Array.map` to multiply each value in an array\n */\n Chartist.mapMultiply = function(factor) {\n return function(num) {\n return num * factor;\n };\n };\n\n /**\n * Add helper to be used in `Array.map` for adding a addend to each value of an array.\n *\n * @memberof Chartist.Core\n * @param {Number} addend\n * @returns {Function} Function that can be used in `Array.map` to add a addend to each value in an array\n */\n Chartist.mapAdd = function(addend) {\n return function(num) {\n return num + addend;\n };\n };\n\n /**\n * Map for multi dimensional arrays where their nested arrays will be mapped in serial. The output array will have the length of the largest nested array. The callback function is called with variable arguments where each argument is the nested array value (or undefined if there are no more values).\n *\n * @memberof Chartist.Core\n * @param arr\n * @param cb\n * @return {Array}\n */\n Chartist.serialMap = function(arr, cb) {\n var result = [],\n length = Math.max.apply(null, arr.map(function(e) {\n return e.length;\n }));\n\n Chartist.times(length).forEach(function(e, index) {\n var args = arr.map(function(e) {\n return e[index];\n });\n\n result[index] = cb.apply(null, args);\n });\n\n return result;\n };\n\n /**\n * This helper function can be used to round values with certain precision level after decimal. This is used to prevent rounding errors near float point precision limit.\n *\n * @memberof Chartist.Core\n * @param {Number} value The value that should be rounded with precision\n * @param {Number} [digits] The number of digits after decimal used to do the rounding\n * @returns {number} Rounded value\n */\n Chartist.roundWithPrecision = function(value, digits) {\n var precision = Math.pow(10, digits || Chartist.precision);\n return Math.round(value * precision) / precision;\n };\n\n /**\n * Precision level used internally in Chartist for rounding. If you require more decimal places you can increase this number.\n *\n * @memberof Chartist.Core\n * @type {number}\n */\n Chartist.precision = 8;\n\n /**\n * A map with characters to escape for strings to be safely used as attribute values.\n *\n * @memberof Chartist.Core\n * @type {Object}\n */\n Chartist.escapingMap = {\n '&': '&',\n '<': '<',\n '>': '>',\n '\"': '"',\n '\\'': '''\n };\n\n /**\n * This function serializes arbitrary data to a string. In case of data that can't be easily converted to a string, this function will create a wrapper object and serialize the data using JSON.stringify. The outcoming string will always be escaped using Chartist.escapingMap.\n * If called with null or undefined the function will return immediately with null or undefined.\n *\n * @memberof Chartist.Core\n * @param {Number|String|Object} data\n * @return {String}\n */\n Chartist.serialize = function(data) {\n if(data === null || data === undefined) {\n return data;\n } else if(typeof data === 'number') {\n data = ''+data;\n } else if(typeof data === 'object') {\n data = JSON.stringify({data: data});\n }\n\n return Object.keys(Chartist.escapingMap).reduce(function(result, key) {\n return Chartist.replaceAll(result, key, Chartist.escapingMap[key]);\n }, data);\n };\n\n /**\n * This function de-serializes a string previously serialized with Chartist.serialize. The string will always be unescaped using Chartist.escapingMap before it's returned. Based on the input value the return type can be Number, String or Object. JSON.parse is used with try / catch to see if the unescaped string can be parsed into an Object and this Object will be returned on success.\n *\n * @memberof Chartist.Core\n * @param {String} data\n * @return {String|Number|Object}\n */\n Chartist.deserialize = function(data) {\n if(typeof data !== 'string') {\n return data;\n }\n\n data = Object.keys(Chartist.escapingMap).reduce(function(result, key) {\n return Chartist.replaceAll(result, Chartist.escapingMap[key], key);\n }, data);\n\n try {\n data = JSON.parse(data);\n data = data.data !== undefined ? data.data : data;\n } catch(e) {}\n\n return data;\n };\n\n /**\n * Create or reinitialize the SVG element for the chart\n *\n * @memberof Chartist.Core\n * @param {Node} container The containing DOM Node object that will be used to plant the SVG element\n * @param {String} width Set the width of the SVG element. Default is 100%\n * @param {String} height Set the height of the SVG element. Default is 100%\n * @param {String} className Specify a class to be added to the SVG element\n * @return {Object} The created/reinitialized SVG element\n */\n Chartist.createSvg = function (container, width, height, className) {\n var svg;\n\n width = width || '100%';\n height = height || '100%';\n\n // Check if there is a previous SVG element in the container that contains the Chartist XML namespace and remove it\n // Since the DOM API does not support namespaces we need to manually search the returned list http://www.w3.org/TR/selectors-api/\n Array.prototype.slice.call(container.querySelectorAll('svg')).filter(function filterChartistSvgObjects(svg) {\n return svg.getAttributeNS(Chartist.namespaces.xmlns, 'ct');\n }).forEach(function removePreviousElement(svg) {\n container.removeChild(svg);\n });\n\n // Create svg object with width and height or use 100% as default\n svg = new Chartist.Svg('svg').attr({\n width: width,\n height: height\n }).addClass(className);\n\n svg._node.style.width = width;\n svg._node.style.height = height;\n\n // Add the DOM node to our container\n container.appendChild(svg._node);\n\n return svg;\n };\n\n /**\n * Ensures that the data object passed as second argument to the charts is present and correctly initialized.\n *\n * @param {Object} data The data object that is passed as second argument to the charts\n * @return {Object} The normalized data object\n */\n Chartist.normalizeData = function(data, reverse, multi) {\n var labelCount;\n var output = {\n raw: data,\n normalized: {}\n };\n\n // Check if we should generate some labels based on existing series data\n output.normalized.series = Chartist.getDataArray({\n series: data.series || []\n }, reverse, multi);\n\n // If all elements of the normalized data array are arrays we're dealing with\n // multi series data and we need to find the largest series if they are un-even\n if (output.normalized.series.every(function(value) {\n return value instanceof Array;\n })) {\n // Getting the series with the the most elements\n labelCount = Math.max.apply(null, output.normalized.series.map(function(series) {\n return series.length;\n }));\n } else {\n // We're dealing with Pie data so we just take the normalized array length\n labelCount = output.normalized.series.length;\n }\n\n output.normalized.labels = (data.labels || []).slice();\n // Padding the labels to labelCount with empty strings\n Array.prototype.push.apply(\n output.normalized.labels,\n Chartist.times(Math.max(0, labelCount - output.normalized.labels.length)).map(function() {\n return '';\n })\n );\n\n if(reverse) {\n Chartist.reverseData(output.normalized);\n }\n\n return output;\n };\n\n /**\n * This function safely checks if an objects has an owned property.\n *\n * @param {Object} object The object where to check for a property\n * @param {string} property The property name\n * @returns {boolean} Returns true if the object owns the specified property\n */\n Chartist.safeHasProperty = function(object, property) {\n return object !== null &&\n typeof object === 'object' &&\n object.hasOwnProperty(property);\n };\n\n /**\n * Checks if a value is considered a hole in the data series.\n *\n * @param {*} value\n * @returns {boolean} True if the value is considered a data hole\n */\n Chartist.isDataHoleValue = function(value) {\n return value === null ||\n value === undefined ||\n (typeof value === 'number' && isNaN(value));\n };\n\n /**\n * Reverses the series, labels and series data arrays.\n *\n * @memberof Chartist.Core\n * @param data\n */\n Chartist.reverseData = function(data) {\n data.labels.reverse();\n data.series.reverse();\n for (var i = 0; i < data.series.length; i++) {\n if(typeof(data.series[i]) === 'object' && data.series[i].data !== undefined) {\n data.series[i].data.reverse();\n } else if(data.series[i] instanceof Array) {\n data.series[i].reverse();\n }\n }\n };\n\n /**\n * Convert data series into plain array\n *\n * @memberof Chartist.Core\n * @param {Object} data The series object that contains the data to be visualized in the chart\n * @param {Boolean} [reverse] If true the whole data is reversed by the getDataArray call. This will modify the data object passed as first parameter. The labels as well as the series order is reversed. The whole series data arrays are reversed too.\n * @param {Boolean} [multi] Create a multi dimensional array from a series data array where a value object with `x` and `y` values will be created.\n * @return {Array} A plain array that contains the data to be visualized in the chart\n */\n Chartist.getDataArray = function(data, reverse, multi) {\n // Recursively walks through nested arrays and convert string values to numbers and objects with value properties\n // to values. Check the tests in data core -> data normalization for a detailed specification of expected values\n function recursiveConvert(value) {\n if(Chartist.safeHasProperty(value, 'value')) {\n // We are dealing with value object notation so we need to recurse on value property\n return recursiveConvert(value.value);\n } else if(Chartist.safeHasProperty(value, 'data')) {\n // We are dealing with series object notation so we need to recurse on data property\n return recursiveConvert(value.data);\n } else if(value instanceof Array) {\n // Data is of type array so we need to recurse on the series\n return value.map(recursiveConvert);\n } else if(Chartist.isDataHoleValue(value)) {\n // We're dealing with a hole in the data and therefore need to return undefined\n // We're also returning undefined for multi value output\n return undefined;\n } else {\n // We need to prepare multi value output (x and y data)\n if(multi) {\n var multiValue = {};\n\n // Single series value arrays are assumed to specify the Y-Axis value\n // For example: [1, 2] => [{x: undefined, y: 1}, {x: undefined, y: 2}]\n // If multi is a string then it's assumed that it specified which dimension should be filled as default\n if(typeof multi === 'string') {\n multiValue[multi] = Chartist.getNumberOrUndefined(value);\n } else {\n multiValue.y = Chartist.getNumberOrUndefined(value);\n }\n\n multiValue.x = value.hasOwnProperty('x') ? Chartist.getNumberOrUndefined(value.x) : multiValue.x;\n multiValue.y = value.hasOwnProperty('y') ? Chartist.getNumberOrUndefined(value.y) : multiValue.y;\n\n return multiValue;\n\n } else {\n // We can return simple data\n return Chartist.getNumberOrUndefined(value);\n }\n }\n }\n\n return data.series.map(recursiveConvert);\n };\n\n /**\n * Converts a number into a padding object.\n *\n * @memberof Chartist.Core\n * @param {Object|Number} padding\n * @param {Number} [fallback] This value is used to fill missing values if a incomplete padding object was passed\n * @returns {Object} Returns a padding object containing top, right, bottom, left properties filled with the padding number passed in as argument. If the argument is something else than a number (presumably already a correct padding object) then this argument is directly returned.\n */\n Chartist.normalizePadding = function(padding, fallback) {\n fallback = fallback || 0;\n\n return typeof padding === 'number' ? {\n top: padding,\n right: padding,\n bottom: padding,\n left: padding\n } : {\n top: typeof padding.top === 'number' ? padding.top : fallback,\n right: typeof padding.right === 'number' ? padding.right : fallback,\n bottom: typeof padding.bottom === 'number' ? padding.bottom : fallback,\n left: typeof padding.left === 'number' ? padding.left : fallback\n };\n };\n\n Chartist.getMetaData = function(series, index) {\n var value = series.data ? series.data[index] : series[index];\n return value ? value.meta : undefined;\n };\n\n /**\n * Calculate the order of magnitude for the chart scale\n *\n * @memberof Chartist.Core\n * @param {Number} value The value Range of the chart\n * @return {Number} The order of magnitude\n */\n Chartist.orderOfMagnitude = function (value) {\n return Math.floor(Math.log(Math.abs(value)) / Math.LN10);\n };\n\n /**\n * Project a data length into screen coordinates (pixels)\n *\n * @memberof Chartist.Core\n * @param {Object} axisLength The svg element for the chart\n * @param {Number} length Single data value from a series array\n * @param {Object} bounds All the values to set the bounds of the chart\n * @return {Number} The projected data length in pixels\n */\n Chartist.projectLength = function (axisLength, length, bounds) {\n return length / bounds.range * axisLength;\n };\n\n /**\n * Get the height of the area in the chart for the data series\n *\n * @memberof Chartist.Core\n * @param {Object} svg The svg element for the chart\n * @param {Object} options The Object that contains all the optional values for the chart\n * @return {Number} The height of the area in the chart for the data series\n */\n Chartist.getAvailableHeight = function (svg, options) {\n return Math.max((Chartist.quantity(options.height).value || svg.height()) - (options.chartPadding.top + options.chartPadding.bottom) - options.axisX.offset, 0);\n };\n\n /**\n * Get highest and lowest value of data array. This Array contains the data that will be visualized in the chart.\n *\n * @memberof Chartist.Core\n * @param {Array} data The array that contains the data to be visualized in the chart\n * @param {Object} options The Object that contains the chart options\n * @param {String} dimension Axis dimension 'x' or 'y' used to access the correct value and high / low configuration\n * @return {Object} An object that contains the highest and lowest value that will be visualized on the chart.\n */\n Chartist.getHighLow = function (data, options, dimension) {\n // TODO: Remove workaround for deprecated global high / low config. Axis high / low configuration is preferred\n options = Chartist.extend({}, options, dimension ? options['axis' + dimension.toUpperCase()] : {});\n\n var highLow = {\n high: options.high === undefined ? -Number.MAX_VALUE : +options.high,\n low: options.low === undefined ? Number.MAX_VALUE : +options.low\n };\n var findHigh = options.high === undefined;\n var findLow = options.low === undefined;\n\n // Function to recursively walk through arrays and find highest and lowest number\n function recursiveHighLow(data) {\n if(data === undefined) {\n return undefined;\n } else if(data instanceof Array) {\n for (var i = 0; i < data.length; i++) {\n recursiveHighLow(data[i]);\n }\n } else {\n var value = dimension ? +data[dimension] : +data;\n\n if (findHigh && value > highLow.high) {\n highLow.high = value;\n }\n\n if (findLow && value < highLow.low) {\n highLow.low = value;\n }\n }\n }\n\n // Start to find highest and lowest number recursively\n if(findHigh || findLow) {\n recursiveHighLow(data);\n }\n\n // Overrides of high / low based on reference value, it will make sure that the invisible reference value is\n // used to generate the chart. This is useful when the chart always needs to contain the position of the\n // invisible reference value in the view i.e. for bipolar scales.\n if (options.referenceValue || options.referenceValue === 0) {\n highLow.high = Math.max(options.referenceValue, highLow.high);\n highLow.low = Math.min(options.referenceValue, highLow.low);\n }\n\n // If high and low are the same because of misconfiguration or flat data (only the same value) we need\n // to set the high or low to 0 depending on the polarity\n if (highLow.high <= highLow.low) {\n // If both values are 0 we set high to 1\n if (highLow.low === 0) {\n highLow.high = 1;\n } else if (highLow.low < 0) {\n // If we have the same negative value for the bounds we set bounds.high to 0\n highLow.high = 0;\n } else if (highLow.high > 0) {\n // If we have the same positive value for the bounds we set bounds.low to 0\n highLow.low = 0;\n } else {\n // If data array was empty, values are Number.MAX_VALUE and -Number.MAX_VALUE. Set bounds to prevent errors\n highLow.high = 1;\n highLow.low = 0;\n }\n }\n\n return highLow;\n };\n\n /**\n * Checks if a value can be safely coerced to a number. This includes all values except null which result in finite numbers when coerced. This excludes NaN, since it's not finite.\n *\n * @memberof Chartist.Core\n * @param value\n * @returns {Boolean}\n */\n Chartist.isNumeric = function(value) {\n return value === null ? false : isFinite(value);\n };\n\n /**\n * Returns true on all falsey values except the numeric value 0.\n *\n * @memberof Chartist.Core\n * @param value\n * @returns {boolean}\n */\n Chartist.isFalseyButZero = function(value) {\n return !value && value !== 0;\n };\n\n /**\n * Returns a number if the passed parameter is a valid number or the function will return undefined. On all other values than a valid number, this function will return undefined.\n *\n * @memberof Chartist.Core\n * @param value\n * @returns {*}\n */\n Chartist.getNumberOrUndefined = function(value) {\n return Chartist.isNumeric(value) ? +value : undefined;\n };\n\n /**\n * Checks if provided value object is multi value (contains x or y properties)\n *\n * @memberof Chartist.Core\n * @param value\n */\n Chartist.isMultiValue = function(value) {\n return typeof value === 'object' && ('x' in value || 'y' in value);\n };\n\n /**\n * Gets a value from a dimension `value.x` or `value.y` while returning value directly if it's a valid numeric value. If the value is not numeric and it's falsey this function will return `defaultValue`.\n *\n * @memberof Chartist.Core\n * @param value\n * @param dimension\n * @param defaultValue\n * @returns {*}\n */\n Chartist.getMultiValue = function(value, dimension) {\n if(Chartist.isMultiValue(value)) {\n return Chartist.getNumberOrUndefined(value[dimension || 'y']);\n } else {\n return Chartist.getNumberOrUndefined(value);\n }\n };\n\n /**\n * Pollard Rho Algorithm to find smallest factor of an integer value. There are more efficient algorithms for factorization, but this one is quite efficient and not so complex.\n *\n * @memberof Chartist.Core\n * @param {Number} num An integer number where the smallest factor should be searched for\n * @returns {Number} The smallest integer factor of the parameter num.\n */\n Chartist.rho = function(num) {\n if(num === 1) {\n return num;\n }\n\n function gcd(p, q) {\n if (p % q === 0) {\n return q;\n } else {\n return gcd(q, p % q);\n }\n }\n\n function f(x) {\n return x * x + 1;\n }\n\n var x1 = 2, x2 = 2, divisor;\n if (num % 2 === 0) {\n return 2;\n }\n\n do {\n x1 = f(x1) % num;\n x2 = f(f(x2)) % num;\n divisor = gcd(Math.abs(x1 - x2), num);\n } while (divisor === 1);\n\n return divisor;\n };\n\n /**\n * Calculate and retrieve all the bounds for the chart and return them in one array\n *\n * @memberof Chartist.Core\n * @param {Number} axisLength The length of the Axis used for\n * @param {Object} highLow An object containing a high and low property indicating the value range of the chart.\n * @param {Number} scaleMinSpace The minimum projected length a step should result in\n * @param {Boolean} onlyInteger\n * @return {Object} All the values to set the bounds of the chart\n */\n Chartist.getBounds = function (axisLength, highLow, scaleMinSpace, onlyInteger) {\n var i,\n optimizationCounter = 0,\n newMin,\n newMax,\n bounds = {\n high: highLow.high,\n low: highLow.low\n };\n\n bounds.valueRange = bounds.high - bounds.low;\n bounds.oom = Chartist.orderOfMagnitude(bounds.valueRange);\n bounds.step = Math.pow(10, bounds.oom);\n bounds.min = Math.floor(bounds.low / bounds.step) * bounds.step;\n bounds.max = Math.ceil(bounds.high / bounds.step) * bounds.step;\n bounds.range = bounds.max - bounds.min;\n bounds.numberOfSteps = Math.round(bounds.range / bounds.step);\n\n // Optimize scale step by checking if subdivision is possible based on horizontalGridMinSpace\n // If we are already below the scaleMinSpace value we will scale up\n var length = Chartist.projectLength(axisLength, bounds.step, bounds);\n var scaleUp = length < scaleMinSpace;\n var smallestFactor = onlyInteger ? Chartist.rho(bounds.range) : 0;\n\n // First check if we should only use integer steps and if step 1 is still larger than scaleMinSpace so we can use 1\n if(onlyInteger && Chartist.projectLength(axisLength, 1, bounds) >= scaleMinSpace) {\n bounds.step = 1;\n } else if(onlyInteger && smallestFactor < bounds.step && Chartist.projectLength(axisLength, smallestFactor, bounds) >= scaleMinSpace) {\n // If step 1 was too small, we can try the smallest factor of range\n // If the smallest factor is smaller than the current bounds.step and the projected length of smallest factor\n // is larger than the scaleMinSpace we should go for it.\n bounds.step = smallestFactor;\n } else {\n // Trying to divide or multiply by 2 and find the best step value\n while (true) {\n if (scaleUp && Chartist.projectLength(axisLength, bounds.step, bounds) <= scaleMinSpace) {\n bounds.step *= 2;\n } else if (!scaleUp && Chartist.projectLength(axisLength, bounds.step / 2, bounds) >= scaleMinSpace) {\n bounds.step /= 2;\n if(onlyInteger && bounds.step % 1 !== 0) {\n bounds.step *= 2;\n break;\n }\n } else {\n break;\n }\n\n if(optimizationCounter++ > 1000) {\n throw new Error('Exceeded maximum number of iterations while optimizing scale step!');\n }\n }\n }\n\n var EPSILON = 2.221E-16;\n bounds.step = Math.max(bounds.step, EPSILON);\n function safeIncrement(value, increment) {\n // If increment is too small use *= (1+EPSILON) as a simple nextafter\n if (value === (value += increment)) {\n \tvalue *= (1 + (increment > 0 ? EPSILON : -EPSILON));\n }\n return value;\n }\n\n // Narrow min and max based on new step\n newMin = bounds.min;\n newMax = bounds.max;\n while (newMin + bounds.step <= bounds.low) {\n \tnewMin = safeIncrement(newMin, bounds.step);\n }\n while (newMax - bounds.step >= bounds.high) {\n \tnewMax = safeIncrement(newMax, -bounds.step);\n }\n bounds.min = newMin;\n bounds.max = newMax;\n bounds.range = bounds.max - bounds.min;\n\n var values = [];\n for (i = bounds.min; i <= bounds.max; i = safeIncrement(i, bounds.step)) {\n var value = Chartist.roundWithPrecision(i);\n if (value !== values[values.length - 1]) {\n values.push(value);\n }\n }\n bounds.values = values;\n return bounds;\n };\n\n /**\n * Calculate cartesian coordinates of polar coordinates\n *\n * @memberof Chartist.Core\n * @param {Number} centerX X-axis coordinates of center point of circle segment\n * @param {Number} centerY X-axis coordinates of center point of circle segment\n * @param {Number} radius Radius of circle segment\n * @param {Number} angleInDegrees Angle of circle segment in degrees\n * @return {{x:Number, y:Number}} Coordinates of point on circumference\n */\n Chartist.polarToCartesian = function (centerX, centerY, radius, angleInDegrees) {\n var angleInRadians = (angleInDegrees - 90) * Math.PI / 180.0;\n\n return {\n x: centerX + (radius * Math.cos(angleInRadians)),\n y: centerY + (radius * Math.sin(angleInRadians))\n };\n };\n\n /**\n * Initialize chart drawing rectangle (area where chart is drawn) x1,y1 = bottom left / x2,y2 = top right\n *\n * @memberof Chartist.Core\n * @param {Object} svg The svg element for the chart\n * @param {Object} options The Object that contains all the optional values for the chart\n * @param {Number} [fallbackPadding] The fallback padding if partial padding objects are used\n * @return {Object} The chart rectangles coordinates inside the svg element plus the rectangles measurements\n */\n Chartist.createChartRect = function (svg, options, fallbackPadding) {\n var hasAxis = !!(options.axisX || options.axisY);\n var yAxisOffset = hasAxis ? options.axisY.offset : 0;\n var xAxisOffset = hasAxis ? options.axisX.offset : 0;\n // If width or height results in invalid value (including 0) we fallback to the unitless settings or even 0\n var width = svg.width() || Chartist.quantity(options.width).value || 0;\n var height = svg.height() || Chartist.quantity(options.height).value || 0;\n var normalizedPadding = Chartist.normalizePadding(options.chartPadding, fallbackPadding);\n\n // If settings were to small to cope with offset (legacy) and padding, we'll adjust\n width = Math.max(width, yAxisOffset + normalizedPadding.left + normalizedPadding.right);\n height = Math.max(height, xAxisOffset + normalizedPadding.top + normalizedPadding.bottom);\n\n var chartRect = {\n padding: normalizedPadding,\n width: function () {\n return this.x2 - this.x1;\n },\n height: function () {\n return this.y1 - this.y2;\n }\n };\n\n if(hasAxis) {\n if (options.axisX.position === 'start') {\n chartRect.y2 = normalizedPadding.top + xAxisOffset;\n chartRect.y1 = Math.max(height - normalizedPadding.bottom, chartRect.y2 + 1);\n } else {\n chartRect.y2 = normalizedPadding.top;\n chartRect.y1 = Math.max(height - normalizedPadding.bottom - xAxisOffset, chartRect.y2 + 1);\n }\n\n if (options.axisY.position === 'start') {\n chartRect.x1 = normalizedPadding.left + yAxisOffset;\n chartRect.x2 = Math.max(width - normalizedPadding.right, chartRect.x1 + 1);\n } else {\n chartRect.x1 = normalizedPadding.left;\n chartRect.x2 = Math.max(width - normalizedPadding.right - yAxisOffset, chartRect.x1 + 1);\n }\n } else {\n chartRect.x1 = normalizedPadding.left;\n chartRect.x2 = Math.max(width - normalizedPadding.right, chartRect.x1 + 1);\n chartRect.y2 = normalizedPadding.top;\n chartRect.y1 = Math.max(height - normalizedPadding.bottom, chartRect.y2 + 1);\n }\n\n return chartRect;\n };\n\n /**\n * Creates a grid line based on a projected value.\n *\n * @memberof Chartist.Core\n * @param position\n * @param index\n * @param axis\n * @param offset\n * @param length\n * @param group\n * @param classes\n * @param eventEmitter\n */\n Chartist.createGrid = function(position, index, axis, offset, length, group, classes, eventEmitter) {\n var positionalData = {};\n positionalData[axis.units.pos + '1'] = position;\n positionalData[axis.units.pos + '2'] = position;\n positionalData[axis.counterUnits.pos + '1'] = offset;\n positionalData[axis.counterUnits.pos + '2'] = offset + length;\n\n var gridElement = group.elem('line', positionalData, classes.join(' '));\n\n // Event for grid draw\n eventEmitter.emit('draw',\n Chartist.extend({\n type: 'grid',\n axis: axis,\n index: index,\n group: group,\n element: gridElement\n }, positionalData)\n );\n };\n\n /**\n * Creates a grid background rect and emits the draw event.\n *\n * @memberof Chartist.Core\n * @param gridGroup\n * @param chartRect\n * @param className\n * @param eventEmitter\n */\n Chartist.createGridBackground = function (gridGroup, chartRect, className, eventEmitter) {\n var gridBackground = gridGroup.elem('rect', {\n x: chartRect.x1,\n y: chartRect.y2,\n width: chartRect.width(),\n height: chartRect.height(),\n }, className, true);\n\n // Event for grid background draw\n eventEmitter.emit('draw', {\n type: 'gridBackground',\n group: gridGroup,\n element: gridBackground\n });\n };\n\n /**\n * Creates a label based on a projected value and an axis.\n *\n * @memberof Chartist.Core\n * @param position\n * @param length\n * @param index\n * @param labels\n * @param axis\n * @param axisOffset\n * @param labelOffset\n * @param group\n * @param classes\n * @param useForeignObject\n * @param eventEmitter\n */\n Chartist.createLabel = function(position, length, index, labels, axis, axisOffset, labelOffset, group, classes, useForeignObject, eventEmitter) {\n var labelElement;\n var positionalData = {};\n\n positionalData[axis.units.pos] = position + labelOffset[axis.units.pos];\n positionalData[axis.counterUnits.pos] = labelOffset[axis.counterUnits.pos];\n positionalData[axis.units.len] = length;\n positionalData[axis.counterUnits.len] = Math.max(0, axisOffset - 10);\n\n if(useForeignObject) {\n // We need to set width and height explicitly to px as span will not expand with width and height being\n // 100% in all browsers\n var content = document.createElement('span');\n content.className = classes.join(' ');\n content.setAttribute('xmlns', Chartist.namespaces.xhtml);\n content.innerText = labels[index];\n content.style[axis.units.len] = Math.round(positionalData[axis.units.len]) + 'px';\n content.style[axis.counterUnits.len] = Math.round(positionalData[axis.counterUnits.len]) + 'px';\n\n labelElement = group.foreignObject(content, Chartist.extend({\n style: 'overflow: visible;'\n }, positionalData));\n } else {\n labelElement = group.elem('text', positionalData, classes.join(' ')).text(labels[index]);\n }\n\n eventEmitter.emit('draw', Chartist.extend({\n type: 'label',\n axis: axis,\n index: index,\n group: group,\n element: labelElement,\n text: labels[index]\n }, positionalData));\n };\n\n /**\n * Helper to read series specific options from options object. It automatically falls back to the global option if\n * there is no option in the series options.\n *\n * @param {Object} series Series object\n * @param {Object} options Chartist options object\n * @param {string} key The options key that should be used to obtain the options\n * @returns {*}\n */\n Chartist.getSeriesOption = function(series, options, key) {\n if(series.name && options.series && options.series[series.name]) {\n var seriesOptions = options.series[series.name];\n return seriesOptions.hasOwnProperty(key) ? seriesOptions[key] : options[key];\n } else {\n return options[key];\n }\n };\n\n /**\n * Provides options handling functionality with callback for options changes triggered by responsive options and media query matches\n *\n * @memberof Chartist.Core\n * @param {Object} options Options set by user\n * @param {Array} responsiveOptions Optional functions to add responsive behavior to chart\n * @param {Object} eventEmitter The event emitter that will be used to emit the options changed events\n * @return {Object} The consolidated options object from the defaults, base and matching responsive options\n */\n Chartist.optionsProvider = function (options, responsiveOptions, eventEmitter) {\n var baseOptions = Chartist.extend({}, options),\n currentOptions,\n mediaQueryListeners = [],\n i;\n\n function updateCurrentOptions(mediaEvent) {\n var previousOptions = currentOptions;\n currentOptions = Chartist.extend({}, baseOptions);\n\n if (responsiveOptions) {\n for (i = 0; i < responsiveOptions.length; i++) {\n var mql = window.matchMedia(responsiveOptions[i][0]);\n if (mql.matches) {\n currentOptions = Chartist.extend(currentOptions, responsiveOptions[i][1]);\n }\n }\n }\n\n if(eventEmitter && mediaEvent) {\n eventEmitter.emit('optionsChanged', {\n previousOptions: previousOptions,\n currentOptions: currentOptions\n });\n }\n }\n\n function removeMediaQueryListeners() {\n mediaQueryListeners.forEach(function(mql) {\n mql.removeListener(updateCurrentOptions);\n });\n }\n\n if (!window.matchMedia) {\n throw 'window.matchMedia not found! Make sure you\\'re using a polyfill.';\n } else if (responsiveOptions) {\n\n for (i = 0; i < responsiveOptions.length; i++) {\n var mql = window.matchMedia(responsiveOptions[i][0]);\n mql.addListener(updateCurrentOptions);\n mediaQueryListeners.push(mql);\n }\n }\n // Execute initially without an event argument so we get the correct options\n updateCurrentOptions();\n\n return {\n removeMediaQueryListeners: removeMediaQueryListeners,\n getCurrentOptions: function getCurrentOptions() {\n return Chartist.extend({}, currentOptions);\n }\n };\n };\n\n\n /**\n * Splits a list of coordinates and associated values into segments. Each returned segment contains a pathCoordinates\n * valueData property describing the segment.\n *\n * With the default options, segments consist of contiguous sets of points that do not have an undefined value. Any\n * points with undefined values are discarded.\n *\n * **Options**\n * The following options are used to determine how segments are formed\n * ```javascript\n * var options = {\n * // If fillHoles is true, undefined values are simply discarded without creating a new segment. Assuming other options are default, this returns single segment.\n * fillHoles: false,\n * // If increasingX is true, the coordinates in all segments have strictly increasing x-values.\n * increasingX: false\n * };\n * ```\n *\n * @memberof Chartist.Core\n * @param {Array} pathCoordinates List of point coordinates to be split in the form [x1, y1, x2, y2 ... xn, yn]\n * @param {Array} values List of associated point values in the form [v1, v2 .. vn]\n * @param {Object} options Options set by user\n * @return {Array} List of segments, each containing a pathCoordinates and valueData property.\n */\n Chartist.splitIntoSegments = function(pathCoordinates, valueData, options) {\n var defaultOptions = {\n increasingX: false,\n fillHoles: false\n };\n\n options = Chartist.extend({}, defaultOptions, options);\n\n var segments = [];\n var hole = true;\n\n for(var i = 0; i < pathCoordinates.length; i += 2) {\n // If this value is a \"hole\" we set the hole flag\n if(Chartist.getMultiValue(valueData[i / 2].value) === undefined) {\n // if(valueData[i / 2].value === undefined) {\n if(!options.fillHoles) {\n hole = true;\n }\n } else {\n if(options.increasingX && i >= 2 && pathCoordinates[i] <= pathCoordinates[i-2]) {\n // X is not increasing, so we need to make sure we start a new segment\n hole = true;\n }\n\n\n // If it's a valid value we need to check if we're coming out of a hole and create a new empty segment\n if(hole) {\n segments.push({\n pathCoordinates: [],\n valueData: []\n });\n // As we have a valid value now, we are not in a \"hole\" anymore\n hole = false;\n }\n\n // Add to the segment pathCoordinates and valueData\n segments[segments.length - 1].pathCoordinates.push(pathCoordinates[i], pathCoordinates[i + 1]);\n segments[segments.length - 1].valueData.push(valueData[i / 2]);\n }\n }\n\n return segments;\n };\n}(this, Chartist));\n;/**\n * Chartist path interpolation functions.\n *\n * @module Chartist.Interpolation\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n Chartist.Interpolation = {};\n\n /**\n * This interpolation function does not smooth the path and the result is only containing lines and no curves.\n *\n * @example\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [[1, 2, 8, 1, 7]]\n * }, {\n * lineSmooth: Chartist.Interpolation.none({\n * fillHoles: false\n * })\n * });\n *\n *\n * @memberof Chartist.Interpolation\n * @return {Function}\n */\n Chartist.Interpolation.none = function(options) {\n var defaultOptions = {\n fillHoles: false\n };\n options = Chartist.extend({}, defaultOptions, options);\n return function none(pathCoordinates, valueData) {\n var path = new Chartist.Svg.Path();\n var hole = true;\n\n for(var i = 0; i < pathCoordinates.length; i += 2) {\n var currX = pathCoordinates[i];\n var currY = pathCoordinates[i + 1];\n var currData = valueData[i / 2];\n\n if(Chartist.getMultiValue(currData.value) !== undefined) {\n\n if(hole) {\n path.move(currX, currY, false, currData);\n } else {\n path.line(currX, currY, false, currData);\n }\n\n hole = false;\n } else if(!options.fillHoles) {\n hole = true;\n }\n }\n\n return path;\n };\n };\n\n /**\n * Simple smoothing creates horizontal handles that are positioned with a fraction of the length between two data points. You can use the divisor option to specify the amount of smoothing.\n *\n * Simple smoothing can be used instead of `Chartist.Smoothing.cardinal` if you'd like to get rid of the artifacts it produces sometimes. Simple smoothing produces less flowing lines but is accurate by hitting the points and it also doesn't swing below or above the given data point.\n *\n * All smoothing functions within Chartist are factory functions that accept an options parameter. The simple interpolation function accepts one configuration parameter `divisor`, between 1 and ∞, which controls the smoothing characteristics.\n *\n * @example\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [[1, 2, 8, 1, 7]]\n * }, {\n * lineSmooth: Chartist.Interpolation.simple({\n * divisor: 2,\n * fillHoles: false\n * })\n * });\n *\n *\n * @memberof Chartist.Interpolation\n * @param {Object} options The options of the simple interpolation factory function.\n * @return {Function}\n */\n Chartist.Interpolation.simple = function(options) {\n var defaultOptions = {\n divisor: 2,\n fillHoles: false\n };\n options = Chartist.extend({}, defaultOptions, options);\n\n var d = 1 / Math.max(1, options.divisor);\n\n return function simple(pathCoordinates, valueData) {\n var path = new Chartist.Svg.Path();\n var prevX, prevY, prevData;\n\n for(var i = 0; i < pathCoordinates.length; i += 2) {\n var currX = pathCoordinates[i];\n var currY = pathCoordinates[i + 1];\n var length = (currX - prevX) * d;\n var currData = valueData[i / 2];\n\n if(currData.value !== undefined) {\n\n if(prevData === undefined) {\n path.move(currX, currY, false, currData);\n } else {\n path.curve(\n prevX + length,\n prevY,\n currX - length,\n currY,\n currX,\n currY,\n false,\n currData\n );\n }\n\n prevX = currX;\n prevY = currY;\n prevData = currData;\n } else if(!options.fillHoles) {\n prevX = currX = prevData = undefined;\n }\n }\n\n return path;\n };\n };\n\n /**\n * Cardinal / Catmull-Rome spline interpolation is the default smoothing function in Chartist. It produces nice results where the splines will always meet the points. It produces some artifacts though when data values are increased or decreased rapidly. The line may not follow a very accurate path and if the line should be accurate this smoothing function does not produce the best results.\n *\n * Cardinal splines can only be created if there are more than two data points. If this is not the case this smoothing will fallback to `Chartist.Smoothing.none`.\n *\n * All smoothing functions within Chartist are factory functions that accept an options parameter. The cardinal interpolation function accepts one configuration parameter `tension`, between 0 and 1, which controls the smoothing intensity.\n *\n * @example\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [[1, 2, 8, 1, 7]]\n * }, {\n * lineSmooth: Chartist.Interpolation.cardinal({\n * tension: 1,\n * fillHoles: false\n * })\n * });\n *\n * @memberof Chartist.Interpolation\n * @param {Object} options The options of the cardinal factory function.\n * @return {Function}\n */\n Chartist.Interpolation.cardinal = function(options) {\n var defaultOptions = {\n tension: 1,\n fillHoles: false\n };\n\n options = Chartist.extend({}, defaultOptions, options);\n\n var t = Math.min(1, Math.max(0, options.tension)),\n c = 1 - t;\n\n return function cardinal(pathCoordinates, valueData) {\n // First we try to split the coordinates into segments\n // This is necessary to treat \"holes\" in line charts\n var segments = Chartist.splitIntoSegments(pathCoordinates, valueData, {\n fillHoles: options.fillHoles\n });\n\n if(!segments.length) {\n // If there were no segments return 'Chartist.Interpolation.none'\n return Chartist.Interpolation.none()([]);\n } else if(segments.length > 1) {\n // If the split resulted in more that one segment we need to interpolate each segment individually and join them\n // afterwards together into a single path.\n var paths = [];\n // For each segment we will recurse the cardinal function\n segments.forEach(function(segment) {\n paths.push(cardinal(segment.pathCoordinates, segment.valueData));\n });\n // Join the segment path data into a single path and return\n return Chartist.Svg.Path.join(paths);\n } else {\n // If there was only one segment we can proceed regularly by using pathCoordinates and valueData from the first\n // segment\n pathCoordinates = segments[0].pathCoordinates;\n valueData = segments[0].valueData;\n\n // If less than two points we need to fallback to no smoothing\n if(pathCoordinates.length <= 4) {\n return Chartist.Interpolation.none()(pathCoordinates, valueData);\n }\n\n var path = new Chartist.Svg.Path().move(pathCoordinates[0], pathCoordinates[1], false, valueData[0]),\n z;\n\n for (var i = 0, iLen = pathCoordinates.length; iLen - 2 * !z > i; i += 2) {\n var p = [\n {x: +pathCoordinates[i - 2], y: +pathCoordinates[i - 1]},\n {x: +pathCoordinates[i], y: +pathCoordinates[i + 1]},\n {x: +pathCoordinates[i + 2], y: +pathCoordinates[i + 3]},\n {x: +pathCoordinates[i + 4], y: +pathCoordinates[i + 5]}\n ];\n if (z) {\n if (!i) {\n p[0] = {x: +pathCoordinates[iLen - 2], y: +pathCoordinates[iLen - 1]};\n } else if (iLen - 4 === i) {\n p[3] = {x: +pathCoordinates[0], y: +pathCoordinates[1]};\n } else if (iLen - 2 === i) {\n p[2] = {x: +pathCoordinates[0], y: +pathCoordinates[1]};\n p[3] = {x: +pathCoordinates[2], y: +pathCoordinates[3]};\n }\n } else {\n if (iLen - 4 === i) {\n p[3] = p[2];\n } else if (!i) {\n p[0] = {x: +pathCoordinates[i], y: +pathCoordinates[i + 1]};\n }\n }\n\n path.curve(\n (t * (-p[0].x + 6 * p[1].x + p[2].x) / 6) + (c * p[2].x),\n (t * (-p[0].y + 6 * p[1].y + p[2].y) / 6) + (c * p[2].y),\n (t * (p[1].x + 6 * p[2].x - p[3].x) / 6) + (c * p[2].x),\n (t * (p[1].y + 6 * p[2].y - p[3].y) / 6) + (c * p[2].y),\n p[2].x,\n p[2].y,\n false,\n valueData[(i + 2) / 2]\n );\n }\n\n return path;\n }\n };\n };\n\n /**\n * Monotone Cubic spline interpolation produces a smooth curve which preserves monotonicity. Unlike cardinal splines, the curve will not extend beyond the range of y-values of the original data points.\n *\n * Monotone Cubic splines can only be created if there are more than two data points. If this is not the case this smoothing will fallback to `Chartist.Smoothing.none`.\n *\n * The x-values of subsequent points must be increasing to fit a Monotone Cubic spline. If this condition is not met for a pair of adjacent points, then there will be a break in the curve between those data points.\n *\n * All smoothing functions within Chartist are factory functions that accept an options parameter.\n *\n * @example\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [[1, 2, 8, 1, 7]]\n * }, {\n * lineSmooth: Chartist.Interpolation.monotoneCubic({\n * fillHoles: false\n * })\n * });\n *\n * @memberof Chartist.Interpolation\n * @param {Object} options The options of the monotoneCubic factory function.\n * @return {Function}\n */\n Chartist.Interpolation.monotoneCubic = function(options) {\n var defaultOptions = {\n fillHoles: false\n };\n\n options = Chartist.extend({}, defaultOptions, options);\n\n return function monotoneCubic(pathCoordinates, valueData) {\n // First we try to split the coordinates into segments\n // This is necessary to treat \"holes\" in line charts\n var segments = Chartist.splitIntoSegments(pathCoordinates, valueData, {\n fillHoles: options.fillHoles,\n increasingX: true\n });\n\n if(!segments.length) {\n // If there were no segments return 'Chartist.Interpolation.none'\n return Chartist.Interpolation.none()([]);\n } else if(segments.length > 1) {\n // If the split resulted in more that one segment we need to interpolate each segment individually and join them\n // afterwards together into a single path.\n var paths = [];\n // For each segment we will recurse the monotoneCubic fn function\n segments.forEach(function(segment) {\n paths.push(monotoneCubic(segment.pathCoordinates, segment.valueData));\n });\n // Join the segment path data into a single path and return\n return Chartist.Svg.Path.join(paths);\n } else {\n // If there was only one segment we can proceed regularly by using pathCoordinates and valueData from the first\n // segment\n pathCoordinates = segments[0].pathCoordinates;\n valueData = segments[0].valueData;\n\n // If less than three points we need to fallback to no smoothing\n if(pathCoordinates.length <= 4) {\n return Chartist.Interpolation.none()(pathCoordinates, valueData);\n }\n\n var xs = [],\n ys = [],\n i,\n n = pathCoordinates.length / 2,\n ms = [],\n ds = [], dys = [], dxs = [],\n path;\n\n // Populate x and y coordinates into separate arrays, for readability\n\n for(i = 0; i < n; i++) {\n xs[i] = pathCoordinates[i * 2];\n ys[i] = pathCoordinates[i * 2 + 1];\n }\n\n // Calculate deltas and derivative\n\n for(i = 0; i < n - 1; i++) {\n dys[i] = ys[i + 1] - ys[i];\n dxs[i] = xs[i + 1] - xs[i];\n ds[i] = dys[i] / dxs[i];\n }\n\n // Determine desired slope (m) at each point using Fritsch-Carlson method\n // See: http://math.stackexchange.com/questions/45218/implementation-of-monotone-cubic-interpolation\n\n ms[0] = ds[0];\n ms[n - 1] = ds[n - 2];\n\n for(i = 1; i < n - 1; i++) {\n if(ds[i] === 0 || ds[i - 1] === 0 || (ds[i - 1] > 0) !== (ds[i] > 0)) {\n ms[i] = 0;\n } else {\n ms[i] = 3 * (dxs[i - 1] + dxs[i]) / (\n (2 * dxs[i] + dxs[i - 1]) / ds[i - 1] +\n (dxs[i] + 2 * dxs[i - 1]) / ds[i]);\n\n if(!isFinite(ms[i])) {\n ms[i] = 0;\n }\n }\n }\n\n // Now build a path from the slopes\n\n path = new Chartist.Svg.Path().move(xs[0], ys[0], false, valueData[0]);\n\n for(i = 0; i < n - 1; i++) {\n path.curve(\n // First control point\n xs[i] + dxs[i] / 3,\n ys[i] + ms[i] * dxs[i] / 3,\n // Second control point\n xs[i + 1] - dxs[i] / 3,\n ys[i + 1] - ms[i + 1] * dxs[i] / 3,\n // End point\n xs[i + 1],\n ys[i + 1],\n\n false,\n valueData[i + 1]\n );\n }\n\n return path;\n }\n };\n };\n\n /**\n * Step interpolation will cause the line chart to move in steps rather than diagonal or smoothed lines. This interpolation will create additional points that will also be drawn when the `showPoint` option is enabled.\n *\n * All smoothing functions within Chartist are factory functions that accept an options parameter. The step interpolation function accepts one configuration parameter `postpone`, that can be `true` or `false`. The default value is `true` and will cause the step to occur where the value actually changes. If a different behaviour is needed where the step is shifted to the left and happens before the actual value, this option can be set to `false`.\n *\n * @example\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [[1, 2, 8, 1, 7]]\n * }, {\n * lineSmooth: Chartist.Interpolation.step({\n * postpone: true,\n * fillHoles: false\n * })\n * });\n *\n * @memberof Chartist.Interpolation\n * @param options\n * @returns {Function}\n */\n Chartist.Interpolation.step = function(options) {\n var defaultOptions = {\n postpone: true,\n fillHoles: false\n };\n\n options = Chartist.extend({}, defaultOptions, options);\n\n return function step(pathCoordinates, valueData) {\n var path = new Chartist.Svg.Path();\n\n var prevX, prevY, prevData;\n\n for (var i = 0; i < pathCoordinates.length; i += 2) {\n var currX = pathCoordinates[i];\n var currY = pathCoordinates[i + 1];\n var currData = valueData[i / 2];\n\n // If the current point is also not a hole we can draw the step lines\n if(currData.value !== undefined) {\n if(prevData === undefined) {\n path.move(currX, currY, false, currData);\n } else {\n if(options.postpone) {\n // If postponed we should draw the step line with the value of the previous value\n path.line(currX, prevY, false, prevData);\n } else {\n // If not postponed we should draw the step line with the value of the current value\n path.line(prevX, currY, false, currData);\n }\n // Line to the actual point (this should only be a Y-Axis movement\n path.line(currX, currY, false, currData);\n }\n\n prevX = currX;\n prevY = currY;\n prevData = currData;\n } else if(!options.fillHoles) {\n prevX = prevY = prevData = undefined;\n }\n }\n\n return path;\n };\n };\n\n}(this, Chartist));\n;/**\n * A very basic event module that helps to generate and catch events.\n *\n * @module Chartist.Event\n */\n/* global Chartist */\n(function (globalRoot, Chartist) {\n 'use strict';\n\n Chartist.EventEmitter = function () {\n var handlers = [];\n\n /**\n * Add an event handler for a specific event\n *\n * @memberof Chartist.Event\n * @param {String} event The event name\n * @param {Function} handler A event handler function\n */\n function addEventHandler(event, handler) {\n handlers[event] = handlers[event] || [];\n handlers[event].push(handler);\n }\n\n /**\n * Remove an event handler of a specific event name or remove all event handlers for a specific event.\n *\n * @memberof Chartist.Event\n * @param {String} event The event name where a specific or all handlers should be removed\n * @param {Function} [handler] An optional event handler function. If specified only this specific handler will be removed and otherwise all handlers are removed.\n */\n function removeEventHandler(event, handler) {\n // Only do something if there are event handlers with this name existing\n if(handlers[event]) {\n // If handler is set we will look for a specific handler and only remove this\n if(handler) {\n handlers[event].splice(handlers[event].indexOf(handler), 1);\n if(handlers[event].length === 0) {\n delete handlers[event];\n }\n } else {\n // If no handler is specified we remove all handlers for this event\n delete handlers[event];\n }\n }\n }\n\n /**\n * Use this function to emit an event. All handlers that are listening for this event will be triggered with the data parameter.\n *\n * @memberof Chartist.Event\n * @param {String} event The event name that should be triggered\n * @param {*} data Arbitrary data that will be passed to the event handler callback functions\n */\n function emit(event, data) {\n // Only do something if there are event handlers with this name existing\n if(handlers[event]) {\n handlers[event].forEach(function(handler) {\n handler(data);\n });\n }\n\n // Emit event to star event handlers\n if(handlers['*']) {\n handlers['*'].forEach(function(starHandler) {\n starHandler(event, data);\n });\n }\n }\n\n return {\n addEventHandler: addEventHandler,\n removeEventHandler: removeEventHandler,\n emit: emit\n };\n };\n\n}(this, Chartist));\n;/**\n * This module provides some basic prototype inheritance utilities.\n *\n * @module Chartist.Class\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n function listToArray(list) {\n var arr = [];\n if (list.length) {\n for (var i = 0; i < list.length; i++) {\n arr.push(list[i]);\n }\n }\n return arr;\n }\n\n /**\n * Method to extend from current prototype.\n *\n * @memberof Chartist.Class\n * @param {Object} properties The object that serves as definition for the prototype that gets created for the new class. This object should always contain a constructor property that is the desired constructor for the newly created class.\n * @param {Object} [superProtoOverride] By default extens will use the current class prototype or Chartist.class. With this parameter you can specify any super prototype that will be used.\n * @return {Function} Constructor function of the new class\n *\n * @example\n * var Fruit = Class.extend({\n * color: undefined,\n * sugar: undefined,\n *\n * constructor: function(color, sugar) {\n * this.color = color;\n * this.sugar = sugar;\n * },\n *\n * eat: function() {\n * this.sugar = 0;\n * return this;\n * }\n * });\n *\n * var Banana = Fruit.extend({\n * length: undefined,\n *\n * constructor: function(length, sugar) {\n * Banana.super.constructor.call(this, 'Yellow', sugar);\n * this.length = length;\n * }\n * });\n *\n * var banana = new Banana(20, 40);\n * console.log('banana instanceof Fruit', banana instanceof Fruit);\n * console.log('Fruit is prototype of banana', Fruit.prototype.isPrototypeOf(banana));\n * console.log('bananas prototype is Fruit', Object.getPrototypeOf(banana) === Fruit.prototype);\n * console.log(banana.sugar);\n * console.log(banana.eat().sugar);\n * console.log(banana.color);\n */\n function extend(properties, superProtoOverride) {\n var superProto = superProtoOverride || this.prototype || Chartist.Class;\n var proto = Object.create(superProto);\n\n Chartist.Class.cloneDefinitions(proto, properties);\n\n var constr = function() {\n var fn = proto.constructor || function () {},\n instance;\n\n // If this is linked to the Chartist namespace the constructor was not called with new\n // To provide a fallback we will instantiate here and return the instance\n instance = this === Chartist ? Object.create(proto) : this;\n fn.apply(instance, Array.prototype.slice.call(arguments, 0));\n\n // If this constructor was not called with new we need to return the instance\n // This will not harm when the constructor has been called with new as the returned value is ignored\n return instance;\n };\n\n constr.prototype = proto;\n constr.super = superProto;\n constr.extend = this.extend;\n\n return constr;\n }\n\n // Variable argument list clones args > 0 into args[0] and retruns modified args[0]\n function cloneDefinitions() {\n var args = listToArray(arguments);\n var target = args[0];\n\n args.splice(1, args.length - 1).forEach(function (source) {\n Object.getOwnPropertyNames(source).forEach(function (propName) {\n // If this property already exist in target we delete it first\n delete target[propName];\n // Define the property with the descriptor from source\n Object.defineProperty(target, propName,\n Object.getOwnPropertyDescriptor(source, propName));\n });\n });\n\n return target;\n }\n\n Chartist.Class = {\n extend: extend,\n cloneDefinitions: cloneDefinitions\n };\n\n}(this, Chartist));\n;/**\n * Base for all chart types. The methods in Chartist.Base are inherited to all chart types.\n *\n * @module Chartist.Base\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n\n // TODO: Currently we need to re-draw the chart on window resize. This is usually very bad and will affect performance.\n // This is done because we can't work with relative coordinates when drawing the chart because SVG Path does not\n // work with relative positions yet. We need to check if we can do a viewBox hack to switch to percentage.\n // See http://mozilla.6506.n7.nabble.com/Specyfing-paths-with-percentages-unit-td247474.html\n // Update: can be done using the above method tested here: http://codepen.io/gionkunz/pen/KDvLj\n // The problem is with the label offsets that can't be converted into percentage and affecting the chart container\n /**\n * Updates the chart which currently does a full reconstruction of the SVG DOM\n *\n * @param {Object} [data] Optional data you'd like to set for the chart before it will update. If not specified the update method will use the data that is already configured with the chart.\n * @param {Object} [options] Optional options you'd like to add to the previous options for the chart before it will update. If not specified the update method will use the options that have been already configured with the chart.\n * @param {Boolean} [override] If set to true, the passed options will be used to extend the options that have been configured already. Otherwise the chart default options will be used as the base\n * @memberof Chartist.Base\n */\n function update(data, options, override) {\n if(data) {\n this.data = data || {};\n this.data.labels = this.data.labels || [];\n this.data.series = this.data.series || [];\n // Event for data transformation that allows to manipulate the data before it gets rendered in the charts\n this.eventEmitter.emit('data', {\n type: 'update',\n data: this.data\n });\n }\n\n if(options) {\n this.options = Chartist.extend({}, override ? this.options : this.defaultOptions, options);\n\n // If chartist was not initialized yet, we just set the options and leave the rest to the initialization\n // Otherwise we re-create the optionsProvider at this point\n if(!this.initializeTimeoutId) {\n this.optionsProvider.removeMediaQueryListeners();\n this.optionsProvider = Chartist.optionsProvider(this.options, this.responsiveOptions, this.eventEmitter);\n }\n }\n\n // Only re-created the chart if it has been initialized yet\n if(!this.initializeTimeoutId) {\n this.createChart(this.optionsProvider.getCurrentOptions());\n }\n\n // Return a reference to the chart object to chain up calls\n return this;\n }\n\n /**\n * This method can be called on the API object of each chart and will un-register all event listeners that were added to other components. This currently includes a window.resize listener as well as media query listeners if any responsive options have been provided. Use this function if you need to destroy and recreate Chartist charts dynamically.\n *\n * @memberof Chartist.Base\n */\n function detach() {\n // Only detach if initialization already occurred on this chart. If this chart still hasn't initialized (therefore\n // the initializationTimeoutId is still a valid timeout reference, we will clear the timeout\n if(!this.initializeTimeoutId) {\n window.removeEventListener('resize', this.resizeListener);\n this.optionsProvider.removeMediaQueryListeners();\n } else {\n window.clearTimeout(this.initializeTimeoutId);\n }\n\n return this;\n }\n\n /**\n * Use this function to register event handlers. The handler callbacks are synchronous and will run in the main thread rather than the event loop.\n *\n * @memberof Chartist.Base\n * @param {String} event Name of the event. Check the examples for supported events.\n * @param {Function} handler The handler function that will be called when an event with the given name was emitted. This function will receive a data argument which contains event data. See the example for more details.\n */\n function on(event, handler) {\n this.eventEmitter.addEventHandler(event, handler);\n return this;\n }\n\n /**\n * Use this function to un-register event handlers. If the handler function parameter is omitted all handlers for the given event will be un-registered.\n *\n * @memberof Chartist.Base\n * @param {String} event Name of the event for which a handler should be removed\n * @param {Function} [handler] The handler function that that was previously used to register a new event handler. This handler will be removed from the event handler list. If this parameter is omitted then all event handlers for the given event are removed from the list.\n */\n function off(event, handler) {\n this.eventEmitter.removeEventHandler(event, handler);\n return this;\n }\n\n function initialize() {\n // Add window resize listener that re-creates the chart\n window.addEventListener('resize', this.resizeListener);\n\n // Obtain current options based on matching media queries (if responsive options are given)\n // This will also register a listener that is re-creating the chart based on media changes\n this.optionsProvider = Chartist.optionsProvider(this.options, this.responsiveOptions, this.eventEmitter);\n // Register options change listener that will trigger a chart update\n this.eventEmitter.addEventHandler('optionsChanged', function() {\n this.update();\n }.bind(this));\n\n // Before the first chart creation we need to register us with all plugins that are configured\n // Initialize all relevant plugins with our chart object and the plugin options specified in the config\n if(this.options.plugins) {\n this.options.plugins.forEach(function(plugin) {\n if(plugin instanceof Array) {\n plugin[0](this, plugin[1]);\n } else {\n plugin(this);\n }\n }.bind(this));\n }\n\n // Event for data transformation that allows to manipulate the data before it gets rendered in the charts\n this.eventEmitter.emit('data', {\n type: 'initial',\n data: this.data\n });\n\n // Create the first chart\n this.createChart(this.optionsProvider.getCurrentOptions());\n\n // As chart is initialized from the event loop now we can reset our timeout reference\n // This is important if the chart gets initialized on the same element twice\n this.initializeTimeoutId = undefined;\n }\n\n /**\n * Constructor of chart base class.\n *\n * @param query\n * @param data\n * @param defaultOptions\n * @param options\n * @param responsiveOptions\n * @constructor\n */\n function Base(query, data, defaultOptions, options, responsiveOptions) {\n this.container = Chartist.querySelector(query);\n this.data = data || {};\n this.data.labels = this.data.labels || [];\n this.data.series = this.data.series || [];\n this.defaultOptions = defaultOptions;\n this.options = options;\n this.responsiveOptions = responsiveOptions;\n this.eventEmitter = Chartist.EventEmitter();\n this.supportsForeignObject = Chartist.Svg.isSupported('Extensibility');\n this.supportsAnimations = Chartist.Svg.isSupported('AnimationEventsAttribute');\n this.resizeListener = function resizeListener(){\n this.update();\n }.bind(this);\n\n if(this.container) {\n // If chartist was already initialized in this container we are detaching all event listeners first\n if(this.container.__chartist__) {\n this.container.__chartist__.detach();\n }\n\n this.container.__chartist__ = this;\n }\n\n // Using event loop for first draw to make it possible to register event listeners in the same call stack where\n // the chart was created.\n this.initializeTimeoutId = setTimeout(initialize.bind(this), 0);\n }\n\n // Creating the chart base class\n Chartist.Base = Chartist.Class.extend({\n constructor: Base,\n optionsProvider: undefined,\n container: undefined,\n svg: undefined,\n eventEmitter: undefined,\n createChart: function() {\n throw new Error('Base chart type can\\'t be instantiated!');\n },\n update: update,\n detach: detach,\n on: on,\n off: off,\n version: Chartist.version,\n supportsForeignObject: false\n });\n\n}(this, Chartist));\n;/**\n * Chartist SVG module for simple SVG DOM abstraction\n *\n * @module Chartist.Svg\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n var document = globalRoot.document;\n\n /**\n * Chartist.Svg creates a new SVG object wrapper with a starting element. You can use the wrapper to fluently create sub-elements and modify them.\n *\n * @memberof Chartist.Svg\n * @constructor\n * @param {String|Element} name The name of the SVG element to create or an SVG dom element which should be wrapped into Chartist.Svg\n * @param {Object} attributes An object with properties that will be added as attributes to the SVG element that is created. Attributes with undefined values will not be added.\n * @param {String} className This class or class list will be added to the SVG element\n * @param {Object} parent The parent SVG wrapper object where this newly created wrapper and it's element will be attached to as child\n * @param {Boolean} insertFirst If this param is set to true in conjunction with a parent element the newly created element will be added as first child element in the parent element\n */\n function Svg(name, attributes, className, parent, insertFirst) {\n // If Svg is getting called with an SVG element we just return the wrapper\n if(name instanceof Element) {\n this._node = name;\n } else {\n this._node = document.createElementNS(Chartist.namespaces.svg, name);\n\n // If this is an SVG element created then custom namespace\n if(name === 'svg') {\n this.attr({\n 'xmlns:ct': Chartist.namespaces.ct\n });\n }\n }\n\n if(attributes) {\n this.attr(attributes);\n }\n\n if(className) {\n this.addClass(className);\n }\n\n if(parent) {\n if (insertFirst && parent._node.firstChild) {\n parent._node.insertBefore(this._node, parent._node.firstChild);\n } else {\n parent._node.appendChild(this._node);\n }\n }\n }\n\n /**\n * Set attributes on the current SVG element of the wrapper you're currently working on.\n *\n * @memberof Chartist.Svg\n * @param {Object|String} attributes An object with properties that will be added as attributes to the SVG element that is created. Attributes with undefined values will not be added. If this parameter is a String then the function is used as a getter and will return the attribute value.\n * @param {String} [ns] If specified, the attribute will be obtained using getAttributeNs. In order to write namepsaced attributes you can use the namespace:attribute notation within the attributes object.\n * @return {Object|String} The current wrapper object will be returned so it can be used for chaining or the attribute value if used as getter function.\n */\n function attr(attributes, ns) {\n if(typeof attributes === 'string') {\n if(ns) {\n return this._node.getAttributeNS(ns, attributes);\n } else {\n return this._node.getAttribute(attributes);\n }\n }\n\n Object.keys(attributes).forEach(function(key) {\n // If the attribute value is undefined we can skip this one\n if(attributes[key] === undefined) {\n return;\n }\n\n if (key.indexOf(':') !== -1) {\n var namespacedAttribute = key.split(':');\n this._node.setAttributeNS(Chartist.namespaces[namespacedAttribute[0]], key, attributes[key]);\n } else {\n this._node.setAttribute(key, attributes[key]);\n }\n }.bind(this));\n\n return this;\n }\n\n /**\n * Create a new SVG element whose wrapper object will be selected for further operations. This way you can also create nested groups easily.\n *\n * @memberof Chartist.Svg\n * @param {String} name The name of the SVG element that should be created as child element of the currently selected element wrapper\n * @param {Object} [attributes] An object with properties that will be added as attributes to the SVG element that is created. Attributes with undefined values will not be added.\n * @param {String} [className] This class or class list will be added to the SVG element\n * @param {Boolean} [insertFirst] If this param is set to true in conjunction with a parent element the newly created element will be added as first child element in the parent element\n * @return {Chartist.Svg} Returns a Chartist.Svg wrapper object that can be used to modify the containing SVG data\n */\n function elem(name, attributes, className, insertFirst) {\n return new Chartist.Svg(name, attributes, className, this, insertFirst);\n }\n\n /**\n * Returns the parent Chartist.SVG wrapper object\n *\n * @memberof Chartist.Svg\n * @return {Chartist.Svg} Returns a Chartist.Svg wrapper around the parent node of the current node. If the parent node is not existing or it's not an SVG node then this function will return null.\n */\n function parent() {\n return this._node.parentNode instanceof SVGElement ? new Chartist.Svg(this._node.parentNode) : null;\n }\n\n /**\n * This method returns a Chartist.Svg wrapper around the root SVG element of the current tree.\n *\n * @memberof Chartist.Svg\n * @return {Chartist.Svg} The root SVG element wrapped in a Chartist.Svg element\n */\n function root() {\n var node = this._node;\n while(node.nodeName !== 'svg') {\n node = node.parentNode;\n }\n return new Chartist.Svg(node);\n }\n\n /**\n * Find the first child SVG element of the current element that matches a CSS selector. The returned object is a Chartist.Svg wrapper.\n *\n * @memberof Chartist.Svg\n * @param {String} selector A CSS selector that is used to query for child SVG elements\n * @return {Chartist.Svg} The SVG wrapper for the element found or null if no element was found\n */\n function querySelector(selector) {\n var foundNode = this._node.querySelector(selector);\n return foundNode ? new Chartist.Svg(foundNode) : null;\n }\n\n /**\n * Find the all child SVG elements of the current element that match a CSS selector. The returned object is a Chartist.Svg.List wrapper.\n *\n * @memberof Chartist.Svg\n * @param {String} selector A CSS selector that is used to query for child SVG elements\n * @return {Chartist.Svg.List} The SVG wrapper list for the element found or null if no element was found\n */\n function querySelectorAll(selector) {\n var foundNodes = this._node.querySelectorAll(selector);\n return foundNodes.length ? new Chartist.Svg.List(foundNodes) : null;\n }\n\n /**\n * Returns the underlying SVG node for the current element.\n *\n * @memberof Chartist.Svg\n * @returns {Node}\n */\n function getNode() {\n return this._node;\n }\n\n /**\n * This method creates a foreignObject (see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject) that allows to embed HTML content into a SVG graphic. With the help of foreignObjects you can enable the usage of regular HTML elements inside of SVG where they are subject for SVG positioning and transformation but the Browser will use the HTML rendering capabilities for the containing DOM.\n *\n * @memberof Chartist.Svg\n * @param {Node|String} content The DOM Node, or HTML string that will be converted to a DOM Node, that is then placed into and wrapped by the foreignObject\n * @param {String} [attributes] An object with properties that will be added as attributes to the foreignObject element that is created. Attributes with undefined values will not be added.\n * @param {String} [className] This class or class list will be added to the SVG element\n * @param {Boolean} [insertFirst] Specifies if the foreignObject should be inserted as first child\n * @return {Chartist.Svg} New wrapper object that wraps the foreignObject element\n */\n function foreignObject(content, attributes, className, insertFirst) {\n // If content is string then we convert it to DOM\n // TODO: Handle case where content is not a string nor a DOM Node\n if(typeof content === 'string') {\n var container = document.createElement('div');\n container.innerHTML = content;\n content = container.firstChild;\n }\n\n // Adding namespace to content element\n content.setAttribute('xmlns', Chartist.namespaces.xmlns);\n\n // Creating the foreignObject without required extension attribute (as described here\n // http://www.w3.org/TR/SVG/extend.html#ForeignObjectElement)\n var fnObj = this.elem('foreignObject', attributes, className, insertFirst);\n\n // Add content to foreignObjectElement\n fnObj._node.appendChild(content);\n\n return fnObj;\n }\n\n /**\n * This method adds a new text element to the current Chartist.Svg wrapper.\n *\n * @memberof Chartist.Svg\n * @param {String} t The text that should be added to the text element that is created\n * @return {Chartist.Svg} The same wrapper object that was used to add the newly created element\n */\n function text(t) {\n this._node.appendChild(document.createTextNode(t));\n return this;\n }\n\n /**\n * This method will clear all child nodes of the current wrapper object.\n *\n * @memberof Chartist.Svg\n * @return {Chartist.Svg} The same wrapper object that got emptied\n */\n function empty() {\n while (this._node.firstChild) {\n this._node.removeChild(this._node.firstChild);\n }\n\n return this;\n }\n\n /**\n * This method will cause the current wrapper to remove itself from its parent wrapper. Use this method if you'd like to get rid of an element in a given DOM structure.\n *\n * @memberof Chartist.Svg\n * @return {Chartist.Svg} The parent wrapper object of the element that got removed\n */\n function remove() {\n this._node.parentNode.removeChild(this._node);\n return this.parent();\n }\n\n /**\n * This method will replace the element with a new element that can be created outside of the current DOM.\n *\n * @memberof Chartist.Svg\n * @param {Chartist.Svg} newElement The new Chartist.Svg object that will be used to replace the current wrapper object\n * @return {Chartist.Svg} The wrapper of the new element\n */\n function replace(newElement) {\n this._node.parentNode.replaceChild(newElement._node, this._node);\n return newElement;\n }\n\n /**\n * This method will append an element to the current element as a child.\n *\n * @memberof Chartist.Svg\n * @param {Chartist.Svg} element The Chartist.Svg element that should be added as a child\n * @param {Boolean} [insertFirst] Specifies if the element should be inserted as first child\n * @return {Chartist.Svg} The wrapper of the appended object\n */\n function append(element, insertFirst) {\n if(insertFirst && this._node.firstChild) {\n this._node.insertBefore(element._node, this._node.firstChild);\n } else {\n this._node.appendChild(element._node);\n }\n\n return this;\n }\n\n /**\n * Returns an array of class names that are attached to the current wrapper element. This method can not be chained further.\n *\n * @memberof Chartist.Svg\n * @return {Array} A list of classes or an empty array if there are no classes on the current element\n */\n function classes() {\n return this._node.getAttribute('class') ? this._node.getAttribute('class').trim().split(/\\s+/) : [];\n }\n\n /**\n * Adds one or a space separated list of classes to the current element and ensures the classes are only existing once.\n *\n * @memberof Chartist.Svg\n * @param {String} names A white space separated list of class names\n * @return {Chartist.Svg} The wrapper of the current element\n */\n function addClass(names) {\n this._node.setAttribute('class',\n this.classes(this._node)\n .concat(names.trim().split(/\\s+/))\n .filter(function(elem, pos, self) {\n return self.indexOf(elem) === pos;\n }).join(' ')\n );\n\n return this;\n }\n\n /**\n * Removes one or a space separated list of classes from the current element.\n *\n * @memberof Chartist.Svg\n * @param {String} names A white space separated list of class names\n * @return {Chartist.Svg} The wrapper of the current element\n */\n function removeClass(names) {\n var removedClasses = names.trim().split(/\\s+/);\n\n this._node.setAttribute('class', this.classes(this._node).filter(function(name) {\n return removedClasses.indexOf(name) === -1;\n }).join(' '));\n\n return this;\n }\n\n /**\n * Removes all classes from the current element.\n *\n * @memberof Chartist.Svg\n * @return {Chartist.Svg} The wrapper of the current element\n */\n function removeAllClasses() {\n this._node.setAttribute('class', '');\n\n return this;\n }\n\n /**\n * Get element height using `getBoundingClientRect`\n *\n * @memberof Chartist.Svg\n * @return {Number} The elements height in pixels\n */\n function height() {\n return this._node.getBoundingClientRect().height;\n }\n\n /**\n * Get element width using `getBoundingClientRect`\n *\n * @memberof Chartist.Core\n * @return {Number} The elements width in pixels\n */\n function width() {\n return this._node.getBoundingClientRect().width;\n }\n\n /**\n * The animate function lets you animate the current element with SMIL animations. You can add animations for multiple attributes at the same time by using an animation definition object. This object should contain SMIL animation attributes. Please refer to http://www.w3.org/TR/SVG/animate.html for a detailed specification about the available animation attributes. Additionally an easing property can be passed in the animation definition object. This can be a string with a name of an easing function in `Chartist.Svg.Easing` or an array with four numbers specifying a cubic Bézier curve.\n * **An animations object could look like this:**\n * ```javascript\n * element.animate({\n * opacity: {\n * dur: 1000,\n * from: 0,\n * to: 1\n * },\n * x1: {\n * dur: '1000ms',\n * from: 100,\n * to: 200,\n * easing: 'easeOutQuart'\n * },\n * y1: {\n * dur: '2s',\n * from: 0,\n * to: 100\n * }\n * });\n * ```\n * **Automatic unit conversion**\n * For the `dur` and the `begin` animate attribute you can also omit a unit by passing a number. The number will automatically be converted to milli seconds.\n * **Guided mode**\n * The default behavior of SMIL animations with offset using the `begin` attribute is that the attribute will keep it's original value until the animation starts. Mostly this behavior is not desired as you'd like to have your element attributes already initialized with the animation `from` value even before the animation starts. Also if you don't specify `fill=\"freeze\"` on an animate element or if you delete the animation after it's done (which is done in guided mode) the attribute will switch back to the initial value. This behavior is also not desired when performing simple one-time animations. For one-time animations you'd want to trigger animations immediately instead of relative to the document begin time. That's why in guided mode Chartist.Svg will also use the `begin` property to schedule a timeout and manually start the animation after the timeout. If you're using multiple SMIL definition objects for an attribute (in an array), guided mode will be disabled for this attribute, even if you explicitly enabled it.\n * If guided mode is enabled the following behavior is added:\n * - Before the animation starts (even when delayed with `begin`) the animated attribute will be set already to the `from` value of the animation\n * - `begin` is explicitly set to `indefinite` so it can be started manually without relying on document begin time (creation)\n * - The animate element will be forced to use `fill=\"freeze\"`\n * - The animation will be triggered with `beginElement()` in a timeout where `begin` of the definition object is interpreted in milli seconds. If no `begin` was specified the timeout is triggered immediately.\n * - After the animation the element attribute value will be set to the `to` value of the animation\n * - The animate element is deleted from the DOM\n *\n * @memberof Chartist.Svg\n * @param {Object} animations An animations object where the property keys are the attributes you'd like to animate. The properties should be objects again that contain the SMIL animation attributes (usually begin, dur, from, and to). The property begin and dur is auto converted (see Automatic unit conversion). You can also schedule multiple animations for the same attribute by passing an Array of SMIL definition objects. Attributes that contain an array of SMIL definition objects will not be executed in guided mode.\n * @param {Boolean} guided Specify if guided mode should be activated for this animation (see Guided mode). If not otherwise specified, guided mode will be activated.\n * @param {Object} eventEmitter If specified, this event emitter will be notified when an animation starts or ends.\n * @return {Chartist.Svg} The current element where the animation was added\n */\n function animate(animations, guided, eventEmitter) {\n if(guided === undefined) {\n guided = true;\n }\n\n Object.keys(animations).forEach(function createAnimateForAttributes(attribute) {\n\n function createAnimate(animationDefinition, guided) {\n var attributeProperties = {},\n animate,\n timeout,\n easing;\n\n // Check if an easing is specified in the definition object and delete it from the object as it will not\n // be part of the animate element attributes.\n if(animationDefinition.easing) {\n // If already an easing Bézier curve array we take it or we lookup a easing array in the Easing object\n easing = animationDefinition.easing instanceof Array ?\n animationDefinition.easing :\n Chartist.Svg.Easing[animationDefinition.easing];\n delete animationDefinition.easing;\n }\n\n // If numeric dur or begin was provided we assume milli seconds\n animationDefinition.begin = Chartist.ensureUnit(animationDefinition.begin, 'ms');\n animationDefinition.dur = Chartist.ensureUnit(animationDefinition.dur, 'ms');\n\n if(easing) {\n animationDefinition.calcMode = 'spline';\n animationDefinition.keySplines = easing.join(' ');\n animationDefinition.keyTimes = '0;1';\n }\n\n // Adding \"fill: freeze\" if we are in guided mode and set initial attribute values\n if(guided) {\n animationDefinition.fill = 'freeze';\n // Animated property on our element should already be set to the animation from value in guided mode\n attributeProperties[attribute] = animationDefinition.from;\n this.attr(attributeProperties);\n\n // In guided mode we also set begin to indefinite so we can trigger the start manually and put the begin\n // which needs to be in ms aside\n timeout = Chartist.quantity(animationDefinition.begin || 0).value;\n animationDefinition.begin = 'indefinite';\n }\n\n animate = this.elem('animate', Chartist.extend({\n attributeName: attribute\n }, animationDefinition));\n\n if(guided) {\n // If guided we take the value that was put aside in timeout and trigger the animation manually with a timeout\n setTimeout(function() {\n // If beginElement fails we set the animated attribute to the end position and remove the animate element\n // This happens if the SMIL ElementTimeControl interface is not supported or any other problems occured in\n // the browser. (Currently FF 34 does not support animate elements in foreignObjects)\n try {\n animate._node.beginElement();\n } catch(err) {\n // Set animated attribute to current animated value\n attributeProperties[attribute] = animationDefinition.to;\n this.attr(attributeProperties);\n // Remove the animate element as it's no longer required\n animate.remove();\n }\n }.bind(this), timeout);\n }\n\n if(eventEmitter) {\n animate._node.addEventListener('beginEvent', function handleBeginEvent() {\n eventEmitter.emit('animationBegin', {\n element: this,\n animate: animate._node,\n params: animationDefinition\n });\n }.bind(this));\n }\n\n animate._node.addEventListener('endEvent', function handleEndEvent() {\n if(eventEmitter) {\n eventEmitter.emit('animationEnd', {\n element: this,\n animate: animate._node,\n params: animationDefinition\n });\n }\n\n if(guided) {\n // Set animated attribute to current animated value\n attributeProperties[attribute] = animationDefinition.to;\n this.attr(attributeProperties);\n // Remove the animate element as it's no longer required\n animate.remove();\n }\n }.bind(this));\n }\n\n // If current attribute is an array of definition objects we create an animate for each and disable guided mode\n if(animations[attribute] instanceof Array) {\n animations[attribute].forEach(function(animationDefinition) {\n createAnimate.bind(this)(animationDefinition, false);\n }.bind(this));\n } else {\n createAnimate.bind(this)(animations[attribute], guided);\n }\n\n }.bind(this));\n\n return this;\n }\n\n Chartist.Svg = Chartist.Class.extend({\n constructor: Svg,\n attr: attr,\n elem: elem,\n parent: parent,\n root: root,\n querySelector: querySelector,\n querySelectorAll: querySelectorAll,\n getNode: getNode,\n foreignObject: foreignObject,\n text: text,\n empty: empty,\n remove: remove,\n replace: replace,\n append: append,\n classes: classes,\n addClass: addClass,\n removeClass: removeClass,\n removeAllClasses: removeAllClasses,\n height: height,\n width: width,\n animate: animate\n });\n\n /**\n * This method checks for support of a given SVG feature like Extensibility, SVG-animation or the like. Check http://www.w3.org/TR/SVG11/feature for a detailed list.\n *\n * @memberof Chartist.Svg\n * @param {String} feature The SVG 1.1 feature that should be checked for support.\n * @return {Boolean} True of false if the feature is supported or not\n */\n Chartist.Svg.isSupported = function(feature) {\n return document.implementation.hasFeature('http://www.w3.org/TR/SVG11/feature#' + feature, '1.1');\n };\n\n /**\n * This Object contains some standard easing cubic bezier curves. Then can be used with their name in the `Chartist.Svg.animate`. You can also extend the list and use your own name in the `animate` function. Click the show code button to see the available bezier functions.\n *\n * @memberof Chartist.Svg\n */\n var easingCubicBeziers = {\n easeInSine: [0.47, 0, 0.745, 0.715],\n easeOutSine: [0.39, 0.575, 0.565, 1],\n easeInOutSine: [0.445, 0.05, 0.55, 0.95],\n easeInQuad: [0.55, 0.085, 0.68, 0.53],\n easeOutQuad: [0.25, 0.46, 0.45, 0.94],\n easeInOutQuad: [0.455, 0.03, 0.515, 0.955],\n easeInCubic: [0.55, 0.055, 0.675, 0.19],\n easeOutCubic: [0.215, 0.61, 0.355, 1],\n easeInOutCubic: [0.645, 0.045, 0.355, 1],\n easeInQuart: [0.895, 0.03, 0.685, 0.22],\n easeOutQuart: [0.165, 0.84, 0.44, 1],\n easeInOutQuart: [0.77, 0, 0.175, 1],\n easeInQuint: [0.755, 0.05, 0.855, 0.06],\n easeOutQuint: [0.23, 1, 0.32, 1],\n easeInOutQuint: [0.86, 0, 0.07, 1],\n easeInExpo: [0.95, 0.05, 0.795, 0.035],\n easeOutExpo: [0.19, 1, 0.22, 1],\n easeInOutExpo: [1, 0, 0, 1],\n easeInCirc: [0.6, 0.04, 0.98, 0.335],\n easeOutCirc: [0.075, 0.82, 0.165, 1],\n easeInOutCirc: [0.785, 0.135, 0.15, 0.86],\n easeInBack: [0.6, -0.28, 0.735, 0.045],\n easeOutBack: [0.175, 0.885, 0.32, 1.275],\n easeInOutBack: [0.68, -0.55, 0.265, 1.55]\n };\n\n Chartist.Svg.Easing = easingCubicBeziers;\n\n /**\n * This helper class is to wrap multiple `Chartist.Svg` elements into a list where you can call the `Chartist.Svg` functions on all elements in the list with one call. This is helpful when you'd like to perform calls with `Chartist.Svg` on multiple elements.\n * An instance of this class is also returned by `Chartist.Svg.querySelectorAll`.\n *\n * @memberof Chartist.Svg\n * @param {Array|NodeList} nodeList An Array of SVG DOM nodes or a SVG DOM NodeList (as returned by document.querySelectorAll)\n * @constructor\n */\n function SvgList(nodeList) {\n var list = this;\n\n this.svgElements = [];\n for(var i = 0; i < nodeList.length; i++) {\n this.svgElements.push(new Chartist.Svg(nodeList[i]));\n }\n\n // Add delegation methods for Chartist.Svg\n Object.keys(Chartist.Svg.prototype).filter(function(prototypeProperty) {\n return ['constructor',\n 'parent',\n 'querySelector',\n 'querySelectorAll',\n 'replace',\n 'append',\n 'classes',\n 'height',\n 'width'].indexOf(prototypeProperty) === -1;\n }).forEach(function(prototypeProperty) {\n list[prototypeProperty] = function() {\n var args = Array.prototype.slice.call(arguments, 0);\n list.svgElements.forEach(function(element) {\n Chartist.Svg.prototype[prototypeProperty].apply(element, args);\n });\n return list;\n };\n });\n }\n\n Chartist.Svg.List = Chartist.Class.extend({\n constructor: SvgList\n });\n}(this, Chartist));\n;/**\n * Chartist SVG path module for SVG path description creation and modification.\n *\n * @module Chartist.Svg.Path\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n /**\n * Contains the descriptors of supported element types in a SVG path. Currently only move, line and curve are supported.\n *\n * @memberof Chartist.Svg.Path\n * @type {Object}\n */\n var elementDescriptions = {\n m: ['x', 'y'],\n l: ['x', 'y'],\n c: ['x1', 'y1', 'x2', 'y2', 'x', 'y'],\n a: ['rx', 'ry', 'xAr', 'lAf', 'sf', 'x', 'y']\n };\n\n /**\n * Default options for newly created SVG path objects.\n *\n * @memberof Chartist.Svg.Path\n * @type {Object}\n */\n var defaultOptions = {\n // The accuracy in digit count after the decimal point. This will be used to round numbers in the SVG path. If this option is set to false then no rounding will be performed.\n accuracy: 3\n };\n\n function element(command, params, pathElements, pos, relative, data) {\n var pathElement = Chartist.extend({\n command: relative ? command.toLowerCase() : command.toUpperCase()\n }, params, data ? { data: data } : {} );\n\n pathElements.splice(pos, 0, pathElement);\n }\n\n function forEachParam(pathElements, cb) {\n pathElements.forEach(function(pathElement, pathElementIndex) {\n elementDescriptions[pathElement.command.toLowerCase()].forEach(function(paramName, paramIndex) {\n cb(pathElement, paramName, pathElementIndex, paramIndex, pathElements);\n });\n });\n }\n\n /**\n * Used to construct a new path object.\n *\n * @memberof Chartist.Svg.Path\n * @param {Boolean} close If set to true then this path will be closed when stringified (with a Z at the end)\n * @param {Object} options Options object that overrides the default objects. See default options for more details.\n * @constructor\n */\n function SvgPath(close, options) {\n this.pathElements = [];\n this.pos = 0;\n this.close = close;\n this.options = Chartist.extend({}, defaultOptions, options);\n }\n\n /**\n * Gets or sets the current position (cursor) inside of the path. You can move around the cursor freely but limited to 0 or the count of existing elements. All modifications with element functions will insert new elements at the position of this cursor.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} [pos] If a number is passed then the cursor is set to this position in the path element array.\n * @return {Chartist.Svg.Path|Number} If the position parameter was passed then the return value will be the path object for easy call chaining. If no position parameter was passed then the current position is returned.\n */\n function position(pos) {\n if(pos !== undefined) {\n this.pos = Math.max(0, Math.min(this.pathElements.length, pos));\n return this;\n } else {\n return this.pos;\n }\n }\n\n /**\n * Removes elements from the path starting at the current position.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} count Number of path elements that should be removed from the current position.\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function remove(count) {\n this.pathElements.splice(this.pos, count);\n return this;\n }\n\n /**\n * Use this function to add a new move SVG path element.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} x The x coordinate for the move element.\n * @param {Number} y The y coordinate for the move element.\n * @param {Boolean} [relative] If set to true the move element will be created with relative coordinates (lowercase letter)\n * @param {*} [data] Any data that should be stored with the element object that will be accessible in pathElement\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function move(x, y, relative, data) {\n element('M', {\n x: +x,\n y: +y\n }, this.pathElements, this.pos++, relative, data);\n return this;\n }\n\n /**\n * Use this function to add a new line SVG path element.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} x The x coordinate for the line element.\n * @param {Number} y The y coordinate for the line element.\n * @param {Boolean} [relative] If set to true the line element will be created with relative coordinates (lowercase letter)\n * @param {*} [data] Any data that should be stored with the element object that will be accessible in pathElement\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function line(x, y, relative, data) {\n element('L', {\n x: +x,\n y: +y\n }, this.pathElements, this.pos++, relative, data);\n return this;\n }\n\n /**\n * Use this function to add a new curve SVG path element.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} x1 The x coordinate for the first control point of the bezier curve.\n * @param {Number} y1 The y coordinate for the first control point of the bezier curve.\n * @param {Number} x2 The x coordinate for the second control point of the bezier curve.\n * @param {Number} y2 The y coordinate for the second control point of the bezier curve.\n * @param {Number} x The x coordinate for the target point of the curve element.\n * @param {Number} y The y coordinate for the target point of the curve element.\n * @param {Boolean} [relative] If set to true the curve element will be created with relative coordinates (lowercase letter)\n * @param {*} [data] Any data that should be stored with the element object that will be accessible in pathElement\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function curve(x1, y1, x2, y2, x, y, relative, data) {\n element('C', {\n x1: +x1,\n y1: +y1,\n x2: +x2,\n y2: +y2,\n x: +x,\n y: +y\n }, this.pathElements, this.pos++, relative, data);\n return this;\n }\n\n /**\n * Use this function to add a new non-bezier curve SVG path element.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} rx The radius to be used for the x-axis of the arc.\n * @param {Number} ry The radius to be used for the y-axis of the arc.\n * @param {Number} xAr Defines the orientation of the arc\n * @param {Number} lAf Large arc flag\n * @param {Number} sf Sweep flag\n * @param {Number} x The x coordinate for the target point of the curve element.\n * @param {Number} y The y coordinate for the target point of the curve element.\n * @param {Boolean} [relative] If set to true the curve element will be created with relative coordinates (lowercase letter)\n * @param {*} [data] Any data that should be stored with the element object that will be accessible in pathElement\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function arc(rx, ry, xAr, lAf, sf, x, y, relative, data) {\n element('A', {\n rx: +rx,\n ry: +ry,\n xAr: +xAr,\n lAf: +lAf,\n sf: +sf,\n x: +x,\n y: +y\n }, this.pathElements, this.pos++, relative, data);\n return this;\n }\n\n /**\n * Parses an SVG path seen in the d attribute of path elements, and inserts the parsed elements into the existing path object at the current cursor position. Any closing path indicators (Z at the end of the path) will be ignored by the parser as this is provided by the close option in the options of the path object.\n *\n * @memberof Chartist.Svg.Path\n * @param {String} path Any SVG path that contains move (m), line (l) or curve (c) components.\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function parse(path) {\n // Parsing the SVG path string into an array of arrays [['M', '10', '10'], ['L', '100', '100']]\n var chunks = path.replace(/([A-Za-z])([0-9])/g, '$1 $2')\n .replace(/([0-9])([A-Za-z])/g, '$1 $2')\n .split(/[\\s,]+/)\n .reduce(function(result, element) {\n if(element.match(/[A-Za-z]/)) {\n result.push([]);\n }\n\n result[result.length - 1].push(element);\n return result;\n }, []);\n\n // If this is a closed path we remove the Z at the end because this is determined by the close option\n if(chunks[chunks.length - 1][0].toUpperCase() === 'Z') {\n chunks.pop();\n }\n\n // Using svgPathElementDescriptions to map raw path arrays into objects that contain the command and the parameters\n // For example {command: 'M', x: '10', y: '10'}\n var elements = chunks.map(function(chunk) {\n var command = chunk.shift(),\n description = elementDescriptions[command.toLowerCase()];\n\n return Chartist.extend({\n command: command\n }, description.reduce(function(result, paramName, index) {\n result[paramName] = +chunk[index];\n return result;\n }, {}));\n });\n\n // Preparing a splice call with the elements array as var arg params and insert the parsed elements at the current position\n var spliceArgs = [this.pos, 0];\n Array.prototype.push.apply(spliceArgs, elements);\n Array.prototype.splice.apply(this.pathElements, spliceArgs);\n // Increase the internal position by the element count\n this.pos += elements.length;\n\n return this;\n }\n\n /**\n * This function renders to current SVG path object into a final SVG string that can be used in the d attribute of SVG path elements. It uses the accuracy option to round big decimals. If the close parameter was set in the constructor of this path object then a path closing Z will be appended to the output string.\n *\n * @memberof Chartist.Svg.Path\n * @return {String}\n */\n function stringify() {\n var accuracyMultiplier = Math.pow(10, this.options.accuracy);\n\n return this.pathElements.reduce(function(path, pathElement) {\n var params = elementDescriptions[pathElement.command.toLowerCase()].map(function(paramName) {\n return this.options.accuracy ?\n (Math.round(pathElement[paramName] * accuracyMultiplier) / accuracyMultiplier) :\n pathElement[paramName];\n }.bind(this));\n\n return path + pathElement.command + params.join(',');\n }.bind(this), '') + (this.close ? 'Z' : '');\n }\n\n /**\n * Scales all elements in the current SVG path object. There is an individual parameter for each coordinate. Scaling will also be done for control points of curves, affecting the given coordinate.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} x The number which will be used to scale the x, x1 and x2 of all path elements.\n * @param {Number} y The number which will be used to scale the y, y1 and y2 of all path elements.\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function scale(x, y) {\n forEachParam(this.pathElements, function(pathElement, paramName) {\n pathElement[paramName] *= paramName[0] === 'x' ? x : y;\n });\n return this;\n }\n\n /**\n * Translates all elements in the current SVG path object. The translation is relative and there is an individual parameter for each coordinate. Translation will also be done for control points of curves, affecting the given coordinate.\n *\n * @memberof Chartist.Svg.Path\n * @param {Number} x The number which will be used to translate the x, x1 and x2 of all path elements.\n * @param {Number} y The number which will be used to translate the y, y1 and y2 of all path elements.\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function translate(x, y) {\n forEachParam(this.pathElements, function(pathElement, paramName) {\n pathElement[paramName] += paramName[0] === 'x' ? x : y;\n });\n return this;\n }\n\n /**\n * This function will run over all existing path elements and then loop over their attributes. The callback function will be called for every path element attribute that exists in the current path.\n * The method signature of the callback function looks like this:\n * ```javascript\n * function(pathElement, paramName, pathElementIndex, paramIndex, pathElements)\n * ```\n * If something else than undefined is returned by the callback function, this value will be used to replace the old value. This allows you to build custom transformations of path objects that can't be achieved using the basic transformation functions scale and translate.\n *\n * @memberof Chartist.Svg.Path\n * @param {Function} transformFnc The callback function for the transformation. Check the signature in the function description.\n * @return {Chartist.Svg.Path} The current path object for easy call chaining.\n */\n function transform(transformFnc) {\n forEachParam(this.pathElements, function(pathElement, paramName, pathElementIndex, paramIndex, pathElements) {\n var transformed = transformFnc(pathElement, paramName, pathElementIndex, paramIndex, pathElements);\n if(transformed || transformed === 0) {\n pathElement[paramName] = transformed;\n }\n });\n return this;\n }\n\n /**\n * This function clones a whole path object with all its properties. This is a deep clone and path element objects will also be cloned.\n *\n * @memberof Chartist.Svg.Path\n * @param {Boolean} [close] Optional option to set the new cloned path to closed. If not specified or false, the original path close option will be used.\n * @return {Chartist.Svg.Path}\n */\n function clone(close) {\n var c = new Chartist.Svg.Path(close || this.close);\n c.pos = this.pos;\n c.pathElements = this.pathElements.slice().map(function cloneElements(pathElement) {\n return Chartist.extend({}, pathElement);\n });\n c.options = Chartist.extend({}, this.options);\n return c;\n }\n\n /**\n * Split a Svg.Path object by a specific command in the path chain. The path chain will be split and an array of newly created paths objects will be returned. This is useful if you'd like to split an SVG path by it's move commands, for example, in order to isolate chunks of drawings.\n *\n * @memberof Chartist.Svg.Path\n * @param {String} command The command you'd like to use to split the path\n * @return {Array}\n */\n function splitByCommand(command) {\n var split = [\n new Chartist.Svg.Path()\n ];\n\n this.pathElements.forEach(function(pathElement) {\n if(pathElement.command === command.toUpperCase() && split[split.length - 1].pathElements.length !== 0) {\n split.push(new Chartist.Svg.Path());\n }\n\n split[split.length - 1].pathElements.push(pathElement);\n });\n\n return split;\n }\n\n /**\n * This static function on `Chartist.Svg.Path` is joining multiple paths together into one paths.\n *\n * @memberof Chartist.Svg.Path\n * @param {Array} paths A list of paths to be joined together. The order is important.\n * @param {boolean} close If the newly created path should be a closed path\n * @param {Object} options Path options for the newly created path.\n * @return {Chartist.Svg.Path}\n */\n\n function join(paths, close, options) {\n var joinedPath = new Chartist.Svg.Path(close, options);\n for(var i = 0; i < paths.length; i++) {\n var path = paths[i];\n for(var j = 0; j < path.pathElements.length; j++) {\n joinedPath.pathElements.push(path.pathElements[j]);\n }\n }\n return joinedPath;\n }\n\n Chartist.Svg.Path = Chartist.Class.extend({\n constructor: SvgPath,\n position: position,\n remove: remove,\n move: move,\n line: line,\n curve: curve,\n arc: arc,\n scale: scale,\n translate: translate,\n transform: transform,\n parse: parse,\n stringify: stringify,\n clone: clone,\n splitByCommand: splitByCommand\n });\n\n Chartist.Svg.Path.elementDescriptions = elementDescriptions;\n Chartist.Svg.Path.join = join;\n}(this, Chartist));\n;/* global Chartist */\n(function (globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n var axisUnits = {\n x: {\n pos: 'x',\n len: 'width',\n dir: 'horizontal',\n rectStart: 'x1',\n rectEnd: 'x2',\n rectOffset: 'y2'\n },\n y: {\n pos: 'y',\n len: 'height',\n dir: 'vertical',\n rectStart: 'y2',\n rectEnd: 'y1',\n rectOffset: 'x1'\n }\n };\n\n function Axis(units, chartRect, ticks, options) {\n this.units = units;\n this.counterUnits = units === axisUnits.x ? axisUnits.y : axisUnits.x;\n this.chartRect = chartRect;\n this.axisLength = chartRect[units.rectEnd] - chartRect[units.rectStart];\n this.gridOffset = chartRect[units.rectOffset];\n this.ticks = ticks;\n this.options = options;\n }\n\n function createGridAndLabels(gridGroup, labelGroup, useForeignObject, chartOptions, eventEmitter) {\n var axisOptions = chartOptions['axis' + this.units.pos.toUpperCase()];\n var projectedValues = this.ticks.map(this.projectValue.bind(this));\n var labelValues = this.ticks.map(axisOptions.labelInterpolationFnc);\n\n projectedValues.forEach(function(projectedValue, index) {\n var labelOffset = {\n x: 0,\n y: 0\n };\n\n // TODO: Find better solution for solving this problem\n // Calculate how much space we have available for the label\n var labelLength;\n if(projectedValues[index + 1]) {\n // If we still have one label ahead, we can calculate the distance to the next tick / label\n labelLength = projectedValues[index + 1] - projectedValue;\n } else {\n // If we don't have a label ahead and we have only two labels in total, we just take the remaining distance to\n // on the whole axis length. We limit that to a minimum of 30 pixel, so that labels close to the border will\n // still be visible inside of the chart padding.\n labelLength = Math.max(this.axisLength - projectedValue, 30);\n }\n\n // Skip grid lines and labels where interpolated label values are falsey (execpt for 0)\n if(Chartist.isFalseyButZero(labelValues[index]) && labelValues[index] !== '') {\n return;\n }\n\n // Transform to global coordinates using the chartRect\n // We also need to set the label offset for the createLabel function\n if(this.units.pos === 'x') {\n projectedValue = this.chartRect.x1 + projectedValue;\n labelOffset.x = chartOptions.axisX.labelOffset.x;\n\n // If the labels should be positioned in start position (top side for vertical axis) we need to set a\n // different offset as for positioned with end (bottom)\n if(chartOptions.axisX.position === 'start') {\n labelOffset.y = this.chartRect.padding.top + chartOptions.axisX.labelOffset.y + (useForeignObject ? 5 : 20);\n } else {\n labelOffset.y = this.chartRect.y1 + chartOptions.axisX.labelOffset.y + (useForeignObject ? 5 : 20);\n }\n } else {\n projectedValue = this.chartRect.y1 - projectedValue;\n labelOffset.y = chartOptions.axisY.labelOffset.y - (useForeignObject ? labelLength : 0);\n\n // If the labels should be positioned in start position (left side for horizontal axis) we need to set a\n // different offset as for positioned with end (right side)\n if(chartOptions.axisY.position === 'start') {\n labelOffset.x = useForeignObject ? this.chartRect.padding.left + chartOptions.axisY.labelOffset.x : this.chartRect.x1 - 10;\n } else {\n labelOffset.x = this.chartRect.x2 + chartOptions.axisY.labelOffset.x + 10;\n }\n }\n\n if(axisOptions.showGrid) {\n Chartist.createGrid(projectedValue, index, this, this.gridOffset, this.chartRect[this.counterUnits.len](), gridGroup, [\n chartOptions.classNames.grid,\n chartOptions.classNames[this.units.dir]\n ], eventEmitter);\n }\n\n if(axisOptions.showLabel) {\n Chartist.createLabel(projectedValue, labelLength, index, labelValues, this, axisOptions.offset, labelOffset, labelGroup, [\n chartOptions.classNames.label,\n chartOptions.classNames[this.units.dir],\n (axisOptions.position === 'start' ? chartOptions.classNames[axisOptions.position] : chartOptions.classNames['end'])\n ], useForeignObject, eventEmitter);\n }\n }.bind(this));\n }\n\n Chartist.Axis = Chartist.Class.extend({\n constructor: Axis,\n createGridAndLabels: createGridAndLabels,\n projectValue: function(value, index, data) {\n throw new Error('Base axis can\\'t be instantiated!');\n }\n });\n\n Chartist.Axis.units = axisUnits;\n\n}(this, Chartist));\n;/**\n * The auto scale axis uses standard linear scale projection of values along an axis. It uses order of magnitude to find a scale automatically and evaluates the available space in order to find the perfect amount of ticks for your chart.\n * **Options**\n * The following options are used by this axis in addition to the default axis options outlined in the axis configuration of the chart default settings.\n * ```javascript\n * var options = {\n * // If high is specified then the axis will display values explicitly up to this value and the computed maximum from the data is ignored\n * high: 100,\n * // If low is specified then the axis will display values explicitly down to this value and the computed minimum from the data is ignored\n * low: 0,\n * // This option will be used when finding the right scale division settings. The amount of ticks on the scale will be determined so that as many ticks as possible will be displayed, while not violating this minimum required space (in pixel).\n * scaleMinSpace: 20,\n * // Can be set to true or false. If set to true, the scale will be generated with whole numbers only.\n * onlyInteger: true,\n * // The reference value can be used to make sure that this value will always be on the chart. This is especially useful on bipolar charts where the bipolar center always needs to be part of the chart.\n * referenceValue: 5\n * };\n * ```\n *\n * @module Chartist.AutoScaleAxis\n */\n/* global Chartist */\n(function (globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n function AutoScaleAxis(axisUnit, data, chartRect, options) {\n // Usually we calculate highLow based on the data but this can be overriden by a highLow object in the options\n var highLow = options.highLow || Chartist.getHighLow(data, options, axisUnit.pos);\n this.bounds = Chartist.getBounds(chartRect[axisUnit.rectEnd] - chartRect[axisUnit.rectStart], highLow, options.scaleMinSpace || 20, options.onlyInteger);\n this.range = {\n min: this.bounds.min,\n max: this.bounds.max\n };\n\n Chartist.AutoScaleAxis.super.constructor.call(this,\n axisUnit,\n chartRect,\n this.bounds.values,\n options);\n }\n\n function projectValue(value) {\n return this.axisLength * (+Chartist.getMultiValue(value, this.units.pos) - this.bounds.min) / this.bounds.range;\n }\n\n Chartist.AutoScaleAxis = Chartist.Axis.extend({\n constructor: AutoScaleAxis,\n projectValue: projectValue\n });\n\n}(this, Chartist));\n;/**\n * The fixed scale axis uses standard linear projection of values along an axis. It makes use of a divisor option to divide the range provided from the minimum and maximum value or the options high and low that will override the computed minimum and maximum.\n * **Options**\n * The following options are used by this axis in addition to the default axis options outlined in the axis configuration of the chart default settings.\n * ```javascript\n * var options = {\n * // If high is specified then the axis will display values explicitly up to this value and the computed maximum from the data is ignored\n * high: 100,\n * // If low is specified then the axis will display values explicitly down to this value and the computed minimum from the data is ignored\n * low: 0,\n * // If specified then the value range determined from minimum to maximum (or low and high) will be divided by this number and ticks will be generated at those division points. The default divisor is 1.\n * divisor: 4,\n * // If ticks is explicitly set, then the axis will not compute the ticks with the divisor, but directly use the data in ticks to determine at what points on the axis a tick need to be generated.\n * ticks: [1, 10, 20, 30]\n * };\n * ```\n *\n * @module Chartist.FixedScaleAxis\n */\n/* global Chartist */\n(function (globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n function FixedScaleAxis(axisUnit, data, chartRect, options) {\n var highLow = options.highLow || Chartist.getHighLow(data, options, axisUnit.pos);\n this.divisor = options.divisor || 1;\n this.ticks = options.ticks || Chartist.times(this.divisor).map(function(value, index) {\n return highLow.low + (highLow.high - highLow.low) / this.divisor * index;\n }.bind(this));\n this.ticks.sort(function(a, b) {\n return a - b;\n });\n this.range = {\n min: highLow.low,\n max: highLow.high\n };\n\n Chartist.FixedScaleAxis.super.constructor.call(this,\n axisUnit,\n chartRect,\n this.ticks,\n options);\n\n this.stepLength = this.axisLength / this.divisor;\n }\n\n function projectValue(value) {\n return this.axisLength * (+Chartist.getMultiValue(value, this.units.pos) - this.range.min) / (this.range.max - this.range.min);\n }\n\n Chartist.FixedScaleAxis = Chartist.Axis.extend({\n constructor: FixedScaleAxis,\n projectValue: projectValue\n });\n\n}(this, Chartist));\n;/**\n * The step axis for step based charts like bar chart or step based line charts. It uses a fixed amount of ticks that will be equally distributed across the whole axis length. The projection is done using the index of the data value rather than the value itself and therefore it's only useful for distribution purpose.\n * **Options**\n * The following options are used by this axis in addition to the default axis options outlined in the axis configuration of the chart default settings.\n * ```javascript\n * var options = {\n * // Ticks to be used to distribute across the axis length. As this axis type relies on the index of the value rather than the value, arbitrary data that can be converted to a string can be used as ticks.\n * ticks: ['One', 'Two', 'Three'],\n * // If set to true the full width will be used to distribute the values where the last value will be at the maximum of the axis length. If false the spaces between the ticks will be evenly distributed instead.\n * stretch: true\n * };\n * ```\n *\n * @module Chartist.StepAxis\n */\n/* global Chartist */\n(function (globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n function StepAxis(axisUnit, data, chartRect, options) {\n Chartist.StepAxis.super.constructor.call(this,\n axisUnit,\n chartRect,\n options.ticks,\n options);\n\n var calc = Math.max(1, options.ticks.length - (options.stretch ? 1 : 0));\n this.stepLength = this.axisLength / calc;\n }\n\n function projectValue(value, index) {\n return this.stepLength * index;\n }\n\n Chartist.StepAxis = Chartist.Axis.extend({\n constructor: StepAxis,\n projectValue: projectValue\n });\n\n}(this, Chartist));\n;/**\n * The Chartist line chart can be used to draw Line or Scatter charts. If used in the browser you can access the global `Chartist` namespace where you find the `Line` function as a main entry point.\n *\n * For examples on how to use the line chart please check the examples of the `Chartist.Line` method.\n *\n * @module Chartist.Line\n */\n/* global Chartist */\n(function(globalRoot, Chartist){\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n /**\n * Default options in line charts. Expand the code view to see a detailed list of options with comments.\n *\n * @memberof Chartist.Line\n */\n var defaultOptions = {\n // Options for X-Axis\n axisX: {\n // The offset of the labels to the chart area\n offset: 30,\n // Position where labels are placed. Can be set to `start` or `end` where `start` is equivalent to left or top on vertical axis and `end` is equivalent to right or bottom on horizontal axis.\n position: 'end',\n // Allows you to correct label positioning on this axis by positive or negative x and y offset.\n labelOffset: {\n x: 0,\n y: 0\n },\n // If labels should be shown or not\n showLabel: true,\n // If the axis grid should be drawn or not\n showGrid: true,\n // Interpolation function that allows you to intercept the value from the axis label\n labelInterpolationFnc: Chartist.noop,\n // Set the axis type to be used to project values on this axis. If not defined, Chartist.StepAxis will be used for the X-Axis, where the ticks option will be set to the labels in the data and the stretch option will be set to the global fullWidth option. This type can be changed to any axis constructor available (e.g. Chartist.FixedScaleAxis), where all axis options should be present here.\n type: undefined\n },\n // Options for Y-Axis\n axisY: {\n // The offset of the labels to the chart area\n offset: 40,\n // Position where labels are placed. Can be set to `start` or `end` where `start` is equivalent to left or top on vertical axis and `end` is equivalent to right or bottom on horizontal axis.\n position: 'start',\n // Allows you to correct label positioning on this axis by positive or negative x and y offset.\n labelOffset: {\n x: 0,\n y: 0\n },\n // If labels should be shown or not\n showLabel: true,\n // If the axis grid should be drawn or not\n showGrid: true,\n // Interpolation function that allows you to intercept the value from the axis label\n labelInterpolationFnc: Chartist.noop,\n // Set the axis type to be used to project values on this axis. If not defined, Chartist.AutoScaleAxis will be used for the Y-Axis, where the high and low options will be set to the global high and low options. This type can be changed to any axis constructor available (e.g. Chartist.FixedScaleAxis), where all axis options should be present here.\n type: undefined,\n // This value specifies the minimum height in pixel of the scale steps\n scaleMinSpace: 20,\n // Use only integer values (whole numbers) for the scale steps\n onlyInteger: false\n },\n // Specify a fixed width for the chart as a string (i.e. '100px' or '50%')\n width: undefined,\n // Specify a fixed height for the chart as a string (i.e. '100px' or '50%')\n height: undefined,\n // If the line should be drawn or not\n showLine: true,\n // If dots should be drawn or not\n showPoint: true,\n // If the line chart should draw an area\n showArea: false,\n // The base for the area chart that will be used to close the area shape (is normally 0)\n areaBase: 0,\n // Specify if the lines should be smoothed. This value can be true or false where true will result in smoothing using the default smoothing interpolation function Chartist.Interpolation.cardinal and false results in Chartist.Interpolation.none. You can also choose other smoothing / interpolation functions available in the Chartist.Interpolation module, or write your own interpolation function. Check the examples for a brief description.\n lineSmooth: true,\n // If the line chart should add a background fill to the .ct-grids group.\n showGridBackground: false,\n // Overriding the natural low of the chart allows you to zoom in or limit the charts lowest displayed value\n low: undefined,\n // Overriding the natural high of the chart allows you to zoom in or limit the charts highest displayed value\n high: undefined,\n // Padding of the chart drawing area to the container element and labels as a number or padding object {top: 5, right: 5, bottom: 5, left: 5}\n chartPadding: {\n top: 15,\n right: 15,\n bottom: 5,\n left: 10\n },\n // When set to true, the last grid line on the x-axis is not drawn and the chart elements will expand to the full available width of the chart. For the last label to be drawn correctly you might need to add chart padding or offset the last label with a draw event handler.\n fullWidth: false,\n // If true the whole data is reversed including labels, the series order as well as the whole series data arrays.\n reverseData: false,\n // Override the class names that get used to generate the SVG structure of the chart\n classNames: {\n chart: 'ct-chart-line',\n label: 'ct-label',\n labelGroup: 'ct-labels',\n series: 'ct-series',\n line: 'ct-line',\n point: 'ct-point',\n area: 'ct-area',\n grid: 'ct-grid',\n gridGroup: 'ct-grids',\n gridBackground: 'ct-grid-background',\n vertical: 'ct-vertical',\n horizontal: 'ct-horizontal',\n start: 'ct-start',\n end: 'ct-end'\n }\n };\n\n /**\n * Creates a new chart\n *\n */\n function createChart(options) {\n var data = Chartist.normalizeData(this.data, options.reverseData, true);\n\n // Create new svg object\n this.svg = Chartist.createSvg(this.container, options.width, options.height, options.classNames.chart);\n // Create groups for labels, grid and series\n var gridGroup = this.svg.elem('g').addClass(options.classNames.gridGroup);\n var seriesGroup = this.svg.elem('g');\n var labelGroup = this.svg.elem('g').addClass(options.classNames.labelGroup);\n\n var chartRect = Chartist.createChartRect(this.svg, options, defaultOptions.padding);\n var axisX, axisY;\n\n if(options.axisX.type === undefined) {\n axisX = new Chartist.StepAxis(Chartist.Axis.units.x, data.normalized.series, chartRect, Chartist.extend({}, options.axisX, {\n ticks: data.normalized.labels,\n stretch: options.fullWidth\n }));\n } else {\n axisX = options.axisX.type.call(Chartist, Chartist.Axis.units.x, data.normalized.series, chartRect, options.axisX);\n }\n\n if(options.axisY.type === undefined) {\n axisY = new Chartist.AutoScaleAxis(Chartist.Axis.units.y, data.normalized.series, chartRect, Chartist.extend({}, options.axisY, {\n high: Chartist.isNumeric(options.high) ? options.high : options.axisY.high,\n low: Chartist.isNumeric(options.low) ? options.low : options.axisY.low\n }));\n } else {\n axisY = options.axisY.type.call(Chartist, Chartist.Axis.units.y, data.normalized.series, chartRect, options.axisY);\n }\n\n axisX.createGridAndLabels(gridGroup, labelGroup, this.supportsForeignObject, options, this.eventEmitter);\n axisY.createGridAndLabels(gridGroup, labelGroup, this.supportsForeignObject, options, this.eventEmitter);\n\n if (options.showGridBackground) {\n Chartist.createGridBackground(gridGroup, chartRect, options.classNames.gridBackground, this.eventEmitter);\n }\n\n // Draw the series\n data.raw.series.forEach(function(series, seriesIndex) {\n var seriesElement = seriesGroup.elem('g');\n\n // Write attributes to series group element. If series name or meta is undefined the attributes will not be written\n seriesElement.attr({\n 'ct:series-name': series.name,\n 'ct:meta': Chartist.serialize(series.meta)\n });\n\n // Use series class from series data or if not set generate one\n seriesElement.addClass([\n options.classNames.series,\n (series.className || options.classNames.series + '-' + Chartist.alphaNumerate(seriesIndex))\n ].join(' '));\n\n var pathCoordinates = [],\n pathData = [];\n\n data.normalized.series[seriesIndex].forEach(function(value, valueIndex) {\n var p = {\n x: chartRect.x1 + axisX.projectValue(value, valueIndex, data.normalized.series[seriesIndex]),\n y: chartRect.y1 - axisY.projectValue(value, valueIndex, data.normalized.series[seriesIndex])\n };\n pathCoordinates.push(p.x, p.y);\n pathData.push({\n value: value,\n valueIndex: valueIndex,\n meta: Chartist.getMetaData(series, valueIndex)\n });\n }.bind(this));\n\n var seriesOptions = {\n lineSmooth: Chartist.getSeriesOption(series, options, 'lineSmooth'),\n showPoint: Chartist.getSeriesOption(series, options, 'showPoint'),\n showLine: Chartist.getSeriesOption(series, options, 'showLine'),\n showArea: Chartist.getSeriesOption(series, options, 'showArea'),\n areaBase: Chartist.getSeriesOption(series, options, 'areaBase')\n };\n\n var smoothing = typeof seriesOptions.lineSmooth === 'function' ?\n seriesOptions.lineSmooth : (seriesOptions.lineSmooth ? Chartist.Interpolation.monotoneCubic() : Chartist.Interpolation.none());\n // Interpolating path where pathData will be used to annotate each path element so we can trace back the original\n // index, value and meta data\n var path = smoothing(pathCoordinates, pathData);\n\n // If we should show points we need to create them now to avoid secondary loop\n // Points are drawn from the pathElements returned by the interpolation function\n // Small offset for Firefox to render squares correctly\n if (seriesOptions.showPoint) {\n\n path.pathElements.forEach(function(pathElement) {\n var point = seriesElement.elem('line', {\n x1: pathElement.x,\n y1: pathElement.y,\n x2: pathElement.x + 0.01,\n y2: pathElement.y\n }, options.classNames.point).attr({\n 'ct:value': [pathElement.data.value.x, pathElement.data.value.y].filter(Chartist.isNumeric).join(','),\n 'ct:meta': Chartist.serialize(pathElement.data.meta)\n });\n\n this.eventEmitter.emit('draw', {\n type: 'point',\n value: pathElement.data.value,\n index: pathElement.data.valueIndex,\n meta: pathElement.data.meta,\n series: series,\n seriesIndex: seriesIndex,\n axisX: axisX,\n axisY: axisY,\n group: seriesElement,\n element: point,\n x: pathElement.x,\n y: pathElement.y\n });\n }.bind(this));\n }\n\n if(seriesOptions.showLine) {\n var line = seriesElement.elem('path', {\n d: path.stringify()\n }, options.classNames.line, true);\n\n this.eventEmitter.emit('draw', {\n type: 'line',\n values: data.normalized.series[seriesIndex],\n path: path.clone(),\n chartRect: chartRect,\n index: seriesIndex,\n series: series,\n seriesIndex: seriesIndex,\n seriesMeta: series.meta,\n axisX: axisX,\n axisY: axisY,\n group: seriesElement,\n element: line\n });\n }\n\n // Area currently only works with axes that support a range!\n if(seriesOptions.showArea && axisY.range) {\n // If areaBase is outside the chart area (< min or > max) we need to set it respectively so that\n // the area is not drawn outside the chart area.\n var areaBase = Math.max(Math.min(seriesOptions.areaBase, axisY.range.max), axisY.range.min);\n\n // We project the areaBase value into screen coordinates\n var areaBaseProjected = chartRect.y1 - axisY.projectValue(areaBase);\n\n // In order to form the area we'll first split the path by move commands so we can chunk it up into segments\n path.splitByCommand('M').filter(function onlySolidSegments(pathSegment) {\n // We filter only \"solid\" segments that contain more than one point. Otherwise there's no need for an area\n return pathSegment.pathElements.length > 1;\n }).map(function convertToArea(solidPathSegments) {\n // Receiving the filtered solid path segments we can now convert those segments into fill areas\n var firstElement = solidPathSegments.pathElements[0];\n var lastElement = solidPathSegments.pathElements[solidPathSegments.pathElements.length - 1];\n\n // Cloning the solid path segment with closing option and removing the first move command from the clone\n // We then insert a new move that should start at the area base and draw a straight line up or down\n // at the end of the path we add an additional straight line to the projected area base value\n // As the closing option is set our path will be automatically closed\n return solidPathSegments.clone(true)\n .position(0)\n .remove(1)\n .move(firstElement.x, areaBaseProjected)\n .line(firstElement.x, firstElement.y)\n .position(solidPathSegments.pathElements.length + 1)\n .line(lastElement.x, areaBaseProjected);\n\n }).forEach(function createArea(areaPath) {\n // For each of our newly created area paths, we'll now create path elements by stringifying our path objects\n // and adding the created DOM elements to the correct series group\n var area = seriesElement.elem('path', {\n d: areaPath.stringify()\n }, options.classNames.area, true);\n\n // Emit an event for each area that was drawn\n this.eventEmitter.emit('draw', {\n type: 'area',\n values: data.normalized.series[seriesIndex],\n path: areaPath.clone(),\n series: series,\n seriesIndex: seriesIndex,\n axisX: axisX,\n axisY: axisY,\n chartRect: chartRect,\n index: seriesIndex,\n group: seriesElement,\n element: area\n });\n }.bind(this));\n }\n }.bind(this));\n\n this.eventEmitter.emit('created', {\n bounds: axisY.bounds,\n chartRect: chartRect,\n axisX: axisX,\n axisY: axisY,\n svg: this.svg,\n options: options\n });\n }\n\n /**\n * This method creates a new line chart.\n *\n * @memberof Chartist.Line\n * @param {String|Node} query A selector query string or directly a DOM element\n * @param {Object} data The data object that needs to consist of a labels and a series array\n * @param {Object} [options] The options object with options that override the default options. Check the examples for a detailed list.\n * @param {Array} [responsiveOptions] Specify an array of responsive option arrays which are a media query and options object pair => [[mediaQueryString, optionsObject],[more...]]\n * @return {Object} An object which exposes the API for the created chart\n *\n * @example\n * // Create a simple line chart\n * var data = {\n * // A labels array that can contain any sort of values\n * labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri'],\n * // Our series array that contains series objects or in this case series data arrays\n * series: [\n * [5, 2, 4, 2, 0]\n * ]\n * };\n *\n * // As options we currently only set a static size of 300x200 px\n * var options = {\n * width: '300px',\n * height: '200px'\n * };\n *\n * // In the global name space Chartist we call the Line function to initialize a line chart. As a first parameter we pass in a selector where we would like to get our chart created. Second parameter is the actual data object and as a third parameter we pass in our options\n * new Chartist.Line('.ct-chart', data, options);\n *\n * @example\n * // Use specific interpolation function with configuration from the Chartist.Interpolation module\n *\n * var chart = new Chartist.Line('.ct-chart', {\n * labels: [1, 2, 3, 4, 5],\n * series: [\n * [1, 1, 8, 1, 7]\n * ]\n * }, {\n * lineSmooth: Chartist.Interpolation.cardinal({\n * tension: 0.2\n * })\n * });\n *\n * @example\n * // Create a line chart with responsive options\n *\n * var data = {\n * // A labels array that can contain any sort of values\n * labels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],\n * // Our series array that contains series objects or in this case series data arrays\n * series: [\n * [5, 2, 4, 2, 0]\n * ]\n * };\n *\n * // In addition to the regular options we specify responsive option overrides that will override the default configutation based on the matching media queries.\n * var responsiveOptions = [\n * ['screen and (min-width: 641px) and (max-width: 1024px)', {\n * showPoint: false,\n * axisX: {\n * labelInterpolationFnc: function(value) {\n * // Will return Mon, Tue, Wed etc. on medium screens\n * return value.slice(0, 3);\n * }\n * }\n * }],\n * ['screen and (max-width: 640px)', {\n * showLine: false,\n * axisX: {\n * labelInterpolationFnc: function(value) {\n * // Will return M, T, W etc. on small screens\n * return value[0];\n * }\n * }\n * }]\n * ];\n *\n * new Chartist.Line('.ct-chart', data, null, responsiveOptions);\n *\n */\n function Line(query, data, options, responsiveOptions) {\n Chartist.Line.super.constructor.call(this,\n query,\n data,\n defaultOptions,\n Chartist.extend({}, defaultOptions, options),\n responsiveOptions);\n }\n\n // Creating line chart type in Chartist namespace\n Chartist.Line = Chartist.Base.extend({\n constructor: Line,\n createChart: createChart\n });\n\n}(this, Chartist));\n;/**\n * The bar chart module of Chartist that can be used to draw unipolar or bipolar bar and grouped bar charts.\n *\n * @module Chartist.Bar\n */\n/* global Chartist */\n(function(globalRoot, Chartist){\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n /**\n * Default options in bar charts. Expand the code view to see a detailed list of options with comments.\n *\n * @memberof Chartist.Bar\n */\n var defaultOptions = {\n // Options for X-Axis\n axisX: {\n // The offset of the chart drawing area to the border of the container\n offset: 30,\n // Position where labels are placed. Can be set to `start` or `end` where `start` is equivalent to left or top on vertical axis and `end` is equivalent to right or bottom on horizontal axis.\n position: 'end',\n // Allows you to correct label positioning on this axis by positive or negative x and y offset.\n labelOffset: {\n x: 0,\n y: 0\n },\n // If labels should be shown or not\n showLabel: true,\n // If the axis grid should be drawn or not\n showGrid: true,\n // Interpolation function that allows you to intercept the value from the axis label\n labelInterpolationFnc: Chartist.noop,\n // This value specifies the minimum width in pixel of the scale steps\n scaleMinSpace: 30,\n // Use only integer values (whole numbers) for the scale steps\n onlyInteger: false\n },\n // Options for Y-Axis\n axisY: {\n // The offset of the chart drawing area to the border of the container\n offset: 40,\n // Position where labels are placed. Can be set to `start` or `end` where `start` is equivalent to left or top on vertical axis and `end` is equivalent to right or bottom on horizontal axis.\n position: 'start',\n // Allows you to correct label positioning on this axis by positive or negative x and y offset.\n labelOffset: {\n x: 0,\n y: 0\n },\n // If labels should be shown or not\n showLabel: true,\n // If the axis grid should be drawn or not\n showGrid: true,\n // Interpolation function that allows you to intercept the value from the axis label\n labelInterpolationFnc: Chartist.noop,\n // This value specifies the minimum height in pixel of the scale steps\n scaleMinSpace: 20,\n // Use only integer values (whole numbers) for the scale steps\n onlyInteger: false\n },\n // Specify a fixed width for the chart as a string (i.e. '100px' or '50%')\n width: undefined,\n // Specify a fixed height for the chart as a string (i.e. '100px' or '50%')\n height: undefined,\n // Overriding the natural high of the chart allows you to zoom in or limit the charts highest displayed value\n high: undefined,\n // Overriding the natural low of the chart allows you to zoom in or limit the charts lowest displayed value\n low: undefined,\n // Unless low/high are explicitly set, bar chart will be centered at zero by default. Set referenceValue to null to auto scale.\n referenceValue: 0,\n // Padding of the chart drawing area to the container element and labels as a number or padding object {top: 5, right: 5, bottom: 5, left: 5}\n chartPadding: {\n top: 15,\n right: 15,\n bottom: 5,\n left: 10\n },\n // Specify the distance in pixel of bars in a group\n seriesBarDistance: 15,\n // If set to true this property will cause the series bars to be stacked. Check the `stackMode` option for further stacking options.\n stackBars: false,\n // If set to 'overlap' this property will force the stacked bars to draw from the zero line.\n // If set to 'accumulate' this property will form a total for each series point. This will also influence the y-axis and the overall bounds of the chart. In stacked mode the seriesBarDistance property will have no effect.\n stackMode: 'accumulate',\n // Inverts the axes of the bar chart in order to draw a horizontal bar chart. Be aware that you also need to invert your axis settings as the Y Axis will now display the labels and the X Axis the values.\n horizontalBars: false,\n // If set to true then each bar will represent a series and the data array is expected to be a one dimensional array of data values rather than a series array of series. This is useful if the bar chart should represent a profile rather than some data over time.\n distributeSeries: false,\n // If true the whole data is reversed including labels, the series order as well as the whole series data arrays.\n reverseData: false,\n // If the bar chart should add a background fill to the .ct-grids group.\n showGridBackground: false,\n // Override the class names that get used to generate the SVG structure of the chart\n classNames: {\n chart: 'ct-chart-bar',\n horizontalBars: 'ct-horizontal-bars',\n label: 'ct-label',\n labelGroup: 'ct-labels',\n series: 'ct-series',\n bar: 'ct-bar',\n grid: 'ct-grid',\n gridGroup: 'ct-grids',\n gridBackground: 'ct-grid-background',\n vertical: 'ct-vertical',\n horizontal: 'ct-horizontal',\n start: 'ct-start',\n end: 'ct-end'\n }\n };\n\n /**\n * Creates a new chart\n *\n */\n function createChart(options) {\n var data;\n var highLow;\n\n if(options.distributeSeries) {\n data = Chartist.normalizeData(this.data, options.reverseData, options.horizontalBars ? 'x' : 'y');\n data.normalized.series = data.normalized.series.map(function(value) {\n return [value];\n });\n } else {\n data = Chartist.normalizeData(this.data, options.reverseData, options.horizontalBars ? 'x' : 'y');\n }\n\n // Create new svg element\n this.svg = Chartist.createSvg(\n this.container,\n options.width,\n options.height,\n options.classNames.chart + (options.horizontalBars ? ' ' + options.classNames.horizontalBars : '')\n );\n\n // Drawing groups in correct order\n var gridGroup = this.svg.elem('g').addClass(options.classNames.gridGroup);\n var seriesGroup = this.svg.elem('g');\n var labelGroup = this.svg.elem('g').addClass(options.classNames.labelGroup);\n\n if(options.stackBars && data.normalized.series.length !== 0) {\n\n // If stacked bars we need to calculate the high low from stacked values from each series\n var serialSums = Chartist.serialMap(data.normalized.series, function serialSums() {\n return Array.prototype.slice.call(arguments).map(function(value) {\n return value;\n }).reduce(function(prev, curr) {\n return {\n x: prev.x + (curr && curr.x) || 0,\n y: prev.y + (curr && curr.y) || 0\n };\n }, {x: 0, y: 0});\n });\n\n highLow = Chartist.getHighLow([serialSums], options, options.horizontalBars ? 'x' : 'y');\n\n } else {\n\n highLow = Chartist.getHighLow(data.normalized.series, options, options.horizontalBars ? 'x' : 'y');\n }\n\n // Overrides of high / low from settings\n highLow.high = +options.high || (options.high === 0 ? 0 : highLow.high);\n highLow.low = +options.low || (options.low === 0 ? 0 : highLow.low);\n\n var chartRect = Chartist.createChartRect(this.svg, options, defaultOptions.padding);\n\n var valueAxis,\n labelAxisTicks,\n labelAxis,\n axisX,\n axisY;\n\n // We need to set step count based on some options combinations\n if(options.distributeSeries && options.stackBars) {\n // If distributed series are enabled and bars need to be stacked, we'll only have one bar and therefore should\n // use only the first label for the step axis\n labelAxisTicks = data.normalized.labels.slice(0, 1);\n } else {\n // If distributed series are enabled but stacked bars aren't, we should use the series labels\n // If we are drawing a regular bar chart with two dimensional series data, we just use the labels array\n // as the bars are normalized\n labelAxisTicks = data.normalized.labels;\n }\n\n // Set labelAxis and valueAxis based on the horizontalBars setting. This setting will flip the axes if necessary.\n if(options.horizontalBars) {\n if(options.axisX.type === undefined) {\n valueAxis = axisX = new Chartist.AutoScaleAxis(Chartist.Axis.units.x, data.normalized.series, chartRect, Chartist.extend({}, options.axisX, {\n highLow: highLow,\n referenceValue: 0\n }));\n } else {\n valueAxis = axisX = options.axisX.type.call(Chartist, Chartist.Axis.units.x, data.normalized.series, chartRect, Chartist.extend({}, options.axisX, {\n highLow: highLow,\n referenceValue: 0\n }));\n }\n\n if(options.axisY.type === undefined) {\n labelAxis = axisY = new Chartist.StepAxis(Chartist.Axis.units.y, data.normalized.series, chartRect, {\n ticks: labelAxisTicks\n });\n } else {\n labelAxis = axisY = options.axisY.type.call(Chartist, Chartist.Axis.units.y, data.normalized.series, chartRect, options.axisY);\n }\n } else {\n if(options.axisX.type === undefined) {\n labelAxis = axisX = new Chartist.StepAxis(Chartist.Axis.units.x, data.normalized.series, chartRect, {\n ticks: labelAxisTicks\n });\n } else {\n labelAxis = axisX = options.axisX.type.call(Chartist, Chartist.Axis.units.x, data.normalized.series, chartRect, options.axisX);\n }\n\n if(options.axisY.type === undefined) {\n valueAxis = axisY = new Chartist.AutoScaleAxis(Chartist.Axis.units.y, data.normalized.series, chartRect, Chartist.extend({}, options.axisY, {\n highLow: highLow,\n referenceValue: 0\n }));\n } else {\n valueAxis = axisY = options.axisY.type.call(Chartist, Chartist.Axis.units.y, data.normalized.series, chartRect, Chartist.extend({}, options.axisY, {\n highLow: highLow,\n referenceValue: 0\n }));\n }\n }\n\n // Projected 0 point\n var zeroPoint = options.horizontalBars ? (chartRect.x1 + valueAxis.projectValue(0)) : (chartRect.y1 - valueAxis.projectValue(0));\n // Used to track the screen coordinates of stacked bars\n var stackedBarValues = [];\n\n labelAxis.createGridAndLabels(gridGroup, labelGroup, this.supportsForeignObject, options, this.eventEmitter);\n valueAxis.createGridAndLabels(gridGroup, labelGroup, this.supportsForeignObject, options, this.eventEmitter);\n\n if (options.showGridBackground) {\n Chartist.createGridBackground(gridGroup, chartRect, options.classNames.gridBackground, this.eventEmitter);\n }\n\n // Draw the series\n data.raw.series.forEach(function(series, seriesIndex) {\n // Calculating bi-polar value of index for seriesOffset. For i = 0..4 biPol will be -1.5, -0.5, 0.5, 1.5 etc.\n var biPol = seriesIndex - (data.raw.series.length - 1) / 2;\n // Half of the period width between vertical grid lines used to position bars\n var periodHalfLength;\n // Current series SVG element\n var seriesElement;\n\n // We need to set periodHalfLength based on some options combinations\n if(options.distributeSeries && !options.stackBars) {\n // If distributed series are enabled but stacked bars aren't, we need to use the length of the normaizedData array\n // which is the series count and divide by 2\n periodHalfLength = labelAxis.axisLength / data.normalized.series.length / 2;\n } else if(options.distributeSeries && options.stackBars) {\n // If distributed series and stacked bars are enabled we'll only get one bar so we should just divide the axis\n // length by 2\n periodHalfLength = labelAxis.axisLength / 2;\n } else {\n // On regular bar charts we should just use the series length\n periodHalfLength = labelAxis.axisLength / data.normalized.series[seriesIndex].length / 2;\n }\n\n // Adding the series group to the series element\n seriesElement = seriesGroup.elem('g');\n\n // Write attributes to series group element. If series name or meta is undefined the attributes will not be written\n seriesElement.attr({\n 'ct:series-name': series.name,\n 'ct:meta': Chartist.serialize(series.meta)\n });\n\n // Use series class from series data or if not set generate one\n seriesElement.addClass([\n options.classNames.series,\n (series.className || options.classNames.series + '-' + Chartist.alphaNumerate(seriesIndex))\n ].join(' '));\n\n data.normalized.series[seriesIndex].forEach(function(value, valueIndex) {\n var projected,\n bar,\n previousStack,\n labelAxisValueIndex;\n\n // We need to set labelAxisValueIndex based on some options combinations\n if(options.distributeSeries && !options.stackBars) {\n // If distributed series are enabled but stacked bars aren't, we can use the seriesIndex for later projection\n // on the step axis for label positioning\n labelAxisValueIndex = seriesIndex;\n } else if(options.distributeSeries && options.stackBars) {\n // If distributed series and stacked bars are enabled, we will only get one bar and therefore always use\n // 0 for projection on the label step axis\n labelAxisValueIndex = 0;\n } else {\n // On regular bar charts we just use the value index to project on the label step axis\n labelAxisValueIndex = valueIndex;\n }\n\n // We need to transform coordinates differently based on the chart layout\n if(options.horizontalBars) {\n projected = {\n x: chartRect.x1 + valueAxis.projectValue(value && value.x ? value.x : 0, valueIndex, data.normalized.series[seriesIndex]),\n y: chartRect.y1 - labelAxis.projectValue(value && value.y ? value.y : 0, labelAxisValueIndex, data.normalized.series[seriesIndex])\n };\n } else {\n projected = {\n x: chartRect.x1 + labelAxis.projectValue(value && value.x ? value.x : 0, labelAxisValueIndex, data.normalized.series[seriesIndex]),\n y: chartRect.y1 - valueAxis.projectValue(value && value.y ? value.y : 0, valueIndex, data.normalized.series[seriesIndex])\n }\n }\n\n // If the label axis is a step based axis we will offset the bar into the middle of between two steps using\n // the periodHalfLength value. Also we do arrange the different series so that they align up to each other using\n // the seriesBarDistance. If we don't have a step axis, the bar positions can be chosen freely so we should not\n // add any automated positioning.\n if(labelAxis instanceof Chartist.StepAxis) {\n // Offset to center bar between grid lines, but only if the step axis is not stretched\n if(!labelAxis.options.stretch) {\n projected[labelAxis.units.pos] += periodHalfLength * (options.horizontalBars ? -1 : 1);\n }\n // Using bi-polar offset for multiple series if no stacked bars or series distribution is used\n projected[labelAxis.units.pos] += (options.stackBars || options.distributeSeries) ? 0 : biPol * options.seriesBarDistance * (options.horizontalBars ? -1 : 1);\n }\n\n // Enter value in stacked bar values used to remember previous screen value for stacking up bars\n previousStack = stackedBarValues[valueIndex] || zeroPoint;\n stackedBarValues[valueIndex] = previousStack - (zeroPoint - projected[labelAxis.counterUnits.pos]);\n\n // Skip if value is undefined\n if(value === undefined) {\n return;\n }\n\n var positions = {};\n positions[labelAxis.units.pos + '1'] = projected[labelAxis.units.pos];\n positions[labelAxis.units.pos + '2'] = projected[labelAxis.units.pos];\n\n if(options.stackBars && (options.stackMode === 'accumulate' || !options.stackMode)) {\n // Stack mode: accumulate (default)\n // If bars are stacked we use the stackedBarValues reference and otherwise base all bars off the zero line\n // We want backwards compatibility, so the expected fallback without the 'stackMode' option\n // to be the original behaviour (accumulate)\n positions[labelAxis.counterUnits.pos + '1'] = previousStack;\n positions[labelAxis.counterUnits.pos + '2'] = stackedBarValues[valueIndex];\n } else {\n // Draw from the zero line normally\n // This is also the same code for Stack mode: overlap\n positions[labelAxis.counterUnits.pos + '1'] = zeroPoint;\n positions[labelAxis.counterUnits.pos + '2'] = projected[labelAxis.counterUnits.pos];\n }\n\n // Limit x and y so that they are within the chart rect\n positions.x1 = Math.min(Math.max(positions.x1, chartRect.x1), chartRect.x2);\n positions.x2 = Math.min(Math.max(positions.x2, chartRect.x1), chartRect.x2);\n positions.y1 = Math.min(Math.max(positions.y1, chartRect.y2), chartRect.y1);\n positions.y2 = Math.min(Math.max(positions.y2, chartRect.y2), chartRect.y1);\n\n var metaData = Chartist.getMetaData(series, valueIndex);\n\n // Create bar element\n bar = seriesElement.elem('line', positions, options.classNames.bar).attr({\n 'ct:value': [value.x, value.y].filter(Chartist.isNumeric).join(','),\n 'ct:meta': Chartist.serialize(metaData)\n });\n\n this.eventEmitter.emit('draw', Chartist.extend({\n type: 'bar',\n value: value,\n index: valueIndex,\n meta: metaData,\n series: series,\n seriesIndex: seriesIndex,\n axisX: axisX,\n axisY: axisY,\n chartRect: chartRect,\n group: seriesElement,\n element: bar\n }, positions));\n }.bind(this));\n }.bind(this));\n\n this.eventEmitter.emit('created', {\n bounds: valueAxis.bounds,\n chartRect: chartRect,\n axisX: axisX,\n axisY: axisY,\n svg: this.svg,\n options: options\n });\n }\n\n /**\n * This method creates a new bar chart and returns API object that you can use for later changes.\n *\n * @memberof Chartist.Bar\n * @param {String|Node} query A selector query string or directly a DOM element\n * @param {Object} data The data object that needs to consist of a labels and a series array\n * @param {Object} [options] The options object with options that override the default options. Check the examples for a detailed list.\n * @param {Array} [responsiveOptions] Specify an array of responsive option arrays which are a media query and options object pair => [[mediaQueryString, optionsObject],[more...]]\n * @return {Object} An object which exposes the API for the created chart\n *\n * @example\n * // Create a simple bar chart\n * var data = {\n * labels: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri'],\n * series: [\n * [5, 2, 4, 2, 0]\n * ]\n * };\n *\n * // In the global name space Chartist we call the Bar function to initialize a bar chart. As a first parameter we pass in a selector where we would like to get our chart created and as a second parameter we pass our data object.\n * new Chartist.Bar('.ct-chart', data);\n *\n * @example\n * // This example creates a bipolar grouped bar chart where the boundaries are limitted to -10 and 10\n * new Chartist.Bar('.ct-chart', {\n * labels: [1, 2, 3, 4, 5, 6, 7],\n * series: [\n * [1, 3, 2, -5, -3, 1, -6],\n * [-5, -2, -4, -1, 2, -3, 1]\n * ]\n * }, {\n * seriesBarDistance: 12,\n * low: -10,\n * high: 10\n * });\n *\n */\n function Bar(query, data, options, responsiveOptions) {\n Chartist.Bar.super.constructor.call(this,\n query,\n data,\n defaultOptions,\n Chartist.extend({}, defaultOptions, options),\n responsiveOptions);\n }\n\n // Creating bar chart type in Chartist namespace\n Chartist.Bar = Chartist.Base.extend({\n constructor: Bar,\n createChart: createChart\n });\n\n}(this, Chartist));\n;/**\n * The pie chart module of Chartist that can be used to draw pie, donut or gauge charts\n *\n * @module Chartist.Pie\n */\n/* global Chartist */\n(function(globalRoot, Chartist) {\n 'use strict';\n\n var window = globalRoot.window;\n var document = globalRoot.document;\n\n /**\n * Default options in line charts. Expand the code view to see a detailed list of options with comments.\n *\n * @memberof Chartist.Pie\n */\n var defaultOptions = {\n // Specify a fixed width for the chart as a string (i.e. '100px' or '50%')\n width: undefined,\n // Specify a fixed height for the chart as a string (i.e. '100px' or '50%')\n height: undefined,\n // Padding of the chart drawing area to the container element and labels as a number or padding object {top: 5, right: 5, bottom: 5, left: 5}\n chartPadding: 5,\n // Override the class names that are used to generate the SVG structure of the chart\n classNames: {\n chartPie: 'ct-chart-pie',\n chartDonut: 'ct-chart-donut',\n series: 'ct-series',\n slicePie: 'ct-slice-pie',\n sliceDonut: 'ct-slice-donut',\n sliceDonutSolid: 'ct-slice-donut-solid',\n label: 'ct-label'\n },\n // The start angle of the pie chart in degrees where 0 points north. A higher value offsets the start angle clockwise.\n startAngle: 0,\n // An optional total you can specify. By specifying a total value, the sum of the values in the series must be this total in order to draw a full pie. You can use this parameter to draw only parts of a pie or gauge charts.\n total: undefined,\n // If specified the donut CSS classes will be used and strokes will be drawn instead of pie slices.\n donut: false,\n // If specified the donut segments will be drawn as shapes instead of strokes.\n donutSolid: false,\n // Specify the donut stroke width, currently done in javascript for convenience. May move to CSS styles in the future.\n // This option can be set as number or string to specify a relative width (i.e. 100 or '30%').\n donutWidth: 60,\n // If a label should be shown or not\n showLabel: true,\n // Label position offset from the standard position which is half distance of the radius. This value can be either positive or negative. Positive values will position the label away from the center.\n labelOffset: 0,\n // This option can be set to 'inside', 'outside' or 'center'. Positioned with 'inside' the labels will be placed on half the distance of the radius to the border of the Pie by respecting the 'labelOffset'. The 'outside' option will place the labels at the border of the pie and 'center' will place the labels in the absolute center point of the chart. The 'center' option only makes sense in conjunction with the 'labelOffset' option.\n labelPosition: 'inside',\n // An interpolation function for the label value\n labelInterpolationFnc: Chartist.noop,\n // Label direction can be 'neutral', 'explode' or 'implode'. The labels anchor will be positioned based on those settings as well as the fact if the labels are on the right or left side of the center of the chart. Usually explode is useful when labels are positioned far away from the center.\n labelDirection: 'neutral',\n // If true the whole data is reversed including labels, the series order as well as the whole series data arrays.\n reverseData: false,\n // If true empty values will be ignored to avoid drawing unncessary slices and labels\n ignoreEmptyValues: false\n };\n\n /**\n * Determines SVG anchor position based on direction and center parameter\n *\n * @param center\n * @param label\n * @param direction\n * @return {string}\n */\n function determineAnchorPosition(center, label, direction) {\n var toTheRight = label.x > center.x;\n\n if(toTheRight && direction === 'explode' ||\n !toTheRight && direction === 'implode') {\n return 'start';\n } else if(toTheRight && direction === 'implode' ||\n !toTheRight && direction === 'explode') {\n return 'end';\n } else {\n return 'middle';\n }\n }\n\n /**\n * Creates the pie chart\n *\n * @param options\n */\n function createChart(options) {\n var data = Chartist.normalizeData(this.data);\n var seriesGroups = [],\n labelsGroup,\n chartRect,\n radius,\n labelRadius,\n totalDataSum,\n startAngle = options.startAngle;\n\n // Create SVG.js draw\n this.svg = Chartist.createSvg(this.container, options.width, options.height,options.donut ? options.classNames.chartDonut : options.classNames.chartPie);\n // Calculate charting rect\n chartRect = Chartist.createChartRect(this.svg, options, defaultOptions.padding);\n // Get biggest circle radius possible within chartRect\n radius = Math.min(chartRect.width() / 2, chartRect.height() / 2);\n // Calculate total of all series to get reference value or use total reference from optional options\n totalDataSum = options.total || data.normalized.series.reduce(function(previousValue, currentValue) {\n return previousValue + currentValue;\n }, 0);\n\n var donutWidth = Chartist.quantity(options.donutWidth);\n if (donutWidth.unit === '%') {\n donutWidth.value *= radius / 100;\n }\n\n // If this is a donut chart we need to adjust our radius to enable strokes to be drawn inside\n // Unfortunately this is not possible with the current SVG Spec\n // See this proposal for more details: http://lists.w3.org/Archives/Public/www-svg/2003Oct/0000.html\n radius -= options.donut && !options.donutSolid ? donutWidth.value / 2 : 0;\n\n // If labelPosition is set to `outside` or a donut chart is drawn then the label position is at the radius,\n // if regular pie chart it's half of the radius\n if(options.labelPosition === 'outside' || options.donut && !options.donutSolid) {\n labelRadius = radius;\n } else if(options.labelPosition === 'center') {\n // If labelPosition is center we start with 0 and will later wait for the labelOffset\n labelRadius = 0;\n } else if(options.donutSolid) {\n labelRadius = radius - donutWidth.value / 2;\n } else {\n // Default option is 'inside' where we use half the radius so the label will be placed in the center of the pie\n // slice\n labelRadius = radius / 2;\n }\n // Add the offset to the labelRadius where a negative offset means closed to the center of the chart\n labelRadius += options.labelOffset;\n\n // Calculate end angle based on total sum and current data value and offset with padding\n var center = {\n x: chartRect.x1 + chartRect.width() / 2,\n y: chartRect.y2 + chartRect.height() / 2\n };\n\n // Check if there is only one non-zero value in the series array.\n var hasSingleValInSeries = data.raw.series.filter(function(val) {\n return val.hasOwnProperty('value') ? val.value !== 0 : val !== 0;\n }).length === 1;\n\n // Creating the series groups\n data.raw.series.forEach(function(series, index) {\n seriesGroups[index] = this.svg.elem('g', null, null);\n }.bind(this));\n //if we need to show labels we create the label group now\n if(options.showLabel) {\n labelsGroup = this.svg.elem('g', null, null);\n }\n\n // Draw the series\n // initialize series groups\n data.raw.series.forEach(function(series, index) {\n // If current value is zero and we are ignoring empty values then skip to next value\n if (data.normalized.series[index] === 0 && options.ignoreEmptyValues) return;\n\n // If the series is an object and contains a name or meta data we add a custom attribute\n seriesGroups[index].attr({\n 'ct:series-name': series.name\n });\n\n // Use series class from series data or if not set generate one\n seriesGroups[index].addClass([\n options.classNames.series,\n (series.className || options.classNames.series + '-' + Chartist.alphaNumerate(index))\n ].join(' '));\n\n // If the whole dataset is 0 endAngle should be zero. Can't divide by 0.\n var endAngle = (totalDataSum > 0 ? startAngle + data.normalized.series[index] / totalDataSum * 360 : 0);\n\n // Use slight offset so there are no transparent hairline issues\n var overlappigStartAngle = Math.max(0, startAngle - (index === 0 || hasSingleValInSeries ? 0 : 0.2));\n\n // If we need to draw the arc for all 360 degrees we need to add a hack where we close the circle\n // with Z and use 359.99 degrees\n if(endAngle - overlappigStartAngle >= 359.99) {\n endAngle = overlappigStartAngle + 359.99;\n }\n\n var start = Chartist.polarToCartesian(center.x, center.y, radius, overlappigStartAngle),\n end = Chartist.polarToCartesian(center.x, center.y, radius, endAngle);\n\n var innerStart,\n innerEnd,\n donutSolidRadius;\n\n // Create a new path element for the pie chart. If this isn't a donut chart we should close the path for a correct stroke\n var path = new Chartist.Svg.Path(!options.donut || options.donutSolid)\n .move(end.x, end.y)\n .arc(radius, radius, 0, endAngle - startAngle > 180, 0, start.x, start.y);\n\n // If regular pie chart (no donut) we add a line to the center of the circle for completing the pie\n if(!options.donut) {\n path.line(center.x, center.y);\n } else if (options.donutSolid) {\n donutSolidRadius = radius - donutWidth.value;\n innerStart = Chartist.polarToCartesian(center.x, center.y, donutSolidRadius, startAngle - (index === 0 || hasSingleValInSeries ? 0 : 0.2));\n innerEnd = Chartist.polarToCartesian(center.x, center.y, donutSolidRadius, endAngle);\n path.line(innerStart.x, innerStart.y);\n path.arc(donutSolidRadius, donutSolidRadius, 0, endAngle - startAngle > 180, 1, innerEnd.x, innerEnd.y);\n }\n\n // Create the SVG path\n // If this is a donut chart we add the donut class, otherwise just a regular slice\n var pathClassName = options.classNames.slicePie;\n if (options.donut) {\n pathClassName = options.classNames.sliceDonut;\n if (options.donutSolid) {\n pathClassName = options.classNames.sliceDonutSolid;\n }\n }\n var pathElement = seriesGroups[index].elem('path', {\n d: path.stringify()\n }, pathClassName);\n\n // Adding the pie series value to the path\n pathElement.attr({\n 'ct:value': data.normalized.series[index],\n 'ct:meta': Chartist.serialize(series.meta)\n });\n\n // If this is a donut, we add the stroke-width as style attribute\n if(options.donut && !options.donutSolid) {\n pathElement._node.style.strokeWidth = donutWidth.value + 'px';\n }\n\n // Fire off draw event\n this.eventEmitter.emit('draw', {\n type: 'slice',\n value: data.normalized.series[index],\n totalDataSum: totalDataSum,\n index: index,\n meta: series.meta,\n series: series,\n group: seriesGroups[index],\n element: pathElement,\n path: path.clone(),\n center: center,\n radius: radius,\n startAngle: startAngle,\n endAngle: endAngle\n });\n\n // If we need to show labels we need to add the label for this slice now\n if(options.showLabel) {\n var labelPosition;\n if(data.raw.series.length === 1) {\n // If we have only 1 series, we can position the label in the center of the pie\n labelPosition = {\n x: center.x,\n y: center.y\n };\n } else {\n // Position at the labelRadius distance from center and between start and end angle\n labelPosition = Chartist.polarToCartesian(\n center.x,\n center.y,\n labelRadius,\n startAngle + (endAngle - startAngle) / 2\n );\n }\n\n var rawValue;\n if(data.normalized.labels && !Chartist.isFalseyButZero(data.normalized.labels[index])) {\n rawValue = data.normalized.labels[index];\n } else {\n rawValue = data.normalized.series[index];\n }\n\n var interpolatedValue = options.labelInterpolationFnc(rawValue, index);\n\n if(interpolatedValue || interpolatedValue === 0) {\n var labelElement = labelsGroup.elem('text', {\n dx: labelPosition.x,\n dy: labelPosition.y,\n 'text-anchor': determineAnchorPosition(center, labelPosition, options.labelDirection)\n }, options.classNames.label).text('' + interpolatedValue);\n\n // Fire off draw event\n this.eventEmitter.emit('draw', {\n type: 'label',\n index: index,\n group: labelsGroup,\n element: labelElement,\n text: '' + interpolatedValue,\n x: labelPosition.x,\n y: labelPosition.y\n });\n }\n }\n\n // Set next startAngle to current endAngle.\n // (except for last slice)\n startAngle = endAngle;\n }.bind(this));\n\n this.eventEmitter.emit('created', {\n chartRect: chartRect,\n svg: this.svg,\n options: options\n });\n }\n\n /**\n * This method creates a new pie chart and returns an object that can be used to redraw the chart.\n *\n * @memberof Chartist.Pie\n * @param {String|Node} query A selector query string or directly a DOM element\n * @param {Object} data The data object in the pie chart needs to have a series property with a one dimensional data array. The values will be normalized against each other and don't necessarily need to be in percentage. The series property can also be an array of value objects that contain a value property and a className property to override the CSS class name for the series group.\n * @param {Object} [options] The options object with options that override the default options. Check the examples for a detailed list.\n * @param {Array} [responsiveOptions] Specify an array of responsive option arrays which are a media query and options object pair => [[mediaQueryString, optionsObject],[more...]]\n * @return {Object} An object with a version and an update method to manually redraw the chart\n *\n * @example\n * // Simple pie chart example with four series\n * new Chartist.Pie('.ct-chart', {\n * series: [10, 2, 4, 3]\n * });\n *\n * @example\n * // Drawing a donut chart\n * new Chartist.Pie('.ct-chart', {\n * series: [10, 2, 4, 3]\n * }, {\n * donut: true\n * });\n *\n * @example\n * // Using donut, startAngle and total to draw a gauge chart\n * new Chartist.Pie('.ct-chart', {\n * series: [20, 10, 30, 40]\n * }, {\n * donut: true,\n * donutWidth: 20,\n * startAngle: 270,\n * total: 200\n * });\n *\n * @example\n * // Drawing a pie chart with padding and labels that are outside the pie\n * new Chartist.Pie('.ct-chart', {\n * series: [20, 10, 30, 40]\n * }, {\n * chartPadding: 30,\n * labelOffset: 50,\n * labelDirection: 'explode'\n * });\n *\n * @example\n * // Overriding the class names for individual series as well as a name and meta data.\n * // The name will be written as ct:series-name attribute and the meta data will be serialized and written\n * // to a ct:meta attribute.\n * new Chartist.Pie('.ct-chart', {\n * series: [{\n * value: 20,\n * name: 'Series 1',\n * className: 'my-custom-class-one',\n * meta: 'Meta One'\n * }, {\n * value: 10,\n * name: 'Series 2',\n * className: 'my-custom-class-two',\n * meta: 'Meta Two'\n * }, {\n * value: 70,\n * name: 'Series 3',\n * className: 'my-custom-class-three',\n * meta: 'Meta Three'\n * }]\n * });\n */\n function Pie(query, data, options, responsiveOptions) {\n Chartist.Pie.super.constructor.call(this,\n query,\n data,\n defaultOptions,\n Chartist.extend({}, defaultOptions, options),\n responsiveOptions);\n }\n\n // Creating pie chart type in Chartist namespace\n Chartist.Pie = Chartist.Base.extend({\n constructor: Pie,\n createChart: createChart,\n determineAnchorPosition: determineAnchorPosition\n });\n\n}(this, Chartist));\n\nreturn Chartist;\n\n}));\n"]} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/vendors/css/vendor.bundle.base.css b/INCUBATE/incubate/incubate/static/vendors/css/vendor.bundle.base.css new file mode 100644 index 0000000000000000000000000000000000000000..b4863922c52d9e26fe7f2e70dee195b5189f6a57 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/css/vendor.bundle.base.css @@ -0,0 +1,116 @@ +/* + * Container style + */ +.ps { + overflow: hidden !important; + overflow-anchor: none; + -ms-overflow-style: none; + touch-action: auto; + -ms-touch-action: auto; +} + +/* + * Scrollbar rail styles + */ +.ps__rail-x { + display: none; + opacity: 0; + transition: background-color .2s linear, opacity .2s linear; + -webkit-transition: background-color .2s linear, opacity .2s linear; + height: 15px; + /* there must be 'bottom' or 'top' for ps__rail-x */ + bottom: 0px; + /* please don't change 'position' */ + position: absolute; +} + +.ps__rail-y { + display: none; + opacity: 0; + transition: background-color .2s linear, opacity .2s linear; + -webkit-transition: background-color .2s linear, opacity .2s linear; + width: 15px; + /* there must be 'right' or 'left' for ps__rail-y */ + right: 0; + /* please don't change 'position' */ + position: absolute; +} + +.ps--active-x > .ps__rail-x, +.ps--active-y > .ps__rail-y { + display: block; + background-color: transparent; +} + +.ps:hover > .ps__rail-x, +.ps:hover > .ps__rail-y, +.ps--focus > .ps__rail-x, +.ps--focus > .ps__rail-y, +.ps--scrolling-x > .ps__rail-x, +.ps--scrolling-y > .ps__rail-y { + opacity: 0.6; +} + +.ps .ps__rail-x:hover, +.ps .ps__rail-y:hover, +.ps .ps__rail-x:focus, +.ps .ps__rail-y:focus, +.ps .ps__rail-x.ps--clicking, +.ps .ps__rail-y.ps--clicking { + background-color: #eee; + opacity: 0.9; +} + +/* + * Scrollbar thumb styles + */ +.ps__thumb-x { + background-color: #aaa; + border-radius: 6px; + transition: background-color .2s linear, height .2s ease-in-out; + -webkit-transition: background-color .2s linear, height .2s ease-in-out; + height: 6px; + /* there must be 'bottom' for ps__thumb-x */ + bottom: 2px; + /* please don't change 'position' */ + position: absolute; +} + +.ps__thumb-y { + background-color: #aaa; + border-radius: 6px; + transition: background-color .2s linear, width .2s ease-in-out; + -webkit-transition: background-color .2s linear, width .2s ease-in-out; + width: 6px; + /* there must be 'right' for ps__thumb-y */ + right: 2px; + /* please don't change 'position' */ + position: absolute; +} + +.ps__rail-x:hover > .ps__thumb-x, +.ps__rail-x:focus > .ps__thumb-x, +.ps__rail-x.ps--clicking .ps__thumb-x { + background-color: #999; + height: 11px; +} + +.ps__rail-y:hover > .ps__thumb-y, +.ps__rail-y:focus > .ps__thumb-y, +.ps__rail-y.ps--clicking .ps__thumb-y { + background-color: #999; + width: 11px; +} + +/* MS supports */ +@supports (-ms-overflow-style: none) { + .ps { + overflow: auto !important; + } +} + +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .ps { + overflow: auto !important; + } +} diff --git a/INCUBATE/incubate/incubate/static/vendors/daterangepicker/daterangepicker.css b/INCUBATE/incubate/incubate/static/vendors/daterangepicker/daterangepicker.css new file mode 100644 index 0000000000000000000000000000000000000000..a96380496ee3751027b56970d4b3398a7cd697ce --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/daterangepicker/daterangepicker.css @@ -0,0 +1,410 @@ +.daterangepicker { + position: absolute; + color: inherit; + background-color: #fff; + border-radius: 4px; + border: 1px solid #ddd; + width: 278px; + max-width: none; + padding: 0; + margin-top: 7px; + top: 100px; + left: 20px; + z-index: 3001; + display: none; + font-family: arial; + font-size: 15px; + line-height: 1em; +} + +.daterangepicker:before, .daterangepicker:after { + position: absolute; + display: inline-block; + border-bottom-color: rgba(0, 0, 0, 0.2); + content: ''; +} + +.daterangepicker:before { + top: -7px; + border-right: 7px solid transparent; + border-left: 7px solid transparent; + border-bottom: 7px solid #ccc; +} + +.daterangepicker:after { + top: -6px; + border-right: 6px solid transparent; + border-bottom: 6px solid #fff; + border-left: 6px solid transparent; +} + +.daterangepicker.opensleft:before { + right: 9px; +} + +.daterangepicker.opensleft:after { + right: 10px; +} + +.daterangepicker.openscenter:before { + left: 0; + right: 0; + width: 0; + margin-left: auto; + margin-right: auto; +} + +.daterangepicker.openscenter:after { + left: 0; + right: 0; + width: 0; + margin-left: auto; + margin-right: auto; +} + +.daterangepicker.opensright:before { + left: 9px; +} + +.daterangepicker.opensright:after { + left: 10px; +} + +.daterangepicker.drop-up { + margin-top: -7px; +} + +.daterangepicker.drop-up:before { + top: initial; + bottom: -7px; + border-bottom: initial; + border-top: 7px solid #ccc; +} + +.daterangepicker.drop-up:after { + top: initial; + bottom: -6px; + border-bottom: initial; + border-top: 6px solid #fff; +} + +.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar { + float: none; +} + +.daterangepicker.single .drp-selected { + display: none; +} + +.daterangepicker.show-calendar .drp-calendar { + display: block; +} + +.daterangepicker.show-calendar .drp-buttons { + display: block; +} + +.daterangepicker.auto-apply .drp-buttons { + display: none; +} + +.daterangepicker .drp-calendar { + display: none; + max-width: 270px; +} + +.daterangepicker .drp-calendar.left { + padding: 8px 0 8px 8px; +} + +.daterangepicker .drp-calendar.right { + padding: 8px; +} + +.daterangepicker .drp-calendar.single .calendar-table { + border: none; +} + +.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span { + color: #fff; + border: solid black; + border-width: 0 2px 2px 0; + border-radius: 0; + display: inline-block; + padding: 3px; +} + +.daterangepicker .calendar-table .next span { + transform: rotate(-45deg); + -webkit-transform: rotate(-45deg); +} + +.daterangepicker .calendar-table .prev span { + transform: rotate(135deg); + -webkit-transform: rotate(135deg); +} + +.daterangepicker .calendar-table th, .daterangepicker .calendar-table td { + white-space: nowrap; + text-align: center; + vertical-align: middle; + min-width: 32px; + width: 32px; + height: 24px; + line-height: 24px; + font-size: 12px; + border-radius: 4px; + border: 1px solid transparent; + white-space: nowrap; + cursor: pointer; +} + +.daterangepicker .calendar-table { + border: 1px solid #fff; + border-radius: 4px; + background-color: #fff; +} + +.daterangepicker .calendar-table table { + width: 100%; + margin: 0; + border-spacing: 0; + border-collapse: collapse; +} + +.daterangepicker td.available:hover, .daterangepicker th.available:hover { + background-color: #eee; + border-color: transparent; + color: inherit; +} + +.daterangepicker td.week, .daterangepicker th.week { + font-size: 80%; + color: #ccc; +} + +.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date { + background-color: #fff; + border-color: transparent; + color: #999; +} + +.daterangepicker td.in-range { + background-color: #ebf4f8; + border-color: transparent; + color: #000; + border-radius: 0; +} + +.daterangepicker td.start-date { + border-radius: 4px 0 0 4px; +} + +.daterangepicker td.end-date { + border-radius: 0 4px 4px 0; +} + +.daterangepicker td.start-date.end-date { + border-radius: 4px; +} + +.daterangepicker td.active, .daterangepicker td.active:hover { + background-color: #357ebd; + border-color: transparent; + color: #fff; +} + +.daterangepicker th.month { + width: auto; +} + +.daterangepicker td.disabled, .daterangepicker option.disabled { + color: #999; + cursor: not-allowed; + text-decoration: line-through; +} + +.daterangepicker select.monthselect, .daterangepicker select.yearselect { + font-size: 12px; + padding: 1px; + height: auto; + margin: 0; + cursor: default; +} + +.daterangepicker select.monthselect { + margin-right: 2%; + width: 56%; +} + +.daterangepicker select.yearselect { + width: 40%; +} + +.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect { + width: 50px; + margin: 0 auto; + background: #eee; + border: 1px solid #eee; + padding: 2px; + outline: 0; + font-size: 12px; +} + +.daterangepicker .calendar-time { + text-align: center; + margin: 4px auto 0 auto; + line-height: 30px; + position: relative; +} + +.daterangepicker .calendar-time select.disabled { + color: #ccc; + cursor: not-allowed; +} + +.daterangepicker .drp-buttons { + clear: both; + text-align: right; + padding: 8px; + border-top: 1px solid #ddd; + display: none; + line-height: 12px; + vertical-align: middle; +} + +.daterangepicker .drp-selected { + display: inline-block; + font-size: 12px; + padding-right: 8px; +} + +.daterangepicker .drp-buttons .btn { + margin-left: 8px; + font-size: 12px; + font-weight: bold; + padding: 4px 8px; +} + +.daterangepicker.show-ranges.single.rtl .drp-calendar.left { + border-right: 1px solid #ddd; +} + +.daterangepicker.show-ranges.single.ltr .drp-calendar.left { + border-left: 1px solid #ddd; +} + +.daterangepicker.show-ranges.rtl .drp-calendar.right { + border-right: 1px solid #ddd; +} + +.daterangepicker.show-ranges.ltr .drp-calendar.left { + border-left: 1px solid #ddd; +} + +.daterangepicker .ranges { + float: none; + text-align: left; + margin: 0; +} + +.daterangepicker.show-calendar .ranges { + margin-top: 8px; +} + +.daterangepicker .ranges ul { + list-style: none; + margin: 0 auto; + padding: 0; + width: 100%; +} + +.daterangepicker .ranges li { + font-size: 12px; + padding: 8px 12px; + cursor: pointer; +} + +.daterangepicker .ranges li:hover { + background-color: #eee; +} + +.daterangepicker .ranges li.active { + background-color: #08c; + color: #fff; +} + +/* Larger Screen Styling */ +@media (min-width: 564px) { + .daterangepicker { + width: auto; + } + + .daterangepicker .ranges ul { + width: 140px; + } + + .daterangepicker.single .ranges ul { + width: 100%; + } + + .daterangepicker.single .drp-calendar.left { + clear: none; + } + + .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar { + float: left; + } + + .daterangepicker { + direction: ltr; + text-align: left; + } + + .daterangepicker .drp-calendar.left { + clear: left; + margin-right: 0; + } + + .daterangepicker .drp-calendar.left .calendar-table { + border-right: none; + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + + .daterangepicker .drp-calendar.right { + margin-left: 0; + } + + .daterangepicker .drp-calendar.right .calendar-table { + border-left: none; + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + + .daterangepicker .drp-calendar.left .calendar-table { + padding-right: 8px; + } + + .daterangepicker .ranges, .daterangepicker .drp-calendar { + float: left; + } +} + +@media (min-width: 730px) { + .daterangepicker .ranges { + width: auto; + } + + .daterangepicker .ranges { + float: left; + } + + .daterangepicker.rtl .ranges { + float: right; + } + + .daterangepicker .drp-calendar.left { + clear: none !important; + } +} diff --git a/INCUBATE/incubate/incubate/static/vendors/daterangepicker/daterangepicker.js b/INCUBATE/incubate/incubate/static/vendors/daterangepicker/daterangepicker.js new file mode 100644 index 0000000000000000000000000000000000000000..6aac9665b5631cf3398d1cda5ef8d40f36f210cc --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/daterangepicker/daterangepicker.js @@ -0,0 +1,1565 @@ +/** +* @version: 3.0.5 +* @author: Dan Grossman http://www.dangrossman.info/ +* @copyright: Copyright (c) 2012-2019 Dan Grossman. All rights reserved. +* @license: Licensed under the MIT license. See http://www.opensource.org/licenses/mit-license.php +* @website: http://www.daterangepicker.com/ +*/ +// Following the UMD template https://github.com/umdjs/umd/blob/master/templates/returnExportsGlobal.js +(function (root, factory) { + if (typeof define === 'function' && define.amd) { + // AMD. Make globaly available as well + define(['moment', 'jquery'], function (moment, jquery) { + if (!jquery.fn) jquery.fn = {}; // webpack server rendering + if (typeof moment !== 'function' && moment.default) moment = moment.default + return factory(moment, jquery); + }); + } else if (typeof module === 'object' && module.exports) { + // Node / Browserify + //isomorphic issue + var jQuery = (typeof window != 'undefined') ? window.jQuery : undefined; + if (!jQuery) { + jQuery = require('jquery'); + if (!jQuery.fn) jQuery.fn = {}; + } + var moment = (typeof window != 'undefined' && typeof window.moment != 'undefined') ? window.moment : require('moment'); + module.exports = factory(moment, jQuery); + } else { + // Browser globals + root.daterangepicker = factory(root.moment, root.jQuery); + } +}(this, function(moment, $) { + var DateRangePicker = function(element, options, cb) { + + //default settings for options + this.parentEl = 'body'; + this.element = $(element); + this.startDate = moment().startOf('day'); + this.endDate = moment().endOf('day'); + this.minDate = false; + this.maxDate = false; + this.maxSpan = false; + this.autoApply = false; + this.singleDatePicker = false; + this.showDropdowns = false; + this.minYear = moment().subtract(100, 'year').format('YYYY'); + this.maxYear = moment().add(100, 'year').format('YYYY'); + this.showWeekNumbers = false; + this.showISOWeekNumbers = false; + this.showCustomRangeLabel = true; + this.timePicker = false; + this.timePicker24Hour = false; + this.timePickerIncrement = 1; + this.timePickerSeconds = false; + this.linkedCalendars = true; + this.autoUpdateInput = true; + this.alwaysShowCalendars = false; + this.ranges = {}; + + this.opens = 'right'; + if (this.element.hasClass('pull-right')) + this.opens = 'left'; + + this.drops = 'down'; + if (this.element.hasClass('dropup')) + this.drops = 'up'; + + this.buttonClasses = 'btn btn-sm'; + this.applyButtonClasses = 'btn-primary'; + this.cancelButtonClasses = 'btn-default'; + + this.locale = { + direction: 'ltr', + format: moment.localeData().longDateFormat('L'), + separator: ' - ', + applyLabel: 'Apply', + cancelLabel: 'Cancel', + weekLabel: 'W', + customRangeLabel: 'Custom Range', + daysOfWeek: moment.weekdaysMin(), + monthNames: moment.monthsShort(), + firstDay: moment.localeData().firstDayOfWeek() + }; + + this.callback = function() { }; + + //some state information + this.isShowing = false; + this.leftCalendar = {}; + this.rightCalendar = {}; + + //custom options from user + if (typeof options !== 'object' || options === null) + options = {}; + + //allow setting options with data attributes + //data-api options will be overwritten with custom javascript options + options = $.extend(this.element.data(), options); + + //html template for the picker UI + if (typeof options.template !== 'string' && !(options.template instanceof $)) + options.template = + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '
' + + '' + + '' + + ' ' + + '
' + + '
'; + + this.parentEl = (options.parentEl && $(options.parentEl).length) ? $(options.parentEl) : $(this.parentEl); + this.container = $(options.template).appendTo(this.parentEl); + + // + // handle all the possible options overriding defaults + // + + if (typeof options.locale === 'object') { + + if (typeof options.locale.direction === 'string') + this.locale.direction = options.locale.direction; + + if (typeof options.locale.format === 'string') + this.locale.format = options.locale.format; + + if (typeof options.locale.separator === 'string') + this.locale.separator = options.locale.separator; + + if (typeof options.locale.daysOfWeek === 'object') + this.locale.daysOfWeek = options.locale.daysOfWeek.slice(); + + if (typeof options.locale.monthNames === 'object') + this.locale.monthNames = options.locale.monthNames.slice(); + + if (typeof options.locale.firstDay === 'number') + this.locale.firstDay = options.locale.firstDay; + + if (typeof options.locale.applyLabel === 'string') + this.locale.applyLabel = options.locale.applyLabel; + + if (typeof options.locale.cancelLabel === 'string') + this.locale.cancelLabel = options.locale.cancelLabel; + + if (typeof options.locale.weekLabel === 'string') + this.locale.weekLabel = options.locale.weekLabel; + + if (typeof options.locale.customRangeLabel === 'string'){ + //Support unicode chars in the custom range name. + var elem = document.createElement('textarea'); + elem.innerHTML = options.locale.customRangeLabel; + var rangeHtml = elem.value; + this.locale.customRangeLabel = rangeHtml; + } + } + this.container.addClass(this.locale.direction); + + if (typeof options.startDate === 'string') + this.startDate = moment(options.startDate, this.locale.format); + + if (typeof options.endDate === 'string') + this.endDate = moment(options.endDate, this.locale.format); + + if (typeof options.minDate === 'string') + this.minDate = moment(options.minDate, this.locale.format); + + if (typeof options.maxDate === 'string') + this.maxDate = moment(options.maxDate, this.locale.format); + + if (typeof options.startDate === 'object') + this.startDate = moment(options.startDate); + + if (typeof options.endDate === 'object') + this.endDate = moment(options.endDate); + + if (typeof options.minDate === 'object') + this.minDate = moment(options.minDate); + + if (typeof options.maxDate === 'object') + this.maxDate = moment(options.maxDate); + + // sanity check for bad options + if (this.minDate && this.startDate.isBefore(this.minDate)) + this.startDate = this.minDate.clone(); + + // sanity check for bad options + if (this.maxDate && this.endDate.isAfter(this.maxDate)) + this.endDate = this.maxDate.clone(); + + if (typeof options.applyButtonClasses === 'string') + this.applyButtonClasses = options.applyButtonClasses; + + if (typeof options.applyClass === 'string') //backwards compat + this.applyButtonClasses = options.applyClass; + + if (typeof options.cancelButtonClasses === 'string') + this.cancelButtonClasses = options.cancelButtonClasses; + + if (typeof options.cancelClass === 'string') //backwards compat + this.cancelButtonClasses = options.cancelClass; + + if (typeof options.maxSpan === 'object') + this.maxSpan = options.maxSpan; + + if (typeof options.dateLimit === 'object') //backwards compat + this.maxSpan = options.dateLimit; + + if (typeof options.opens === 'string') + this.opens = options.opens; + + if (typeof options.drops === 'string') + this.drops = options.drops; + + if (typeof options.showWeekNumbers === 'boolean') + this.showWeekNumbers = options.showWeekNumbers; + + if (typeof options.showISOWeekNumbers === 'boolean') + this.showISOWeekNumbers = options.showISOWeekNumbers; + + if (typeof options.buttonClasses === 'string') + this.buttonClasses = options.buttonClasses; + + if (typeof options.buttonClasses === 'object') + this.buttonClasses = options.buttonClasses.join(' '); + + if (typeof options.showDropdowns === 'boolean') + this.showDropdowns = options.showDropdowns; + + if (typeof options.minYear === 'number') + this.minYear = options.minYear; + + if (typeof options.maxYear === 'number') + this.maxYear = options.maxYear; + + if (typeof options.showCustomRangeLabel === 'boolean') + this.showCustomRangeLabel = options.showCustomRangeLabel; + + if (typeof options.singleDatePicker === 'boolean') { + this.singleDatePicker = options.singleDatePicker; + if (this.singleDatePicker) + this.endDate = this.startDate.clone(); + } + + if (typeof options.timePicker === 'boolean') + this.timePicker = options.timePicker; + + if (typeof options.timePickerSeconds === 'boolean') + this.timePickerSeconds = options.timePickerSeconds; + + if (typeof options.timePickerIncrement === 'number') + this.timePickerIncrement = options.timePickerIncrement; + + if (typeof options.timePicker24Hour === 'boolean') + this.timePicker24Hour = options.timePicker24Hour; + + if (typeof options.autoApply === 'boolean') + this.autoApply = options.autoApply; + + if (typeof options.autoUpdateInput === 'boolean') + this.autoUpdateInput = options.autoUpdateInput; + + if (typeof options.linkedCalendars === 'boolean') + this.linkedCalendars = options.linkedCalendars; + + if (typeof options.isInvalidDate === 'function') + this.isInvalidDate = options.isInvalidDate; + + if (typeof options.isCustomDate === 'function') + this.isCustomDate = options.isCustomDate; + + if (typeof options.alwaysShowCalendars === 'boolean') + this.alwaysShowCalendars = options.alwaysShowCalendars; + + // update day names order to firstDay + if (this.locale.firstDay != 0) { + var iterator = this.locale.firstDay; + while (iterator > 0) { + this.locale.daysOfWeek.push(this.locale.daysOfWeek.shift()); + iterator--; + } + } + + var start, end, range; + + //if no start/end dates set, check if an input element contains initial values + if (typeof options.startDate === 'undefined' && typeof options.endDate === 'undefined') { + if ($(this.element).is(':text')) { + var val = $(this.element).val(), + split = val.split(this.locale.separator); + + start = end = null; + + if (split.length == 2) { + start = moment(split[0], this.locale.format); + end = moment(split[1], this.locale.format); + } else if (this.singleDatePicker && val !== "") { + start = moment(val, this.locale.format); + end = moment(val, this.locale.format); + } + if (start !== null && end !== null) { + this.setStartDate(start); + this.setEndDate(end); + } + } + } + + if (typeof options.ranges === 'object') { + for (range in options.ranges) { + + if (typeof options.ranges[range][0] === 'string') + start = moment(options.ranges[range][0], this.locale.format); + else + start = moment(options.ranges[range][0]); + + if (typeof options.ranges[range][1] === 'string') + end = moment(options.ranges[range][1], this.locale.format); + else + end = moment(options.ranges[range][1]); + + // If the start or end date exceed those allowed by the minDate or maxSpan + // options, shorten the range to the allowable period. + if (this.minDate && start.isBefore(this.minDate)) + start = this.minDate.clone(); + + var maxDate = this.maxDate; + if (this.maxSpan && maxDate && start.clone().add(this.maxSpan).isAfter(maxDate)) + maxDate = start.clone().add(this.maxSpan); + if (maxDate && end.isAfter(maxDate)) + end = maxDate.clone(); + + // If the end of the range is before the minimum or the start of the range is + // after the maximum, don't display this range option at all. + if ((this.minDate && end.isBefore(this.minDate, this.timepicker ? 'minute' : 'day')) + || (maxDate && start.isAfter(maxDate, this.timepicker ? 'minute' : 'day'))) + continue; + + //Support unicode chars in the range names. + var elem = document.createElement('textarea'); + elem.innerHTML = range; + var rangeHtml = elem.value; + + this.ranges[rangeHtml] = [start, end]; + } + + var list = '
    '; + for (range in this.ranges) { + list += '
  • ' + range + '
  • '; + } + if (this.showCustomRangeLabel) { + list += '
  • ' + this.locale.customRangeLabel + '
  • '; + } + list += '
'; + this.container.find('.ranges').prepend(list); + } + + if (typeof cb === 'function') { + this.callback = cb; + } + + if (!this.timePicker) { + this.startDate = this.startDate.startOf('day'); + this.endDate = this.endDate.endOf('day'); + this.container.find('.calendar-time').hide(); + } + + //can't be used together for now + if (this.timePicker && this.autoApply) + this.autoApply = false; + + if (this.autoApply) { + this.container.addClass('auto-apply'); + } + + if (typeof options.ranges === 'object') + this.container.addClass('show-ranges'); + + if (this.singleDatePicker) { + this.container.addClass('single'); + this.container.find('.drp-calendar.left').addClass('single'); + this.container.find('.drp-calendar.left').show(); + this.container.find('.drp-calendar.right').hide(); + if (!this.timePicker) { + this.container.addClass('auto-apply'); + } + } + + if ((typeof options.ranges === 'undefined' && !this.singleDatePicker) || this.alwaysShowCalendars) { + this.container.addClass('show-calendar'); + } + + this.container.addClass('opens' + this.opens); + + //apply CSS classes and labels to buttons + this.container.find('.applyBtn, .cancelBtn').addClass(this.buttonClasses); + if (this.applyButtonClasses.length) + this.container.find('.applyBtn').addClass(this.applyButtonClasses); + if (this.cancelButtonClasses.length) + this.container.find('.cancelBtn').addClass(this.cancelButtonClasses); + this.container.find('.applyBtn').html(this.locale.applyLabel); + this.container.find('.cancelBtn').html(this.locale.cancelLabel); + + // + // event listeners + // + + this.container.find('.drp-calendar') + .on('click.daterangepicker', '.prev', $.proxy(this.clickPrev, this)) + .on('click.daterangepicker', '.next', $.proxy(this.clickNext, this)) + .on('mousedown.daterangepicker', 'td.available', $.proxy(this.clickDate, this)) + .on('mouseenter.daterangepicker', 'td.available', $.proxy(this.hoverDate, this)) + .on('change.daterangepicker', 'select.yearselect', $.proxy(this.monthOrYearChanged, this)) + .on('change.daterangepicker', 'select.monthselect', $.proxy(this.monthOrYearChanged, this)) + .on('change.daterangepicker', 'select.hourselect,select.minuteselect,select.secondselect,select.ampmselect', $.proxy(this.timeChanged, this)) + + this.container.find('.ranges') + .on('click.daterangepicker', 'li', $.proxy(this.clickRange, this)) + + this.container.find('.drp-buttons') + .on('click.daterangepicker', 'button.applyBtn', $.proxy(this.clickApply, this)) + .on('click.daterangepicker', 'button.cancelBtn', $.proxy(this.clickCancel, this)) + + if (this.element.is('input') || this.element.is('button')) { + this.element.on({ + 'click.daterangepicker': $.proxy(this.show, this), + 'focus.daterangepicker': $.proxy(this.show, this), + 'keyup.daterangepicker': $.proxy(this.elementChanged, this), + 'keydown.daterangepicker': $.proxy(this.keydown, this) //IE 11 compatibility + }); + } else { + this.element.on('click.daterangepicker', $.proxy(this.toggle, this)); + this.element.on('keydown.daterangepicker', $.proxy(this.toggle, this)); + } + + // + // if attached to a text input, set the initial value + // + + this.updateElement(); + + }; + + DateRangePicker.prototype = { + + constructor: DateRangePicker, + + setStartDate: function(startDate) { + if (typeof startDate === 'string') + this.startDate = moment(startDate, this.locale.format); + + if (typeof startDate === 'object') + this.startDate = moment(startDate); + + if (!this.timePicker) + this.startDate = this.startDate.startOf('day'); + + if (this.timePicker && this.timePickerIncrement) + this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); + + if (this.minDate && this.startDate.isBefore(this.minDate)) { + this.startDate = this.minDate.clone(); + if (this.timePicker && this.timePickerIncrement) + this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); + } + + if (this.maxDate && this.startDate.isAfter(this.maxDate)) { + this.startDate = this.maxDate.clone(); + if (this.timePicker && this.timePickerIncrement) + this.startDate.minute(Math.floor(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); + } + + if (!this.isShowing) + this.updateElement(); + + this.updateMonthsInView(); + }, + + setEndDate: function(endDate) { + if (typeof endDate === 'string') + this.endDate = moment(endDate, this.locale.format); + + if (typeof endDate === 'object') + this.endDate = moment(endDate); + + if (!this.timePicker) + this.endDate = this.endDate.endOf('day'); + + if (this.timePicker && this.timePickerIncrement) + this.endDate.minute(Math.round(this.endDate.minute() / this.timePickerIncrement) * this.timePickerIncrement); + + if (this.endDate.isBefore(this.startDate)) + this.endDate = this.startDate.clone(); + + if (this.maxDate && this.endDate.isAfter(this.maxDate)) + this.endDate = this.maxDate.clone(); + + if (this.maxSpan && this.startDate.clone().add(this.maxSpan).isBefore(this.endDate)) + this.endDate = this.startDate.clone().add(this.maxSpan); + + this.previousRightTime = this.endDate.clone(); + + this.container.find('.drp-selected').html(this.startDate.format(this.locale.format) + this.locale.separator + this.endDate.format(this.locale.format)); + + if (!this.isShowing) + this.updateElement(); + + this.updateMonthsInView(); + }, + + isInvalidDate: function() { + return false; + }, + + isCustomDate: function() { + return false; + }, + + updateView: function() { + if (this.timePicker) { + this.renderTimePicker('left'); + this.renderTimePicker('right'); + if (!this.endDate) { + this.container.find('.right .calendar-time select').attr('disabled', 'disabled').addClass('disabled'); + } else { + this.container.find('.right .calendar-time select').removeAttr('disabled').removeClass('disabled'); + } + } + if (this.endDate) + this.container.find('.drp-selected').html(this.startDate.format(this.locale.format) + this.locale.separator + this.endDate.format(this.locale.format)); + this.updateMonthsInView(); + this.updateCalendars(); + this.updateFormInputs(); + }, + + updateMonthsInView: function() { + if (this.endDate) { + + //if both dates are visible already, do nothing + if (!this.singleDatePicker && this.leftCalendar.month && this.rightCalendar.month && + (this.startDate.format('YYYY-MM') == this.leftCalendar.month.format('YYYY-MM') || this.startDate.format('YYYY-MM') == this.rightCalendar.month.format('YYYY-MM')) + && + (this.endDate.format('YYYY-MM') == this.leftCalendar.month.format('YYYY-MM') || this.endDate.format('YYYY-MM') == this.rightCalendar.month.format('YYYY-MM')) + ) { + return; + } + + this.leftCalendar.month = this.startDate.clone().date(2); + if (!this.linkedCalendars && (this.endDate.month() != this.startDate.month() || this.endDate.year() != this.startDate.year())) { + this.rightCalendar.month = this.endDate.clone().date(2); + } else { + this.rightCalendar.month = this.startDate.clone().date(2).add(1, 'month'); + } + + } else { + if (this.leftCalendar.month.format('YYYY-MM') != this.startDate.format('YYYY-MM') && this.rightCalendar.month.format('YYYY-MM') != this.startDate.format('YYYY-MM')) { + this.leftCalendar.month = this.startDate.clone().date(2); + this.rightCalendar.month = this.startDate.clone().date(2).add(1, 'month'); + } + } + if (this.maxDate && this.linkedCalendars && !this.singleDatePicker && this.rightCalendar.month > this.maxDate) { + this.rightCalendar.month = this.maxDate.clone().date(2); + this.leftCalendar.month = this.maxDate.clone().date(2).subtract(1, 'month'); + } + }, + + updateCalendars: function() { + + if (this.timePicker) { + var hour, minute, second; + if (this.endDate) { + hour = parseInt(this.container.find('.left .hourselect').val(), 10); + minute = parseInt(this.container.find('.left .minuteselect').val(), 10); + if (isNaN(minute)) { + minute = parseInt(this.container.find('.left .minuteselect option:last').val(), 10); + } + second = this.timePickerSeconds ? parseInt(this.container.find('.left .secondselect').val(), 10) : 0; + if (!this.timePicker24Hour) { + var ampm = this.container.find('.left .ampmselect').val(); + if (ampm === 'PM' && hour < 12) + hour += 12; + if (ampm === 'AM' && hour === 12) + hour = 0; + } + } else { + hour = parseInt(this.container.find('.right .hourselect').val(), 10); + minute = parseInt(this.container.find('.right .minuteselect').val(), 10); + if (isNaN(minute)) { + minute = parseInt(this.container.find('.right .minuteselect option:last').val(), 10); + } + second = this.timePickerSeconds ? parseInt(this.container.find('.right .secondselect').val(), 10) : 0; + if (!this.timePicker24Hour) { + var ampm = this.container.find('.right .ampmselect').val(); + if (ampm === 'PM' && hour < 12) + hour += 12; + if (ampm === 'AM' && hour === 12) + hour = 0; + } + } + this.leftCalendar.month.hour(hour).minute(minute).second(second); + this.rightCalendar.month.hour(hour).minute(minute).second(second); + } + + this.renderCalendar('left'); + this.renderCalendar('right'); + + //highlight any predefined range matching the current start and end dates + this.container.find('.ranges li').removeClass('active'); + if (this.endDate == null) return; + + this.calculateChosenLabel(); + }, + + renderCalendar: function(side) { + + // + // Build the matrix of dates that will populate the calendar + // + + var calendar = side == 'left' ? this.leftCalendar : this.rightCalendar; + var month = calendar.month.month(); + var year = calendar.month.year(); + var hour = calendar.month.hour(); + var minute = calendar.month.minute(); + var second = calendar.month.second(); + var daysInMonth = moment([year, month]).daysInMonth(); + var firstDay = moment([year, month, 1]); + var lastDay = moment([year, month, daysInMonth]); + var lastMonth = moment(firstDay).subtract(1, 'month').month(); + var lastYear = moment(firstDay).subtract(1, 'month').year(); + var daysInLastMonth = moment([lastYear, lastMonth]).daysInMonth(); + var dayOfWeek = firstDay.day(); + + //initialize a 6 rows x 7 columns array for the calendar + var calendar = []; + calendar.firstDay = firstDay; + calendar.lastDay = lastDay; + + for (var i = 0; i < 6; i++) { + calendar[i] = []; + } + + //populate the calendar with date objects + var startDay = daysInLastMonth - dayOfWeek + this.locale.firstDay + 1; + if (startDay > daysInLastMonth) + startDay -= 7; + + if (dayOfWeek == this.locale.firstDay) + startDay = daysInLastMonth - 6; + + var curDate = moment([lastYear, lastMonth, startDay, 12, minute, second]); + + var col, row; + for (var i = 0, col = 0, row = 0; i < 42; i++, col++, curDate = moment(curDate).add(24, 'hour')) { + if (i > 0 && col % 7 === 0) { + col = 0; + row++; + } + calendar[row][col] = curDate.clone().hour(hour).minute(minute).second(second); + curDate.hour(12); + + if (this.minDate && calendar[row][col].format('YYYY-MM-DD') == this.minDate.format('YYYY-MM-DD') && calendar[row][col].isBefore(this.minDate) && side == 'left') { + calendar[row][col] = this.minDate.clone(); + } + + if (this.maxDate && calendar[row][col].format('YYYY-MM-DD') == this.maxDate.format('YYYY-MM-DD') && calendar[row][col].isAfter(this.maxDate) && side == 'right') { + calendar[row][col] = this.maxDate.clone(); + } + + } + + //make the calendar object available to hoverDate/clickDate + if (side == 'left') { + this.leftCalendar.calendar = calendar; + } else { + this.rightCalendar.calendar = calendar; + } + + // + // Display the calendar + // + + var minDate = side == 'left' ? this.minDate : this.startDate; + var maxDate = this.maxDate; + var selected = side == 'left' ? this.startDate : this.endDate; + var arrow = this.locale.direction == 'ltr' ? {left: 'chevron-left', right: 'chevron-right'} : {left: 'chevron-right', right: 'chevron-left'}; + + var html = ''; + html += ''; + html += ''; + + // add empty cell for week number + if (this.showWeekNumbers || this.showISOWeekNumbers) + html += ''; + + if ((!minDate || minDate.isBefore(calendar.firstDay)) && (!this.linkedCalendars || side == 'left')) { + html += ''; + } else { + html += ''; + } + + var dateHtml = this.locale.monthNames[calendar[1][1].month()] + calendar[1][1].format(" YYYY"); + + if (this.showDropdowns) { + var currentMonth = calendar[1][1].month(); + var currentYear = calendar[1][1].year(); + var maxYear = (maxDate && maxDate.year()) || (this.maxYear); + var minYear = (minDate && minDate.year()) || (this.minYear); + var inMinYear = currentYear == minYear; + var inMaxYear = currentYear == maxYear; + + var monthHtml = '"; + + var yearHtml = ''; + + dateHtml = monthHtml + yearHtml; + } + + html += ''; + if ((!maxDate || maxDate.isAfter(calendar.lastDay)) && (!this.linkedCalendars || side == 'right' || this.singleDatePicker)) { + html += ''; + } else { + html += ''; + } + + html += ''; + html += ''; + + // add week number label + if (this.showWeekNumbers || this.showISOWeekNumbers) + html += ''; + + $.each(this.locale.daysOfWeek, function(index, dayOfWeek) { + html += ''; + }); + + html += ''; + html += ''; + html += ''; + + //adjust maxDate to reflect the maxSpan setting in order to + //grey out end dates beyond the maxSpan + if (this.endDate == null && this.maxSpan) { + var maxLimit = this.startDate.clone().add(this.maxSpan).endOf('day'); + if (!maxDate || maxLimit.isBefore(maxDate)) { + maxDate = maxLimit; + } + } + + for (var row = 0; row < 6; row++) { + html += ''; + + // add week number + if (this.showWeekNumbers) + html += ''; + else if (this.showISOWeekNumbers) + html += ''; + + for (var col = 0; col < 7; col++) { + + var classes = []; + + //highlight today's date + if (calendar[row][col].isSame(new Date(), "day")) + classes.push('today'); + + //highlight weekends + if (calendar[row][col].isoWeekday() > 5) + classes.push('weekend'); + + //grey out the dates in other months displayed at beginning and end of this calendar + if (calendar[row][col].month() != calendar[1][1].month()) + classes.push('off', 'ends'); + + //don't allow selection of dates before the minimum date + if (this.minDate && calendar[row][col].isBefore(this.minDate, 'day')) + classes.push('off', 'disabled'); + + //don't allow selection of dates after the maximum date + if (maxDate && calendar[row][col].isAfter(maxDate, 'day')) + classes.push('off', 'disabled'); + + //don't allow selection of date if a custom function decides it's invalid + if (this.isInvalidDate(calendar[row][col])) + classes.push('off', 'disabled'); + + //highlight the currently selected start date + if (calendar[row][col].format('YYYY-MM-DD') == this.startDate.format('YYYY-MM-DD')) + classes.push('active', 'start-date'); + + //highlight the currently selected end date + if (this.endDate != null && calendar[row][col].format('YYYY-MM-DD') == this.endDate.format('YYYY-MM-DD')) + classes.push('active', 'end-date'); + + //highlight dates in-between the selected dates + if (this.endDate != null && calendar[row][col] > this.startDate && calendar[row][col] < this.endDate) + classes.push('in-range'); + + //apply custom classes for this date + var isCustom = this.isCustomDate(calendar[row][col]); + if (isCustom !== false) { + if (typeof isCustom === 'string') + classes.push(isCustom); + else + Array.prototype.push.apply(classes, isCustom); + } + + var cname = '', disabled = false; + for (var i = 0; i < classes.length; i++) { + cname += classes[i] + ' '; + if (classes[i] == 'disabled') + disabled = true; + } + if (!disabled) + cname += 'available'; + + html += ''; + + } + html += ''; + } + + html += ''; + html += '
' + dateHtml + '
' + this.locale.weekLabel + '' + dayOfWeek + '
' + calendar[row][0].week() + '' + calendar[row][0].isoWeek() + '' + calendar[row][col].date() + '
'; + + this.container.find('.drp-calendar.' + side + ' .calendar-table').html(html); + + }, + + renderTimePicker: function(side) { + + // Don't bother updating the time picker if it's currently disabled + // because an end date hasn't been clicked yet + if (side == 'right' && !this.endDate) return; + + var html, selected, minDate, maxDate = this.maxDate; + + if (this.maxSpan && (!this.maxDate || this.startDate.clone().add(this.maxSpan).isBefore(this.maxDate))) + maxDate = this.startDate.clone().add(this.maxSpan); + + if (side == 'left') { + selected = this.startDate.clone(); + minDate = this.minDate; + } else if (side == 'right') { + selected = this.endDate.clone(); + minDate = this.startDate; + + //Preserve the time already selected + var timeSelector = this.container.find('.drp-calendar.right .calendar-time'); + if (timeSelector.html() != '') { + + selected.hour(!isNaN(selected.hour()) ? selected.hour() : timeSelector.find('.hourselect option:selected').val()); + selected.minute(!isNaN(selected.minute()) ? selected.minute() : timeSelector.find('.minuteselect option:selected').val()); + selected.second(!isNaN(selected.second()) ? selected.second() : timeSelector.find('.secondselect option:selected').val()); + + if (!this.timePicker24Hour) { + var ampm = timeSelector.find('.ampmselect option:selected').val(); + if (ampm === 'PM' && selected.hour() < 12) + selected.hour(selected.hour() + 12); + if (ampm === 'AM' && selected.hour() === 12) + selected.hour(0); + } + + } + + if (selected.isBefore(this.startDate)) + selected = this.startDate.clone(); + + if (maxDate && selected.isAfter(maxDate)) + selected = maxDate.clone(); + + } + + // + // hours + // + + html = ' '; + + // + // minutes + // + + html += ': '; + + // + // seconds + // + + if (this.timePickerSeconds) { + html += ': '; + } + + // + // AM/PM + // + + if (!this.timePicker24Hour) { + html += ''; + } + + this.container.find('.drp-calendar.' + side + ' .calendar-time').html(html); + + }, + + updateFormInputs: function() { + + if (this.singleDatePicker || (this.endDate && (this.startDate.isBefore(this.endDate) || this.startDate.isSame(this.endDate)))) { + this.container.find('button.applyBtn').removeAttr('disabled'); + } else { + this.container.find('button.applyBtn').attr('disabled', 'disabled'); + } + + }, + + move: function() { + var parentOffset = { top: 0, left: 0 }, + containerTop; + var parentRightEdge = $(window).width(); + if (!this.parentEl.is('body')) { + parentOffset = { + top: this.parentEl.offset().top - this.parentEl.scrollTop(), + left: this.parentEl.offset().left - this.parentEl.scrollLeft() + }; + parentRightEdge = this.parentEl[0].clientWidth + this.parentEl.offset().left; + } + + if (this.drops == 'up') + containerTop = this.element.offset().top - this.container.outerHeight() - parentOffset.top; + else + containerTop = this.element.offset().top + this.element.outerHeight() - parentOffset.top; + + // Force the container to it's actual width + this.container.css({ + top: 0, + left: 0, + right: 'auto' + }); + var containerWidth = this.container.outerWidth(); + + this.container[this.drops == 'up' ? 'addClass' : 'removeClass']('drop-up'); + + if (this.opens == 'left') { + var containerRight = parentRightEdge - this.element.offset().left - this.element.outerWidth(); + if (containerWidth + containerRight > $(window).width()) { + this.container.css({ + top: containerTop, + right: 'auto', + left: 9 + }); + } else { + this.container.css({ + top: containerTop, + right: containerRight, + left: 'auto' + }); + } + } else if (this.opens == 'center') { + var containerLeft = this.element.offset().left - parentOffset.left + this.element.outerWidth() / 2 + - containerWidth / 2; + if (containerLeft < 0) { + this.container.css({ + top: containerTop, + right: 'auto', + left: 9 + }); + } else if (containerLeft + containerWidth > $(window).width()) { + this.container.css({ + top: containerTop, + left: 'auto', + right: 0 + }); + } else { + this.container.css({ + top: containerTop, + left: containerLeft, + right: 'auto' + }); + } + } else { + var containerLeft = this.element.offset().left - parentOffset.left; + if (containerLeft + containerWidth > $(window).width()) { + this.container.css({ + top: containerTop, + left: 'auto', + right: 0 + }); + } else { + this.container.css({ + top: containerTop, + left: containerLeft, + right: 'auto' + }); + } + } + }, + + show: function(e) { + if (this.isShowing) return; + + // Create a click proxy that is private to this instance of datepicker, for unbinding + this._outsideClickProxy = $.proxy(function(e) { this.outsideClick(e); }, this); + + // Bind global datepicker mousedown for hiding and + $(document) + .on('mousedown.daterangepicker', this._outsideClickProxy) + // also support mobile devices + .on('touchend.daterangepicker', this._outsideClickProxy) + // also explicitly play nice with Bootstrap dropdowns, which stopPropagation when clicking them + .on('click.daterangepicker', '[data-toggle=dropdown]', this._outsideClickProxy) + // and also close when focus changes to outside the picker (eg. tabbing between controls) + .on('focusin.daterangepicker', this._outsideClickProxy); + + // Reposition the picker if the window is resized while it's open + $(window).on('resize.daterangepicker', $.proxy(function(e) { this.move(e); }, this)); + + this.oldStartDate = this.startDate.clone(); + this.oldEndDate = this.endDate.clone(); + this.previousRightTime = this.endDate.clone(); + + this.updateView(); + this.container.show(); + this.move(); + this.element.trigger('show.daterangepicker', this); + this.isShowing = true; + }, + + hide: function(e) { + if (!this.isShowing) return; + + //incomplete date selection, revert to last values + if (!this.endDate) { + this.startDate = this.oldStartDate.clone(); + this.endDate = this.oldEndDate.clone(); + } + + //if a new date range was selected, invoke the user callback function + if (!this.startDate.isSame(this.oldStartDate) || !this.endDate.isSame(this.oldEndDate)) + this.callback(this.startDate.clone(), this.endDate.clone(), this.chosenLabel); + + //if picker is attached to a text input, update it + this.updateElement(); + + $(document).off('.daterangepicker'); + $(window).off('.daterangepicker'); + this.container.hide(); + this.element.trigger('hide.daterangepicker', this); + this.isShowing = false; + }, + + toggle: function(e) { + if (this.isShowing) { + this.hide(); + } else { + this.show(); + } + }, + + outsideClick: function(e) { + var target = $(e.target); + // if the page is clicked anywhere except within the daterangerpicker/button + // itself then call this.hide() + if ( + // ie modal dialog fix + e.type == "focusin" || + target.closest(this.element).length || + target.closest(this.container).length || + target.closest('.calendar-table').length + ) return; + this.hide(); + this.element.trigger('outsideClick.daterangepicker', this); + }, + + showCalendars: function() { + this.container.addClass('show-calendar'); + this.move(); + this.element.trigger('showCalendar.daterangepicker', this); + }, + + hideCalendars: function() { + this.container.removeClass('show-calendar'); + this.element.trigger('hideCalendar.daterangepicker', this); + }, + + clickRange: function(e) { + var label = e.target.getAttribute('data-range-key'); + this.chosenLabel = label; + if (label == this.locale.customRangeLabel) { + this.showCalendars(); + } else { + var dates = this.ranges[label]; + this.startDate = dates[0]; + this.endDate = dates[1]; + + if (!this.timePicker) { + this.startDate.startOf('day'); + this.endDate.endOf('day'); + } + + if (!this.alwaysShowCalendars) + this.hideCalendars(); + this.clickApply(); + } + }, + + clickPrev: function(e) { + var cal = $(e.target).parents('.drp-calendar'); + if (cal.hasClass('left')) { + this.leftCalendar.month.subtract(1, 'month'); + if (this.linkedCalendars) + this.rightCalendar.month.subtract(1, 'month'); + } else { + this.rightCalendar.month.subtract(1, 'month'); + } + this.updateCalendars(); + }, + + clickNext: function(e) { + var cal = $(e.target).parents('.drp-calendar'); + if (cal.hasClass('left')) { + this.leftCalendar.month.add(1, 'month'); + } else { + this.rightCalendar.month.add(1, 'month'); + if (this.linkedCalendars) + this.leftCalendar.month.add(1, 'month'); + } + this.updateCalendars(); + }, + + hoverDate: function(e) { + + //ignore dates that can't be selected + if (!$(e.target).hasClass('available')) return; + + var title = $(e.target).attr('data-title'); + var row = title.substr(1, 1); + var col = title.substr(3, 1); + var cal = $(e.target).parents('.drp-calendar'); + var date = cal.hasClass('left') ? this.leftCalendar.calendar[row][col] : this.rightCalendar.calendar[row][col]; + + //highlight the dates between the start date and the date being hovered as a potential end date + var leftCalendar = this.leftCalendar; + var rightCalendar = this.rightCalendar; + var startDate = this.startDate; + if (!this.endDate) { + this.container.find('.drp-calendar tbody td').each(function(index, el) { + + //skip week numbers, only look at dates + if ($(el).hasClass('week')) return; + + var title = $(el).attr('data-title'); + var row = title.substr(1, 1); + var col = title.substr(3, 1); + var cal = $(el).parents('.drp-calendar'); + var dt = cal.hasClass('left') ? leftCalendar.calendar[row][col] : rightCalendar.calendar[row][col]; + + if ((dt.isAfter(startDate) && dt.isBefore(date)) || dt.isSame(date, 'day')) { + $(el).addClass('in-range'); + } else { + $(el).removeClass('in-range'); + } + + }); + } + + }, + + clickDate: function(e) { + + if (!$(e.target).hasClass('available')) return; + + var title = $(e.target).attr('data-title'); + var row = title.substr(1, 1); + var col = title.substr(3, 1); + var cal = $(e.target).parents('.drp-calendar'); + var date = cal.hasClass('left') ? this.leftCalendar.calendar[row][col] : this.rightCalendar.calendar[row][col]; + + // + // this function needs to do a few things: + // * alternate between selecting a start and end date for the range, + // * if the time picker is enabled, apply the hour/minute/second from the select boxes to the clicked date + // * if autoapply is enabled, and an end date was chosen, apply the selection + // * if single date picker mode, and time picker isn't enabled, apply the selection immediately + // * if one of the inputs above the calendars was focused, cancel that manual input + // + + if (this.endDate || date.isBefore(this.startDate, 'day')) { //picking start + if (this.timePicker) { + var hour = parseInt(this.container.find('.left .hourselect').val(), 10); + if (!this.timePicker24Hour) { + var ampm = this.container.find('.left .ampmselect').val(); + if (ampm === 'PM' && hour < 12) + hour += 12; + if (ampm === 'AM' && hour === 12) + hour = 0; + } + var minute = parseInt(this.container.find('.left .minuteselect').val(), 10); + if (isNaN(minute)) { + minute = parseInt(this.container.find('.left .minuteselect option:last').val(), 10); + } + var second = this.timePickerSeconds ? parseInt(this.container.find('.left .secondselect').val(), 10) : 0; + date = date.clone().hour(hour).minute(minute).second(second); + } + this.endDate = null; + this.setStartDate(date.clone()); + } else if (!this.endDate && date.isBefore(this.startDate)) { + //special case: clicking the same date for start/end, + //but the time of the end date is before the start date + this.setEndDate(this.startDate.clone()); + } else { // picking end + if (this.timePicker) { + var hour = parseInt(this.container.find('.right .hourselect').val(), 10); + if (!this.timePicker24Hour) { + var ampm = this.container.find('.right .ampmselect').val(); + if (ampm === 'PM' && hour < 12) + hour += 12; + if (ampm === 'AM' && hour === 12) + hour = 0; + } + var minute = parseInt(this.container.find('.right .minuteselect').val(), 10); + if (isNaN(minute)) { + minute = parseInt(this.container.find('.right .minuteselect option:last').val(), 10); + } + var second = this.timePickerSeconds ? parseInt(this.container.find('.right .secondselect').val(), 10) : 0; + date = date.clone().hour(hour).minute(minute).second(second); + } + this.setEndDate(date.clone()); + if (this.autoApply) { + this.calculateChosenLabel(); + this.clickApply(); + } + } + + if (this.singleDatePicker) { + this.setEndDate(this.startDate); + if (!this.timePicker) + this.clickApply(); + } + + this.updateView(); + + //This is to cancel the blur event handler if the mouse was in one of the inputs + e.stopPropagation(); + + }, + + calculateChosenLabel: function () { + var customRange = true; + var i = 0; + for (var range in this.ranges) { + if (this.timePicker) { + var format = this.timePickerSeconds ? "YYYY-MM-DD HH:mm:ss" : "YYYY-MM-DD HH:mm"; + //ignore times when comparing dates if time picker seconds is not enabled + if (this.startDate.format(format) == this.ranges[range][0].format(format) && this.endDate.format(format) == this.ranges[range][1].format(format)) { + customRange = false; + this.chosenLabel = this.container.find('.ranges li:eq(' + i + ')').addClass('active').attr('data-range-key'); + break; + } + } else { + //ignore times when comparing dates if time picker is not enabled + if (this.startDate.format('YYYY-MM-DD') == this.ranges[range][0].format('YYYY-MM-DD') && this.endDate.format('YYYY-MM-DD') == this.ranges[range][1].format('YYYY-MM-DD')) { + customRange = false; + this.chosenLabel = this.container.find('.ranges li:eq(' + i + ')').addClass('active').attr('data-range-key'); + break; + } + } + i++; + } + if (customRange) { + if (this.showCustomRangeLabel) { + this.chosenLabel = this.container.find('.ranges li:last').addClass('active').attr('data-range-key'); + } else { + this.chosenLabel = null; + } + this.showCalendars(); + } + }, + + clickApply: function(e) { + this.hide(); + this.element.trigger('apply.daterangepicker', this); + }, + + clickCancel: function(e) { + this.startDate = this.oldStartDate; + this.endDate = this.oldEndDate; + this.hide(); + this.element.trigger('cancel.daterangepicker', this); + }, + + monthOrYearChanged: function(e) { + var isLeft = $(e.target).closest('.drp-calendar').hasClass('left'), + leftOrRight = isLeft ? 'left' : 'right', + cal = this.container.find('.drp-calendar.'+leftOrRight); + + // Month must be Number for new moment versions + var month = parseInt(cal.find('.monthselect').val(), 10); + var year = cal.find('.yearselect').val(); + + if (!isLeft) { + if (year < this.startDate.year() || (year == this.startDate.year() && month < this.startDate.month())) { + month = this.startDate.month(); + year = this.startDate.year(); + } + } + + if (this.minDate) { + if (year < this.minDate.year() || (year == this.minDate.year() && month < this.minDate.month())) { + month = this.minDate.month(); + year = this.minDate.year(); + } + } + + if (this.maxDate) { + if (year > this.maxDate.year() || (year == this.maxDate.year() && month > this.maxDate.month())) { + month = this.maxDate.month(); + year = this.maxDate.year(); + } + } + + if (isLeft) { + this.leftCalendar.month.month(month).year(year); + if (this.linkedCalendars) + this.rightCalendar.month = this.leftCalendar.month.clone().add(1, 'month'); + } else { + this.rightCalendar.month.month(month).year(year); + if (this.linkedCalendars) + this.leftCalendar.month = this.rightCalendar.month.clone().subtract(1, 'month'); + } + this.updateCalendars(); + }, + + timeChanged: function(e) { + + var cal = $(e.target).closest('.drp-calendar'), + isLeft = cal.hasClass('left'); + + var hour = parseInt(cal.find('.hourselect').val(), 10); + var minute = parseInt(cal.find('.minuteselect').val(), 10); + if (isNaN(minute)) { + minute = parseInt(cal.find('.minuteselect option:last').val(), 10); + } + var second = this.timePickerSeconds ? parseInt(cal.find('.secondselect').val(), 10) : 0; + + if (!this.timePicker24Hour) { + var ampm = cal.find('.ampmselect').val(); + if (ampm === 'PM' && hour < 12) + hour += 12; + if (ampm === 'AM' && hour === 12) + hour = 0; + } + + if (isLeft) { + var start = this.startDate.clone(); + start.hour(hour); + start.minute(minute); + start.second(second); + this.setStartDate(start); + if (this.singleDatePicker) { + this.endDate = this.startDate.clone(); + } else if (this.endDate && this.endDate.format('YYYY-MM-DD') == start.format('YYYY-MM-DD') && this.endDate.isBefore(start)) { + this.setEndDate(start.clone()); + } + } else if (this.endDate) { + var end = this.endDate.clone(); + end.hour(hour); + end.minute(minute); + end.second(second); + this.setEndDate(end); + } + + //update the calendars so all clickable dates reflect the new time component + this.updateCalendars(); + + //update the form inputs above the calendars with the new time + this.updateFormInputs(); + + //re-render the time pickers because changing one selection can affect what's enabled in another + this.renderTimePicker('left'); + this.renderTimePicker('right'); + + }, + + elementChanged: function() { + if (!this.element.is('input')) return; + if (!this.element.val().length) return; + + var dateString = this.element.val().split(this.locale.separator), + start = null, + end = null; + + if (dateString.length === 2) { + start = moment(dateString[0], this.locale.format); + end = moment(dateString[1], this.locale.format); + } + + if (this.singleDatePicker || start === null || end === null) { + start = moment(this.element.val(), this.locale.format); + end = start; + } + + if (!start.isValid() || !end.isValid()) return; + + this.setStartDate(start); + this.setEndDate(end); + this.updateView(); + }, + + keydown: function(e) { + //hide on tab or enter + if ((e.keyCode === 9) || (e.keyCode === 13)) { + this.hide(); + } + + //hide on esc and prevent propagation + if (e.keyCode === 27) { + e.preventDefault(); + e.stopPropagation(); + + this.hide(); + } + }, + + updateElement: function() { + if (this.element.is('input') && this.autoUpdateInput) { + var newValue = this.startDate.format(this.locale.format); + if (!this.singleDatePicker) { + newValue += this.locale.separator + this.endDate.format(this.locale.format); + } + if (newValue !== this.element.val()) { + this.element.val(newValue).trigger('change'); + } + } + }, + + remove: function() { + this.container.remove(); + this.element.off('.daterangepicker'); + this.element.removeData(); + } + + }; + + $.fn.daterangepicker = function(options, callback) { + var implementOptions = $.extend(true, {}, $.fn.daterangepicker.defaultOptions, options); + this.each(function() { + var el = $(this); + if (el.data('daterangepicker')) + el.data('daterangepicker').remove(); + el.data('daterangepicker', new DateRangePicker(el, implementOptions, callback)); + }); + return this; + }; + + return DateRangePicker; + +})); diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/css/flag-icon.min.css b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/css/flag-icon.min.css new file mode 100644 index 0000000000000000000000000000000000000000..72bd39a3aa63f49212d61ffbd3c013c855bab6b7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/css/flag-icon.min.css @@ -0,0 +1 @@ +.flag-icon-background{background-size:contain;background-position:50%;background-repeat:no-repeat}.flag-icon{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.flag-icon:before{content:"\00a0"}.flag-icon.flag-icon-squared{width:1em}.flag-icon-ad{background-image:url(../flags/4x3/ad.svg)}.flag-icon-ad.flag-icon-squared{background-image:url(../flags/1x1/ad.svg)}.flag-icon-ae{background-image:url(../flags/4x3/ae.svg)}.flag-icon-ae.flag-icon-squared{background-image:url(../flags/1x1/ae.svg)}.flag-icon-af{background-image:url(../flags/4x3/af.svg)}.flag-icon-af.flag-icon-squared{background-image:url(../flags/1x1/af.svg)}.flag-icon-ag{background-image:url(../flags/4x3/ag.svg)}.flag-icon-ag.flag-icon-squared{background-image:url(../flags/1x1/ag.svg)}.flag-icon-ai{background-image:url(../flags/4x3/ai.svg)}.flag-icon-ai.flag-icon-squared{background-image:url(../flags/1x1/ai.svg)}.flag-icon-al{background-image:url(../flags/4x3/al.svg)}.flag-icon-al.flag-icon-squared{background-image:url(../flags/1x1/al.svg)}.flag-icon-am{background-image:url(../flags/4x3/am.svg)}.flag-icon-am.flag-icon-squared{background-image:url(../flags/1x1/am.svg)}.flag-icon-ao{background-image:url(../flags/4x3/ao.svg)}.flag-icon-ao.flag-icon-squared{background-image:url(../flags/1x1/ao.svg)}.flag-icon-aq{background-image:url(../flags/4x3/aq.svg)}.flag-icon-aq.flag-icon-squared{background-image:url(../flags/1x1/aq.svg)}.flag-icon-ar{background-image:url(../flags/4x3/ar.svg)}.flag-icon-ar.flag-icon-squared{background-image:url(../flags/1x1/ar.svg)}.flag-icon-as{background-image:url(../flags/4x3/as.svg)}.flag-icon-as.flag-icon-squared{background-image:url(../flags/1x1/as.svg)}.flag-icon-at{background-image:url(../flags/4x3/at.svg)}.flag-icon-at.flag-icon-squared{background-image:url(../flags/1x1/at.svg)}.flag-icon-au{background-image:url(../flags/4x3/au.svg)}.flag-icon-au.flag-icon-squared{background-image:url(../flags/1x1/au.svg)}.flag-icon-aw{background-image:url(../flags/4x3/aw.svg)}.flag-icon-aw.flag-icon-squared{background-image:url(../flags/1x1/aw.svg)}.flag-icon-ax{background-image:url(../flags/4x3/ax.svg)}.flag-icon-ax.flag-icon-squared{background-image:url(../flags/1x1/ax.svg)}.flag-icon-az{background-image:url(../flags/4x3/az.svg)}.flag-icon-az.flag-icon-squared{background-image:url(../flags/1x1/az.svg)}.flag-icon-ba{background-image:url(../flags/4x3/ba.svg)}.flag-icon-ba.flag-icon-squared{background-image:url(../flags/1x1/ba.svg)}.flag-icon-bb{background-image:url(../flags/4x3/bb.svg)}.flag-icon-bb.flag-icon-squared{background-image:url(../flags/1x1/bb.svg)}.flag-icon-bd{background-image:url(../flags/4x3/bd.svg)}.flag-icon-bd.flag-icon-squared{background-image:url(../flags/1x1/bd.svg)}.flag-icon-be{background-image:url(../flags/4x3/be.svg)}.flag-icon-be.flag-icon-squared{background-image:url(../flags/1x1/be.svg)}.flag-icon-bf{background-image:url(../flags/4x3/bf.svg)}.flag-icon-bf.flag-icon-squared{background-image:url(../flags/1x1/bf.svg)}.flag-icon-bg{background-image:url(../flags/4x3/bg.svg)}.flag-icon-bg.flag-icon-squared{background-image:url(../flags/1x1/bg.svg)}.flag-icon-bh{background-image:url(../flags/4x3/bh.svg)}.flag-icon-bh.flag-icon-squared{background-image:url(../flags/1x1/bh.svg)}.flag-icon-bi{background-image:url(../flags/4x3/bi.svg)}.flag-icon-bi.flag-icon-squared{background-image:url(../flags/1x1/bi.svg)}.flag-icon-bj{background-image:url(../flags/4x3/bj.svg)}.flag-icon-bj.flag-icon-squared{background-image:url(../flags/1x1/bj.svg)}.flag-icon-bl{background-image:url(../flags/4x3/bl.svg)}.flag-icon-bl.flag-icon-squared{background-image:url(../flags/1x1/bl.svg)}.flag-icon-bm{background-image:url(../flags/4x3/bm.svg)}.flag-icon-bm.flag-icon-squared{background-image:url(../flags/1x1/bm.svg)}.flag-icon-bn{background-image:url(../flags/4x3/bn.svg)}.flag-icon-bn.flag-icon-squared{background-image:url(../flags/1x1/bn.svg)}.flag-icon-bo{background-image:url(../flags/4x3/bo.svg)}.flag-icon-bo.flag-icon-squared{background-image:url(../flags/1x1/bo.svg)}.flag-icon-bq{background-image:url(../flags/4x3/bq.svg)}.flag-icon-bq.flag-icon-squared{background-image:url(../flags/1x1/bq.svg)}.flag-icon-br{background-image:url(../flags/4x3/br.svg)}.flag-icon-br.flag-icon-squared{background-image:url(../flags/1x1/br.svg)}.flag-icon-bs{background-image:url(../flags/4x3/bs.svg)}.flag-icon-bs.flag-icon-squared{background-image:url(../flags/1x1/bs.svg)}.flag-icon-bt{background-image:url(../flags/4x3/bt.svg)}.flag-icon-bt.flag-icon-squared{background-image:url(../flags/1x1/bt.svg)}.flag-icon-bv{background-image:url(../flags/4x3/bv.svg)}.flag-icon-bv.flag-icon-squared{background-image:url(../flags/1x1/bv.svg)}.flag-icon-bw{background-image:url(../flags/4x3/bw.svg)}.flag-icon-bw.flag-icon-squared{background-image:url(../flags/1x1/bw.svg)}.flag-icon-by{background-image:url(../flags/4x3/by.svg)}.flag-icon-by.flag-icon-squared{background-image:url(../flags/1x1/by.svg)}.flag-icon-bz{background-image:url(../flags/4x3/bz.svg)}.flag-icon-bz.flag-icon-squared{background-image:url(../flags/1x1/bz.svg)}.flag-icon-ca{background-image:url(../flags/4x3/ca.svg)}.flag-icon-ca.flag-icon-squared{background-image:url(../flags/1x1/ca.svg)}.flag-icon-cc{background-image:url(../flags/4x3/cc.svg)}.flag-icon-cc.flag-icon-squared{background-image:url(../flags/1x1/cc.svg)}.flag-icon-cd{background-image:url(../flags/4x3/cd.svg)}.flag-icon-cd.flag-icon-squared{background-image:url(../flags/1x1/cd.svg)}.flag-icon-cf{background-image:url(../flags/4x3/cf.svg)}.flag-icon-cf.flag-icon-squared{background-image:url(../flags/1x1/cf.svg)}.flag-icon-cg{background-image:url(../flags/4x3/cg.svg)}.flag-icon-cg.flag-icon-squared{background-image:url(../flags/1x1/cg.svg)}.flag-icon-ch{background-image:url(../flags/4x3/ch.svg)}.flag-icon-ch.flag-icon-squared{background-image:url(../flags/1x1/ch.svg)}.flag-icon-ci{background-image:url(../flags/4x3/ci.svg)}.flag-icon-ci.flag-icon-squared{background-image:url(../flags/1x1/ci.svg)}.flag-icon-ck{background-image:url(../flags/4x3/ck.svg)}.flag-icon-ck.flag-icon-squared{background-image:url(../flags/1x1/ck.svg)}.flag-icon-cl{background-image:url(../flags/4x3/cl.svg)}.flag-icon-cl.flag-icon-squared{background-image:url(../flags/1x1/cl.svg)}.flag-icon-cm{background-image:url(../flags/4x3/cm.svg)}.flag-icon-cm.flag-icon-squared{background-image:url(../flags/1x1/cm.svg)}.flag-icon-cn{background-image:url(../flags/4x3/cn.svg)}.flag-icon-cn.flag-icon-squared{background-image:url(../flags/1x1/cn.svg)}.flag-icon-co{background-image:url(../flags/4x3/co.svg)}.flag-icon-co.flag-icon-squared{background-image:url(../flags/1x1/co.svg)}.flag-icon-cr{background-image:url(../flags/4x3/cr.svg)}.flag-icon-cr.flag-icon-squared{background-image:url(../flags/1x1/cr.svg)}.flag-icon-cu{background-image:url(../flags/4x3/cu.svg)}.flag-icon-cu.flag-icon-squared{background-image:url(../flags/1x1/cu.svg)}.flag-icon-cv{background-image:url(../flags/4x3/cv.svg)}.flag-icon-cv.flag-icon-squared{background-image:url(../flags/1x1/cv.svg)}.flag-icon-cw{background-image:url(../flags/4x3/cw.svg)}.flag-icon-cw.flag-icon-squared{background-image:url(../flags/1x1/cw.svg)}.flag-icon-cx{background-image:url(../flags/4x3/cx.svg)}.flag-icon-cx.flag-icon-squared{background-image:url(../flags/1x1/cx.svg)}.flag-icon-cy{background-image:url(../flags/4x3/cy.svg)}.flag-icon-cy.flag-icon-squared{background-image:url(../flags/1x1/cy.svg)}.flag-icon-cz{background-image:url(../flags/4x3/cz.svg)}.flag-icon-cz.flag-icon-squared{background-image:url(../flags/1x1/cz.svg)}.flag-icon-de{background-image:url(../flags/4x3/de.svg)}.flag-icon-de.flag-icon-squared{background-image:url(../flags/1x1/de.svg)}.flag-icon-dj{background-image:url(../flags/4x3/dj.svg)}.flag-icon-dj.flag-icon-squared{background-image:url(../flags/1x1/dj.svg)}.flag-icon-dk{background-image:url(../flags/4x3/dk.svg)}.flag-icon-dk.flag-icon-squared{background-image:url(../flags/1x1/dk.svg)}.flag-icon-dm{background-image:url(../flags/4x3/dm.svg)}.flag-icon-dm.flag-icon-squared{background-image:url(../flags/1x1/dm.svg)}.flag-icon-do{background-image:url(../flags/4x3/do.svg)}.flag-icon-do.flag-icon-squared{background-image:url(../flags/1x1/do.svg)}.flag-icon-dz{background-image:url(../flags/4x3/dz.svg)}.flag-icon-dz.flag-icon-squared{background-image:url(../flags/1x1/dz.svg)}.flag-icon-ec{background-image:url(../flags/4x3/ec.svg)}.flag-icon-ec.flag-icon-squared{background-image:url(../flags/1x1/ec.svg)}.flag-icon-ee{background-image:url(../flags/4x3/ee.svg)}.flag-icon-ee.flag-icon-squared{background-image:url(../flags/1x1/ee.svg)}.flag-icon-eg{background-image:url(../flags/4x3/eg.svg)}.flag-icon-eg.flag-icon-squared{background-image:url(../flags/1x1/eg.svg)}.flag-icon-eh{background-image:url(../flags/4x3/eh.svg)}.flag-icon-eh.flag-icon-squared{background-image:url(../flags/1x1/eh.svg)}.flag-icon-er{background-image:url(../flags/4x3/er.svg)}.flag-icon-er.flag-icon-squared{background-image:url(../flags/1x1/er.svg)}.flag-icon-es{background-image:url(../flags/4x3/es.svg)}.flag-icon-es.flag-icon-squared{background-image:url(../flags/1x1/es.svg)}.flag-icon-et{background-image:url(../flags/4x3/et.svg)}.flag-icon-et.flag-icon-squared{background-image:url(../flags/1x1/et.svg)}.flag-icon-fi{background-image:url(../flags/4x3/fi.svg)}.flag-icon-fi.flag-icon-squared{background-image:url(../flags/1x1/fi.svg)}.flag-icon-fj{background-image:url(../flags/4x3/fj.svg)}.flag-icon-fj.flag-icon-squared{background-image:url(../flags/1x1/fj.svg)}.flag-icon-fk{background-image:url(../flags/4x3/fk.svg)}.flag-icon-fk.flag-icon-squared{background-image:url(../flags/1x1/fk.svg)}.flag-icon-fm{background-image:url(../flags/4x3/fm.svg)}.flag-icon-fm.flag-icon-squared{background-image:url(../flags/1x1/fm.svg)}.flag-icon-fo{background-image:url(../flags/4x3/fo.svg)}.flag-icon-fo.flag-icon-squared{background-image:url(../flags/1x1/fo.svg)}.flag-icon-fr{background-image:url(../flags/4x3/fr.svg)}.flag-icon-fr.flag-icon-squared{background-image:url(../flags/1x1/fr.svg)}.flag-icon-ga{background-image:url(../flags/4x3/ga.svg)}.flag-icon-ga.flag-icon-squared{background-image:url(../flags/1x1/ga.svg)}.flag-icon-gb{background-image:url(../flags/4x3/gb.svg)}.flag-icon-gb.flag-icon-squared{background-image:url(../flags/1x1/gb.svg)}.flag-icon-gd{background-image:url(../flags/4x3/gd.svg)}.flag-icon-gd.flag-icon-squared{background-image:url(../flags/1x1/gd.svg)}.flag-icon-ge{background-image:url(../flags/4x3/ge.svg)}.flag-icon-ge.flag-icon-squared{background-image:url(../flags/1x1/ge.svg)}.flag-icon-gf{background-image:url(../flags/4x3/gf.svg)}.flag-icon-gf.flag-icon-squared{background-image:url(../flags/1x1/gf.svg)}.flag-icon-gg{background-image:url(../flags/4x3/gg.svg)}.flag-icon-gg.flag-icon-squared{background-image:url(../flags/1x1/gg.svg)}.flag-icon-gh{background-image:url(../flags/4x3/gh.svg)}.flag-icon-gh.flag-icon-squared{background-image:url(../flags/1x1/gh.svg)}.flag-icon-gi{background-image:url(../flags/4x3/gi.svg)}.flag-icon-gi.flag-icon-squared{background-image:url(../flags/1x1/gi.svg)}.flag-icon-gl{background-image:url(../flags/4x3/gl.svg)}.flag-icon-gl.flag-icon-squared{background-image:url(../flags/1x1/gl.svg)}.flag-icon-gm{background-image:url(../flags/4x3/gm.svg)}.flag-icon-gm.flag-icon-squared{background-image:url(../flags/1x1/gm.svg)}.flag-icon-gn{background-image:url(../flags/4x3/gn.svg)}.flag-icon-gn.flag-icon-squared{background-image:url(../flags/1x1/gn.svg)}.flag-icon-gp{background-image:url(../flags/4x3/gp.svg)}.flag-icon-gp.flag-icon-squared{background-image:url(../flags/1x1/gp.svg)}.flag-icon-gq{background-image:url(../flags/4x3/gq.svg)}.flag-icon-gq.flag-icon-squared{background-image:url(../flags/1x1/gq.svg)}.flag-icon-gr{background-image:url(../flags/4x3/gr.svg)}.flag-icon-gr.flag-icon-squared{background-image:url(../flags/1x1/gr.svg)}.flag-icon-gs{background-image:url(../flags/4x3/gs.svg)}.flag-icon-gs.flag-icon-squared{background-image:url(../flags/1x1/gs.svg)}.flag-icon-gt{background-image:url(../flags/4x3/gt.svg)}.flag-icon-gt.flag-icon-squared{background-image:url(../flags/1x1/gt.svg)}.flag-icon-gu{background-image:url(../flags/4x3/gu.svg)}.flag-icon-gu.flag-icon-squared{background-image:url(../flags/1x1/gu.svg)}.flag-icon-gw{background-image:url(../flags/4x3/gw.svg)}.flag-icon-gw.flag-icon-squared{background-image:url(../flags/1x1/gw.svg)}.flag-icon-gy{background-image:url(../flags/4x3/gy.svg)}.flag-icon-gy.flag-icon-squared{background-image:url(../flags/1x1/gy.svg)}.flag-icon-hk{background-image:url(../flags/4x3/hk.svg)}.flag-icon-hk.flag-icon-squared{background-image:url(../flags/1x1/hk.svg)}.flag-icon-hm{background-image:url(../flags/4x3/hm.svg)}.flag-icon-hm.flag-icon-squared{background-image:url(../flags/1x1/hm.svg)}.flag-icon-hn{background-image:url(../flags/4x3/hn.svg)}.flag-icon-hn.flag-icon-squared{background-image:url(../flags/1x1/hn.svg)}.flag-icon-hr{background-image:url(../flags/4x3/hr.svg)}.flag-icon-hr.flag-icon-squared{background-image:url(../flags/1x1/hr.svg)}.flag-icon-ht{background-image:url(../flags/4x3/ht.svg)}.flag-icon-ht.flag-icon-squared{background-image:url(../flags/1x1/ht.svg)}.flag-icon-hu{background-image:url(../flags/4x3/hu.svg)}.flag-icon-hu.flag-icon-squared{background-image:url(../flags/1x1/hu.svg)}.flag-icon-id{background-image:url(../flags/4x3/id.svg)}.flag-icon-id.flag-icon-squared{background-image:url(../flags/1x1/id.svg)}.flag-icon-ie{background-image:url(../flags/4x3/ie.svg)}.flag-icon-ie.flag-icon-squared{background-image:url(../flags/1x1/ie.svg)}.flag-icon-il{background-image:url(../flags/4x3/il.svg)}.flag-icon-il.flag-icon-squared{background-image:url(../flags/1x1/il.svg)}.flag-icon-im{background-image:url(../flags/4x3/im.svg)}.flag-icon-im.flag-icon-squared{background-image:url(../flags/1x1/im.svg)}.flag-icon-in{background-image:url(../flags/4x3/in.svg)}.flag-icon-in.flag-icon-squared{background-image:url(../flags/1x1/in.svg)}.flag-icon-io{background-image:url(../flags/4x3/io.svg)}.flag-icon-io.flag-icon-squared{background-image:url(../flags/1x1/io.svg)}.flag-icon-iq{background-image:url(../flags/4x3/iq.svg)}.flag-icon-iq.flag-icon-squared{background-image:url(../flags/1x1/iq.svg)}.flag-icon-ir{background-image:url(../flags/4x3/ir.svg)}.flag-icon-ir.flag-icon-squared{background-image:url(../flags/1x1/ir.svg)}.flag-icon-is{background-image:url(../flags/4x3/is.svg)}.flag-icon-is.flag-icon-squared{background-image:url(../flags/1x1/is.svg)}.flag-icon-it{background-image:url(../flags/4x3/it.svg)}.flag-icon-it.flag-icon-squared{background-image:url(../flags/1x1/it.svg)}.flag-icon-je{background-image:url(../flags/4x3/je.svg)}.flag-icon-je.flag-icon-squared{background-image:url(../flags/1x1/je.svg)}.flag-icon-jm{background-image:url(../flags/4x3/jm.svg)}.flag-icon-jm.flag-icon-squared{background-image:url(../flags/1x1/jm.svg)}.flag-icon-jo{background-image:url(../flags/4x3/jo.svg)}.flag-icon-jo.flag-icon-squared{background-image:url(../flags/1x1/jo.svg)}.flag-icon-jp{background-image:url(../flags/4x3/jp.svg)}.flag-icon-jp.flag-icon-squared{background-image:url(../flags/1x1/jp.svg)}.flag-icon-ke{background-image:url(../flags/4x3/ke.svg)}.flag-icon-ke.flag-icon-squared{background-image:url(../flags/1x1/ke.svg)}.flag-icon-kg{background-image:url(../flags/4x3/kg.svg)}.flag-icon-kg.flag-icon-squared{background-image:url(../flags/1x1/kg.svg)}.flag-icon-kh{background-image:url(../flags/4x3/kh.svg)}.flag-icon-kh.flag-icon-squared{background-image:url(../flags/1x1/kh.svg)}.flag-icon-ki{background-image:url(../flags/4x3/ki.svg)}.flag-icon-ki.flag-icon-squared{background-image:url(../flags/1x1/ki.svg)}.flag-icon-km{background-image:url(../flags/4x3/km.svg)}.flag-icon-km.flag-icon-squared{background-image:url(../flags/1x1/km.svg)}.flag-icon-kn{background-image:url(../flags/4x3/kn.svg)}.flag-icon-kn.flag-icon-squared{background-image:url(../flags/1x1/kn.svg)}.flag-icon-kp{background-image:url(../flags/4x3/kp.svg)}.flag-icon-kp.flag-icon-squared{background-image:url(../flags/1x1/kp.svg)}.flag-icon-kr{background-image:url(../flags/4x3/kr.svg)}.flag-icon-kr.flag-icon-squared{background-image:url(../flags/1x1/kr.svg)}.flag-icon-kw{background-image:url(../flags/4x3/kw.svg)}.flag-icon-kw.flag-icon-squared{background-image:url(../flags/1x1/kw.svg)}.flag-icon-ky{background-image:url(../flags/4x3/ky.svg)}.flag-icon-ky.flag-icon-squared{background-image:url(../flags/1x1/ky.svg)}.flag-icon-kz{background-image:url(../flags/4x3/kz.svg)}.flag-icon-kz.flag-icon-squared{background-image:url(../flags/1x1/kz.svg)}.flag-icon-la{background-image:url(../flags/4x3/la.svg)}.flag-icon-la.flag-icon-squared{background-image:url(../flags/1x1/la.svg)}.flag-icon-lb{background-image:url(../flags/4x3/lb.svg)}.flag-icon-lb.flag-icon-squared{background-image:url(../flags/1x1/lb.svg)}.flag-icon-lc{background-image:url(../flags/4x3/lc.svg)}.flag-icon-lc.flag-icon-squared{background-image:url(../flags/1x1/lc.svg)}.flag-icon-li{background-image:url(../flags/4x3/li.svg)}.flag-icon-li.flag-icon-squared{background-image:url(../flags/1x1/li.svg)}.flag-icon-lk{background-image:url(../flags/4x3/lk.svg)}.flag-icon-lk.flag-icon-squared{background-image:url(../flags/1x1/lk.svg)}.flag-icon-lr{background-image:url(../flags/4x3/lr.svg)}.flag-icon-lr.flag-icon-squared{background-image:url(../flags/1x1/lr.svg)}.flag-icon-ls{background-image:url(../flags/4x3/ls.svg)}.flag-icon-ls.flag-icon-squared{background-image:url(../flags/1x1/ls.svg)}.flag-icon-lt{background-image:url(../flags/4x3/lt.svg)}.flag-icon-lt.flag-icon-squared{background-image:url(../flags/1x1/lt.svg)}.flag-icon-lu{background-image:url(../flags/4x3/lu.svg)}.flag-icon-lu.flag-icon-squared{background-image:url(../flags/1x1/lu.svg)}.flag-icon-lv{background-image:url(../flags/4x3/lv.svg)}.flag-icon-lv.flag-icon-squared{background-image:url(../flags/1x1/lv.svg)}.flag-icon-ly{background-image:url(../flags/4x3/ly.svg)}.flag-icon-ly.flag-icon-squared{background-image:url(../flags/1x1/ly.svg)}.flag-icon-ma{background-image:url(../flags/4x3/ma.svg)}.flag-icon-ma.flag-icon-squared{background-image:url(../flags/1x1/ma.svg)}.flag-icon-mc{background-image:url(../flags/4x3/mc.svg)}.flag-icon-mc.flag-icon-squared{background-image:url(../flags/1x1/mc.svg)}.flag-icon-md{background-image:url(../flags/4x3/md.svg)}.flag-icon-md.flag-icon-squared{background-image:url(../flags/1x1/md.svg)}.flag-icon-me{background-image:url(../flags/4x3/me.svg)}.flag-icon-me.flag-icon-squared{background-image:url(../flags/1x1/me.svg)}.flag-icon-mf{background-image:url(../flags/4x3/mf.svg)}.flag-icon-mf.flag-icon-squared{background-image:url(../flags/1x1/mf.svg)}.flag-icon-mg{background-image:url(../flags/4x3/mg.svg)}.flag-icon-mg.flag-icon-squared{background-image:url(../flags/1x1/mg.svg)}.flag-icon-mh{background-image:url(../flags/4x3/mh.svg)}.flag-icon-mh.flag-icon-squared{background-image:url(../flags/1x1/mh.svg)}.flag-icon-mk{background-image:url(../flags/4x3/mk.svg)}.flag-icon-mk.flag-icon-squared{background-image:url(../flags/1x1/mk.svg)}.flag-icon-ml{background-image:url(../flags/4x3/ml.svg)}.flag-icon-ml.flag-icon-squared{background-image:url(../flags/1x1/ml.svg)}.flag-icon-mm{background-image:url(../flags/4x3/mm.svg)}.flag-icon-mm.flag-icon-squared{background-image:url(../flags/1x1/mm.svg)}.flag-icon-mn{background-image:url(../flags/4x3/mn.svg)}.flag-icon-mn.flag-icon-squared{background-image:url(../flags/1x1/mn.svg)}.flag-icon-mo{background-image:url(../flags/4x3/mo.svg)}.flag-icon-mo.flag-icon-squared{background-image:url(../flags/1x1/mo.svg)}.flag-icon-mp{background-image:url(../flags/4x3/mp.svg)}.flag-icon-mp.flag-icon-squared{background-image:url(../flags/1x1/mp.svg)}.flag-icon-mq{background-image:url(../flags/4x3/mq.svg)}.flag-icon-mq.flag-icon-squared{background-image:url(../flags/1x1/mq.svg)}.flag-icon-mr{background-image:url(../flags/4x3/mr.svg)}.flag-icon-mr.flag-icon-squared{background-image:url(../flags/1x1/mr.svg)}.flag-icon-ms{background-image:url(../flags/4x3/ms.svg)}.flag-icon-ms.flag-icon-squared{background-image:url(../flags/1x1/ms.svg)}.flag-icon-mt{background-image:url(../flags/4x3/mt.svg)}.flag-icon-mt.flag-icon-squared{background-image:url(../flags/1x1/mt.svg)}.flag-icon-mu{background-image:url(../flags/4x3/mu.svg)}.flag-icon-mu.flag-icon-squared{background-image:url(../flags/1x1/mu.svg)}.flag-icon-mv{background-image:url(../flags/4x3/mv.svg)}.flag-icon-mv.flag-icon-squared{background-image:url(../flags/1x1/mv.svg)}.flag-icon-mw{background-image:url(../flags/4x3/mw.svg)}.flag-icon-mw.flag-icon-squared{background-image:url(../flags/1x1/mw.svg)}.flag-icon-mx{background-image:url(../flags/4x3/mx.svg)}.flag-icon-mx.flag-icon-squared{background-image:url(../flags/1x1/mx.svg)}.flag-icon-my{background-image:url(../flags/4x3/my.svg)}.flag-icon-my.flag-icon-squared{background-image:url(../flags/1x1/my.svg)}.flag-icon-mz{background-image:url(../flags/4x3/mz.svg)}.flag-icon-mz.flag-icon-squared{background-image:url(../flags/1x1/mz.svg)}.flag-icon-na{background-image:url(../flags/4x3/na.svg)}.flag-icon-na.flag-icon-squared{background-image:url(../flags/1x1/na.svg)}.flag-icon-nc{background-image:url(../flags/4x3/nc.svg)}.flag-icon-nc.flag-icon-squared{background-image:url(../flags/1x1/nc.svg)}.flag-icon-ne{background-image:url(../flags/4x3/ne.svg)}.flag-icon-ne.flag-icon-squared{background-image:url(../flags/1x1/ne.svg)}.flag-icon-nf{background-image:url(../flags/4x3/nf.svg)}.flag-icon-nf.flag-icon-squared{background-image:url(../flags/1x1/nf.svg)}.flag-icon-ng{background-image:url(../flags/4x3/ng.svg)}.flag-icon-ng.flag-icon-squared{background-image:url(../flags/1x1/ng.svg)}.flag-icon-ni{background-image:url(../flags/4x3/ni.svg)}.flag-icon-ni.flag-icon-squared{background-image:url(../flags/1x1/ni.svg)}.flag-icon-nl{background-image:url(../flags/4x3/nl.svg)}.flag-icon-nl.flag-icon-squared{background-image:url(../flags/1x1/nl.svg)}.flag-icon-no{background-image:url(../flags/4x3/no.svg)}.flag-icon-no.flag-icon-squared{background-image:url(../flags/1x1/no.svg)}.flag-icon-np{background-image:url(../flags/4x3/np.svg)}.flag-icon-np.flag-icon-squared{background-image:url(../flags/1x1/np.svg)}.flag-icon-nr{background-image:url(../flags/4x3/nr.svg)}.flag-icon-nr.flag-icon-squared{background-image:url(../flags/1x1/nr.svg)}.flag-icon-nu{background-image:url(../flags/4x3/nu.svg)}.flag-icon-nu.flag-icon-squared{background-image:url(../flags/1x1/nu.svg)}.flag-icon-nz{background-image:url(../flags/4x3/nz.svg)}.flag-icon-nz.flag-icon-squared{background-image:url(../flags/1x1/nz.svg)}.flag-icon-om{background-image:url(../flags/4x3/om.svg)}.flag-icon-om.flag-icon-squared{background-image:url(../flags/1x1/om.svg)}.flag-icon-pa{background-image:url(../flags/4x3/pa.svg)}.flag-icon-pa.flag-icon-squared{background-image:url(../flags/1x1/pa.svg)}.flag-icon-pe{background-image:url(../flags/4x3/pe.svg)}.flag-icon-pe.flag-icon-squared{background-image:url(../flags/1x1/pe.svg)}.flag-icon-pf{background-image:url(../flags/4x3/pf.svg)}.flag-icon-pf.flag-icon-squared{background-image:url(../flags/1x1/pf.svg)}.flag-icon-pg{background-image:url(../flags/4x3/pg.svg)}.flag-icon-pg.flag-icon-squared{background-image:url(../flags/1x1/pg.svg)}.flag-icon-ph{background-image:url(../flags/4x3/ph.svg)}.flag-icon-ph.flag-icon-squared{background-image:url(../flags/1x1/ph.svg)}.flag-icon-pk{background-image:url(../flags/4x3/pk.svg)}.flag-icon-pk.flag-icon-squared{background-image:url(../flags/1x1/pk.svg)}.flag-icon-pl{background-image:url(../flags/4x3/pl.svg)}.flag-icon-pl.flag-icon-squared{background-image:url(../flags/1x1/pl.svg)}.flag-icon-pm{background-image:url(../flags/4x3/pm.svg)}.flag-icon-pm.flag-icon-squared{background-image:url(../flags/1x1/pm.svg)}.flag-icon-pn{background-image:url(../flags/4x3/pn.svg)}.flag-icon-pn.flag-icon-squared{background-image:url(../flags/1x1/pn.svg)}.flag-icon-pr{background-image:url(../flags/4x3/pr.svg)}.flag-icon-pr.flag-icon-squared{background-image:url(../flags/1x1/pr.svg)}.flag-icon-ps{background-image:url(../flags/4x3/ps.svg)}.flag-icon-ps.flag-icon-squared{background-image:url(../flags/1x1/ps.svg)}.flag-icon-pt{background-image:url(../flags/4x3/pt.svg)}.flag-icon-pt.flag-icon-squared{background-image:url(../flags/1x1/pt.svg)}.flag-icon-pw{background-image:url(../flags/4x3/pw.svg)}.flag-icon-pw.flag-icon-squared{background-image:url(../flags/1x1/pw.svg)}.flag-icon-py{background-image:url(../flags/4x3/py.svg)}.flag-icon-py.flag-icon-squared{background-image:url(../flags/1x1/py.svg)}.flag-icon-qa{background-image:url(../flags/4x3/qa.svg)}.flag-icon-qa.flag-icon-squared{background-image:url(../flags/1x1/qa.svg)}.flag-icon-re{background-image:url(../flags/4x3/re.svg)}.flag-icon-re.flag-icon-squared{background-image:url(../flags/1x1/re.svg)}.flag-icon-ro{background-image:url(../flags/4x3/ro.svg)}.flag-icon-ro.flag-icon-squared{background-image:url(../flags/1x1/ro.svg)}.flag-icon-rs{background-image:url(../flags/4x3/rs.svg)}.flag-icon-rs.flag-icon-squared{background-image:url(../flags/1x1/rs.svg)}.flag-icon-ru{background-image:url(../flags/4x3/ru.svg)}.flag-icon-ru.flag-icon-squared{background-image:url(../flags/1x1/ru.svg)}.flag-icon-rw{background-image:url(../flags/4x3/rw.svg)}.flag-icon-rw.flag-icon-squared{background-image:url(../flags/1x1/rw.svg)}.flag-icon-sa{background-image:url(../flags/4x3/sa.svg)}.flag-icon-sa.flag-icon-squared{background-image:url(../flags/1x1/sa.svg)}.flag-icon-sb{background-image:url(../flags/4x3/sb.svg)}.flag-icon-sb.flag-icon-squared{background-image:url(../flags/1x1/sb.svg)}.flag-icon-sc{background-image:url(../flags/4x3/sc.svg)}.flag-icon-sc.flag-icon-squared{background-image:url(../flags/1x1/sc.svg)}.flag-icon-sd{background-image:url(../flags/4x3/sd.svg)}.flag-icon-sd.flag-icon-squared{background-image:url(../flags/1x1/sd.svg)}.flag-icon-se{background-image:url(../flags/4x3/se.svg)}.flag-icon-se.flag-icon-squared{background-image:url(../flags/1x1/se.svg)}.flag-icon-sg{background-image:url(../flags/4x3/sg.svg)}.flag-icon-sg.flag-icon-squared{background-image:url(../flags/1x1/sg.svg)}.flag-icon-sh{background-image:url(../flags/4x3/sh.svg)}.flag-icon-sh.flag-icon-squared{background-image:url(../flags/1x1/sh.svg)}.flag-icon-si{background-image:url(../flags/4x3/si.svg)}.flag-icon-si.flag-icon-squared{background-image:url(../flags/1x1/si.svg)}.flag-icon-sj{background-image:url(../flags/4x3/sj.svg)}.flag-icon-sj.flag-icon-squared{background-image:url(../flags/1x1/sj.svg)}.flag-icon-sk{background-image:url(../flags/4x3/sk.svg)}.flag-icon-sk.flag-icon-squared{background-image:url(../flags/1x1/sk.svg)}.flag-icon-sl{background-image:url(../flags/4x3/sl.svg)}.flag-icon-sl.flag-icon-squared{background-image:url(../flags/1x1/sl.svg)}.flag-icon-sm{background-image:url(../flags/4x3/sm.svg)}.flag-icon-sm.flag-icon-squared{background-image:url(../flags/1x1/sm.svg)}.flag-icon-sn{background-image:url(../flags/4x3/sn.svg)}.flag-icon-sn.flag-icon-squared{background-image:url(../flags/1x1/sn.svg)}.flag-icon-so{background-image:url(../flags/4x3/so.svg)}.flag-icon-so.flag-icon-squared{background-image:url(../flags/1x1/so.svg)}.flag-icon-sr{background-image:url(../flags/4x3/sr.svg)}.flag-icon-sr.flag-icon-squared{background-image:url(../flags/1x1/sr.svg)}.flag-icon-ss{background-image:url(../flags/4x3/ss.svg)}.flag-icon-ss.flag-icon-squared{background-image:url(../flags/1x1/ss.svg)}.flag-icon-st{background-image:url(../flags/4x3/st.svg)}.flag-icon-st.flag-icon-squared{background-image:url(../flags/1x1/st.svg)}.flag-icon-sv{background-image:url(../flags/4x3/sv.svg)}.flag-icon-sv.flag-icon-squared{background-image:url(../flags/1x1/sv.svg)}.flag-icon-sx{background-image:url(../flags/4x3/sx.svg)}.flag-icon-sx.flag-icon-squared{background-image:url(../flags/1x1/sx.svg)}.flag-icon-sy{background-image:url(../flags/4x3/sy.svg)}.flag-icon-sy.flag-icon-squared{background-image:url(../flags/1x1/sy.svg)}.flag-icon-sz{background-image:url(../flags/4x3/sz.svg)}.flag-icon-sz.flag-icon-squared{background-image:url(../flags/1x1/sz.svg)}.flag-icon-tc{background-image:url(../flags/4x3/tc.svg)}.flag-icon-tc.flag-icon-squared{background-image:url(../flags/1x1/tc.svg)}.flag-icon-td{background-image:url(../flags/4x3/td.svg)}.flag-icon-td.flag-icon-squared{background-image:url(../flags/1x1/td.svg)}.flag-icon-tf{background-image:url(../flags/4x3/tf.svg)}.flag-icon-tf.flag-icon-squared{background-image:url(../flags/1x1/tf.svg)}.flag-icon-tg{background-image:url(../flags/4x3/tg.svg)}.flag-icon-tg.flag-icon-squared{background-image:url(../flags/1x1/tg.svg)}.flag-icon-th{background-image:url(../flags/4x3/th.svg)}.flag-icon-th.flag-icon-squared{background-image:url(../flags/1x1/th.svg)}.flag-icon-tj{background-image:url(../flags/4x3/tj.svg)}.flag-icon-tj.flag-icon-squared{background-image:url(../flags/1x1/tj.svg)}.flag-icon-tk{background-image:url(../flags/4x3/tk.svg)}.flag-icon-tk.flag-icon-squared{background-image:url(../flags/1x1/tk.svg)}.flag-icon-tl{background-image:url(../flags/4x3/tl.svg)}.flag-icon-tl.flag-icon-squared{background-image:url(../flags/1x1/tl.svg)}.flag-icon-tm{background-image:url(../flags/4x3/tm.svg)}.flag-icon-tm.flag-icon-squared{background-image:url(../flags/1x1/tm.svg)}.flag-icon-tn{background-image:url(../flags/4x3/tn.svg)}.flag-icon-tn.flag-icon-squared{background-image:url(../flags/1x1/tn.svg)}.flag-icon-to{background-image:url(../flags/4x3/to.svg)}.flag-icon-to.flag-icon-squared{background-image:url(../flags/1x1/to.svg)}.flag-icon-tr{background-image:url(../flags/4x3/tr.svg)}.flag-icon-tr.flag-icon-squared{background-image:url(../flags/1x1/tr.svg)}.flag-icon-tt{background-image:url(../flags/4x3/tt.svg)}.flag-icon-tt.flag-icon-squared{background-image:url(../flags/1x1/tt.svg)}.flag-icon-tv{background-image:url(../flags/4x3/tv.svg)}.flag-icon-tv.flag-icon-squared{background-image:url(../flags/1x1/tv.svg)}.flag-icon-tw{background-image:url(../flags/4x3/tw.svg)}.flag-icon-tw.flag-icon-squared{background-image:url(../flags/1x1/tw.svg)}.flag-icon-tz{background-image:url(../flags/4x3/tz.svg)}.flag-icon-tz.flag-icon-squared{background-image:url(../flags/1x1/tz.svg)}.flag-icon-ua{background-image:url(../flags/4x3/ua.svg)}.flag-icon-ua.flag-icon-squared{background-image:url(../flags/1x1/ua.svg)}.flag-icon-ug{background-image:url(../flags/4x3/ug.svg)}.flag-icon-ug.flag-icon-squared{background-image:url(../flags/1x1/ug.svg)}.flag-icon-um{background-image:url(../flags/4x3/um.svg)}.flag-icon-um.flag-icon-squared{background-image:url(../flags/1x1/um.svg)}.flag-icon-us{background-image:url(../flags/4x3/us.svg)}.flag-icon-us.flag-icon-squared{background-image:url(../flags/1x1/us.svg)}.flag-icon-uy{background-image:url(../flags/4x3/uy.svg)}.flag-icon-uy.flag-icon-squared{background-image:url(../flags/1x1/uy.svg)}.flag-icon-uz{background-image:url(../flags/4x3/uz.svg)}.flag-icon-uz.flag-icon-squared{background-image:url(../flags/1x1/uz.svg)}.flag-icon-va{background-image:url(../flags/4x3/va.svg)}.flag-icon-va.flag-icon-squared{background-image:url(../flags/1x1/va.svg)}.flag-icon-vc{background-image:url(../flags/4x3/vc.svg)}.flag-icon-vc.flag-icon-squared{background-image:url(../flags/1x1/vc.svg)}.flag-icon-ve{background-image:url(../flags/4x3/ve.svg)}.flag-icon-ve.flag-icon-squared{background-image:url(../flags/1x1/ve.svg)}.flag-icon-vg{background-image:url(../flags/4x3/vg.svg)}.flag-icon-vg.flag-icon-squared{background-image:url(../flags/1x1/vg.svg)}.flag-icon-vi{background-image:url(../flags/4x3/vi.svg)}.flag-icon-vi.flag-icon-squared{background-image:url(../flags/1x1/vi.svg)}.flag-icon-vn{background-image:url(../flags/4x3/vn.svg)}.flag-icon-vn.flag-icon-squared{background-image:url(../flags/1x1/vn.svg)}.flag-icon-vu{background-image:url(../flags/4x3/vu.svg)}.flag-icon-vu.flag-icon-squared{background-image:url(../flags/1x1/vu.svg)}.flag-icon-wf{background-image:url(../flags/4x3/wf.svg)}.flag-icon-wf.flag-icon-squared{background-image:url(../flags/1x1/wf.svg)}.flag-icon-ws{background-image:url(../flags/4x3/ws.svg)}.flag-icon-ws.flag-icon-squared{background-image:url(../flags/1x1/ws.svg)}.flag-icon-ye{background-image:url(../flags/4x3/ye.svg)}.flag-icon-ye.flag-icon-squared{background-image:url(../flags/1x1/ye.svg)}.flag-icon-yt{background-image:url(../flags/4x3/yt.svg)}.flag-icon-yt.flag-icon-squared{background-image:url(../flags/1x1/yt.svg)}.flag-icon-za{background-image:url(../flags/4x3/za.svg)}.flag-icon-za.flag-icon-squared{background-image:url(../flags/1x1/za.svg)}.flag-icon-zm{background-image:url(../flags/4x3/zm.svg)}.flag-icon-zm.flag-icon-squared{background-image:url(../flags/1x1/zm.svg)}.flag-icon-zw{background-image:url(../flags/4x3/zw.svg)}.flag-icon-zw.flag-icon-squared{background-image:url(../flags/1x1/zw.svg)}.flag-icon-es-ct{background-image:url(../flags/4x3/es-ct.svg)}.flag-icon-es-ct.flag-icon-squared{background-image:url(../flags/1x1/es-ct.svg)}.flag-icon-eu{background-image:url(../flags/4x3/eu.svg)}.flag-icon-eu.flag-icon-squared{background-image:url(../flags/1x1/eu.svg)}.flag-icon-gb-eng{background-image:url(../flags/4x3/gb-eng.svg)}.flag-icon-gb-eng.flag-icon-squared{background-image:url(../flags/1x1/gb-eng.svg)}.flag-icon-gb-nir{background-image:url(../flags/4x3/gb-nir.svg)}.flag-icon-gb-nir.flag-icon-squared{background-image:url(../flags/1x1/gb-nir.svg)}.flag-icon-gb-sct{background-image:url(../flags/4x3/gb-sct.svg)}.flag-icon-gb-sct.flag-icon-squared{background-image:url(../flags/1x1/gb-sct.svg)}.flag-icon-gb-wls{background-image:url(../flags/4x3/gb-wls.svg)}.flag-icon-gb-wls.flag-icon-squared{background-image:url(../flags/1x1/gb-wls.svg)}.flag-icon-un{background-image:url(../flags/4x3/un.svg)}.flag-icon-un.flag-icon-squared{background-image:url(../flags/1x1/un.svg)}.flag-icon-xk{background-image:url(../flags/4x3/xk.svg)}.flag-icon-xk.flag-icon-squared{background-image:url(../flags/1x1/xk.svg)} \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ad.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ad.svg new file mode 100644 index 0000000000000000000000000000000000000000..37900eef4028b08b5418d06146ea17e3635cd7c2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ad.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ae.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ae.svg new file mode 100644 index 0000000000000000000000000000000000000000..739c5d4646ee59e7d8d994e8b2f6d993c0a0c288 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/af.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/af.svg new file mode 100644 index 0000000000000000000000000000000000000000..5ddaa40ae1d577438e17c8d8777eb04ca3943469 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/af.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ag.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ag.svg new file mode 100644 index 0000000000000000000000000000000000000000..d0b2a83cbe6d2ad0d69f863033a9ded6171784e6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ai.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ai.svg new file mode 100644 index 0000000000000000000000000000000000000000..7dd6a79c7f92dcb301be297309f04ae7e98387a1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ai.svg @@ -0,0 +1,767 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/al.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/al.svg new file mode 100644 index 0000000000000000000000000000000000000000..7fd3e1a75cb02e6b5a73d9c79f0cf8ab94c6d940 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/am.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/am.svg new file mode 100644 index 0000000000000000000000000000000000000000..1198be035ff6f9814d655aa868c1f97c38e43bb2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ao.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ao.svg new file mode 100644 index 0000000000000000000000000000000000000000..105282c2dad301c654f94e604b5f50870b85b5bc --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/aq.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/aq.svg new file mode 100644 index 0000000000000000000000000000000000000000..f5dd1315da850bd49f5566725a1ed33d77279087 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/aq.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ar.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ar.svg new file mode 100644 index 0000000000000000000000000000000000000000..847746f5e4ad075fbf928bc86cbce9a53da03ad6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ar.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/as.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/as.svg new file mode 100644 index 0000000000000000000000000000000000000000..ea75ee789f066d9b0dd5f7917924b153ce54ebbf --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/as.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/at.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/at.svg new file mode 100644 index 0000000000000000000000000000000000000000..8f3745f5e114e189147cedb8dc50098c6ff1fb5b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/au.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/au.svg new file mode 100644 index 0000000000000000000000000000000000000000..a199c5dda01fd19125c285b228940c3bccba69a3 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/au.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/aw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/aw.svg new file mode 100644 index 0000000000000000000000000000000000000000..248a08d69b8850e15b0bf832f711a90646dfc75d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ax.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ax.svg new file mode 100644 index 0000000000000000000000000000000000000000..cdeb07e27363fd075336e6f24671b1154c1f098b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/az.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/az.svg new file mode 100644 index 0000000000000000000000000000000000000000..0119e1ab4e008391c6a93dccdf24049a296f4249 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ba.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ba.svg new file mode 100644 index 0000000000000000000000000000000000000000..5b92b0ab54ab7f6f043e5b9f5736c2a3c7fccad5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bb.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bb.svg new file mode 100644 index 0000000000000000000000000000000000000000..de794830ac48ccf356f7e5ef5828280bd2a7da4c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bd.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bd.svg new file mode 100644 index 0000000000000000000000000000000000000000..4cb38cf503e82792bf5877eef41762ecab72fef6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/be.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/be.svg new file mode 100644 index 0000000000000000000000000000000000000000..01496c3cace67abd76b83551a7417930864af1c2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bf.svg new file mode 100644 index 0000000000000000000000000000000000000000..a3c7c44a4fa08d295be989249ce4c2a275fb3853 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bg.svg new file mode 100644 index 0000000000000000000000000000000000000000..5abe67f64244c466585d6d4f2c1d25c967d4a2ef --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bh.svg new file mode 100644 index 0000000000000000000000000000000000000000..28121340555fb78778b9e60b87778896cf307bf7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bh.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bi.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bi.svg new file mode 100644 index 0000000000000000000000000000000000000000..2701c489de2a1b1938dd07894e6107160b2c78d5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bj.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bj.svg new file mode 100644 index 0000000000000000000000000000000000000000..07c4c117ca6d50910db01700c979f2a92aec376e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bl.svg new file mode 100644 index 0000000000000000000000000000000000000000..0fa74e1c3ccc15bda1445a9cdbf6ca292c9a4bc4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bm.svg new file mode 100644 index 0000000000000000000000000000000000000000..139480cc6a3a2f393295eaaa7909891aa8c2680d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bm.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bn.svg new file mode 100644 index 0000000000000000000000000000000000000000..e88cc8eb243bcef8b8a45dd67d1d9cfcc15a417e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bo.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bo.svg new file mode 100644 index 0000000000000000000000000000000000000000..7bcbb6c358b3073f0549e4225070f1c9f4ac89da --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bo.svg @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bq.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bq.svg new file mode 100644 index 0000000000000000000000000000000000000000..cc872ef1b88849e578e00cb831f682d117967371 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/br.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/br.svg new file mode 100644 index 0000000000000000000000000000000000000000..dcc7d612935552aa45323a3dcd0e8145743224ab --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bs.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bs.svg new file mode 100644 index 0000000000000000000000000000000000000000..decdebb1efca42560e603d7fc4ce213e2d74e510 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bt.svg new file mode 100644 index 0000000000000000000000000000000000000000..3ebf25f9663cab2ca7567d36072ac6dfa1f7efbf --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bt.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bv.svg new file mode 100644 index 0000000000000000000000000000000000000000..01c9ee147d7571dce8595cb1584eaba2c88555af --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bw.svg new file mode 100644 index 0000000000000000000000000000000000000000..0bc5d3d34f5d46ec650a65b500e3220159ff58cb --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/by.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/by.svg new file mode 100644 index 0000000000000000000000000000000000000000..73e14f7a2366914c8117af4a60e98ff33446a05e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/by.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bz.svg new file mode 100644 index 0000000000000000000000000000000000000000..38849039225d0ad651c2f30a37d121cd7a6569ca --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/bz.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ca.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ca.svg new file mode 100644 index 0000000000000000000000000000000000000000..1eb0b6641652673f7796ba08c664e4f196e8481c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ca.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cc.svg new file mode 100644 index 0000000000000000000000000000000000000000..0a730c14d03778dc149161606c003cfe6e8864ec --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cd.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cd.svg new file mode 100644 index 0000000000000000000000000000000000000000..5da2a96892d399ca95250a10f4278278345f3ea2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cd.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cf.svg new file mode 100644 index 0000000000000000000000000000000000000000..e924621528c88fc38e3462af73d0ea38bb2c127f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cg.svg new file mode 100644 index 0000000000000000000000000000000000000000..a52ba7e2114eb3efba32a2ce3adb5cef324b45d4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ch.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ch.svg new file mode 100644 index 0000000000000000000000000000000000000000..773cdc8a3eb5f8fe070afe0752a229fa6f2f6171 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ci.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ci.svg new file mode 100644 index 0000000000000000000000000000000000000000..bd1e3f41418a82324e6217f02be85d96b3037ae5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ck.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ck.svg new file mode 100644 index 0000000000000000000000000000000000000000..b7c2f37cbf93494f456d111ca4444f38457595e9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cl.svg new file mode 100644 index 0000000000000000000000000000000000000000..b8088967210a60307c554fd8edc08e2f183f94ff --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cm.svg new file mode 100644 index 0000000000000000000000000000000000000000..08b710bb87db2bd23c7dd064c2239c469c701412 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cn.svg new file mode 100644 index 0000000000000000000000000000000000000000..7873c1b4fadf585f2c56d4aba369f4f52b9ac988 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/co.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/co.svg new file mode 100644 index 0000000000000000000000000000000000000000..18d1c5f450e58b0e516ebe7f776e0811f62c0bb6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cr.svg new file mode 100644 index 0000000000000000000000000000000000000000..a60a6dd614471aa62c0a911395916160b9095a4a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cu.svg new file mode 100644 index 0000000000000000000000000000000000000000..396817620db9aad76dbeb99e2980e5d820b3acf0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cv.svg new file mode 100644 index 0000000000000000000000000000000000000000..a8311b2f83c9237a27e54ccf6049cbad954d0ac4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cw.svg new file mode 100644 index 0000000000000000000000000000000000000000..6cc971136aafaf6e78fdae9ed8e36013e8123b0d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cx.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cx.svg new file mode 100644 index 0000000000000000000000000000000000000000..687594fc66f4f5d15c06b5fed1793c584021e781 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cy.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cy.svg new file mode 100644 index 0000000000000000000000000000000000000000..e0233aeb21061de16da3a0c8f6e5a4eea247a258 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cz.svg new file mode 100644 index 0000000000000000000000000000000000000000..898d0e9e3290765263c8e37fae90698830fd924c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/cz.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/de.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/de.svg new file mode 100644 index 0000000000000000000000000000000000000000..b9ea8a613484f27134301cb3cfaefd6c034b8ecd --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dj.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dj.svg new file mode 100644 index 0000000000000000000000000000000000000000..3f6b2e4f351491426ba4b0cff37fafbd42e2c31d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dk.svg new file mode 100644 index 0000000000000000000000000000000000000000..51ff69feb057d0e61ca867285706c7a6a48238b9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dm.svg new file mode 100644 index 0000000000000000000000000000000000000000..43a16156443417d9778f6c5311257157e9ead3ee --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/do.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/do.svg new file mode 100644 index 0000000000000000000000000000000000000000..2fda1205eabf4cc039a21984e4051c527b525a18 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/do.svg @@ -0,0 +1,6745 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dz.svg new file mode 100644 index 0000000000000000000000000000000000000000..10afe831c3047de8e212c1f1f6e6c14ae2271e63 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ec.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ec.svg new file mode 100644 index 0000000000000000000000000000000000000000..e957ae9cc519f642c6e826f78a4bb6b26fe93277 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ec.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ee.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ee.svg new file mode 100644 index 0000000000000000000000000000000000000000..fbc9e339439ff292dafaf42ece6e7357e68baa69 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ee.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/eg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/eg.svg new file mode 100644 index 0000000000000000000000000000000000000000..012d90d20b6508a4d2b668d64fac675e5984e9dc --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/eh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/eh.svg new file mode 100644 index 0000000000000000000000000000000000000000..849cd9c92d81e7f5a0573b52bfafe92693c866b3 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/eh.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/er.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/er.svg new file mode 100644 index 0000000000000000000000000000000000000000..59ddf4b1efb0d750682958344cdf260a4ac55c2e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/er.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/es-ct.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/es-ct.svg new file mode 100644 index 0000000000000000000000000000000000000000..ddb67b79efc508555bcdef2a5db15866087932c1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/es-ct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/es.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/es.svg new file mode 100644 index 0000000000000000000000000000000000000000..8cc73b200d8153b29054625b8fc01f37230d159a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/es.svg @@ -0,0 +1,547 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/et.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/et.svg new file mode 100644 index 0000000000000000000000000000000000000000..cfed91fa7b35bade47384a74d8bdb7a61c19f9a4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/eu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/eu.svg new file mode 100644 index 0000000000000000000000000000000000000000..b031d2d33652d8539ee212f9333508bc7d249fd4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fi.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fi.svg new file mode 100644 index 0000000000000000000000000000000000000000..aff1304c6bfadaa69889c4fe146a66878d02ae10 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fj.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fj.svg new file mode 100644 index 0000000000000000000000000000000000000000..c58eb86cfbdc0dc33f3c56ee5340fb541091addd --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fj.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fk.svg new file mode 100644 index 0000000000000000000000000000000000000000..bd6234d16a5d4c2e63a7fe99df40a6978e1ab71a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fk.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fm.svg new file mode 100644 index 0000000000000000000000000000000000000000..791fde992986c2b2fad8da967dfc7f5604a853f6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fo.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fo.svg new file mode 100644 index 0000000000000000000000000000000000000000..b28915c013af95bf7bc4c625d2108a94daafa89a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fr.svg new file mode 100644 index 0000000000000000000000000000000000000000..f8e3ca0d57fe48062be69f63b73a083c59550947 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/fr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ga.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ga.svg new file mode 100644 index 0000000000000000000000000000000000000000..16c81b3029a1d8faa1f6aac573c1e35f8baee711 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-eng.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-eng.svg new file mode 100644 index 0000000000000000000000000000000000000000..18026d29413a54e1ed6d35cc7e2d8a3d022f996b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-nir.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-nir.svg new file mode 100644 index 0000000000000000000000000000000000000000..afaddda30ce118805881a0b288d1c4bdd1047e70 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-nir.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-sct.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-sct.svg new file mode 100644 index 0000000000000000000000000000000000000000..6987b0886b7c8d447d7ef59a0696d4df41cb38b0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-wls.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-wls.svg new file mode 100644 index 0000000000000000000000000000000000000000..de7a2a9dcbb003d356f6a90e85bf7b0d9e42dc02 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb.svg new file mode 100644 index 0000000000000000000000000000000000000000..07e6a5c1fb9699795af54e882dc132f5da82be6a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gd.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gd.svg new file mode 100644 index 0000000000000000000000000000000000000000..c44890f3d8ea5d85e95d5d9c0b4fb5de7a9e51a6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gd.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ge.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ge.svg new file mode 100644 index 0000000000000000000000000000000000000000..9e4ea3537c5803e1bcd10689aed347fd22764f79 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gf.svg new file mode 100644 index 0000000000000000000000000000000000000000..1e05394ad50124784527c34c0c026c7b3e3da363 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gg.svg new file mode 100644 index 0000000000000000000000000000000000000000..2d06a9f86f0898141c82ba060c48d4d2dd4547f0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gh.svg new file mode 100644 index 0000000000000000000000000000000000000000..4b6446d645a2f767ca63bb861abe12a4dba1d89a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gi.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gi.svg new file mode 100644 index 0000000000000000000000000000000000000000..9445446f18a644ee10f1b3476c34bd104387b6e2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gl.svg new file mode 100644 index 0000000000000000000000000000000000000000..dd84e01f40bb58e88c4b64b9112a50c72ccf056c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gl.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gm.svg new file mode 100644 index 0000000000000000000000000000000000000000..b06ab6cb585e2b656c35b1b56f6f90d961794f95 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gn.svg new file mode 100644 index 0000000000000000000000000000000000000000..8f8855da4b8dad9b4931337d1c08f436b8f9ef61 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gp.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gp.svg new file mode 100644 index 0000000000000000000000000000000000000000..0a5bdb0056c0e89e6f61f4250c76fbb5814e8489 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gq.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gq.svg new file mode 100644 index 0000000000000000000000000000000000000000..b735e4d65832b361c23514120399ba5f54ceacd3 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gq.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gr.svg new file mode 100644 index 0000000000000000000000000000000000000000..89b94b39f658b93004f4b232ce73feeba51ed542 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gs.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gs.svg new file mode 100644 index 0000000000000000000000000000000000000000..62e55322603514e1afd425f7c1ecccf81d5eb20c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gs.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + E + + + O + + + T + + + E + + + R + + + R + + + R + + + R + + + R + + + E + + + O + + + O + + + A + + + A + + + A + + + M + + + P + + + P + + + P + + + I + + + T + + + T + + + M + + + G + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gt.svg new file mode 100644 index 0000000000000000000000000000000000000000..a8fb779f0fb9e93799d6cec5a769fa3dd1b6f482 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gt.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gu.svg new file mode 100644 index 0000000000000000000000000000000000000000..b8e6bd4a5d28d363e8c8b73c64a3acf51190cc77 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gu.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + G + + + U + + + A + + + M + + + + + + + + G + + + U + + + A + + + M + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gw.svg new file mode 100644 index 0000000000000000000000000000000000000000..064a593473281433e0173ac00d76f7c4ba9828d1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gy.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gy.svg new file mode 100644 index 0000000000000000000000000000000000000000..57eb520903546e7ece309b2f994206f713542a62 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hk.svg new file mode 100644 index 0000000000000000000000000000000000000000..b2f0b3ca636a9ed029d3bd3b2bcd87933643047a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hk.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hm.svg new file mode 100644 index 0000000000000000000000000000000000000000..7e1f7e7e64798aede74678876f1619bca4aefcea --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hn.svg new file mode 100644 index 0000000000000000000000000000000000000000..c7c4c4acfd1c584905d01617cd220bda38da4227 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hr.svg new file mode 100644 index 0000000000000000000000000000000000000000..b6e242be0cbed27833de15f08c09cba2ad7a5561 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hr.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ht.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ht.svg new file mode 100644 index 0000000000000000000000000000000000000000..994a4e5f0a88c61c246c48554b9bd231a5ce6e58 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ht.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hu.svg new file mode 100644 index 0000000000000000000000000000000000000000..94bc29f134c38f4beea841efee1e4a44cfabd6eb --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/id.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/id.svg new file mode 100644 index 0000000000000000000000000000000000000000..6d2cf0941ea2a6806e54ce69280589e128317c31 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/id.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ie.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ie.svg new file mode 100644 index 0000000000000000000000000000000000000000..60448a9ded58be77195347757cff4acd2375c681 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/il.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/il.svg new file mode 100644 index 0000000000000000000000000000000000000000..6cb4b1c1f791996cc079a23089021f1f558063e3 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/im.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/im.svg new file mode 100644 index 0000000000000000000000000000000000000000..fe397165b44102618cd27415862fc35af81fc3c2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/in.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/in.svg new file mode 100644 index 0000000000000000000000000000000000000000..e6557cd01a9ed1778573a5470eff549aa91433c9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/io.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/io.svg new file mode 100644 index 0000000000000000000000000000000000000000..1599825ac066efda4f9fdee935a43a9e0e2cf7c6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/io.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/iq.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/iq.svg new file mode 100644 index 0000000000000000000000000000000000000000..66292f1bd499380aeeed0874aaedf1e0e20f0ea6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ir.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ir.svg new file mode 100644 index 0000000000000000000000000000000000000000..11447a921f95d70591ce633c3e1471d6378efa98 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ir.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/is.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/is.svg new file mode 100644 index 0000000000000000000000000000000000000000..08d1e683835b7a6c2dd82c1a649dde4a7f9d64c6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/it.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/it.svg new file mode 100644 index 0000000000000000000000000000000000000000..615c58fb8f9f9f4f67c4df4659ad733d4e29a28b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/je.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/je.svg new file mode 100644 index 0000000000000000000000000000000000000000..16cb1c5f9eda2d5a55caf6127bf182ec7dacc531 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/je.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/jm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/jm.svg new file mode 100644 index 0000000000000000000000000000000000000000..c261da097182d3e6c27ce5960f317a3385d02250 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/jo.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/jo.svg new file mode 100644 index 0000000000000000000000000000000000000000..ab1c62aaa156d4a75a7b62b4282c74c9c0b7fe49 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/jp.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/jp.svg new file mode 100644 index 0000000000000000000000000000000000000000..afa0c7acd8053c1dc041a2d642bbfdd0ae49f343 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ke.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ke.svg new file mode 100644 index 0000000000000000000000000000000000000000..1c07a443ea99b78e7b6721c292dddda5c4f15295 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kg.svg new file mode 100644 index 0000000000000000000000000000000000000000..7aee3036d947f5eff433a6c096e058100369e1a6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kh.svg new file mode 100644 index 0000000000000000000000000000000000000000..6d7b7ead8bd1f98eb9f655893f76dd0a27f77637 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kh.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ki.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ki.svg new file mode 100644 index 0000000000000000000000000000000000000000..aa94a4b0c31f730f9b896ab8ad5e33dc24abf16e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/km.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/km.svg new file mode 100644 index 0000000000000000000000000000000000000000..c21ed93915f513e46af24ffa79ffdf80ec30a96a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kn.svg new file mode 100644 index 0000000000000000000000000000000000000000..4b2a2488be8748d1419a3da9e4ef9f0572fba88d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kp.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kp.svg new file mode 100644 index 0000000000000000000000000000000000000000..8eda6be87411e6a919c08545a5305e91d12652c0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kr.svg new file mode 100644 index 0000000000000000000000000000000000000000..d0ce1b0e6d2eb85a4cdd73d01cb2d386900c0d78 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kw.svg new file mode 100644 index 0000000000000000000000000000000000000000..3d4047fff5e942cb915b26b5aece52287d9170a7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ky.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ky.svg new file mode 100644 index 0000000000000000000000000000000000000000..2659940c65ec86a17196fcc7a3b3a32bcb24ec17 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ky.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kz.svg new file mode 100644 index 0000000000000000000000000000000000000000..f7d1efd639f057d392b4edfe5c4dff7c17ce8470 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/kz.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/la.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/la.svg new file mode 100644 index 0000000000000000000000000000000000000000..0a7178fe5d3409fd6d4be3d524ef928caac87d83 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lb.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lb.svg new file mode 100644 index 0000000000000000000000000000000000000000..6718908295a196a81b3aa8ddee2f193808e0bdbe --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lc.svg new file mode 100644 index 0000000000000000000000000000000000000000..b13b8852aacd4fa0ad2cc1e1cffb133b01e1a674 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/li.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/li.svg new file mode 100644 index 0000000000000000000000000000000000000000..d6f8d297f6cfc6356aa9d7f7468f27ecde8425d7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lk.svg new file mode 100644 index 0000000000000000000000000000000000000000..cd3ad7413b82ad61e9e64097daa8ccba4f4fee32 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lr.svg new file mode 100644 index 0000000000000000000000000000000000000000..0ae34e728242eb5aa62e4abfb9ae243a47549032 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ls.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ls.svg new file mode 100644 index 0000000000000000000000000000000000000000..e71bb5bb70e1eed192467a74c073b4e75df4ddd4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lt.svg new file mode 100644 index 0000000000000000000000000000000000000000..aa96cf3236e01e0eef8ce812accb00830b343ce3 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lu.svg new file mode 100644 index 0000000000000000000000000000000000000000..62936716027676b395a1a541057aa35519010182 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lv.svg new file mode 100644 index 0000000000000000000000000000000000000000..5556de1a3d90de7e728c3044026924c21f733820 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ly.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ly.svg new file mode 100644 index 0000000000000000000000000000000000000000..1f581740c66465792bac82e9f09cd666f53186e5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ma.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ma.svg new file mode 100644 index 0000000000000000000000000000000000000000..85c99b3b9e0dea1bea3fec420a1c0df8bc38c047 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mc.svg new file mode 100644 index 0000000000000000000000000000000000000000..d38822ddacd03c0b08297212b2c0b344e8846d9c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/md.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/md.svg new file mode 100644 index 0000000000000000000000000000000000000000..e2c1364311320b4b0dd598917a5989682318ea2d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/md.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/me.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/me.svg new file mode 100644 index 0000000000000000000000000000000000000000..722dfbbb4b8b3a29c293597ab3027f5db0061859 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/me.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mf.svg new file mode 100644 index 0000000000000000000000000000000000000000..310afce40740292d972701cdfdebdb41a408ec3b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mg.svg new file mode 100644 index 0000000000000000000000000000000000000000..f0375cc6bee3a1cdab3393ec7f2a16337bcad2d1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mh.svg new file mode 100644 index 0000000000000000000000000000000000000000..97f34631af684a06ae9aa611d65738c75f924998 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mh.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mk.svg new file mode 100644 index 0000000000000000000000000000000000000000..da2e9a4c40803fcf7e9955170e442d1a5f501eeb --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ml.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ml.svg new file mode 100644 index 0000000000000000000000000000000000000000..1e4d98900cd0482b10600718b7059a18e3c6d76f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mm.svg new file mode 100644 index 0000000000000000000000000000000000000000..5076184c3205c232473f2cc057316d4322e91fe8 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mm.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mn.svg new file mode 100644 index 0000000000000000000000000000000000000000..abb142b87b9e43d765d608ca8d2e1db52a19a669 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mo.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mo.svg new file mode 100644 index 0000000000000000000000000000000000000000..ddaed83b1b87cffadc77da3947b26bd1f9bd2a9c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mp.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mp.svg new file mode 100644 index 0000000000000000000000000000000000000000..fcdae0a91919aac5f2958765396bb3e81bf27ef2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mp.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mq.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mq.svg new file mode 100644 index 0000000000000000000000000000000000000000..7a69fb58429712c5991697caf0f7a7ecc3765a9d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mq.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mr.svg new file mode 100644 index 0000000000000000000000000000000000000000..cf887bfdebc7cdcef3c8296784bebe7d2c487477 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ms.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ms.svg new file mode 100644 index 0000000000000000000000000000000000000000..2d6995f4f0eb28d6ae16ddde71c29c70e3d77bf1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ms.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mt.svg new file mode 100644 index 0000000000000000000000000000000000000000..0a4030f6232879a29fc05a234c0ac34b12bdde61 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mt.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mu.svg new file mode 100644 index 0000000000000000000000000000000000000000..773d3d59eec901785f90e91ff90220b312c59001 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mv.svg new file mode 100644 index 0000000000000000000000000000000000000000..aa5ed5333ef0bd8343d2f1b177ae2055e0c2aac0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mw.svg new file mode 100644 index 0000000000000000000000000000000000000000..acf327cf4a065b7e6b9d71e1a4a681768ef9370c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mx.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mx.svg new file mode 100644 index 0000000000000000000000000000000000000000..04e6d1da03dc2d294deecc8b494097c87d289ba1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mx.svg @@ -0,0 +1,378 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/my.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/my.svg new file mode 100644 index 0000000000000000000000000000000000000000..518b3fdd2167372601b8bcadbcf209c4159f5e4c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/my.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mz.svg new file mode 100644 index 0000000000000000000000000000000000000000..b753a53f8e66e7940833e039b470dfdcc5dcf003 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/na.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/na.svg new file mode 100644 index 0000000000000000000000000000000000000000..2a7beb8e45d7e15e78d4fd9a224252eaa182a751 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/na.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nc.svg new file mode 100644 index 0000000000000000000000000000000000000000..1fb62f0af23943dea99ebd749c65094f3bedcdf9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ne.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ne.svg new file mode 100644 index 0000000000000000000000000000000000000000..e76e44c0bbc7950abf0582e19d6e6723e15ff559 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nf.svg new file mode 100644 index 0000000000000000000000000000000000000000..f28ba92b4b6f95d6a83d193861c442d40ff60c2d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nf.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ng.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ng.svg new file mode 100644 index 0000000000000000000000000000000000000000..57d65d380a09d0af4fa56c6a392e33092fec8b9f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ni.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ni.svg new file mode 100644 index 0000000000000000000000000000000000000000..a0206270fc8a914fdf66593754f5b981e5abf17e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ni.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nl.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee7d28196dc3ee164533776f9ffef2ace5733881 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/no.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/no.svg new file mode 100644 index 0000000000000000000000000000000000000000..08ea5728d271df874c60cd48b6ace69b041eedd6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/np.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/np.svg new file mode 100644 index 0000000000000000000000000000000000000000..874d0f401fcf99bf1199d5eb1d0013120c9c5fac --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/np.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nr.svg new file mode 100644 index 0000000000000000000000000000000000000000..282d80fa14e95ce45d5885f595d97fff61cf0d8d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nu.svg new file mode 100644 index 0000000000000000000000000000000000000000..e546940521b1f865dc742edc8e40b6fd5be4c590 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nu.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nz.svg new file mode 100644 index 0000000000000000000000000000000000000000..4900fc59e5a919c08ebadcf65700ad616e56856e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/nz.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/om.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/om.svg new file mode 100644 index 0000000000000000000000000000000000000000..5c30c755d5478d31565addd61a45d4bc2880ee32 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/om.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pa.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pa.svg new file mode 100644 index 0000000000000000000000000000000000000000..57965b9ea2265b33c385ca540a35f616404ca3ec --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pa.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pe.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pe.svg new file mode 100644 index 0000000000000000000000000000000000000000..4bad743c98ccf5809c45d312e432d483a87ece1e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pe.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pf.svg new file mode 100644 index 0000000000000000000000000000000000000000..8320dcedb7e4f80c31bfd773dd46fba6c4303aa8 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pf.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pg.svg new file mode 100644 index 0000000000000000000000000000000000000000..c7fc8050357f37edc03f624efd91a94a69e5bc02 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pg.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ph.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ph.svg new file mode 100644 index 0000000000000000000000000000000000000000..bc861f62942b4060be2e01717b1a53cd6d343e49 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ph.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pk.svg new file mode 100644 index 0000000000000000000000000000000000000000..fbdad41c562f8d5679c460140eceac82e21bd05b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pl.svg new file mode 100644 index 0000000000000000000000000000000000000000..f7c12a1843d7375e16126e1e169d61bac3547699 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pm.svg new file mode 100644 index 0000000000000000000000000000000000000000..3d4014a4143a0dc0940e72ee1dec00459d22754d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pm.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pn.svg new file mode 100644 index 0000000000000000000000000000000000000000..bf0c81dc2a2dfd5900d9789dfda6c9c9c1e72f92 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pn.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pr.svg new file mode 100644 index 0000000000000000000000000000000000000000..79cf4c099175b81d9f578bb878f3a77d71686abc --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ps.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ps.svg new file mode 100644 index 0000000000000000000000000000000000000000..7c1ea3f9a6dff0981ba1e8f24af1398f4d600c4f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ps.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pt.svg new file mode 100644 index 0000000000000000000000000000000000000000..5bc4c0e5ecbc1c8baa97a424fa5eafc1097b5516 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pw.svg new file mode 100644 index 0000000000000000000000000000000000000000..80148e825c014b14e4efa310bbcf4ca72cbf2f61 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/py.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/py.svg new file mode 100644 index 0000000000000000000000000000000000000000..40ac8d26e1daac7471014025cb96af82b7b43b6b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/py.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/qa.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/qa.svg new file mode 100644 index 0000000000000000000000000000000000000000..0bf30ea37ffa9266df80e9bf5335564ee908a520 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/re.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/re.svg new file mode 100644 index 0000000000000000000000000000000000000000..027c9f32ce501b4bfb1f064a2bbdc24e74c05eee --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/re.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ro.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ro.svg new file mode 100644 index 0000000000000000000000000000000000000000..994992ab662997a38ce9f662ff9b2c78a0916c80 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/rs.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/rs.svg new file mode 100644 index 0000000000000000000000000000000000000000..74548a5dc11fd0d5e856c1cf457a89f33f0c50fa --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/rs.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ru.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ru.svg new file mode 100644 index 0000000000000000000000000000000000000000..d6430874302a701b2b41b420b60a09462c2c9e76 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ru.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/rw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/rw.svg new file mode 100644 index 0000000000000000000000000000000000000000..26e41f6ad79aa7b8ab64d7f07c22fb20eaf26bc6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sa.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sa.svg new file mode 100644 index 0000000000000000000000000000000000000000..ca8a1cfe0050e4b70f23ed77a49e8af3ed498355 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sa.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sb.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sb.svg new file mode 100644 index 0000000000000000000000000000000000000000..f61bafd6a90c1c6885bfed478c64858d5a75198b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sc.svg new file mode 100644 index 0000000000000000000000000000000000000000..65d8943d64d56db125e8cc8a1ca1db8b2e9ee1a2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sc.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sd.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sd.svg new file mode 100644 index 0000000000000000000000000000000000000000..72a729708b124985b3c6679f8d7b6dfc136707e4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/se.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/se.svg new file mode 100644 index 0000000000000000000000000000000000000000..53994a468a0d2165d51823f115d4dab5e7f9e3e1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/se.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sg.svg new file mode 100644 index 0000000000000000000000000000000000000000..632c7ccc852cf3fa3217093431b92c9afa661f03 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sh.svg new file mode 100644 index 0000000000000000000000000000000000000000..bae2e766c234d3cbe164c64aa28927302d857450 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sh.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/si.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/si.svg new file mode 100644 index 0000000000000000000000000000000000000000..16fcef9566d611572f0610a61280780a0e3bbf8b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sj.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sj.svg new file mode 100644 index 0000000000000000000000000000000000000000..f4e5829735d14b925b2093a8e8b9780336a98333 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sk.svg new file mode 100644 index 0000000000000000000000000000000000000000..9b60ff905aeb7cfd0416d7a4afe33327e15b7909 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sl.svg new file mode 100644 index 0000000000000000000000000000000000000000..18c76d781bc05719b63202da2dbbf2e21a787daf --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sl.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sm.svg new file mode 100644 index 0000000000000000000000000000000000000000..710260b54bd839f89adaeba65554ed85545e936e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sm.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + I + + + B + + + E + + + R + + + T + + + A + + + S + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sn.svg new file mode 100644 index 0000000000000000000000000000000000000000..fbbad5e026cfa8d43a15e467ec8359f34316bbcf --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/so.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/so.svg new file mode 100644 index 0000000000000000000000000000000000000000..96d88a992a18d798c182a4e053ba1a02070ceeb5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sr.svg new file mode 100644 index 0000000000000000000000000000000000000000..a0ca03e367b48a45cecb7194d40af3fa917bb6f6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ss.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ss.svg new file mode 100644 index 0000000000000000000000000000000000000000..7e6a47ffd9fe99889ff7b85dd07b0dfdd964c4e6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/st.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/st.svg new file mode 100644 index 0000000000000000000000000000000000000000..da5df2990d1944d22a4c9c029eca45c5dd0cd3e1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/st.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sv.svg new file mode 100644 index 0000000000000000000000000000000000000000..f4842e78c0b012ead0bb42d744d66778cd911e8c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sv.svg @@ -0,0 +1,603 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sx.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sx.svg new file mode 100644 index 0000000000000000000000000000000000000000..516897ac4546a277100573e9fd4cb0406dc55137 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sy.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sy.svg new file mode 100644 index 0000000000000000000000000000000000000000..904dc1f65c1f795ad69ef57eae1408a15ca508bd --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sz.svg new file mode 100644 index 0000000000000000000000000000000000000000..46cf2638de104795c187a253b8f2020d19f69683 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/sz.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tc.svg new file mode 100644 index 0000000000000000000000000000000000000000..65295770ba8360693f70588363230f11793f1ad1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tc.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/td.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/td.svg new file mode 100644 index 0000000000000000000000000000000000000000..e3e81ce2fd1af8a47eefa5345210350a1d31bf8f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tf.svg new file mode 100644 index 0000000000000000000000000000000000000000..2061867c96b51f804ae77a48f17be5b2cf05cb18 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tg.svg new file mode 100644 index 0000000000000000000000000000000000000000..2c1fd98fd48c8a5a63a4b65b075927d9226e40f2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/th.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/th.svg new file mode 100644 index 0000000000000000000000000000000000000000..86850f5fbf6d2e20145a2c95d1a00be4c1ef76e4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tj.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tj.svg new file mode 100644 index 0000000000000000000000000000000000000000..7e189f09d24c9e40a4d525452882ea4d4124ad79 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tj.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tk.svg new file mode 100644 index 0000000000000000000000000000000000000000..c5ff6b4cb436f075f39fd0d47811e1961078d43b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tl.svg new file mode 100644 index 0000000000000000000000000000000000000000..ec6d44bd139c4fecea2d543cd32d52961f76aeb0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tm.svg new file mode 100644 index 0000000000000000000000000000000000000000..9d223801be977e80ac277442f3d031eb2c844380 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tm.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tn.svg new file mode 100644 index 0000000000000000000000000000000000000000..f782aa693d079f0e57d1d2f168aea6a772bd2261 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/to.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/to.svg new file mode 100644 index 0000000000000000000000000000000000000000..201d6bc39d2960e48cdebed288e4df951affc7c0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tr.svg new file mode 100644 index 0000000000000000000000000000000000000000..861d4ea5800ca9c38ce761accaadd35dde982740 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tt.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ab3e77192df360fe2c5f2e5ba1f7aedee6cc45f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tv.svg new file mode 100644 index 0000000000000000000000000000000000000000..d6d1338c9e1ed678e0db2dd1d0a273f2b68f8ce9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tv.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tw.svg new file mode 100644 index 0000000000000000000000000000000000000000..4285d93844a97110d26c6cb1447f20ad1a611eb2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tz.svg new file mode 100644 index 0000000000000000000000000000000000000000..f993ff15d6914cacf2ef7ba602ca96113655d685 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/tz.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ua.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ua.svg new file mode 100644 index 0000000000000000000000000000000000000000..18ebe0d49dc999fd923d9f87eec163cbdf1cccf0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ug.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ug.svg new file mode 100644 index 0000000000000000000000000000000000000000..f9751faf89b2f12f8b2b103555908867ab893cbe --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/um.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/um.svg new file mode 100644 index 0000000000000000000000000000000000000000..25b08ce6ab3ebc2e3d879f77579a9357d38a5164 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/um.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/un.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/un.svg new file mode 100644 index 0000000000000000000000000000000000000000..49db9cd4b658a14efa3dc9bf4b0cfb86a7cd02ab --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/us.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/us.svg new file mode 100644 index 0000000000000000000000000000000000000000..31f90c6c3a8d4587a9273cfac868264a199ac7c3 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/us.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/uy.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/uy.svg new file mode 100644 index 0000000000000000000000000000000000000000..0194a7cb0b6b258fe5b5c08e7698ed83d5d05d51 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/uz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/uz.svg new file mode 100644 index 0000000000000000000000000000000000000000..641af1b8269eb7c399960bd93ba6cb8ff7a07c75 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/va.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/va.svg new file mode 100644 index 0000000000000000000000000000000000000000..4305a66c31c9d499f0bc0a8031df03a172f8ed9e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/va.svg @@ -0,0 +1,479 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vc.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee72f781ac855ddb519e6260281bebc72117455c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ve.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ve.svg new file mode 100644 index 0000000000000000000000000000000000000000..205fe848a3b979edb834e17c21f072f7f446042f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vg.svg new file mode 100644 index 0000000000000000000000000000000000000000..8d2478507a78cc31c458193e97c5c0b2f19bea1c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vg.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vi.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vi.svg new file mode 100644 index 0000000000000000000000000000000000000000..eb8cd5e5985d10cd1ea14c3630dbd4ae3c9143f9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vn.svg new file mode 100644 index 0000000000000000000000000000000000000000..6b158145ad0114e9e865a7ec2f036023952258ea --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vu.svg new file mode 100644 index 0000000000000000000000000000000000000000..7bd2221afce66ec0f797a74209e45281209d8f94 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/vu.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/wf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/wf.svg new file mode 100644 index 0000000000000000000000000000000000000000..bb726a7c2e14656b82dfdc61de2f73f77be9b0d2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/wf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ws.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ws.svg new file mode 100644 index 0000000000000000000000000000000000000000..155ad7b55808239f01631162b110285a86e851c4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ws.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/xk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/xk.svg new file mode 100644 index 0000000000000000000000000000000000000000..25d56ceebddb2564fd715385bc26e609e3c0c96b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/xk.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ye.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ye.svg new file mode 100644 index 0000000000000000000000000000000000000000..d49d2c414ee4a89003448a126bd82b4780e5488b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/yt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/yt.svg new file mode 100644 index 0000000000000000000000000000000000000000..7bf383737974fa0bd579861d2e0a36b8272d3a23 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/yt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/za.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/za.svg new file mode 100644 index 0000000000000000000000000000000000000000..9bae96fe3ed8231ee68cfddffcefbb875e533fdf --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/zm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/zm.svg new file mode 100644 index 0000000000000000000000000000000000000000..dc8db815081fbe007a4b5c22cccb50a7ba62c75f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/zw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/zw.svg new file mode 100644 index 0000000000000000000000000000000000000000..563267e1b113399550e13b07553f33d1c80644fa --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/1x1/zw.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ad.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ad.svg new file mode 100644 index 0000000000000000000000000000000000000000..9e424cf04d0f1919639c952dc0666645610ad51c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ad.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ae.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ae.svg new file mode 100644 index 0000000000000000000000000000000000000000..a7bdb17aa7e08a3d918012935f4f01567d0ef3a8 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/af.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/af.svg new file mode 100644 index 0000000000000000000000000000000000000000..a8676a3b13caf60686fab40a9fde5b10cf48413e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/af.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ag.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ag.svg new file mode 100644 index 0000000000000000000000000000000000000000..24c4c2ee05065d6195dc8ca2fdd172764c201a5e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ai.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ai.svg new file mode 100644 index 0000000000000000000000000000000000000000..fa71b588975269adfddcd4b28fc2ba5b5a41f6a7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ai.svg @@ -0,0 +1,767 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/al.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/al.svg new file mode 100644 index 0000000000000000000000000000000000000000..25be209e62158e2327bd05fd797104c8d796fd97 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/am.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/am.svg new file mode 100644 index 0000000000000000000000000000000000000000..0cd21781581f9763f40b5307c3625b5995da06df --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ao.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ao.svg new file mode 100644 index 0000000000000000000000000000000000000000..95873c61752d85206780849b6073ec049fb3c8ad --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/aq.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/aq.svg new file mode 100644 index 0000000000000000000000000000000000000000..d3be43b8b7a7dfe5e3bef43746c425e4e11a5f23 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/aq.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ar.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ar.svg new file mode 100644 index 0000000000000000000000000000000000000000..4c15564672a80da2c61cc5868d8952cdcdf2478a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ar.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/as.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/as.svg new file mode 100644 index 0000000000000000000000000000000000000000..fbdbe95d4a5a8d08a981a931b734f2cb2ded3e66 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/as.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/at.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/at.svg new file mode 100644 index 0000000000000000000000000000000000000000..6796f43509b69e9a9ee15f77cd0b28a00f3b1993 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/au.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/au.svg new file mode 100644 index 0000000000000000000000000000000000000000..47c7baec2a5e566c5084dc6dd40c5f52aa3e75a9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/au.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/aw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/aw.svg new file mode 100644 index 0000000000000000000000000000000000000000..632cdf56212626f37822014837bd251cb6f8d9f4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ax.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ax.svg new file mode 100644 index 0000000000000000000000000000000000000000..472a8cd6ddea10325f225ee9bc68ece15cf29d91 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/az.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/az.svg new file mode 100644 index 0000000000000000000000000000000000000000..4293e9f52fbe33757bd30c7b596cee1087432dab --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ba.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ba.svg new file mode 100644 index 0000000000000000000000000000000000000000..3860f34038978ed9df368595902cc31d562e29f4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bb.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bb.svg new file mode 100644 index 0000000000000000000000000000000000000000..d75831f3ef557fc2de4db306af404fb5cb9092ae --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bd.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bd.svg new file mode 100644 index 0000000000000000000000000000000000000000..1e3433e5a2def4fb1a53bf9bea3584ba6b8d4cee --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/be.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/be.svg new file mode 100644 index 0000000000000000000000000000000000000000..eaf016d0843805be52a9200f99b7f0179cadcc29 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bf.svg new file mode 100644 index 0000000000000000000000000000000000000000..c92cce6be8815f741e910638e466bad8eee9d7e5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bg.svg new file mode 100644 index 0000000000000000000000000000000000000000..15ba696cfc483a66010c9377075086fa48068360 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bh.svg new file mode 100644 index 0000000000000000000000000000000000000000..803df89e987b1707ec1a1a77c4c62b9af130611d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bh.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bi.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bi.svg new file mode 100644 index 0000000000000000000000000000000000000000..437631bdbaa2df1f87d860ea5e02528170ea7e44 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bj.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bj.svg new file mode 100644 index 0000000000000000000000000000000000000000..1721e1d3f464f0dd9ab6e7c685f745e6a82e034c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bl.svg new file mode 100644 index 0000000000000000000000000000000000000000..ecf6ec4334e0c6e077f98f7ddceffdaaa588d044 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bm.svg new file mode 100644 index 0000000000000000000000000000000000000000..4fea36edcbba12f5ebe9e5fe37de3be8a6c36199 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bm.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bn.svg new file mode 100644 index 0000000000000000000000000000000000000000..398aa39552917f578601c94a269f221efa46dbfe --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bo.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bo.svg new file mode 100644 index 0000000000000000000000000000000000000000..7c546d9718e040c23015895121194b3070064edd --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bo.svg @@ -0,0 +1,676 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bq.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bq.svg new file mode 100644 index 0000000000000000000000000000000000000000..4b74eb400a78e64e0d6dbb09f938196ff914091d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/br.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/br.svg new file mode 100644 index 0000000000000000000000000000000000000000..061406bb5f75b6bf4a065d162337ce17829836cf --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bs.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bs.svg new file mode 100644 index 0000000000000000000000000000000000000000..a9d84193e3750f21c8f6b4c99b8b9b03e8837405 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bt.svg new file mode 100644 index 0000000000000000000000000000000000000000..5d683915df7b7b36ef01a42e1b391fbee9979b4f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bt.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bv.svg new file mode 100644 index 0000000000000000000000000000000000000000..cffdc3282a449265a8d68264241b26062b39f33e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bw.svg new file mode 100644 index 0000000000000000000000000000000000000000..3d65eda2e2d9a5f1b823dea483b1204a8e404999 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/by.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/by.svg new file mode 100644 index 0000000000000000000000000000000000000000..2b8656d11d2488109d282ac6bfe0960b449150be --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/by.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bz.svg new file mode 100644 index 0000000000000000000000000000000000000000..6ce7c97d6edc22905040dfef6c6bd6429e66e6f0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/bz.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ca.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ca.svg new file mode 100644 index 0000000000000000000000000000000000000000..4d969abf1c7999daeca8a85d6b0ed2745d9691e2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ca.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cc.svg new file mode 100644 index 0000000000000000000000000000000000000000..14999321f1d4187207c03d7489053d37d0a96d91 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cd.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cd.svg new file mode 100644 index 0000000000000000000000000000000000000000..739fab774c67b93eea59d7574577cbc97e9f2a4c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cd.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cf.svg new file mode 100644 index 0000000000000000000000000000000000000000..b4a2125b520c3a83498705b4ca9d3340f40f3b03 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cg.svg new file mode 100644 index 0000000000000000000000000000000000000000..6347e42cd213ca62a1f229278e52008499a06092 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ch.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ch.svg new file mode 100644 index 0000000000000000000000000000000000000000..f5ec8d4620bcee2436ba7637e2f9f70fde2b47f1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ci.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ci.svg new file mode 100644 index 0000000000000000000000000000000000000000..2bd7104743d825b5e457ad615f7b3ded124229b1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ck.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ck.svg new file mode 100644 index 0000000000000000000000000000000000000000..af4f1c44040febad016661cccf0cddbef36a5d5c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cl.svg new file mode 100644 index 0000000000000000000000000000000000000000..04756f51b0d02402991d4dfcb245c64c4c02d06b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cm.svg new file mode 100644 index 0000000000000000000000000000000000000000..b4272b7d5dd3abc0a46970914a125bf9755c30a3 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cn.svg new file mode 100644 index 0000000000000000000000000000000000000000..72080b6b05c8a062057c3216462bcfa2ba05d7f5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/co.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/co.svg new file mode 100644 index 0000000000000000000000000000000000000000..0d74127a27ec4e84ad3f6dbcea5b166883f9bb42 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cr.svg new file mode 100644 index 0000000000000000000000000000000000000000..133b02939a45bc644ac75c5ab4816e8e0130b4a2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cu.svg new file mode 100644 index 0000000000000000000000000000000000000000..aabb4149a0393d3ce8019fd5493c8bae5e015e38 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cv.svg new file mode 100644 index 0000000000000000000000000000000000000000..408f1cf952ee23f4d547502e5ca2baed48fa2a5c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cw.svg new file mode 100644 index 0000000000000000000000000000000000000000..b43ed62cf7df3b3846e3b2adde0f270606f0505c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cx.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cx.svg new file mode 100644 index 0000000000000000000000000000000000000000..bf87869956ad9c81d0dec47415320be7b35db218 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cy.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cy.svg new file mode 100644 index 0000000000000000000000000000000000000000..e339b8a5335b6fdfdc7ac9a10488a6b1319ac33d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cz.svg new file mode 100644 index 0000000000000000000000000000000000000000..93528eafc0b7d38831a0709fdb6c02fc7895d1c5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/cz.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/de.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/de.svg new file mode 100644 index 0000000000000000000000000000000000000000..1acf302d3f585194c2b5af105f79173d65734f36 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dj.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dj.svg new file mode 100644 index 0000000000000000000000000000000000000000..0604f5406f2697a52fa1df8ac7bb7a2c68b7eecf --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dk.svg new file mode 100644 index 0000000000000000000000000000000000000000..ab47e0cb9d0b2e04a682cab02e88b4efca6307bf --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dm.svg new file mode 100644 index 0000000000000000000000000000000000000000..0aa4078258800162c6ec2f86e8ef6d538da8265b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/do.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/do.svg new file mode 100644 index 0000000000000000000000000000000000000000..b158010ff2d47953838cd5649d8cb43ade975e5e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/do.svg @@ -0,0 +1,6745 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dz.svg new file mode 100644 index 0000000000000000000000000000000000000000..f44290ec4083cb6539091570f6094b18c8165577 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ec.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ec.svg new file mode 100644 index 0000000000000000000000000000000000000000..5336101eded290fc04dfe28a3aeabe4aafd1682c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ec.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ee.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ee.svg new file mode 100644 index 0000000000000000000000000000000000000000..aa917bbe627027c46450ba0deb0e86d575fb7633 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ee.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/eg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/eg.svg new file mode 100644 index 0000000000000000000000000000000000000000..26450cd50b9b72460207cf5a5a0a3117e045031e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/eh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/eh.svg new file mode 100644 index 0000000000000000000000000000000000000000..15aec44dee7df5dfd24e3c27bede932dc10cc981 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/eh.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/er.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/er.svg new file mode 100644 index 0000000000000000000000000000000000000000..25eb834980fb7c31b07165322c95971a57c81d6c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/er.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/es-ct.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/es-ct.svg new file mode 100644 index 0000000000000000000000000000000000000000..9b07e7a8bcc2c5b09d0b30ebed26d45ed0e9f704 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/es-ct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/es.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/es.svg new file mode 100644 index 0000000000000000000000000000000000000000..8791e51ab93bf5c90305cde1fd0efe596b63a6ea --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/es.svg @@ -0,0 +1,544 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/et.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/et.svg new file mode 100644 index 0000000000000000000000000000000000000000..e69e7b1714aabc2f3494c237cb93a43a8d0a56e9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/eu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/eu.svg new file mode 100644 index 0000000000000000000000000000000000000000..b6a39f5ffe699ca60a0bb06cca4fcccbd62a24ff --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fi.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fi.svg new file mode 100644 index 0000000000000000000000000000000000000000..c3451a4763b10a275618241346e2a0f1286ab345 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fj.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fj.svg new file mode 100644 index 0000000000000000000000000000000000000000..9c003653b032165c660af43176f2419b5c213d22 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fj.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fk.svg new file mode 100644 index 0000000000000000000000000000000000000000..12d4941a58a2bbe74ddadead198924c54f0d7172 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fk.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fm.svg new file mode 100644 index 0000000000000000000000000000000000000000..1e641adf726a052aa7e8ccd2b9df88956abb1d29 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fo.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fo.svg new file mode 100644 index 0000000000000000000000000000000000000000..ea71332289ab6731d1c446fff17b6626af653497 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fr.svg new file mode 100644 index 0000000000000000000000000000000000000000..712c8a5db251ad3ac6fe808ebb6a6f579d1558c5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/fr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ga.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ga.svg new file mode 100644 index 0000000000000000000000000000000000000000..1f0a9ca2e2c4d2c193cf2c1c655c39182c865ef4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-eng.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-eng.svg new file mode 100644 index 0000000000000000000000000000000000000000..eab52bd59be9e375e007394d1a8ec4462b74943c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-nir.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-nir.svg new file mode 100644 index 0000000000000000000000000000000000000000..d7bda86c1ba21b46c19f225eed4aa6eb243dee62 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-nir.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-sct.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-sct.svg new file mode 100644 index 0000000000000000000000000000000000000000..169bfba4a0c09a9b7e3df34cbd14660f1ef764a0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-wls.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-wls.svg new file mode 100644 index 0000000000000000000000000000000000000000..e592026e4a73165e69a306da30778a72a7b97a34 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb.svg new file mode 100644 index 0000000000000000000000000000000000000000..d98b6cce3e8f706914dbff4eb38add7522f96a36 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gd.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gd.svg new file mode 100644 index 0000000000000000000000000000000000000000..f69e24efd963bdcabb0aa7e96b81212b9dff9db1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gd.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ge.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ge.svg new file mode 100644 index 0000000000000000000000000000000000000000..cec14a005632fdf983efbe52c13187d4adab0d97 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gf.svg new file mode 100644 index 0000000000000000000000000000000000000000..d3131e9f3274bd549584747e48f81fff820068ad --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gg.svg new file mode 100644 index 0000000000000000000000000000000000000000..deb4af5a61a2d2c2f061dd4235775ea8142b8456 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gh.svg new file mode 100644 index 0000000000000000000000000000000000000000..3f9783449964cf8f22e23b87b8fac02fb1fd5eec --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gi.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gi.svg new file mode 100644 index 0000000000000000000000000000000000000000..b423cd9d9daa6b415108107327d001e14e61e542 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gl.svg new file mode 100644 index 0000000000000000000000000000000000000000..017a53fa3753ab29551c78a81d7451112610b10e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gl.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gm.svg new file mode 100644 index 0000000000000000000000000000000000000000..14c329d958c375c42d7b973d01c05df7694530fe --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gm.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gn.svg new file mode 100644 index 0000000000000000000000000000000000000000..7841e8d0772f99ba9ae4d0ab3061595a57caf56e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gp.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gp.svg new file mode 100644 index 0000000000000000000000000000000000000000..24a8260246e9e4844bec7f80646c76c2fdd6f636 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gq.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gq.svg new file mode 100644 index 0000000000000000000000000000000000000000..293dbb15ffe02c662d6511dfb2b26cb88e5bf1d1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gq.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gr.svg new file mode 100644 index 0000000000000000000000000000000000000000..b59a5f242158e709b08bbb1393c54f450eaea9d1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gr.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gs.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gs.svg new file mode 100644 index 0000000000000000000000000000000000000000..b9ade2297de59c3b22dfce34bb1b712ffee4426b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gs.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + E + + + O + + + T + + + E + + + R + + + R + + + R + + + R + + + R + + + E + + + O + + + O + + + A + + + A + + + A + + + M + + + P + + + P + + + P + + + I + + + T + + + T + + + M + + + G + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gt.svg new file mode 100644 index 0000000000000000000000000000000000000000..3903ea13373c9b6829702d22bdd7390d318fea2a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gt.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gu.svg new file mode 100644 index 0000000000000000000000000000000000000000..b15679b66ddaee631e05139e39ccc88637d55f6f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gu.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + G + + + U + + + A + + + M + + + + + + + + G + + + U + + + A + + + M + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gw.svg new file mode 100644 index 0000000000000000000000000000000000000000..ae173140bd4ff469f2c61ad6dff807a4e1be028c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gy.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gy.svg new file mode 100644 index 0000000000000000000000000000000000000000..e957f3ef9d5dc4b551fc45804c9fd72712a65305 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hk.svg new file mode 100644 index 0000000000000000000000000000000000000000..e1eaa2a632e3f7dc3da16a75002fc72398354437 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hk.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hm.svg new file mode 100644 index 0000000000000000000000000000000000000000..a9dda0740503cb10acb14436261f41d56a910c9c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hn.svg new file mode 100644 index 0000000000000000000000000000000000000000..47af518ed99d395c2cbcb6dfbe678595ce93fabf --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hr.svg new file mode 100644 index 0000000000000000000000000000000000000000..cafb744816da41a9ae7132787bae3003ebf5c743 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hr.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ht.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ht.svg new file mode 100644 index 0000000000000000000000000000000000000000..4628276581a452d272883d9bfe64ed1df720eb62 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ht.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hu.svg new file mode 100644 index 0000000000000000000000000000000000000000..177da97a9edd2b4c13a1dc4945e6ebbe51391522 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/id.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/id.svg new file mode 100644 index 0000000000000000000000000000000000000000..0663baffac619c32280c7acfc9a0cc09d5cf9db9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/id.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ie.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ie.svg new file mode 100644 index 0000000000000000000000000000000000000000..53f3464317b864dc38afae3d62fc004324256193 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/il.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/il.svg new file mode 100644 index 0000000000000000000000000000000000000000..f18761bb0d35f27e0e921a76195bcb30a8b4976a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/im.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/im.svg new file mode 100644 index 0000000000000000000000000000000000000000..9a9c5f1d72bc94d4b596fe75ee98a47a8798a246 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/in.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/in.svg new file mode 100644 index 0000000000000000000000000000000000000000..6b831bcfff046b8e973e50b8be89e23e242ea760 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/io.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/io.svg new file mode 100644 index 0000000000000000000000000000000000000000..4d6e6b935f56bc6f0df032d21b7dde59501e941c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/io.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/iq.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/iq.svg new file mode 100644 index 0000000000000000000000000000000000000000..96afd55074e22d0ad8cee0899d690a9b4fde8dba --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ir.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ir.svg new file mode 100644 index 0000000000000000000000000000000000000000..4c3332a918d497c14cb9c94b8d42a828697a01bc --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ir.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/is.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/is.svg new file mode 100644 index 0000000000000000000000000000000000000000..d949b1b0ab38766325144131a059978a49b1695b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/it.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/it.svg new file mode 100644 index 0000000000000000000000000000000000000000..5cb92aaaf453a6f74acb32404318bb9242d0bca9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/je.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/je.svg new file mode 100644 index 0000000000000000000000000000000000000000..d385ea5144a81189e246c9252b6c9f80d9400391 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/je.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/jm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/jm.svg new file mode 100644 index 0000000000000000000000000000000000000000..535daf44bff5b114109520815e86e1079cda8560 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/jo.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/jo.svg new file mode 100644 index 0000000000000000000000000000000000000000..ae2bc08814dfa7eea7d3fc76e8b8722e06c5247d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/jp.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/jp.svg new file mode 100644 index 0000000000000000000000000000000000000000..4178ea6fd8fd577854af422b76174b2b44beca87 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ke.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ke.svg new file mode 100644 index 0000000000000000000000000000000000000000..153b73f4b5ed7bf2ad9be33fc2c0852baa71f150 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kg.svg new file mode 100644 index 0000000000000000000000000000000000000000..c255c650c62f32168cdfb238c6adc2cd70af8b44 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kh.svg new file mode 100644 index 0000000000000000000000000000000000000000..e0add104386d6863e26225b0bb490418b0dd6da9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kh.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ki.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ki.svg new file mode 100644 index 0000000000000000000000000000000000000000..c4a40297bad9569dfb6ba3f0f5de6f4ffd5c4498 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/km.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/km.svg new file mode 100644 index 0000000000000000000000000000000000000000..cfabd68f1687ed37aeb519468b992d77855fd4f7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kn.svg new file mode 100644 index 0000000000000000000000000000000000000000..1a753c00949d596cef8e1975307ba603d5d2d1fe --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kp.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kp.svg new file mode 100644 index 0000000000000000000000000000000000000000..b9a50d096bb5583ee23d81960925c94ef01ec56e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kr.svg new file mode 100644 index 0000000000000000000000000000000000000000..2781ca0d802a692da0841335fc70098c5fa01b6b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kw.svg new file mode 100644 index 0000000000000000000000000000000000000000..f404da2b765919c72de19121b626cd47957592f7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ky.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ky.svg new file mode 100644 index 0000000000000000000000000000000000000000..ee34a1ce02f4e009f4dffe26de8e0573e0897a7d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ky.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kz.svg new file mode 100644 index 0000000000000000000000000000000000000000..1fa6fcaa4a939e474086940854c40b31d549ad18 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/kz.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/la.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/la.svg new file mode 100644 index 0000000000000000000000000000000000000000..91dc1a4eb2c29f1c40bd2f9eb4c654f2f9b5cc1e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lb.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lb.svg new file mode 100644 index 0000000000000000000000000000000000000000..f0151d1a13ec646608dee0c95c13260370c2b509 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lc.svg new file mode 100644 index 0000000000000000000000000000000000000000..8ba746c5e385b12cabbf522c7970980b6b1c3ea8 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/li.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/li.svg new file mode 100644 index 0000000000000000000000000000000000000000..642993ddb83c9f1d158700206ed68ce80db48956 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lk.svg new file mode 100644 index 0000000000000000000000000000000000000000..eebadfb3059b97d9e2c128dac1ce148416c87c1d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lr.svg new file mode 100644 index 0000000000000000000000000000000000000000..f27437d04c185558c3d25bf389924a4005ab1d13 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ls.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ls.svg new file mode 100644 index 0000000000000000000000000000000000000000..5dd5b0c3dad4b7cb263adf25a7f984508f24ef2e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lt.svg new file mode 100644 index 0000000000000000000000000000000000000000..36e30e9ebed8a18a3f868f21a79393f6da1d06b9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lu.svg new file mode 100644 index 0000000000000000000000000000000000000000..bf6ca16706c3e20fe8a9114de9976417ed35768d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lv.svg new file mode 100644 index 0000000000000000000000000000000000000000..efa5a3286ef1d8ea7d82494a75ce47a7046c2af2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ly.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ly.svg new file mode 100644 index 0000000000000000000000000000000000000000..5058cdcd18894feef5bf8b5433d4ad58ccaab979 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ma.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ma.svg new file mode 100644 index 0000000000000000000000000000000000000000..8de40777a00bf83177a6f573aa4d9b6110eb7523 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mc.svg new file mode 100644 index 0000000000000000000000000000000000000000..45133dcb9a3380084d6b81e4365e8e2890c6522c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/md.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/md.svg new file mode 100644 index 0000000000000000000000000000000000000000..053d8f8ae84d070280d866296fd3831b09bc136f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/md.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/me.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/me.svg new file mode 100644 index 0000000000000000000000000000000000000000..2365c656e4eb8cec33af3e72d12488439b282f74 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/me.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mf.svg new file mode 100644 index 0000000000000000000000000000000000000000..bf46785ccd3ad52e9f7e8f9fbe123b6e133be581 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mg.svg new file mode 100644 index 0000000000000000000000000000000000000000..76e84fc47e1034ecb1476ccb540b5703ae6f67f7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mh.svg new file mode 100644 index 0000000000000000000000000000000000000000..f74e99d721540b173447c960581dc956c54391a9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mh.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mk.svg new file mode 100644 index 0000000000000000000000000000000000000000..1f1eaf6841327ed029c8f3ad0a6bf25efa6d5587 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ml.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ml.svg new file mode 100644 index 0000000000000000000000000000000000000000..66da1bb95b0644df8e1fadd8bc7ac7fca3ef45af --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mm.svg new file mode 100644 index 0000000000000000000000000000000000000000..c77927ec6f1ccf054e6b3f1a4f8b9c90e550a3f2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mm.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mn.svg new file mode 100644 index 0000000000000000000000000000000000000000..2954d25de709d671ee5ab4292915321406b418a3 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mo.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mo.svg new file mode 100644 index 0000000000000000000000000000000000000000..6a8ddab603c6fc662bd5ba46a5667bfb45a077d2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mp.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mp.svg new file mode 100644 index 0000000000000000000000000000000000000000..8702b3732d415beeb77907812da0936be06ddd6d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mp.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mq.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mq.svg new file mode 100644 index 0000000000000000000000000000000000000000..b389d4390ce9cd51cc13942de0aeb1381cde38f5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mq.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mr.svg new file mode 100644 index 0000000000000000000000000000000000000000..20262c015cba89c617e973edd1b845f097849fca --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ms.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ms.svg new file mode 100644 index 0000000000000000000000000000000000000000..63409529e4fda8ba5ff247ae7f1ea83c3c6932f2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ms.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mt.svg new file mode 100644 index 0000000000000000000000000000000000000000..8af00b3b0dae2513a5d30947243d9742313777d2 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mt.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mu.svg new file mode 100644 index 0000000000000000000000000000000000000000..102ed3be2145d16ecfbddea345e116367c6c4bc5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mv.svg new file mode 100644 index 0000000000000000000000000000000000000000..2525c92362d9ac0620d9829a65fe2a409af7699c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mw.svg new file mode 100644 index 0000000000000000000000000000000000000000..c09c0f743e4a5876135bb9e29a24c5c0e77c7773 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mw.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mx.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mx.svg new file mode 100644 index 0000000000000000000000000000000000000000..87dbe3b0e20f6c46e1348590d009ae40af6d80b8 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mx.svg @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/my.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/my.svg new file mode 100644 index 0000000000000000000000000000000000000000..77bb5fef4ccb980e4616314fc443ad65edaf0f6b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/my.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mz.svg new file mode 100644 index 0000000000000000000000000000000000000000..3ed8601e594333ba0fc0811e9db2e013af30979f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/na.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/na.svg new file mode 100644 index 0000000000000000000000000000000000000000..6876ac7a85e91b280fe0974bd4c9fdfb2a19e4c7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/na.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nc.svg new file mode 100644 index 0000000000000000000000000000000000000000..53622be4a608aa7e6ef3c7387ee5436fcf6a8916 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ne.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ne.svg new file mode 100644 index 0000000000000000000000000000000000000000..f4709078d09a7aa677bff4fd8bbb7274146d929b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nf.svg new file mode 100644 index 0000000000000000000000000000000000000000..1682c0037132fc40e2f8d9a7d84090b9fc45bffe --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nf.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ng.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ng.svg new file mode 100644 index 0000000000000000000000000000000000000000..42ee5ad4f29c15f3d1ddadb49f82479866a702b4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ni.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ni.svg new file mode 100644 index 0000000000000000000000000000000000000000..f137e55746acbeffdd5b0a7c4c4e1905c2fb4f17 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ni.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nl.svg new file mode 100644 index 0000000000000000000000000000000000000000..d48808c3e77239eda7a637b37d2ce2ccbaa460c9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/no.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/no.svg new file mode 100644 index 0000000000000000000000000000000000000000..56e78e153a5b5520c4adfa34008b686517049688 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/np.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/np.svg new file mode 100644 index 0000000000000000000000000000000000000000..53a738a17d2c787fbf4ae510a11ae7bc31d0383a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/np.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nr.svg new file mode 100644 index 0000000000000000000000000000000000000000..f7a4feb7269e9e3a334d00b279b5f94621b0fc46 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nu.svg new file mode 100644 index 0000000000000000000000000000000000000000..e53f79c1f7522073dd9d1fd209260636fd5ab80a --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nu.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nz.svg new file mode 100644 index 0000000000000000000000000000000000000000..8af70a3c38f0d6be2a720ceb0405130a297aa06e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/nz.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/om.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/om.svg new file mode 100644 index 0000000000000000000000000000000000000000..2c7fe682852d42dcc2bd9fede8e80bdf3d602152 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/om.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pa.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pa.svg new file mode 100644 index 0000000000000000000000000000000000000000..cf758e8606b0dfd87ecd8ce6e10ba19be076b2e0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pa.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pe.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pe.svg new file mode 100644 index 0000000000000000000000000000000000000000..421239e8017f3241ddc8a1705a487c7805cf78e3 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pe.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pf.svg new file mode 100644 index 0000000000000000000000000000000000000000..6257d226ffe1a8ed5e77551c958ec048624efc67 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pf.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pg.svg new file mode 100644 index 0000000000000000000000000000000000000000..576d26c60de481d358ddf849fef5663fb150ec16 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ph.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ph.svg new file mode 100644 index 0000000000000000000000000000000000000000..fe7ef9fc60cc03e6eb05af1f12e9d4acbb3d4b07 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ph.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pk.svg new file mode 100644 index 0000000000000000000000000000000000000000..097d79f80e81f3b489d08496ca71216a5e84c1d4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pl.svg new file mode 100644 index 0000000000000000000000000000000000000000..c00513a2c3c3ee142adaff42d91c1723fb141a91 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pm.svg new file mode 100644 index 0000000000000000000000000000000000000000..07ea24cc1ae2e559760442c618a8cbc34a987258 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pm.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pn.svg new file mode 100644 index 0000000000000000000000000000000000000000..c6cdf29f1323c64bf8041e2ac1ee3308ef72339c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pn.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pr.svg new file mode 100644 index 0000000000000000000000000000000000000000..041377bebd687617763697fe398c809ea182162b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ps.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ps.svg new file mode 100644 index 0000000000000000000000000000000000000000..2827d2ae39381ab18b51729339fc614b71033d78 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ps.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pt.svg new file mode 100644 index 0000000000000000000000000000000000000000..941d5457506a8b6faec849eb88fd15acfc80950b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pw.svg new file mode 100644 index 0000000000000000000000000000000000000000..1221d2900ae76dab660f631ab94091395863022d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/py.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/py.svg new file mode 100644 index 0000000000000000000000000000000000000000..86b334660c215b5b5f9b54cbd000a50b7b6c6a07 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/py.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/qa.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/qa.svg new file mode 100644 index 0000000000000000000000000000000000000000..0f93a9d028d47754194bb6148cdc4779f047080e --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/re.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/re.svg new file mode 100644 index 0000000000000000000000000000000000000000..827103b18126cc74c1523f016192fdaf40a3a387 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/re.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ro.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ro.svg new file mode 100644 index 0000000000000000000000000000000000000000..d43c1e26eb37a045511945730055d2804032cdbf --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/rs.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/rs.svg new file mode 100644 index 0000000000000000000000000000000000000000..aa160fdaefefc718a0b42fceeddecbcddfad0b15 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/rs.svg @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ru.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ru.svg new file mode 100644 index 0000000000000000000000000000000000000000..f56fddb9107c1d9b7363b2173039a2e20e635f55 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ru.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/rw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/rw.svg new file mode 100644 index 0000000000000000000000000000000000000000..afed4e3e29ca571cfc19f0ee68280f8d941135fa --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sa.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sa.svg new file mode 100644 index 0000000000000000000000000000000000000000..5e8d038d2bac4e05eaef5c9e542b0e25cb69a2fc --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sa.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sb.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sb.svg new file mode 100644 index 0000000000000000000000000000000000000000..49903aebc7d24c06459d782fd38ccea30f522257 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sc.svg new file mode 100644 index 0000000000000000000000000000000000000000..3229f9d5d5ebf57411e23256802b2b07172213fb --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sc.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sd.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sd.svg new file mode 100644 index 0000000000000000000000000000000000000000..30fe44626aa21387830cf128d48f190cb31858b9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/se.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/se.svg new file mode 100644 index 0000000000000000000000000000000000000000..9079f3179873721f451ffede7914006ae7de317d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/se.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sg.svg new file mode 100644 index 0000000000000000000000000000000000000000..308783196f40492765c15a41f20ca3ba56c701ac --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sh.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sh.svg new file mode 100644 index 0000000000000000000000000000000000000000..7b0832167ab3025bc350de6f6797442e597d6fd3 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sh.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/si.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/si.svg new file mode 100644 index 0000000000000000000000000000000000000000..11e4c8a93a0a6bbb6a4eafca6ba5c4ce58a7d838 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sj.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sj.svg new file mode 100644 index 0000000000000000000000000000000000000000..8e5d104afa83ac3504a07763e4482f8b43a99727 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sk.svg new file mode 100644 index 0000000000000000000000000000000000000000..47e5040583cfaf1f5e64e226d4d23b3a59f23081 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sl.svg new file mode 100644 index 0000000000000000000000000000000000000000..51e2676be8a7d5518f1907b915c2a18e40d28d3f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sm.svg new file mode 100644 index 0000000000000000000000000000000000000000..c86e3fba72fbadc347e1a1772e05b1f72fa8d31b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sm.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + L + + + I + + + B + + + E + + + R + + + T + + + A + + + S + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sn.svg new file mode 100644 index 0000000000000000000000000000000000000000..c06616fc93eadc26e5a1e8519c9274c711f847ca --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/so.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/so.svg new file mode 100644 index 0000000000000000000000000000000000000000..ab104385e2cc76d2242846d07070bfa6b7dbaab6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sr.svg new file mode 100644 index 0000000000000000000000000000000000000000..9a169fd9b5ebfcf3d44f349f4089dcac370cc004 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ss.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ss.svg new file mode 100644 index 0000000000000000000000000000000000000000..4efa598662544d0a00a13ed3571df1a3e7b4eb5c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/st.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/st.svg new file mode 100644 index 0000000000000000000000000000000000000000..a6bd2187ba9449b6d4294483f63095d14e5bf8c4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/st.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sv.svg new file mode 100644 index 0000000000000000000000000000000000000000..c655e2eac13066f58be0593bc0d319a5eb56dd78 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sv.svg @@ -0,0 +1,601 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sx.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sx.svg new file mode 100644 index 0000000000000000000000000000000000000000..97984a28bed0bc12803b0df1596a94b55793df07 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sy.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sy.svg new file mode 100644 index 0000000000000000000000000000000000000000..b30a3ba9c036103aa88fed4bd4768e53bab25a16 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sz.svg new file mode 100644 index 0000000000000000000000000000000000000000..7587ad10b750d1f3d9a5c2bd8d3d6fc39e10a60c --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/sz.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tc.svg new file mode 100644 index 0000000000000000000000000000000000000000..a599069d2844a4c64a7e1657264075c27b891bb7 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tc.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/td.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/td.svg new file mode 100644 index 0000000000000000000000000000000000000000..734473e71c514ceeb92d85059c1bb8e0f398b8cd --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tf.svg new file mode 100644 index 0000000000000000000000000000000000000000..3913728c441e6670635b0be91d25682c22a2e649 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tg.svg new file mode 100644 index 0000000000000000000000000000000000000000..1824e0be7daf7322f5c3c7b5542899eb26a168d6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/th.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/th.svg new file mode 100644 index 0000000000000000000000000000000000000000..66fcd8edd908310134df81024892ff829023e220 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tj.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tj.svg new file mode 100644 index 0000000000000000000000000000000000000000..4e4dd4705d459a38bb4f65266a555984b5566f8d --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tj.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tk.svg new file mode 100644 index 0000000000000000000000000000000000000000..312e88118983b95b3f58229e8b3b6642267c7a08 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tl.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tl.svg new file mode 100644 index 0000000000000000000000000000000000000000..87e47310d4f2b0e0a13e5521e9324df06e5e26b6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tm.svg new file mode 100644 index 0000000000000000000000000000000000000000..f619373e8fda3644f944261d42fb58affb61ffae --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tm.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tn.svg new file mode 100644 index 0000000000000000000000000000000000000000..4c1996c017eb279caa07e6b866f2adb81966f7fc --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tn.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/to.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/to.svg new file mode 100644 index 0000000000000000000000000000000000000000..4dd38e419ab17f0b474f72b7bcf25282afdf694b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tr.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tr.svg new file mode 100644 index 0000000000000000000000000000000000000000..f1910ee356c205fd1c73d77b40b90af80b3858a0 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tt.svg new file mode 100644 index 0000000000000000000000000000000000000000..19add521724bb3302e57141dc8e0e9f5b3b21219 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tt.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tv.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tv.svg new file mode 100644 index 0000000000000000000000000000000000000000..0b220b20d5875ef313c1c8f5cae8adc203fc1914 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tv.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tw.svg new file mode 100644 index 0000000000000000000000000000000000000000..c7fdb9065a448783ca149505329f2099a6420dc6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tz.svg new file mode 100644 index 0000000000000000000000000000000000000000..530503430420049e639c92255881a868d7a86946 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/tz.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ua.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ua.svg new file mode 100644 index 0000000000000000000000000000000000000000..a93d06db8c5c01c0a1fc0a663a52aca6acd987da --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ug.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ug.svg new file mode 100644 index 0000000000000000000000000000000000000000..e969d5a386421c64c777f3f8625491d796ee3970 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/um.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/um.svg new file mode 100644 index 0000000000000000000000000000000000000000..4f74e791179fbde3d3f9a15e224531a13f3a2d39 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/um.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/un.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/un.svg new file mode 100644 index 0000000000000000000000000000000000000000..326cb0d8640e93e800f3240400c313f74668d253 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/us.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/us.svg new file mode 100644 index 0000000000000000000000000000000000000000..5b552671e8059a7bb27b4e9c3d049026b448ec6f --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/us.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/uy.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/uy.svg new file mode 100644 index 0000000000000000000000000000000000000000..bad58e5c2f1d0aa038ce4168946e4705d84ff1df --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/uz.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/uz.svg new file mode 100644 index 0000000000000000000000000000000000000000..3ede7f16a2dbc6a20f030a47e219aa3e1ecbdcb1 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/va.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/va.svg new file mode 100644 index 0000000000000000000000000000000000000000..2bcc0d3422ba7cfb513776d8a429f9ba6b270070 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/va.svg @@ -0,0 +1,479 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vc.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vc.svg new file mode 100644 index 0000000000000000000000000000000000000000..99ba90f2a36d8f3e5cc5f36094c1274fa98dbf10 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ve.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ve.svg new file mode 100644 index 0000000000000000000000000000000000000000..98ef473c811696f8177a2af07437f6953c780b53 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vg.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vg.svg new file mode 100644 index 0000000000000000000000000000000000000000..ef5b5d4c7a62ecdf1aba1407771911d3d15cb33b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vg.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vi.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vi.svg new file mode 100644 index 0000000000000000000000000000000000000000..dcc22e47ff39cf1d5ad15eb9abff492b6e43cbc6 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vn.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vn.svg new file mode 100644 index 0000000000000000000000000000000000000000..b0fcc9f7ddd110d6ad12151353f73c40ddf43890 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vu.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vu.svg new file mode 100644 index 0000000000000000000000000000000000000000..517615fa065e9f4aab7228e3803a86cf1850c3b8 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/vu.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/wf.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/wf.svg new file mode 100644 index 0000000000000000000000000000000000000000..9d43586b312e85992821e206dd6675429d8417bd --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/wf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ws.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ws.svg new file mode 100644 index 0000000000000000000000000000000000000000..1b3ecf46b2a20f51b46e1e74058cb75236da8e19 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ws.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/xk.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/xk.svg new file mode 100644 index 0000000000000000000000000000000000000000..87bd7f65d90b616c5573c443f21acb219667afc5 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/xk.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ye.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ye.svg new file mode 100644 index 0000000000000000000000000000000000000000..1befdeca2454140d714269f6d609f2cea4867e3b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/yt.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/yt.svg new file mode 100644 index 0000000000000000000000000000000000000000..f198fff42bde93b2728057de8f7173efbde952fd --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/yt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/za.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/za.svg new file mode 100644 index 0000000000000000000000000000000000000000..ef1f2652c4d2fc03457523092acbe9fa1e6ebebd --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/zm.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/zm.svg new file mode 100644 index 0000000000000000000000000000000000000000..bdfebc84e9420be5390d38be8c4895b082682ab9 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/zw.svg b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/zw.svg new file mode 100644 index 0000000000000000000000000000000000000000..2911f8c2c140dd2edef7c1682ffab2a7220dfea4 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/flag-icon-css/flags/4x3/zw.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/js/bootstrap.min.js.map b/INCUBATE/incubate/incubate/static/vendors/js/bootstrap.min.js.map new file mode 100644 index 0000000000000000000000000000000000000000..1bcefd0bda6fa829e0c8d57f556712bb58c8c550 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/js/bootstrap.min.js.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../js/src/util.js","../../js/src/alert.js","../../js/src/button.js","../../js/src/carousel.js","../../js/src/collapse.js","../../js/src/dropdown.js","../../js/src/modal.js","../../js/src/tools/sanitizer.js","../../js/src/tooltip.js","../../js/src/popover.js","../../js/src/scrollspy.js","../../js/src/tab.js","../../js/src/toast.js","../../js/src/index.js"],"names":["TRANSITION_END","transitionEndEmulator","duration","_this","this","called","$","one","Util","setTimeout","triggerTransitionEnd","getUID","prefix","Math","random","document","getElementById","getSelectorFromElement","element","selector","getAttribute","hrefAttr","trim","querySelector","err","getTransitionDurationFromElement","transitionDuration","css","transitionDelay","floatTransitionDuration","parseFloat","floatTransitionDelay","split","reflow","offsetHeight","trigger","supportsTransitionEnd","Boolean","isElement","obj","nodeType","typeCheckConfig","componentName","config","configTypes","property","Object","prototype","hasOwnProperty","call","expectedTypes","value","valueType","toString","match","toLowerCase","RegExp","test","Error","toUpperCase","findShadowRoot","documentElement","attachShadow","getRootNode","ShadowRoot","parentNode","root","fn","emulateTransitionEnd","event","special","bindType","delegateType","handle","target","is","handleObj","handler","apply","arguments","NAME","DATA_KEY","EVENT_KEY","JQUERY_NO_CONFLICT","Event","CLOSE","CLOSED","CLICK_DATA_API","ClassName","Alert","_element","close","rootElement","_getRootElement","_triggerCloseEvent","isDefaultPrevented","_removeElement","dispose","removeData","parent","closest","closeEvent","removeClass","hasClass","_destroyElement","detach","remove","_jQueryInterface","each","$element","data","_handleDismiss","alertInstance","preventDefault","on","Constructor","noConflict","DATA_API_KEY","Selector","FOCUS_BLUR_DATA_API","Button","toggle","triggerChangeEvent","addAriaPressed","input","type","checked","classList","contains","activeElement","hasAttribute","focus","setAttribute","toggleClass","button","Default","interval","keyboard","slide","pause","wrap","touch","DefaultType","Direction","SLIDE","SLID","KEYDOWN","MOUSEENTER","MOUSELEAVE","TOUCHSTART","TOUCHMOVE","TOUCHEND","POINTERDOWN","POINTERUP","DRAG_START","LOAD_DATA_API","PointerType","TOUCH","PEN","Carousel","_items","_interval","_activeElement","_isPaused","_isSliding","touchTimeout","touchStartX","touchDeltaX","_config","_getConfig","_indicatorsElement","_touchSupported","navigator","maxTouchPoints","_pointerEvent","window","PointerEvent","MSPointerEvent","_addEventListeners","next","_slide","nextWhenVisible","hidden","prev","cycle","clearInterval","setInterval","visibilityState","bind","to","index","activeIndex","_getItemIndex","length","direction","off","_objectSpread","_handleSwipe","absDeltax","abs","_this2","_keydown","_addTouchEventListeners","_this3","start","originalEvent","pointerType","clientX","touches","end","clearTimeout","querySelectorAll","e","add","tagName","which","slice","indexOf","_getItemByDirection","isNextDirection","isPrevDirection","lastItemIndex","itemIndex","_triggerSlideEvent","relatedTarget","eventDirectionName","targetIndex","fromIndex","slideEvent","from","_setActiveIndicatorElement","indicators","nextIndicator","children","addClass","directionalClassName","orderClassName","_this4","activeElementIndex","nextElement","nextElementIndex","isCycling","slidEvent","nextElementInterval","parseInt","defaultInterval","action","TypeError","ride","_dataApiClickHandler","slideIndex","carousels","i","len","$carousel","SHOW","SHOWN","HIDE","HIDDEN","Dimension","Collapse","_isTransitioning","_triggerArray","id","toggleList","elem","filterElement","filter","foundElem","_selector","push","_parent","_getParent","_addAriaAndCollapsedClass","hide","show","actives","activesData","not","startEvent","dimension","_getDimension","style","attr","setTransitioning","scrollSize","getBoundingClientRect","triggerArrayLength","isTransitioning","jquery","_getTargetFromElement","triggerArray","isOpen","$this","currentTarget","$trigger","selectors","$target","REGEXP_KEYDOWN","ARROW_UP_KEYCODE","CLICK","KEYDOWN_DATA_API","KEYUP_DATA_API","AttachmentMap","offset","flip","boundary","reference","display","Dropdown","_popper","_menu","_getMenuElement","_inNavbar","_detectNavbar","disabled","_getParentFromElement","isActive","_clearMenus","showEvent","Popper","referenceElement","_getPopperConfig","body","noop","hideEvent","destroy","update","scheduleUpdate","stopPropagation","constructor","_getPlacement","$parentDropdown","placement","_getOffset","offsets","popperConfig","modifiers","enabled","preventOverflow","boundariesElement","applyStyle","toggles","context","clickEvent","dropdownMenu","_dataApiKeydownHandler","items","backdrop","FOCUSIN","RESIZE","CLICK_DISMISS","KEYDOWN_DISMISS","MOUSEUP_DISMISS","MOUSEDOWN_DISMISS","Modal","_dialog","_backdrop","_isShown","_isBodyOverflowing","_ignoreBackdropClick","_scrollbarWidth","_checkScrollbar","_setScrollbar","_adjustDialog","_setEscapeEvent","_setResizeEvent","_showBackdrop","_showElement","transition","_hideModal","forEach","htmlElement","handleUpdate","Node","ELEMENT_NODE","appendChild","removeAttribute","scrollTop","_enforceFocus","shownEvent","transitionComplete","has","_this5","_this6","_this7","_resetAdjustments","_resetScrollbar","_removeBackdrop","callback","_this8","animate","createElement","className","appendTo","backdropTransitionDuration","callbackRemove","isModalOverflowing","scrollHeight","clientHeight","paddingLeft","paddingRight","rect","left","right","innerWidth","_getScrollbarWidth","_this9","fixedContent","stickyContent","actualPadding","calculatedPadding","actualMargin","marginRight","calculatedMargin","padding","elements","margin","scrollDiv","scrollbarWidth","width","clientWidth","removeChild","_this10","uriAttrs","DefaultWhitelist","*","a","area","b","br","col","code","div","em","hr","h1","h2","h3","h4","h5","h6","img","li","ol","p","pre","s","small","span","sub","sup","strong","u","ul","SAFE_URL_PATTERN","DATA_URL_PATTERN","sanitizeHtml","unsafeHtml","whiteList","sanitizeFn","createdDocument","DOMParser","parseFromString","whitelistKeys","keys","_loop","el","elName","nodeName","attributeList","attributes","whitelistedAttributes","concat","allowedAttributeList","attrName","nodeValue","regExp","attrRegex","l","allowedAttribute","innerHTML","CLASS_PREFIX","BSCLS_PREFIX_REGEX","DISALLOWED_ATTRIBUTES","animation","template","title","delay","html","container","fallbackPlacement","sanitize","AUTO","TOP","RIGHT","BOTTOM","LEFT","HoverState","INSERTED","FOCUSOUT","Trigger","Tooltip","_isEnabled","_timeout","_hoverState","_activeTrigger","tip","_setListeners","enable","disable","toggleEnabled","dataKey","_getDelegateConfig","click","_isWithActiveTrigger","_enter","_leave","getTipElement","isWithContent","shadowRoot","isInTheDom","ownerDocument","tipId","setContent","attachment","_getAttachment","addAttachmentClass","_getContainer","behavior","arrow","onCreate","originalPlacement","_handlePopperPlacementChange","onUpdate","complete","_fixTransition","prevHoverState","_cleanTipClass","getTitle","setElementContent","content","text","empty","append","find","eventIn","eventOut","_fixTitle","titleType","dataAttributes","dataAttr","key","$tip","tabClass","join","popperData","popperInstance","instance","popper","initConfigAnimation","Popover","_getContent","method","ACTIVATE","SCROLL","OffsetMethod","ScrollSpy","_scrollElement","_offsets","_targets","_activeTarget","_scrollHeight","_process","refresh","autoMethod","offsetMethod","offsetBase","_getScrollTop","_getScrollHeight","map","targetSelector","targetBCR","height","top","item","sort","pageYOffset","max","_getOffsetHeight","innerHeight","maxScroll","_activate","_clear","queries","$link","parents","node","scrollSpys","$spy","Tab","previous","listElement","itemSelector","makeArray","hiddenEvent","active","_transitionComplete","dropdownChild","dropdownElement","dropdownToggleList","autohide","Toast","withoutTimeout","_close","version"],"mappings":"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","sourcesContent":["/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): util.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\n\n/**\n * ------------------------------------------------------------------------\n * Private TransitionEnd Helpers\n * ------------------------------------------------------------------------\n */\n\nconst TRANSITION_END = 'transitionend'\nconst MAX_UID = 1000000\nconst MILLISECONDS_MULTIPLIER = 1000\n\n// Shoutout AngusCroll (https://goo.gl/pxwQGp)\nfunction toType(obj) {\n return {}.toString.call(obj).match(/\\s([a-z]+)/i)[1].toLowerCase()\n}\n\nfunction getSpecialTransitionEndEvent() {\n return {\n bindType: TRANSITION_END,\n delegateType: TRANSITION_END,\n handle(event) {\n if ($(event.target).is(this)) {\n return event.handleObj.handler.apply(this, arguments) // eslint-disable-line prefer-rest-params\n }\n return undefined // eslint-disable-line no-undefined\n }\n }\n}\n\nfunction transitionEndEmulator(duration) {\n let called = false\n\n $(this).one(Util.TRANSITION_END, () => {\n called = true\n })\n\n setTimeout(() => {\n if (!called) {\n Util.triggerTransitionEnd(this)\n }\n }, duration)\n\n return this\n}\n\nfunction setTransitionEndSupport() {\n $.fn.emulateTransitionEnd = transitionEndEmulator\n $.event.special[Util.TRANSITION_END] = getSpecialTransitionEndEvent()\n}\n\n/**\n * --------------------------------------------------------------------------\n * Public Util Api\n * --------------------------------------------------------------------------\n */\n\nconst Util = {\n\n TRANSITION_END: 'bsTransitionEnd',\n\n getUID(prefix) {\n do {\n // eslint-disable-next-line no-bitwise\n prefix += ~~(Math.random() * MAX_UID) // \"~~\" acts like a faster Math.floor() here\n } while (document.getElementById(prefix))\n return prefix\n },\n\n getSelectorFromElement(element) {\n let selector = element.getAttribute('data-target')\n\n if (!selector || selector === '#') {\n const hrefAttr = element.getAttribute('href')\n selector = hrefAttr && hrefAttr !== '#' ? hrefAttr.trim() : ''\n }\n\n try {\n return document.querySelector(selector) ? selector : null\n } catch (err) {\n return null\n }\n },\n\n getTransitionDurationFromElement(element) {\n if (!element) {\n return 0\n }\n\n // Get transition-duration of the element\n let transitionDuration = $(element).css('transition-duration')\n let transitionDelay = $(element).css('transition-delay')\n\n const floatTransitionDuration = parseFloat(transitionDuration)\n const floatTransitionDelay = parseFloat(transitionDelay)\n\n // Return 0 if element or transition duration is not found\n if (!floatTransitionDuration && !floatTransitionDelay) {\n return 0\n }\n\n // If multiple durations are defined, take the first\n transitionDuration = transitionDuration.split(',')[0]\n transitionDelay = transitionDelay.split(',')[0]\n\n return (parseFloat(transitionDuration) + parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER\n },\n\n reflow(element) {\n return element.offsetHeight\n },\n\n triggerTransitionEnd(element) {\n $(element).trigger(TRANSITION_END)\n },\n\n // TODO: Remove in v5\n supportsTransitionEnd() {\n return Boolean(TRANSITION_END)\n },\n\n isElement(obj) {\n return (obj[0] || obj).nodeType\n },\n\n typeCheckConfig(componentName, config, configTypes) {\n for (const property in configTypes) {\n if (Object.prototype.hasOwnProperty.call(configTypes, property)) {\n const expectedTypes = configTypes[property]\n const value = config[property]\n const valueType = value && Util.isElement(value)\n ? 'element' : toType(value)\n\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new Error(\n `${componentName.toUpperCase()}: ` +\n `Option \"${property}\" provided type \"${valueType}\" ` +\n `but expected type \"${expectedTypes}\".`)\n }\n }\n }\n },\n\n findShadowRoot(element) {\n if (!document.documentElement.attachShadow) {\n return null\n }\n\n // Can find the shadow root otherwise it'll return the document\n if (typeof element.getRootNode === 'function') {\n const root = element.getRootNode()\n return root instanceof ShadowRoot ? root : null\n }\n\n if (element instanceof ShadowRoot) {\n return element\n }\n\n // when we don't find a shadow root\n if (!element.parentNode) {\n return null\n }\n\n return Util.findShadowRoot(element.parentNode)\n }\n}\n\nsetTransitionEndSupport()\n\nexport default Util\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): alert.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'alert'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.alert'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst Selector = {\n DISMISS : '[data-dismiss=\"alert\"]'\n}\n\nconst Event = {\n CLOSE : `close${EVENT_KEY}`,\n CLOSED : `closed${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n ALERT : 'alert',\n FADE : 'fade',\n SHOW : 'show'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Alert {\n constructor(element) {\n this._element = element\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n // Public\n\n close(element) {\n let rootElement = this._element\n if (element) {\n rootElement = this._getRootElement(element)\n }\n\n const customEvent = this._triggerCloseEvent(rootElement)\n\n if (customEvent.isDefaultPrevented()) {\n return\n }\n\n this._removeElement(rootElement)\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n // Private\n\n _getRootElement(element) {\n const selector = Util.getSelectorFromElement(element)\n let parent = false\n\n if (selector) {\n parent = document.querySelector(selector)\n }\n\n if (!parent) {\n parent = $(element).closest(`.${ClassName.ALERT}`)[0]\n }\n\n return parent\n }\n\n _triggerCloseEvent(element) {\n const closeEvent = $.Event(Event.CLOSE)\n\n $(element).trigger(closeEvent)\n return closeEvent\n }\n\n _removeElement(element) {\n $(element).removeClass(ClassName.SHOW)\n\n if (!$(element).hasClass(ClassName.FADE)) {\n this._destroyElement(element)\n return\n }\n\n const transitionDuration = Util.getTransitionDurationFromElement(element)\n\n $(element)\n .one(Util.TRANSITION_END, (event) => this._destroyElement(element, event))\n .emulateTransitionEnd(transitionDuration)\n }\n\n _destroyElement(element) {\n $(element)\n .detach()\n .trigger(Event.CLOSED)\n .remove()\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $element = $(this)\n let data = $element.data(DATA_KEY)\n\n if (!data) {\n data = new Alert(this)\n $element.data(DATA_KEY, data)\n }\n\n if (config === 'close') {\n data[config](this)\n }\n })\n }\n\n static _handleDismiss(alertInstance) {\n return function (event) {\n if (event) {\n event.preventDefault()\n }\n\n alertInstance.close(this)\n }\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document).on(\n Event.CLICK_DATA_API,\n Selector.DISMISS,\n Alert._handleDismiss(new Alert())\n)\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Alert._jQueryInterface\n$.fn[NAME].Constructor = Alert\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Alert._jQueryInterface\n}\n\nexport default Alert\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): button.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'button'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.button'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst ClassName = {\n ACTIVE : 'active',\n BUTTON : 'btn',\n FOCUS : 'focus'\n}\n\nconst Selector = {\n DATA_TOGGLE_CARROT : '[data-toggle^=\"button\"]',\n DATA_TOGGLE : '[data-toggle=\"buttons\"]',\n INPUT : 'input:not([type=\"hidden\"])',\n ACTIVE : '.active',\n BUTTON : '.btn'\n}\n\nconst Event = {\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`,\n FOCUS_BLUR_DATA_API : `focus${EVENT_KEY}${DATA_API_KEY} ` +\n `blur${EVENT_KEY}${DATA_API_KEY}`\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Button {\n constructor(element) {\n this._element = element\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n // Public\n\n toggle() {\n let triggerChangeEvent = true\n let addAriaPressed = true\n const rootElement = $(this._element).closest(\n Selector.DATA_TOGGLE\n )[0]\n\n if (rootElement) {\n const input = this._element.querySelector(Selector.INPUT)\n\n if (input) {\n if (input.type === 'radio') {\n if (input.checked &&\n this._element.classList.contains(ClassName.ACTIVE)) {\n triggerChangeEvent = false\n } else {\n const activeElement = rootElement.querySelector(Selector.ACTIVE)\n\n if (activeElement) {\n $(activeElement).removeClass(ClassName.ACTIVE)\n }\n }\n }\n\n if (triggerChangeEvent) {\n if (input.hasAttribute('disabled') ||\n rootElement.hasAttribute('disabled') ||\n input.classList.contains('disabled') ||\n rootElement.classList.contains('disabled')) {\n return\n }\n input.checked = !this._element.classList.contains(ClassName.ACTIVE)\n $(input).trigger('change')\n }\n\n input.focus()\n addAriaPressed = false\n }\n }\n\n if (addAriaPressed) {\n this._element.setAttribute('aria-pressed',\n !this._element.classList.contains(ClassName.ACTIVE))\n }\n\n if (triggerChangeEvent) {\n $(this._element).toggleClass(ClassName.ACTIVE)\n }\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n this._element = null\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n\n if (!data) {\n data = new Button(this)\n $(this).data(DATA_KEY, data)\n }\n\n if (config === 'toggle') {\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document)\n .on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE_CARROT, (event) => {\n event.preventDefault()\n\n let button = event.target\n\n if (!$(button).hasClass(ClassName.BUTTON)) {\n button = $(button).closest(Selector.BUTTON)\n }\n\n Button._jQueryInterface.call($(button), 'toggle')\n })\n .on(Event.FOCUS_BLUR_DATA_API, Selector.DATA_TOGGLE_CARROT, (event) => {\n const button = $(event.target).closest(Selector.BUTTON)[0]\n $(button).toggleClass(ClassName.FOCUS, /^focus(in)?$/.test(event.type))\n })\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Button._jQueryInterface\n$.fn[NAME].Constructor = Button\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Button._jQueryInterface\n}\n\nexport default Button\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): carousel.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'carousel'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.carousel'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst ARROW_LEFT_KEYCODE = 37 // KeyboardEvent.which value for left arrow key\nconst ARROW_RIGHT_KEYCODE = 39 // KeyboardEvent.which value for right arrow key\nconst TOUCHEVENT_COMPAT_WAIT = 500 // Time for mouse compat events to fire after touch\nconst SWIPE_THRESHOLD = 40\n\nconst Default = {\n interval : 5000,\n keyboard : true,\n slide : false,\n pause : 'hover',\n wrap : true,\n touch : true\n}\n\nconst DefaultType = {\n interval : '(number|boolean)',\n keyboard : 'boolean',\n slide : '(boolean|string)',\n pause : '(string|boolean)',\n wrap : 'boolean',\n touch : 'boolean'\n}\n\nconst Direction = {\n NEXT : 'next',\n PREV : 'prev',\n LEFT : 'left',\n RIGHT : 'right'\n}\n\nconst Event = {\n SLIDE : `slide${EVENT_KEY}`,\n SLID : `slid${EVENT_KEY}`,\n KEYDOWN : `keydown${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`,\n TOUCHSTART : `touchstart${EVENT_KEY}`,\n TOUCHMOVE : `touchmove${EVENT_KEY}`,\n TOUCHEND : `touchend${EVENT_KEY}`,\n POINTERDOWN : `pointerdown${EVENT_KEY}`,\n POINTERUP : `pointerup${EVENT_KEY}`,\n DRAG_START : `dragstart${EVENT_KEY}`,\n LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n CAROUSEL : 'carousel',\n ACTIVE : 'active',\n SLIDE : 'slide',\n RIGHT : 'carousel-item-right',\n LEFT : 'carousel-item-left',\n NEXT : 'carousel-item-next',\n PREV : 'carousel-item-prev',\n ITEM : 'carousel-item',\n POINTER_EVENT : 'pointer-event'\n}\n\nconst Selector = {\n ACTIVE : '.active',\n ACTIVE_ITEM : '.active.carousel-item',\n ITEM : '.carousel-item',\n ITEM_IMG : '.carousel-item img',\n NEXT_PREV : '.carousel-item-next, .carousel-item-prev',\n INDICATORS : '.carousel-indicators',\n DATA_SLIDE : '[data-slide], [data-slide-to]',\n DATA_RIDE : '[data-ride=\"carousel\"]'\n}\n\nconst PointerType = {\n TOUCH : 'touch',\n PEN : 'pen'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\nclass Carousel {\n constructor(element, config) {\n this._items = null\n this._interval = null\n this._activeElement = null\n this._isPaused = false\n this._isSliding = false\n this.touchTimeout = null\n this.touchStartX = 0\n this.touchDeltaX = 0\n\n this._config = this._getConfig(config)\n this._element = element\n this._indicatorsElement = this._element.querySelector(Selector.INDICATORS)\n this._touchSupported = 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0\n this._pointerEvent = Boolean(window.PointerEvent || window.MSPointerEvent)\n\n this._addEventListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n next() {\n if (!this._isSliding) {\n this._slide(Direction.NEXT)\n }\n }\n\n nextWhenVisible() {\n // Don't call next when the page isn't visible\n // or the carousel or its parent isn't visible\n if (!document.hidden &&\n ($(this._element).is(':visible') && $(this._element).css('visibility') !== 'hidden')) {\n this.next()\n }\n }\n\n prev() {\n if (!this._isSliding) {\n this._slide(Direction.PREV)\n }\n }\n\n pause(event) {\n if (!event) {\n this._isPaused = true\n }\n\n if (this._element.querySelector(Selector.NEXT_PREV)) {\n Util.triggerTransitionEnd(this._element)\n this.cycle(true)\n }\n\n clearInterval(this._interval)\n this._interval = null\n }\n\n cycle(event) {\n if (!event) {\n this._isPaused = false\n }\n\n if (this._interval) {\n clearInterval(this._interval)\n this._interval = null\n }\n\n if (this._config.interval && !this._isPaused) {\n this._interval = setInterval(\n (document.visibilityState ? this.nextWhenVisible : this.next).bind(this),\n this._config.interval\n )\n }\n }\n\n to(index) {\n this._activeElement = this._element.querySelector(Selector.ACTIVE_ITEM)\n\n const activeIndex = this._getItemIndex(this._activeElement)\n\n if (index > this._items.length - 1 || index < 0) {\n return\n }\n\n if (this._isSliding) {\n $(this._element).one(Event.SLID, () => this.to(index))\n return\n }\n\n if (activeIndex === index) {\n this.pause()\n this.cycle()\n return\n }\n\n const direction = index > activeIndex\n ? Direction.NEXT\n : Direction.PREV\n\n this._slide(direction, this._items[index])\n }\n\n dispose() {\n $(this._element).off(EVENT_KEY)\n $.removeData(this._element, DATA_KEY)\n\n this._items = null\n this._config = null\n this._element = null\n this._interval = null\n this._isPaused = null\n this._isSliding = null\n this._activeElement = null\n this._indicatorsElement = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _handleSwipe() {\n const absDeltax = Math.abs(this.touchDeltaX)\n\n if (absDeltax <= SWIPE_THRESHOLD) {\n return\n }\n\n const direction = absDeltax / this.touchDeltaX\n\n // swipe left\n if (direction > 0) {\n this.prev()\n }\n\n // swipe right\n if (direction < 0) {\n this.next()\n }\n }\n\n _addEventListeners() {\n if (this._config.keyboard) {\n $(this._element)\n .on(Event.KEYDOWN, (event) => this._keydown(event))\n }\n\n if (this._config.pause === 'hover') {\n $(this._element)\n .on(Event.MOUSEENTER, (event) => this.pause(event))\n .on(Event.MOUSELEAVE, (event) => this.cycle(event))\n }\n\n if (this._config.touch) {\n this._addTouchEventListeners()\n }\n }\n\n _addTouchEventListeners() {\n if (!this._touchSupported) {\n return\n }\n\n const start = (event) => {\n if (this._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) {\n this.touchStartX = event.originalEvent.clientX\n } else if (!this._pointerEvent) {\n this.touchStartX = event.originalEvent.touches[0].clientX\n }\n }\n\n const move = (event) => {\n // ensure swiping with one touch and not pinching\n if (event.originalEvent.touches && event.originalEvent.touches.length > 1) {\n this.touchDeltaX = 0\n } else {\n this.touchDeltaX = event.originalEvent.touches[0].clientX - this.touchStartX\n }\n }\n\n const end = (event) => {\n if (this._pointerEvent && PointerType[event.originalEvent.pointerType.toUpperCase()]) {\n this.touchDeltaX = event.originalEvent.clientX - this.touchStartX\n }\n\n this._handleSwipe()\n if (this._config.pause === 'hover') {\n // If it's a touch-enabled device, mouseenter/leave are fired as\n // part of the mouse compatibility events on first tap - the carousel\n // would stop cycling until user tapped out of it;\n // here, we listen for touchend, explicitly pause the carousel\n // (as if it's the second time we tap on it, mouseenter compat event\n // is NOT fired) and after a timeout (to allow for mouse compatibility\n // events to fire) we explicitly restart cycling\n\n this.pause()\n if (this.touchTimeout) {\n clearTimeout(this.touchTimeout)\n }\n this.touchTimeout = setTimeout((event) => this.cycle(event), TOUCHEVENT_COMPAT_WAIT + this._config.interval)\n }\n }\n\n $(this._element.querySelectorAll(Selector.ITEM_IMG)).on(Event.DRAG_START, (e) => e.preventDefault())\n if (this._pointerEvent) {\n $(this._element).on(Event.POINTERDOWN, (event) => start(event))\n $(this._element).on(Event.POINTERUP, (event) => end(event))\n\n this._element.classList.add(ClassName.POINTER_EVENT)\n } else {\n $(this._element).on(Event.TOUCHSTART, (event) => start(event))\n $(this._element).on(Event.TOUCHMOVE, (event) => move(event))\n $(this._element).on(Event.TOUCHEND, (event) => end(event))\n }\n }\n\n _keydown(event) {\n if (/input|textarea/i.test(event.target.tagName)) {\n return\n }\n\n switch (event.which) {\n case ARROW_LEFT_KEYCODE:\n event.preventDefault()\n this.prev()\n break\n case ARROW_RIGHT_KEYCODE:\n event.preventDefault()\n this.next()\n break\n default:\n }\n }\n\n _getItemIndex(element) {\n this._items = element && element.parentNode\n ? [].slice.call(element.parentNode.querySelectorAll(Selector.ITEM))\n : []\n return this._items.indexOf(element)\n }\n\n _getItemByDirection(direction, activeElement) {\n const isNextDirection = direction === Direction.NEXT\n const isPrevDirection = direction === Direction.PREV\n const activeIndex = this._getItemIndex(activeElement)\n const lastItemIndex = this._items.length - 1\n const isGoingToWrap = isPrevDirection && activeIndex === 0 ||\n isNextDirection && activeIndex === lastItemIndex\n\n if (isGoingToWrap && !this._config.wrap) {\n return activeElement\n }\n\n const delta = direction === Direction.PREV ? -1 : 1\n const itemIndex = (activeIndex + delta) % this._items.length\n\n return itemIndex === -1\n ? this._items[this._items.length - 1] : this._items[itemIndex]\n }\n\n _triggerSlideEvent(relatedTarget, eventDirectionName) {\n const targetIndex = this._getItemIndex(relatedTarget)\n const fromIndex = this._getItemIndex(this._element.querySelector(Selector.ACTIVE_ITEM))\n const slideEvent = $.Event(Event.SLIDE, {\n relatedTarget,\n direction: eventDirectionName,\n from: fromIndex,\n to: targetIndex\n })\n\n $(this._element).trigger(slideEvent)\n\n return slideEvent\n }\n\n _setActiveIndicatorElement(element) {\n if (this._indicatorsElement) {\n const indicators = [].slice.call(this._indicatorsElement.querySelectorAll(Selector.ACTIVE))\n $(indicators)\n .removeClass(ClassName.ACTIVE)\n\n const nextIndicator = this._indicatorsElement.children[\n this._getItemIndex(element)\n ]\n\n if (nextIndicator) {\n $(nextIndicator).addClass(ClassName.ACTIVE)\n }\n }\n }\n\n _slide(direction, element) {\n const activeElement = this._element.querySelector(Selector.ACTIVE_ITEM)\n const activeElementIndex = this._getItemIndex(activeElement)\n const nextElement = element || activeElement &&\n this._getItemByDirection(direction, activeElement)\n const nextElementIndex = this._getItemIndex(nextElement)\n const isCycling = Boolean(this._interval)\n\n let directionalClassName\n let orderClassName\n let eventDirectionName\n\n if (direction === Direction.NEXT) {\n directionalClassName = ClassName.LEFT\n orderClassName = ClassName.NEXT\n eventDirectionName = Direction.LEFT\n } else {\n directionalClassName = ClassName.RIGHT\n orderClassName = ClassName.PREV\n eventDirectionName = Direction.RIGHT\n }\n\n if (nextElement && $(nextElement).hasClass(ClassName.ACTIVE)) {\n this._isSliding = false\n return\n }\n\n const slideEvent = this._triggerSlideEvent(nextElement, eventDirectionName)\n if (slideEvent.isDefaultPrevented()) {\n return\n }\n\n if (!activeElement || !nextElement) {\n // Some weirdness is happening, so we bail\n return\n }\n\n this._isSliding = true\n\n if (isCycling) {\n this.pause()\n }\n\n this._setActiveIndicatorElement(nextElement)\n\n const slidEvent = $.Event(Event.SLID, {\n relatedTarget: nextElement,\n direction: eventDirectionName,\n from: activeElementIndex,\n to: nextElementIndex\n })\n\n if ($(this._element).hasClass(ClassName.SLIDE)) {\n $(nextElement).addClass(orderClassName)\n\n Util.reflow(nextElement)\n\n $(activeElement).addClass(directionalClassName)\n $(nextElement).addClass(directionalClassName)\n\n const nextElementInterval = parseInt(nextElement.getAttribute('data-interval'), 10)\n if (nextElementInterval) {\n this._config.defaultInterval = this._config.defaultInterval || this._config.interval\n this._config.interval = nextElementInterval\n } else {\n this._config.interval = this._config.defaultInterval || this._config.interval\n }\n\n const transitionDuration = Util.getTransitionDurationFromElement(activeElement)\n\n $(activeElement)\n .one(Util.TRANSITION_END, () => {\n $(nextElement)\n .removeClass(`${directionalClassName} ${orderClassName}`)\n .addClass(ClassName.ACTIVE)\n\n $(activeElement).removeClass(`${ClassName.ACTIVE} ${orderClassName} ${directionalClassName}`)\n\n this._isSliding = false\n\n setTimeout(() => $(this._element).trigger(slidEvent), 0)\n })\n .emulateTransitionEnd(transitionDuration)\n } else {\n $(activeElement).removeClass(ClassName.ACTIVE)\n $(nextElement).addClass(ClassName.ACTIVE)\n\n this._isSliding = false\n $(this._element).trigger(slidEvent)\n }\n\n if (isCycling) {\n this.cycle()\n }\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n let _config = {\n ...Default,\n ...$(this).data()\n }\n\n if (typeof config === 'object') {\n _config = {\n ..._config,\n ...config\n }\n }\n\n const action = typeof config === 'string' ? config : _config.slide\n\n if (!data) {\n data = new Carousel(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'number') {\n data.to(config)\n } else if (typeof action === 'string') {\n if (typeof data[action] === 'undefined') {\n throw new TypeError(`No method named \"${action}\"`)\n }\n data[action]()\n } else if (_config.interval && _config.ride) {\n data.pause()\n data.cycle()\n }\n })\n }\n\n static _dataApiClickHandler(event) {\n const selector = Util.getSelectorFromElement(this)\n\n if (!selector) {\n return\n }\n\n const target = $(selector)[0]\n\n if (!target || !$(target).hasClass(ClassName.CAROUSEL)) {\n return\n }\n\n const config = {\n ...$(target).data(),\n ...$(this).data()\n }\n const slideIndex = this.getAttribute('data-slide-to')\n\n if (slideIndex) {\n config.interval = false\n }\n\n Carousel._jQueryInterface.call($(target), config)\n\n if (slideIndex) {\n $(target).data(DATA_KEY).to(slideIndex)\n }\n\n event.preventDefault()\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document)\n .on(Event.CLICK_DATA_API, Selector.DATA_SLIDE, Carousel._dataApiClickHandler)\n\n$(window).on(Event.LOAD_DATA_API, () => {\n const carousels = [].slice.call(document.querySelectorAll(Selector.DATA_RIDE))\n for (let i = 0, len = carousels.length; i < len; i++) {\n const $carousel = $(carousels[i])\n Carousel._jQueryInterface.call($carousel, $carousel.data())\n }\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Carousel._jQueryInterface\n$.fn[NAME].Constructor = Carousel\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Carousel._jQueryInterface\n}\n\nexport default Carousel\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): collapse.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'collapse'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.collapse'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst Default = {\n toggle : true,\n parent : ''\n}\n\nconst DefaultType = {\n toggle : 'boolean',\n parent : '(string|element)'\n}\n\nconst Event = {\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n SHOW : 'show',\n COLLAPSE : 'collapse',\n COLLAPSING : 'collapsing',\n COLLAPSED : 'collapsed'\n}\n\nconst Dimension = {\n WIDTH : 'width',\n HEIGHT : 'height'\n}\n\nconst Selector = {\n ACTIVES : '.show, .collapsing',\n DATA_TOGGLE : '[data-toggle=\"collapse\"]'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Collapse {\n constructor(element, config) {\n this._isTransitioning = false\n this._element = element\n this._config = this._getConfig(config)\n this._triggerArray = [].slice.call(document.querySelectorAll(\n `[data-toggle=\"collapse\"][href=\"#${element.id}\"],` +\n `[data-toggle=\"collapse\"][data-target=\"#${element.id}\"]`\n ))\n\n const toggleList = [].slice.call(document.querySelectorAll(Selector.DATA_TOGGLE))\n for (let i = 0, len = toggleList.length; i < len; i++) {\n const elem = toggleList[i]\n const selector = Util.getSelectorFromElement(elem)\n const filterElement = [].slice.call(document.querySelectorAll(selector))\n .filter((foundElem) => foundElem === element)\n\n if (selector !== null && filterElement.length > 0) {\n this._selector = selector\n this._triggerArray.push(elem)\n }\n }\n\n this._parent = this._config.parent ? this._getParent() : null\n\n if (!this._config.parent) {\n this._addAriaAndCollapsedClass(this._element, this._triggerArray)\n }\n\n if (this._config.toggle) {\n this.toggle()\n }\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n toggle() {\n if ($(this._element).hasClass(ClassName.SHOW)) {\n this.hide()\n } else {\n this.show()\n }\n }\n\n show() {\n if (this._isTransitioning ||\n $(this._element).hasClass(ClassName.SHOW)) {\n return\n }\n\n let actives\n let activesData\n\n if (this._parent) {\n actives = [].slice.call(this._parent.querySelectorAll(Selector.ACTIVES))\n .filter((elem) => {\n if (typeof this._config.parent === 'string') {\n return elem.getAttribute('data-parent') === this._config.parent\n }\n\n return elem.classList.contains(ClassName.COLLAPSE)\n })\n\n if (actives.length === 0) {\n actives = null\n }\n }\n\n if (actives) {\n activesData = $(actives).not(this._selector).data(DATA_KEY)\n if (activesData && activesData._isTransitioning) {\n return\n }\n }\n\n const startEvent = $.Event(Event.SHOW)\n $(this._element).trigger(startEvent)\n if (startEvent.isDefaultPrevented()) {\n return\n }\n\n if (actives) {\n Collapse._jQueryInterface.call($(actives).not(this._selector), 'hide')\n if (!activesData) {\n $(actives).data(DATA_KEY, null)\n }\n }\n\n const dimension = this._getDimension()\n\n $(this._element)\n .removeClass(ClassName.COLLAPSE)\n .addClass(ClassName.COLLAPSING)\n\n this._element.style[dimension] = 0\n\n if (this._triggerArray.length) {\n $(this._triggerArray)\n .removeClass(ClassName.COLLAPSED)\n .attr('aria-expanded', true)\n }\n\n this.setTransitioning(true)\n\n const complete = () => {\n $(this._element)\n .removeClass(ClassName.COLLAPSING)\n .addClass(ClassName.COLLAPSE)\n .addClass(ClassName.SHOW)\n\n this._element.style[dimension] = ''\n\n this.setTransitioning(false)\n\n $(this._element).trigger(Event.SHOWN)\n }\n\n const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1)\n const scrollSize = `scroll${capitalizedDimension}`\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n\n this._element.style[dimension] = `${this._element[scrollSize]}px`\n }\n\n hide() {\n if (this._isTransitioning ||\n !$(this._element).hasClass(ClassName.SHOW)) {\n return\n }\n\n const startEvent = $.Event(Event.HIDE)\n $(this._element).trigger(startEvent)\n if (startEvent.isDefaultPrevented()) {\n return\n }\n\n const dimension = this._getDimension()\n\n this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`\n\n Util.reflow(this._element)\n\n $(this._element)\n .addClass(ClassName.COLLAPSING)\n .removeClass(ClassName.COLLAPSE)\n .removeClass(ClassName.SHOW)\n\n const triggerArrayLength = this._triggerArray.length\n if (triggerArrayLength > 0) {\n for (let i = 0; i < triggerArrayLength; i++) {\n const trigger = this._triggerArray[i]\n const selector = Util.getSelectorFromElement(trigger)\n\n if (selector !== null) {\n const $elem = $([].slice.call(document.querySelectorAll(selector)))\n if (!$elem.hasClass(ClassName.SHOW)) {\n $(trigger).addClass(ClassName.COLLAPSED)\n .attr('aria-expanded', false)\n }\n }\n }\n }\n\n this.setTransitioning(true)\n\n const complete = () => {\n this.setTransitioning(false)\n $(this._element)\n .removeClass(ClassName.COLLAPSING)\n .addClass(ClassName.COLLAPSE)\n .trigger(Event.HIDDEN)\n }\n\n this._element.style[dimension] = ''\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n }\n\n setTransitioning(isTransitioning) {\n this._isTransitioning = isTransitioning\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n\n this._config = null\n this._parent = null\n this._element = null\n this._triggerArray = null\n this._isTransitioning = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n config.toggle = Boolean(config.toggle) // Coerce string values\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _getDimension() {\n const hasWidth = $(this._element).hasClass(Dimension.WIDTH)\n return hasWidth ? Dimension.WIDTH : Dimension.HEIGHT\n }\n\n _getParent() {\n let parent\n\n if (Util.isElement(this._config.parent)) {\n parent = this._config.parent\n\n // It's a jQuery object\n if (typeof this._config.parent.jquery !== 'undefined') {\n parent = this._config.parent[0]\n }\n } else {\n parent = document.querySelector(this._config.parent)\n }\n\n const selector =\n `[data-toggle=\"collapse\"][data-parent=\"${this._config.parent}\"]`\n\n const children = [].slice.call(parent.querySelectorAll(selector))\n $(children).each((i, element) => {\n this._addAriaAndCollapsedClass(\n Collapse._getTargetFromElement(element),\n [element]\n )\n })\n\n return parent\n }\n\n _addAriaAndCollapsedClass(element, triggerArray) {\n const isOpen = $(element).hasClass(ClassName.SHOW)\n\n if (triggerArray.length) {\n $(triggerArray)\n .toggleClass(ClassName.COLLAPSED, !isOpen)\n .attr('aria-expanded', isOpen)\n }\n }\n\n // Static\n\n static _getTargetFromElement(element) {\n const selector = Util.getSelectorFromElement(element)\n return selector ? document.querySelector(selector) : null\n }\n\n static _jQueryInterface(config) {\n return this.each(function () {\n const $this = $(this)\n let data = $this.data(DATA_KEY)\n const _config = {\n ...Default,\n ...$this.data(),\n ...typeof config === 'object' && config ? config : {}\n }\n\n if (!data && _config.toggle && /show|hide/.test(config)) {\n _config.toggle = false\n }\n\n if (!data) {\n data = new Collapse(this, _config)\n $this.data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n // preventDefault only for elements (which change the URL) not inside the collapsible element\n if (event.currentTarget.tagName === 'A') {\n event.preventDefault()\n }\n\n const $trigger = $(this)\n const selector = Util.getSelectorFromElement(this)\n const selectors = [].slice.call(document.querySelectorAll(selector))\n\n $(selectors).each(function () {\n const $target = $(this)\n const data = $target.data(DATA_KEY)\n const config = data ? 'toggle' : $trigger.data()\n Collapse._jQueryInterface.call($target, config)\n })\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Collapse._jQueryInterface\n$.fn[NAME].Constructor = Collapse\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Collapse._jQueryInterface\n}\n\nexport default Collapse\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): dropdown.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Popper from 'popper.js'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'dropdown'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.dropdown'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key\nconst SPACE_KEYCODE = 32 // KeyboardEvent.which value for space key\nconst TAB_KEYCODE = 9 // KeyboardEvent.which value for tab key\nconst ARROW_UP_KEYCODE = 38 // KeyboardEvent.which value for up arrow key\nconst ARROW_DOWN_KEYCODE = 40 // KeyboardEvent.which value for down arrow key\nconst RIGHT_MOUSE_BUTTON_WHICH = 3 // MouseEvent.which value for the right button (assuming a right-handed mouse)\nconst REGEXP_KEYDOWN = new RegExp(`${ARROW_UP_KEYCODE}|${ARROW_DOWN_KEYCODE}|${ESCAPE_KEYCODE}`)\n\nconst Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`,\n KEYDOWN_DATA_API : `keydown${EVENT_KEY}${DATA_API_KEY}`,\n KEYUP_DATA_API : `keyup${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n DISABLED : 'disabled',\n SHOW : 'show',\n DROPUP : 'dropup',\n DROPRIGHT : 'dropright',\n DROPLEFT : 'dropleft',\n MENURIGHT : 'dropdown-menu-right',\n MENULEFT : 'dropdown-menu-left',\n POSITION_STATIC : 'position-static'\n}\n\nconst Selector = {\n DATA_TOGGLE : '[data-toggle=\"dropdown\"]',\n FORM_CHILD : '.dropdown form',\n MENU : '.dropdown-menu',\n NAVBAR_NAV : '.navbar-nav',\n VISIBLE_ITEMS : '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)'\n}\n\nconst AttachmentMap = {\n TOP : 'top-start',\n TOPEND : 'top-end',\n BOTTOM : 'bottom-start',\n BOTTOMEND : 'bottom-end',\n RIGHT : 'right-start',\n RIGHTEND : 'right-end',\n LEFT : 'left-start',\n LEFTEND : 'left-end'\n}\n\nconst Default = {\n offset : 0,\n flip : true,\n boundary : 'scrollParent',\n reference : 'toggle',\n display : 'dynamic'\n}\n\nconst DefaultType = {\n offset : '(number|string|function)',\n flip : 'boolean',\n boundary : '(string|element)',\n reference : '(string|element)',\n display : 'string'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Dropdown {\n constructor(element, config) {\n this._element = element\n this._popper = null\n this._config = this._getConfig(config)\n this._menu = this._getMenuElement()\n this._inNavbar = this._detectNavbar()\n\n this._addEventListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Public\n\n toggle() {\n if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED)) {\n return\n }\n\n const parent = Dropdown._getParentFromElement(this._element)\n const isActive = $(this._menu).hasClass(ClassName.SHOW)\n\n Dropdown._clearMenus()\n\n if (isActive) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n const showEvent = $.Event(Event.SHOW, relatedTarget)\n\n $(parent).trigger(showEvent)\n\n if (showEvent.isDefaultPrevented()) {\n return\n }\n\n // Disable totally Popper.js for Dropdown in Navbar\n if (!this._inNavbar) {\n /**\n * Check for Popper dependency\n * Popper - https://popper.js.org\n */\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap\\'s dropdowns require Popper.js (https://popper.js.org/)')\n }\n\n let referenceElement = this._element\n\n if (this._config.reference === 'parent') {\n referenceElement = parent\n } else if (Util.isElement(this._config.reference)) {\n referenceElement = this._config.reference\n\n // Check if it's jQuery element\n if (typeof this._config.reference.jquery !== 'undefined') {\n referenceElement = this._config.reference[0]\n }\n }\n\n // If boundary is not `scrollParent`, then set position to `static`\n // to allow the menu to \"escape\" the scroll parent's boundaries\n // https://github.com/twbs/bootstrap/issues/24251\n if (this._config.boundary !== 'scrollParent') {\n $(parent).addClass(ClassName.POSITION_STATIC)\n }\n this._popper = new Popper(referenceElement, this._menu, this._getPopperConfig())\n }\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement &&\n $(parent).closest(Selector.NAVBAR_NAV).length === 0) {\n $(document.body).children().on('mouseover', null, $.noop)\n }\n\n this._element.focus()\n this._element.setAttribute('aria-expanded', true)\n\n $(this._menu).toggleClass(ClassName.SHOW)\n $(parent)\n .toggleClass(ClassName.SHOW)\n .trigger($.Event(Event.SHOWN, relatedTarget))\n }\n\n show() {\n if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED) || $(this._menu).hasClass(ClassName.SHOW)) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n const showEvent = $.Event(Event.SHOW, relatedTarget)\n const parent = Dropdown._getParentFromElement(this._element)\n\n $(parent).trigger(showEvent)\n\n if (showEvent.isDefaultPrevented()) {\n return\n }\n\n $(this._menu).toggleClass(ClassName.SHOW)\n $(parent)\n .toggleClass(ClassName.SHOW)\n .trigger($.Event(Event.SHOWN, relatedTarget))\n }\n\n hide() {\n if (this._element.disabled || $(this._element).hasClass(ClassName.DISABLED) || !$(this._menu).hasClass(ClassName.SHOW)) {\n return\n }\n\n const relatedTarget = {\n relatedTarget: this._element\n }\n const hideEvent = $.Event(Event.HIDE, relatedTarget)\n const parent = Dropdown._getParentFromElement(this._element)\n\n $(parent).trigger(hideEvent)\n\n if (hideEvent.isDefaultPrevented()) {\n return\n }\n\n $(this._menu).toggleClass(ClassName.SHOW)\n $(parent)\n .toggleClass(ClassName.SHOW)\n .trigger($.Event(Event.HIDDEN, relatedTarget))\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n $(this._element).off(EVENT_KEY)\n this._element = null\n this._menu = null\n if (this._popper !== null) {\n this._popper.destroy()\n this._popper = null\n }\n }\n\n update() {\n this._inNavbar = this._detectNavbar()\n if (this._popper !== null) {\n this._popper.scheduleUpdate()\n }\n }\n\n // Private\n\n _addEventListeners() {\n $(this._element).on(Event.CLICK, (event) => {\n event.preventDefault()\n event.stopPropagation()\n this.toggle()\n })\n }\n\n _getConfig(config) {\n config = {\n ...this.constructor.Default,\n ...$(this._element).data(),\n ...config\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n return config\n }\n\n _getMenuElement() {\n if (!this._menu) {\n const parent = Dropdown._getParentFromElement(this._element)\n\n if (parent) {\n this._menu = parent.querySelector(Selector.MENU)\n }\n }\n return this._menu\n }\n\n _getPlacement() {\n const $parentDropdown = $(this._element.parentNode)\n let placement = AttachmentMap.BOTTOM\n\n // Handle dropup\n if ($parentDropdown.hasClass(ClassName.DROPUP)) {\n placement = AttachmentMap.TOP\n if ($(this._menu).hasClass(ClassName.MENURIGHT)) {\n placement = AttachmentMap.TOPEND\n }\n } else if ($parentDropdown.hasClass(ClassName.DROPRIGHT)) {\n placement = AttachmentMap.RIGHT\n } else if ($parentDropdown.hasClass(ClassName.DROPLEFT)) {\n placement = AttachmentMap.LEFT\n } else if ($(this._menu).hasClass(ClassName.MENURIGHT)) {\n placement = AttachmentMap.BOTTOMEND\n }\n return placement\n }\n\n _detectNavbar() {\n return $(this._element).closest('.navbar').length > 0\n }\n\n _getOffset() {\n const offset = {}\n\n if (typeof this._config.offset === 'function') {\n offset.fn = (data) => {\n data.offsets = {\n ...data.offsets,\n ...this._config.offset(data.offsets, this._element) || {}\n }\n\n return data\n }\n } else {\n offset.offset = this._config.offset\n }\n\n return offset\n }\n\n _getPopperConfig() {\n const popperConfig = {\n placement: this._getPlacement(),\n modifiers: {\n offset: this._getOffset(),\n flip: {\n enabled: this._config.flip\n },\n preventOverflow: {\n boundariesElement: this._config.boundary\n }\n }\n }\n\n // Disable Popper.js if we have a static display\n if (this._config.display === 'static') {\n popperConfig.modifiers.applyStyle = {\n enabled: false\n }\n }\n\n return popperConfig\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' ? config : null\n\n if (!data) {\n data = new Dropdown(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n\n static _clearMenus(event) {\n if (event && (event.which === RIGHT_MOUSE_BUTTON_WHICH ||\n event.type === 'keyup' && event.which !== TAB_KEYCODE)) {\n return\n }\n\n const toggles = [].slice.call(document.querySelectorAll(Selector.DATA_TOGGLE))\n\n for (let i = 0, len = toggles.length; i < len; i++) {\n const parent = Dropdown._getParentFromElement(toggles[i])\n const context = $(toggles[i]).data(DATA_KEY)\n const relatedTarget = {\n relatedTarget: toggles[i]\n }\n\n if (event && event.type === 'click') {\n relatedTarget.clickEvent = event\n }\n\n if (!context) {\n continue\n }\n\n const dropdownMenu = context._menu\n if (!$(parent).hasClass(ClassName.SHOW)) {\n continue\n }\n\n if (event && (event.type === 'click' &&\n /input|textarea/i.test(event.target.tagName) || event.type === 'keyup' && event.which === TAB_KEYCODE) &&\n $.contains(parent, event.target)) {\n continue\n }\n\n const hideEvent = $.Event(Event.HIDE, relatedTarget)\n $(parent).trigger(hideEvent)\n if (hideEvent.isDefaultPrevented()) {\n continue\n }\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n $(document.body).children().off('mouseover', null, $.noop)\n }\n\n toggles[i].setAttribute('aria-expanded', 'false')\n\n $(dropdownMenu).removeClass(ClassName.SHOW)\n $(parent)\n .removeClass(ClassName.SHOW)\n .trigger($.Event(Event.HIDDEN, relatedTarget))\n }\n }\n\n static _getParentFromElement(element) {\n let parent\n const selector = Util.getSelectorFromElement(element)\n\n if (selector) {\n parent = document.querySelector(selector)\n }\n\n return parent || element.parentNode\n }\n\n // eslint-disable-next-line complexity\n static _dataApiKeydownHandler(event) {\n // If not input/textarea:\n // - And not a key in REGEXP_KEYDOWN => not a dropdown command\n // If input/textarea:\n // - If space key => not a dropdown command\n // - If key is other than escape\n // - If key is not up or down => not a dropdown command\n // - If trigger inside the menu => not a dropdown command\n if (/input|textarea/i.test(event.target.tagName)\n ? event.which === SPACE_KEYCODE || event.which !== ESCAPE_KEYCODE &&\n (event.which !== ARROW_DOWN_KEYCODE && event.which !== ARROW_UP_KEYCODE ||\n $(event.target).closest(Selector.MENU).length) : !REGEXP_KEYDOWN.test(event.which)) {\n return\n }\n\n event.preventDefault()\n event.stopPropagation()\n\n if (this.disabled || $(this).hasClass(ClassName.DISABLED)) {\n return\n }\n\n const parent = Dropdown._getParentFromElement(this)\n const isActive = $(parent).hasClass(ClassName.SHOW)\n\n if (!isActive || isActive && (event.which === ESCAPE_KEYCODE || event.which === SPACE_KEYCODE)) {\n if (event.which === ESCAPE_KEYCODE) {\n const toggle = parent.querySelector(Selector.DATA_TOGGLE)\n $(toggle).trigger('focus')\n }\n\n $(this).trigger('click')\n return\n }\n\n const items = [].slice.call(parent.querySelectorAll(Selector.VISIBLE_ITEMS))\n\n if (items.length === 0) {\n return\n }\n\n let index = items.indexOf(event.target)\n\n if (event.which === ARROW_UP_KEYCODE && index > 0) { // Up\n index--\n }\n\n if (event.which === ARROW_DOWN_KEYCODE && index < items.length - 1) { // Down\n index++\n }\n\n if (index < 0) {\n index = 0\n }\n\n items[index].focus()\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document)\n .on(Event.KEYDOWN_DATA_API, Selector.DATA_TOGGLE, Dropdown._dataApiKeydownHandler)\n .on(Event.KEYDOWN_DATA_API, Selector.MENU, Dropdown._dataApiKeydownHandler)\n .on(`${Event.CLICK_DATA_API} ${Event.KEYUP_DATA_API}`, Dropdown._clearMenus)\n .on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n event.preventDefault()\n event.stopPropagation()\n Dropdown._jQueryInterface.call($(this), 'toggle')\n })\n .on(Event.CLICK_DATA_API, Selector.FORM_CHILD, (e) => {\n e.stopPropagation()\n })\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Dropdown._jQueryInterface\n$.fn[NAME].Constructor = Dropdown\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Dropdown._jQueryInterface\n}\n\n\nexport default Dropdown\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): modal.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'modal'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.modal'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst ESCAPE_KEYCODE = 27 // KeyboardEvent.which value for Escape (Esc) key\n\nconst Default = {\n backdrop : true,\n keyboard : true,\n focus : true,\n show : true\n}\n\nconst DefaultType = {\n backdrop : '(boolean|string)',\n keyboard : 'boolean',\n focus : 'boolean',\n show : 'boolean'\n}\n\nconst Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n RESIZE : `resize${EVENT_KEY}`,\n CLICK_DISMISS : `click.dismiss${EVENT_KEY}`,\n KEYDOWN_DISMISS : `keydown.dismiss${EVENT_KEY}`,\n MOUSEUP_DISMISS : `mouseup.dismiss${EVENT_KEY}`,\n MOUSEDOWN_DISMISS : `mousedown.dismiss${EVENT_KEY}`,\n CLICK_DATA_API : `click${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n SCROLLABLE : 'modal-dialog-scrollable',\n SCROLLBAR_MEASURER : 'modal-scrollbar-measure',\n BACKDROP : 'modal-backdrop',\n OPEN : 'modal-open',\n FADE : 'fade',\n SHOW : 'show'\n}\n\nconst Selector = {\n DIALOG : '.modal-dialog',\n MODAL_BODY : '.modal-body',\n DATA_TOGGLE : '[data-toggle=\"modal\"]',\n DATA_DISMISS : '[data-dismiss=\"modal\"]',\n FIXED_CONTENT : '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top',\n STICKY_CONTENT : '.sticky-top'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Modal {\n constructor(element, config) {\n this._config = this._getConfig(config)\n this._element = element\n this._dialog = element.querySelector(Selector.DIALOG)\n this._backdrop = null\n this._isShown = false\n this._isBodyOverflowing = false\n this._ignoreBackdropClick = false\n this._isTransitioning = false\n this._scrollbarWidth = 0\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget)\n }\n\n show(relatedTarget) {\n if (this._isShown || this._isTransitioning) {\n return\n }\n\n if ($(this._element).hasClass(ClassName.FADE)) {\n this._isTransitioning = true\n }\n\n const showEvent = $.Event(Event.SHOW, {\n relatedTarget\n })\n\n $(this._element).trigger(showEvent)\n\n if (this._isShown || showEvent.isDefaultPrevented()) {\n return\n }\n\n this._isShown = true\n\n this._checkScrollbar()\n this._setScrollbar()\n\n this._adjustDialog()\n\n this._setEscapeEvent()\n this._setResizeEvent()\n\n $(this._element).on(\n Event.CLICK_DISMISS,\n Selector.DATA_DISMISS,\n (event) => this.hide(event)\n )\n\n $(this._dialog).on(Event.MOUSEDOWN_DISMISS, () => {\n $(this._element).one(Event.MOUSEUP_DISMISS, (event) => {\n if ($(event.target).is(this._element)) {\n this._ignoreBackdropClick = true\n }\n })\n })\n\n this._showBackdrop(() => this._showElement(relatedTarget))\n }\n\n hide(event) {\n if (event) {\n event.preventDefault()\n }\n\n if (!this._isShown || this._isTransitioning) {\n return\n }\n\n const hideEvent = $.Event(Event.HIDE)\n\n $(this._element).trigger(hideEvent)\n\n if (!this._isShown || hideEvent.isDefaultPrevented()) {\n return\n }\n\n this._isShown = false\n const transition = $(this._element).hasClass(ClassName.FADE)\n\n if (transition) {\n this._isTransitioning = true\n }\n\n this._setEscapeEvent()\n this._setResizeEvent()\n\n $(document).off(Event.FOCUSIN)\n\n $(this._element).removeClass(ClassName.SHOW)\n\n $(this._element).off(Event.CLICK_DISMISS)\n $(this._dialog).off(Event.MOUSEDOWN_DISMISS)\n\n\n if (transition) {\n const transitionDuration = Util.getTransitionDurationFromElement(this._element)\n\n $(this._element)\n .one(Util.TRANSITION_END, (event) => this._hideModal(event))\n .emulateTransitionEnd(transitionDuration)\n } else {\n this._hideModal()\n }\n }\n\n dispose() {\n [window, this._element, this._dialog]\n .forEach((htmlElement) => $(htmlElement).off(EVENT_KEY))\n\n /**\n * `document` has 2 events `Event.FOCUSIN` and `Event.CLICK_DATA_API`\n * Do not move `document` in `htmlElements` array\n * It will remove `Event.CLICK_DATA_API` event that should remain\n */\n $(document).off(Event.FOCUSIN)\n\n $.removeData(this._element, DATA_KEY)\n\n this._config = null\n this._element = null\n this._dialog = null\n this._backdrop = null\n this._isShown = null\n this._isBodyOverflowing = null\n this._ignoreBackdropClick = null\n this._isTransitioning = null\n this._scrollbarWidth = null\n }\n\n handleUpdate() {\n this._adjustDialog()\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...config\n }\n Util.typeCheckConfig(NAME, config, DefaultType)\n return config\n }\n\n _showElement(relatedTarget) {\n const transition = $(this._element).hasClass(ClassName.FADE)\n\n if (!this._element.parentNode ||\n this._element.parentNode.nodeType !== Node.ELEMENT_NODE) {\n // Don't move modal's DOM position\n document.body.appendChild(this._element)\n }\n\n this._element.style.display = 'block'\n this._element.removeAttribute('aria-hidden')\n this._element.setAttribute('aria-modal', true)\n\n if ($(this._dialog).hasClass(ClassName.SCROLLABLE)) {\n this._dialog.querySelector(Selector.MODAL_BODY).scrollTop = 0\n } else {\n this._element.scrollTop = 0\n }\n\n if (transition) {\n Util.reflow(this._element)\n }\n\n $(this._element).addClass(ClassName.SHOW)\n\n if (this._config.focus) {\n this._enforceFocus()\n }\n\n const shownEvent = $.Event(Event.SHOWN, {\n relatedTarget\n })\n\n const transitionComplete = () => {\n if (this._config.focus) {\n this._element.focus()\n }\n this._isTransitioning = false\n $(this._element).trigger(shownEvent)\n }\n\n if (transition) {\n const transitionDuration = Util.getTransitionDurationFromElement(this._dialog)\n\n $(this._dialog)\n .one(Util.TRANSITION_END, transitionComplete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n transitionComplete()\n }\n }\n\n _enforceFocus() {\n $(document)\n .off(Event.FOCUSIN) // Guard against infinite focus loop\n .on(Event.FOCUSIN, (event) => {\n if (document !== event.target &&\n this._element !== event.target &&\n $(this._element).has(event.target).length === 0) {\n this._element.focus()\n }\n })\n }\n\n _setEscapeEvent() {\n if (this._isShown && this._config.keyboard) {\n $(this._element).on(Event.KEYDOWN_DISMISS, (event) => {\n if (event.which === ESCAPE_KEYCODE) {\n event.preventDefault()\n this.hide()\n }\n })\n } else if (!this._isShown) {\n $(this._element).off(Event.KEYDOWN_DISMISS)\n }\n }\n\n _setResizeEvent() {\n if (this._isShown) {\n $(window).on(Event.RESIZE, (event) => this.handleUpdate(event))\n } else {\n $(window).off(Event.RESIZE)\n }\n }\n\n _hideModal() {\n this._element.style.display = 'none'\n this._element.setAttribute('aria-hidden', true)\n this._element.removeAttribute('aria-modal')\n this._isTransitioning = false\n this._showBackdrop(() => {\n $(document.body).removeClass(ClassName.OPEN)\n this._resetAdjustments()\n this._resetScrollbar()\n $(this._element).trigger(Event.HIDDEN)\n })\n }\n\n _removeBackdrop() {\n if (this._backdrop) {\n $(this._backdrop).remove()\n this._backdrop = null\n }\n }\n\n _showBackdrop(callback) {\n const animate = $(this._element).hasClass(ClassName.FADE)\n ? ClassName.FADE : ''\n\n if (this._isShown && this._config.backdrop) {\n this._backdrop = document.createElement('div')\n this._backdrop.className = ClassName.BACKDROP\n\n if (animate) {\n this._backdrop.classList.add(animate)\n }\n\n $(this._backdrop).appendTo(document.body)\n\n $(this._element).on(Event.CLICK_DISMISS, (event) => {\n if (this._ignoreBackdropClick) {\n this._ignoreBackdropClick = false\n return\n }\n if (event.target !== event.currentTarget) {\n return\n }\n if (this._config.backdrop === 'static') {\n this._element.focus()\n } else {\n this.hide()\n }\n })\n\n if (animate) {\n Util.reflow(this._backdrop)\n }\n\n $(this._backdrop).addClass(ClassName.SHOW)\n\n if (!callback) {\n return\n }\n\n if (!animate) {\n callback()\n return\n }\n\n const backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop)\n\n $(this._backdrop)\n .one(Util.TRANSITION_END, callback)\n .emulateTransitionEnd(backdropTransitionDuration)\n } else if (!this._isShown && this._backdrop) {\n $(this._backdrop).removeClass(ClassName.SHOW)\n\n const callbackRemove = () => {\n this._removeBackdrop()\n if (callback) {\n callback()\n }\n }\n\n if ($(this._element).hasClass(ClassName.FADE)) {\n const backdropTransitionDuration = Util.getTransitionDurationFromElement(this._backdrop)\n\n $(this._backdrop)\n .one(Util.TRANSITION_END, callbackRemove)\n .emulateTransitionEnd(backdropTransitionDuration)\n } else {\n callbackRemove()\n }\n } else if (callback) {\n callback()\n }\n }\n\n // ----------------------------------------------------------------------\n // the following methods are used to handle overflowing modals\n // todo (fat): these should probably be refactored out of modal.js\n // ----------------------------------------------------------------------\n\n _adjustDialog() {\n const isModalOverflowing =\n this._element.scrollHeight > document.documentElement.clientHeight\n\n if (!this._isBodyOverflowing && isModalOverflowing) {\n this._element.style.paddingLeft = `${this._scrollbarWidth}px`\n }\n\n if (this._isBodyOverflowing && !isModalOverflowing) {\n this._element.style.paddingRight = `${this._scrollbarWidth}px`\n }\n }\n\n _resetAdjustments() {\n this._element.style.paddingLeft = ''\n this._element.style.paddingRight = ''\n }\n\n _checkScrollbar() {\n const rect = document.body.getBoundingClientRect()\n this._isBodyOverflowing = rect.left + rect.right < window.innerWidth\n this._scrollbarWidth = this._getScrollbarWidth()\n }\n\n _setScrollbar() {\n if (this._isBodyOverflowing) {\n // Note: DOMNode.style.paddingRight returns the actual value or '' if not set\n // while $(DOMNode).css('padding-right') returns the calculated value or 0 if not set\n const fixedContent = [].slice.call(document.querySelectorAll(Selector.FIXED_CONTENT))\n const stickyContent = [].slice.call(document.querySelectorAll(Selector.STICKY_CONTENT))\n\n // Adjust fixed content padding\n $(fixedContent).each((index, element) => {\n const actualPadding = element.style.paddingRight\n const calculatedPadding = $(element).css('padding-right')\n $(element)\n .data('padding-right', actualPadding)\n .css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`)\n })\n\n // Adjust sticky content margin\n $(stickyContent).each((index, element) => {\n const actualMargin = element.style.marginRight\n const calculatedMargin = $(element).css('margin-right')\n $(element)\n .data('margin-right', actualMargin)\n .css('margin-right', `${parseFloat(calculatedMargin) - this._scrollbarWidth}px`)\n })\n\n // Adjust body padding\n const actualPadding = document.body.style.paddingRight\n const calculatedPadding = $(document.body).css('padding-right')\n $(document.body)\n .data('padding-right', actualPadding)\n .css('padding-right', `${parseFloat(calculatedPadding) + this._scrollbarWidth}px`)\n }\n\n $(document.body).addClass(ClassName.OPEN)\n }\n\n _resetScrollbar() {\n // Restore fixed content padding\n const fixedContent = [].slice.call(document.querySelectorAll(Selector.FIXED_CONTENT))\n $(fixedContent).each((index, element) => {\n const padding = $(element).data('padding-right')\n $(element).removeData('padding-right')\n element.style.paddingRight = padding ? padding : ''\n })\n\n // Restore sticky content\n const elements = [].slice.call(document.querySelectorAll(`${Selector.STICKY_CONTENT}`))\n $(elements).each((index, element) => {\n const margin = $(element).data('margin-right')\n if (typeof margin !== 'undefined') {\n $(element).css('margin-right', margin).removeData('margin-right')\n }\n })\n\n // Restore body padding\n const padding = $(document.body).data('padding-right')\n $(document.body).removeData('padding-right')\n document.body.style.paddingRight = padding ? padding : ''\n }\n\n _getScrollbarWidth() { // thx d.walsh\n const scrollDiv = document.createElement('div')\n scrollDiv.className = ClassName.SCROLLBAR_MEASURER\n document.body.appendChild(scrollDiv)\n const scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth\n document.body.removeChild(scrollDiv)\n return scrollbarWidth\n }\n\n // Static\n\n static _jQueryInterface(config, relatedTarget) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = {\n ...Default,\n ...$(this).data(),\n ...typeof config === 'object' && config ? config : {}\n }\n\n if (!data) {\n data = new Modal(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config](relatedTarget)\n } else if (_config.show) {\n data.show(relatedTarget)\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * Data Api implementation\n * ------------------------------------------------------------------------\n */\n\n$(document).on(Event.CLICK_DATA_API, Selector.DATA_TOGGLE, function (event) {\n let target\n const selector = Util.getSelectorFromElement(this)\n\n if (selector) {\n target = document.querySelector(selector)\n }\n\n const config = $(target).data(DATA_KEY)\n ? 'toggle' : {\n ...$(target).data(),\n ...$(this).data()\n }\n\n if (this.tagName === 'A' || this.tagName === 'AREA') {\n event.preventDefault()\n }\n\n const $target = $(target).one(Event.SHOW, (showEvent) => {\n if (showEvent.isDefaultPrevented()) {\n // Only register focus restorer if modal will actually get shown\n return\n }\n\n $target.one(Event.HIDDEN, () => {\n if ($(this).is(':visible')) {\n this.focus()\n }\n })\n })\n\n Modal._jQueryInterface.call($(target), config, this)\n})\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Modal._jQueryInterface\n$.fn[NAME].Constructor = Modal\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Modal._jQueryInterface\n}\n\nexport default Modal\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): tools/sanitizer.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst uriAttrs = [\n 'background',\n 'cite',\n 'href',\n 'itemtype',\n 'longdesc',\n 'poster',\n 'src',\n 'xlink:href'\n]\n\nconst ARIA_ATTRIBUTE_PATTERN = /^aria-[\\w-]*$/i\n\nexport const DefaultWhitelist = {\n // Global attributes allowed on any supplied element below.\n '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],\n a: ['target', 'href', 'title', 'rel'],\n area: [],\n b: [],\n br: [],\n col: [],\n code: [],\n div: [],\n em: [],\n hr: [],\n h1: [],\n h2: [],\n h3: [],\n h4: [],\n h5: [],\n h6: [],\n i: [],\n img: ['src', 'alt', 'title', 'width', 'height'],\n li: [],\n ol: [],\n p: [],\n pre: [],\n s: [],\n small: [],\n span: [],\n sub: [],\n sup: [],\n strong: [],\n u: [],\n ul: []\n}\n\n/**\n * A pattern that recognizes a commonly useful subset of URLs that are safe.\n *\n * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts\n */\nconst SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi\n\n/**\n * A pattern that matches safe data URLs. Only matches image, video and audio types.\n *\n * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts\n */\nconst DATA_URL_PATTERN = /^data:(?:image\\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\\/(?:mpeg|mp4|ogg|webm)|audio\\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i\n\nfunction allowedAttribute(attr, allowedAttributeList) {\n const attrName = attr.nodeName.toLowerCase()\n\n if (allowedAttributeList.indexOf(attrName) !== -1) {\n if (uriAttrs.indexOf(attrName) !== -1) {\n return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN))\n }\n\n return true\n }\n\n const regExp = allowedAttributeList.filter((attrRegex) => attrRegex instanceof RegExp)\n\n // Check if a regular expression validates the attribute.\n for (let i = 0, l = regExp.length; i < l; i++) {\n if (attrName.match(regExp[i])) {\n return true\n }\n }\n\n return false\n}\n\nexport function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) {\n if (unsafeHtml.length === 0) {\n return unsafeHtml\n }\n\n if (sanitizeFn && typeof sanitizeFn === 'function') {\n return sanitizeFn(unsafeHtml)\n }\n\n const domParser = new window.DOMParser()\n const createdDocument = domParser.parseFromString(unsafeHtml, 'text/html')\n const whitelistKeys = Object.keys(whiteList)\n const elements = [].slice.call(createdDocument.body.querySelectorAll('*'))\n\n for (let i = 0, len = elements.length; i < len; i++) {\n const el = elements[i]\n const elName = el.nodeName.toLowerCase()\n\n if (whitelistKeys.indexOf(el.nodeName.toLowerCase()) === -1) {\n el.parentNode.removeChild(el)\n\n continue\n }\n\n const attributeList = [].slice.call(el.attributes)\n const whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || [])\n\n attributeList.forEach((attr) => {\n if (!allowedAttribute(attr, whitelistedAttributes)) {\n el.removeAttribute(attr.nodeName)\n }\n })\n }\n\n return createdDocument.body.innerHTML\n}\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): tooltip.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport {\n DefaultWhitelist,\n sanitizeHtml\n} from './tools/sanitizer'\nimport $ from 'jquery'\nimport Popper from 'popper.js'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'tooltip'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.tooltip'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst CLASS_PREFIX = 'bs-tooltip'\nconst BSCLS_PREFIX_REGEX = new RegExp(`(^|\\\\s)${CLASS_PREFIX}\\\\S+`, 'g')\nconst DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn']\n\nconst DefaultType = {\n animation : 'boolean',\n template : 'string',\n title : '(string|element|function)',\n trigger : 'string',\n delay : '(number|object)',\n html : 'boolean',\n selector : '(string|boolean)',\n placement : '(string|function)',\n offset : '(number|string|function)',\n container : '(string|element|boolean)',\n fallbackPlacement : '(string|array)',\n boundary : '(string|element)',\n sanitize : 'boolean',\n sanitizeFn : '(null|function)',\n whiteList : 'object'\n}\n\nconst AttachmentMap = {\n AUTO : 'auto',\n TOP : 'top',\n RIGHT : 'right',\n BOTTOM : 'bottom',\n LEFT : 'left'\n}\n\nconst Default = {\n animation : true,\n template : '
' +\n '
' +\n '
',\n trigger : 'hover focus',\n title : '',\n delay : 0,\n html : false,\n selector : false,\n placement : 'top',\n offset : 0,\n container : false,\n fallbackPlacement : 'flip',\n boundary : 'scrollParent',\n sanitize : true,\n sanitizeFn : null,\n whiteList : DefaultWhitelist\n}\n\nconst HoverState = {\n SHOW : 'show',\n OUT : 'out'\n}\n\nconst Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n INSERTED : `inserted${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n FOCUSOUT : `focusout${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`\n}\n\nconst ClassName = {\n FADE : 'fade',\n SHOW : 'show'\n}\n\nconst Selector = {\n TOOLTIP : '.tooltip',\n TOOLTIP_INNER : '.tooltip-inner',\n ARROW : '.arrow'\n}\n\nconst Trigger = {\n HOVER : 'hover',\n FOCUS : 'focus',\n CLICK : 'click',\n MANUAL : 'manual'\n}\n\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Tooltip {\n constructor(element, config) {\n /**\n * Check for Popper dependency\n * Popper - https://popper.js.org\n */\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap\\'s tooltips require Popper.js (https://popper.js.org/)')\n }\n\n // private\n this._isEnabled = true\n this._timeout = 0\n this._hoverState = ''\n this._activeTrigger = {}\n this._popper = null\n\n // Protected\n this.element = element\n this.config = this._getConfig(config)\n this.tip = null\n\n this._setListeners()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get NAME() {\n return NAME\n }\n\n static get DATA_KEY() {\n return DATA_KEY\n }\n\n static get Event() {\n return Event\n }\n\n static get EVENT_KEY() {\n return EVENT_KEY\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Public\n\n enable() {\n this._isEnabled = true\n }\n\n disable() {\n this._isEnabled = false\n }\n\n toggleEnabled() {\n this._isEnabled = !this._isEnabled\n }\n\n toggle(event) {\n if (!this._isEnabled) {\n return\n }\n\n if (event) {\n const dataKey = this.constructor.DATA_KEY\n let context = $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n context._activeTrigger.click = !context._activeTrigger.click\n\n if (context._isWithActiveTrigger()) {\n context._enter(null, context)\n } else {\n context._leave(null, context)\n }\n } else {\n if ($(this.getTipElement()).hasClass(ClassName.SHOW)) {\n this._leave(null, this)\n return\n }\n\n this._enter(null, this)\n }\n }\n\n dispose() {\n clearTimeout(this._timeout)\n\n $.removeData(this.element, this.constructor.DATA_KEY)\n\n $(this.element).off(this.constructor.EVENT_KEY)\n $(this.element).closest('.modal').off('hide.bs.modal')\n\n if (this.tip) {\n $(this.tip).remove()\n }\n\n this._isEnabled = null\n this._timeout = null\n this._hoverState = null\n this._activeTrigger = null\n if (this._popper !== null) {\n this._popper.destroy()\n }\n\n this._popper = null\n this.element = null\n this.config = null\n this.tip = null\n }\n\n show() {\n if ($(this.element).css('display') === 'none') {\n throw new Error('Please use show on visible elements')\n }\n\n const showEvent = $.Event(this.constructor.Event.SHOW)\n if (this.isWithContent() && this._isEnabled) {\n $(this.element).trigger(showEvent)\n\n const shadowRoot = Util.findShadowRoot(this.element)\n const isInTheDom = $.contains(\n shadowRoot !== null ? shadowRoot : this.element.ownerDocument.documentElement,\n this.element\n )\n\n if (showEvent.isDefaultPrevented() || !isInTheDom) {\n return\n }\n\n const tip = this.getTipElement()\n const tipId = Util.getUID(this.constructor.NAME)\n\n tip.setAttribute('id', tipId)\n this.element.setAttribute('aria-describedby', tipId)\n\n this.setContent()\n\n if (this.config.animation) {\n $(tip).addClass(ClassName.FADE)\n }\n\n const placement = typeof this.config.placement === 'function'\n ? this.config.placement.call(this, tip, this.element)\n : this.config.placement\n\n const attachment = this._getAttachment(placement)\n this.addAttachmentClass(attachment)\n\n const container = this._getContainer()\n $(tip).data(this.constructor.DATA_KEY, this)\n\n if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {\n $(tip).appendTo(container)\n }\n\n $(this.element).trigger(this.constructor.Event.INSERTED)\n\n this._popper = new Popper(this.element, tip, {\n placement: attachment,\n modifiers: {\n offset: this._getOffset(),\n flip: {\n behavior: this.config.fallbackPlacement\n },\n arrow: {\n element: Selector.ARROW\n },\n preventOverflow: {\n boundariesElement: this.config.boundary\n }\n },\n onCreate: (data) => {\n if (data.originalPlacement !== data.placement) {\n this._handlePopperPlacementChange(data)\n }\n },\n onUpdate: (data) => this._handlePopperPlacementChange(data)\n })\n\n $(tip).addClass(ClassName.SHOW)\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement) {\n $(document.body).children().on('mouseover', null, $.noop)\n }\n\n const complete = () => {\n if (this.config.animation) {\n this._fixTransition()\n }\n const prevHoverState = this._hoverState\n this._hoverState = null\n\n $(this.element).trigger(this.constructor.Event.SHOWN)\n\n if (prevHoverState === HoverState.OUT) {\n this._leave(null, this)\n }\n }\n\n if ($(this.tip).hasClass(ClassName.FADE)) {\n const transitionDuration = Util.getTransitionDurationFromElement(this.tip)\n\n $(this.tip)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n complete()\n }\n }\n }\n\n hide(callback) {\n const tip = this.getTipElement()\n const hideEvent = $.Event(this.constructor.Event.HIDE)\n const complete = () => {\n if (this._hoverState !== HoverState.SHOW && tip.parentNode) {\n tip.parentNode.removeChild(tip)\n }\n\n this._cleanTipClass()\n this.element.removeAttribute('aria-describedby')\n $(this.element).trigger(this.constructor.Event.HIDDEN)\n if (this._popper !== null) {\n this._popper.destroy()\n }\n\n if (callback) {\n callback()\n }\n }\n\n $(this.element).trigger(hideEvent)\n\n if (hideEvent.isDefaultPrevented()) {\n return\n }\n\n $(tip).removeClass(ClassName.SHOW)\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n $(document.body).children().off('mouseover', null, $.noop)\n }\n\n this._activeTrigger[Trigger.CLICK] = false\n this._activeTrigger[Trigger.FOCUS] = false\n this._activeTrigger[Trigger.HOVER] = false\n\n if ($(this.tip).hasClass(ClassName.FADE)) {\n const transitionDuration = Util.getTransitionDurationFromElement(tip)\n\n $(tip)\n .one(Util.TRANSITION_END, complete)\n .emulateTransitionEnd(transitionDuration)\n } else {\n complete()\n }\n\n this._hoverState = ''\n }\n\n update() {\n if (this._popper !== null) {\n this._popper.scheduleUpdate()\n }\n }\n\n // Protected\n\n isWithContent() {\n return Boolean(this.getTitle())\n }\n\n addAttachmentClass(attachment) {\n $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)\n }\n\n getTipElement() {\n this.tip = this.tip || $(this.config.template)[0]\n return this.tip\n }\n\n setContent() {\n const tip = this.getTipElement()\n this.setElementContent($(tip.querySelectorAll(Selector.TOOLTIP_INNER)), this.getTitle())\n $(tip).removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)\n }\n\n setElementContent($element, content) {\n if (typeof content === 'object' && (content.nodeType || content.jquery)) {\n // Content is a DOM node or a jQuery\n if (this.config.html) {\n if (!$(content).parent().is($element)) {\n $element.empty().append(content)\n }\n } else {\n $element.text($(content).text())\n }\n\n return\n }\n\n if (this.config.html) {\n if (this.config.sanitize) {\n content = sanitizeHtml(content, this.config.whiteList, this.config.sanitizeFn)\n }\n\n $element.html(content)\n } else {\n $element.text(content)\n }\n }\n\n getTitle() {\n let title = this.element.getAttribute('data-original-title')\n\n if (!title) {\n title = typeof this.config.title === 'function'\n ? this.config.title.call(this.element)\n : this.config.title\n }\n\n return title\n }\n\n // Private\n\n _getOffset() {\n const offset = {}\n\n if (typeof this.config.offset === 'function') {\n offset.fn = (data) => {\n data.offsets = {\n ...data.offsets,\n ...this.config.offset(data.offsets, this.element) || {}\n }\n\n return data\n }\n } else {\n offset.offset = this.config.offset\n }\n\n return offset\n }\n\n _getContainer() {\n if (this.config.container === false) {\n return document.body\n }\n\n if (Util.isElement(this.config.container)) {\n return $(this.config.container)\n }\n\n return $(document).find(this.config.container)\n }\n\n _getAttachment(placement) {\n return AttachmentMap[placement.toUpperCase()]\n }\n\n _setListeners() {\n const triggers = this.config.trigger.split(' ')\n\n triggers.forEach((trigger) => {\n if (trigger === 'click') {\n $(this.element).on(\n this.constructor.Event.CLICK,\n this.config.selector,\n (event) => this.toggle(event)\n )\n } else if (trigger !== Trigger.MANUAL) {\n const eventIn = trigger === Trigger.HOVER\n ? this.constructor.Event.MOUSEENTER\n : this.constructor.Event.FOCUSIN\n const eventOut = trigger === Trigger.HOVER\n ? this.constructor.Event.MOUSELEAVE\n : this.constructor.Event.FOCUSOUT\n\n $(this.element)\n .on(\n eventIn,\n this.config.selector,\n (event) => this._enter(event)\n )\n .on(\n eventOut,\n this.config.selector,\n (event) => this._leave(event)\n )\n }\n })\n\n $(this.element).closest('.modal').on(\n 'hide.bs.modal',\n () => {\n if (this.element) {\n this.hide()\n }\n }\n )\n\n if (this.config.selector) {\n this.config = {\n ...this.config,\n trigger: 'manual',\n selector: ''\n }\n } else {\n this._fixTitle()\n }\n }\n\n _fixTitle() {\n const titleType = typeof this.element.getAttribute('data-original-title')\n\n if (this.element.getAttribute('title') || titleType !== 'string') {\n this.element.setAttribute(\n 'data-original-title',\n this.element.getAttribute('title') || ''\n )\n\n this.element.setAttribute('title', '')\n }\n }\n\n _enter(event, context) {\n const dataKey = this.constructor.DATA_KEY\n context = context || $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n if (event) {\n context._activeTrigger[\n event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER\n ] = true\n }\n\n if ($(context.getTipElement()).hasClass(ClassName.SHOW) || context._hoverState === HoverState.SHOW) {\n context._hoverState = HoverState.SHOW\n return\n }\n\n clearTimeout(context._timeout)\n\n context._hoverState = HoverState.SHOW\n\n if (!context.config.delay || !context.config.delay.show) {\n context.show()\n return\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HoverState.SHOW) {\n context.show()\n }\n }, context.config.delay.show)\n }\n\n _leave(event, context) {\n const dataKey = this.constructor.DATA_KEY\n context = context || $(event.currentTarget).data(dataKey)\n\n if (!context) {\n context = new this.constructor(\n event.currentTarget,\n this._getDelegateConfig()\n )\n $(event.currentTarget).data(dataKey, context)\n }\n\n if (event) {\n context._activeTrigger[\n event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER\n ] = false\n }\n\n if (context._isWithActiveTrigger()) {\n return\n }\n\n clearTimeout(context._timeout)\n\n context._hoverState = HoverState.OUT\n\n if (!context.config.delay || !context.config.delay.hide) {\n context.hide()\n return\n }\n\n context._timeout = setTimeout(() => {\n if (context._hoverState === HoverState.OUT) {\n context.hide()\n }\n }, context.config.delay.hide)\n }\n\n _isWithActiveTrigger() {\n for (const trigger in this._activeTrigger) {\n if (this._activeTrigger[trigger]) {\n return true\n }\n }\n\n return false\n }\n\n _getConfig(config) {\n const dataAttributes = $(this.element).data()\n\n Object.keys(dataAttributes)\n .forEach((dataAttr) => {\n if (DISALLOWED_ATTRIBUTES.indexOf(dataAttr) !== -1) {\n delete dataAttributes[dataAttr]\n }\n })\n\n config = {\n ...this.constructor.Default,\n ...dataAttributes,\n ...typeof config === 'object' && config ? config : {}\n }\n\n if (typeof config.delay === 'number') {\n config.delay = {\n show: config.delay,\n hide: config.delay\n }\n }\n\n if (typeof config.title === 'number') {\n config.title = config.title.toString()\n }\n\n if (typeof config.content === 'number') {\n config.content = config.content.toString()\n }\n\n Util.typeCheckConfig(\n NAME,\n config,\n this.constructor.DefaultType\n )\n\n if (config.sanitize) {\n config.template = sanitizeHtml(config.template, config.whiteList, config.sanitizeFn)\n }\n\n return config\n }\n\n _getDelegateConfig() {\n const config = {}\n\n if (this.config) {\n for (const key in this.config) {\n if (this.constructor.Default[key] !== this.config[key]) {\n config[key] = this.config[key]\n }\n }\n }\n\n return config\n }\n\n _cleanTipClass() {\n const $tip = $(this.getTipElement())\n const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)\n if (tabClass !== null && tabClass.length) {\n $tip.removeClass(tabClass.join(''))\n }\n }\n\n _handlePopperPlacementChange(popperData) {\n const popperInstance = popperData.instance\n this.tip = popperInstance.popper\n this._cleanTipClass()\n this.addAttachmentClass(this._getAttachment(popperData.placement))\n }\n\n _fixTransition() {\n const tip = this.getTipElement()\n const initConfigAnimation = this.config.animation\n\n if (tip.getAttribute('x-placement') !== null) {\n return\n }\n\n $(tip).removeClass(ClassName.FADE)\n this.config.animation = false\n this.hide()\n this.show()\n this.config.animation = initConfigAnimation\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' && config\n\n if (!data && /dispose|hide/.test(config)) {\n return\n }\n\n if (!data) {\n data = new Tooltip(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Tooltip._jQueryInterface\n$.fn[NAME].Constructor = Tooltip\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Tooltip._jQueryInterface\n}\n\nexport default Tooltip\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): popover.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Tooltip from './tooltip'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'popover'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.popover'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\nconst CLASS_PREFIX = 'bs-popover'\nconst BSCLS_PREFIX_REGEX = new RegExp(`(^|\\\\s)${CLASS_PREFIX}\\\\S+`, 'g')\n\nconst Default = {\n ...Tooltip.Default,\n placement : 'right',\n trigger : 'click',\n content : '',\n template : '
' +\n '
' +\n '

' +\n '
'\n}\n\nconst DefaultType = {\n ...Tooltip.DefaultType,\n content : '(string|element|function)'\n}\n\nconst ClassName = {\n FADE : 'fade',\n SHOW : 'show'\n}\n\nconst Selector = {\n TITLE : '.popover-header',\n CONTENT : '.popover-body'\n}\n\nconst Event = {\n HIDE : `hide${EVENT_KEY}`,\n HIDDEN : `hidden${EVENT_KEY}`,\n SHOW : `show${EVENT_KEY}`,\n SHOWN : `shown${EVENT_KEY}`,\n INSERTED : `inserted${EVENT_KEY}`,\n CLICK : `click${EVENT_KEY}`,\n FOCUSIN : `focusin${EVENT_KEY}`,\n FOCUSOUT : `focusout${EVENT_KEY}`,\n MOUSEENTER : `mouseenter${EVENT_KEY}`,\n MOUSELEAVE : `mouseleave${EVENT_KEY}`\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass Popover extends Tooltip {\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n static get NAME() {\n return NAME\n }\n\n static get DATA_KEY() {\n return DATA_KEY\n }\n\n static get Event() {\n return Event\n }\n\n static get EVENT_KEY() {\n return EVENT_KEY\n }\n\n static get DefaultType() {\n return DefaultType\n }\n\n // Overrides\n\n isWithContent() {\n return this.getTitle() || this._getContent()\n }\n\n addAttachmentClass(attachment) {\n $(this.getTipElement()).addClass(`${CLASS_PREFIX}-${attachment}`)\n }\n\n getTipElement() {\n this.tip = this.tip || $(this.config.template)[0]\n return this.tip\n }\n\n setContent() {\n const $tip = $(this.getTipElement())\n\n // We use append for html objects to maintain js events\n this.setElementContent($tip.find(Selector.TITLE), this.getTitle())\n let content = this._getContent()\n if (typeof content === 'function') {\n content = content.call(this.element)\n }\n this.setElementContent($tip.find(Selector.CONTENT), content)\n\n $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`)\n }\n\n // Private\n\n _getContent() {\n return this.element.getAttribute('data-content') ||\n this.config.content\n }\n\n _cleanTipClass() {\n const $tip = $(this.getTipElement())\n const tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX)\n if (tabClass !== null && tabClass.length > 0) {\n $tip.removeClass(tabClass.join(''))\n }\n }\n\n // Static\n\n static _jQueryInterface(config) {\n return this.each(function () {\n let data = $(this).data(DATA_KEY)\n const _config = typeof config === 'object' ? config : null\n\n if (!data && /dispose|hide/.test(config)) {\n return\n }\n\n if (!data) {\n data = new Popover(this, _config)\n $(this).data(DATA_KEY, data)\n }\n\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`)\n }\n data[config]()\n }\n })\n }\n}\n\n/**\n * ------------------------------------------------------------------------\n * jQuery\n * ------------------------------------------------------------------------\n */\n\n$.fn[NAME] = Popover._jQueryInterface\n$.fn[NAME].Constructor = Popover\n$.fn[NAME].noConflict = () => {\n $.fn[NAME] = JQUERY_NO_CONFLICT\n return Popover._jQueryInterface\n}\n\nexport default Popover\n","/**\n * --------------------------------------------------------------------------\n * Bootstrap (v4.3.1): scrollspy.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nimport $ from 'jquery'\nimport Util from './util'\n\n/**\n * ------------------------------------------------------------------------\n * Constants\n * ------------------------------------------------------------------------\n */\n\nconst NAME = 'scrollspy'\nconst VERSION = '4.3.1'\nconst DATA_KEY = 'bs.scrollspy'\nconst EVENT_KEY = `.${DATA_KEY}`\nconst DATA_API_KEY = '.data-api'\nconst JQUERY_NO_CONFLICT = $.fn[NAME]\n\nconst Default = {\n offset : 10,\n method : 'auto',\n target : ''\n}\n\nconst DefaultType = {\n offset : 'number',\n method : 'string',\n target : '(string|element)'\n}\n\nconst Event = {\n ACTIVATE : `activate${EVENT_KEY}`,\n SCROLL : `scroll${EVENT_KEY}`,\n LOAD_DATA_API : `load${EVENT_KEY}${DATA_API_KEY}`\n}\n\nconst ClassName = {\n DROPDOWN_ITEM : 'dropdown-item',\n DROPDOWN_MENU : 'dropdown-menu',\n ACTIVE : 'active'\n}\n\nconst Selector = {\n DATA_SPY : '[data-spy=\"scroll\"]',\n ACTIVE : '.active',\n NAV_LIST_GROUP : '.nav, .list-group',\n NAV_LINKS : '.nav-link',\n NAV_ITEMS : '.nav-item',\n LIST_ITEMS : '.list-group-item',\n DROPDOWN : '.dropdown',\n DROPDOWN_ITEMS : '.dropdown-item',\n DROPDOWN_TOGGLE : '.dropdown-toggle'\n}\n\nconst OffsetMethod = {\n OFFSET : 'offset',\n POSITION : 'position'\n}\n\n/**\n * ------------------------------------------------------------------------\n * Class Definition\n * ------------------------------------------------------------------------\n */\n\nclass ScrollSpy {\n constructor(element, config) {\n this._element = element\n this._scrollElement = element.tagName === 'BODY' ? window : element\n this._config = this._getConfig(config)\n this._selector = `${this._config.target} ${Selector.NAV_LINKS},` +\n `${this._config.target} ${Selector.LIST_ITEMS},` +\n `${this._config.target} ${Selector.DROPDOWN_ITEMS}`\n this._offsets = []\n this._targets = []\n this._activeTarget = null\n this._scrollHeight = 0\n\n $(this._scrollElement).on(Event.SCROLL, (event) => this._process(event))\n\n this.refresh()\n this._process()\n }\n\n // Getters\n\n static get VERSION() {\n return VERSION\n }\n\n static get Default() {\n return Default\n }\n\n // Public\n\n refresh() {\n const autoMethod = this._scrollElement === this._scrollElement.window\n ? OffsetMethod.OFFSET : OffsetMethod.POSITION\n\n const offsetMethod = this._config.method === 'auto'\n ? autoMethod : this._config.method\n\n const offsetBase = offsetMethod === OffsetMethod.POSITION\n ? this._getScrollTop() : 0\n\n this._offsets = []\n this._targets = []\n\n this._scrollHeight = this._getScrollHeight()\n\n const targets = [].slice.call(document.querySelectorAll(this._selector))\n\n targets\n .map((element) => {\n let target\n const targetSelector = Util.getSelectorFromElement(element)\n\n if (targetSelector) {\n target = document.querySelector(targetSelector)\n }\n\n if (target) {\n const targetBCR = target.getBoundingClientRect()\n if (targetBCR.width || targetBCR.height) {\n // TODO (fat): remove sketch reliance on jQuery position/offset\n return [\n $(target)[offsetMethod]().top + offsetBase,\n targetSelector\n ]\n }\n }\n return null\n })\n .filter((item) => item)\n .sort((a, b) => a[0] - b[0])\n .forEach((item) => {\n this._offsets.push(item[0])\n this._targets.push(item[1])\n })\n }\n\n dispose() {\n $.removeData(this._element, DATA_KEY)\n $(this._scrollElement).off(EVENT_KEY)\n\n this._element = null\n this._scrollElement = null\n this._config = null\n this._selector = null\n this._offsets = null\n this._targets = null\n this._activeTarget = null\n this._scrollHeight = null\n }\n\n // Private\n\n _getConfig(config) {\n config = {\n ...Default,\n ...typeof config === 'object' && config ? config : {}\n }\n\n if (typeof config.target !== 'string') {\n let id = $(config.target).attr('id')\n if (!id) {\n id = Util.getUID(NAME)\n $(config.target).attr('id', id)\n }\n config.target = `#${id}`\n }\n\n Util.typeCheckConfig(NAME, config, DefaultType)\n\n return config\n }\n\n _getScrollTop() {\n return this._scrollElement === window\n ? this._scrollElement.pageYOffset : this._scrollElement.scrollTop\n }\n\n _getScrollHeight() {\n return this._scrollElement.scrollHeight || Math.max(\n document.body.scrollHeight,\n document.documentElement.scrollHeight\n )\n }\n\n _getOffsetHeight() {\n return this._scrollElement === window\n ? window.innerHeight : this._scrollElement.getBoundingClientRect().height\n }\n\n _process() {\n const scrollTop = this._getScrollTop() + this._config.offset\n const scrollHeight = this._getScrollHeight()\n const maxScroll = this._config.offset +\n scrollHeight -\n this._getOffsetHeight()\n\n if (this._scrollHeight !== scrollHeight) {\n this.refresh()\n }\n\n if (scrollTop >= maxScroll) {\n const target = this._targets[this._targets.length - 1]\n\n if (this._activeTarget !== target) {\n this._activate(target)\n }\n return\n }\n\n if (this._activeTarget && scrollTop < this._offsets[0] && this._offsets[0] > 0) {\n this._activeTarget = null\n this._clear()\n return\n }\n\n const offsetLength = this._offsets.length\n for (let i = offsetLength; i--;) {\n const isActiveTarget = this._activeTarget !== this._targets[i] &&\n scrollTop >= this._offsets[i] &&\n (typeof this._offsets[i + 1] === 'undefined' ||\n scrollTop < this._offsets[i + 1])\n\n if (isActiveTarget) {\n this._activate(this._targets[i])\n }\n }\n }\n\n _activate(target) {\n this._activeTarget = target\n\n this._clear()\n\n const queries = this._selector\n .split(',')\n .map((selector) => `${selector}[data-target=\"${target}\"],${selector}[href=\"${target}\"]`)\n\n const $link = $([].slice.call(document.querySelectorAll(queries.join(','))))\n\n if ($link.hasClass(ClassName.DROPDOWN_ITEM)) {\n $link.closest(Selector.DROPDOWN).find(Selector.DROPDOWN_TOGGLE).addClass(ClassName.ACTIVE)\n $link.addClass(ClassName.ACTIVE)\n } else {\n // Set triggered link as active\n $link.addClass(ClassName.ACTIVE)\n // Set triggered links parents as active\n // With both
    and
",{class:"select2-results__options select2-results__options--nested"});p.append(l),s.append(a),s.append(p)}else this.template(e,t);return f.StoreData(t,"data",e),t},r.prototype.bind=function(t,e){var l=this,n=t.id+"-results";this.$results.attr("id",n),t.on("results:all",function(e){l.clear(),l.append(e.data),t.isOpen()&&(l.setClasses(),l.highlightFirstItem())}),t.on("results:append",function(e){l.append(e.data),t.isOpen()&&l.setClasses()}),t.on("query",function(e){l.hideMessages(),l.showLoading(e)}),t.on("select",function(){t.isOpen()&&(l.setClasses(),l.options.get("scrollAfterSelect")&&l.highlightFirstItem())}),t.on("unselect",function(){t.isOpen()&&(l.setClasses(),l.options.get("scrollAfterSelect")&&l.highlightFirstItem())}),t.on("open",function(){l.$results.attr("aria-expanded","true"),l.$results.attr("aria-hidden","false"),l.setClasses(),l.ensureHighlightVisible()}),t.on("close",function(){l.$results.attr("aria-expanded","false"),l.$results.attr("aria-hidden","true"),l.$results.removeAttr("aria-activedescendant")}),t.on("results:toggle",function(){var e=l.getHighlightedResults();0!==e.length&&e.trigger("mouseup")}),t.on("results:select",function(){var e=l.getHighlightedResults();if(0!==e.length){var t=f.GetData(e[0],"data");"true"==e.attr("aria-selected")?l.trigger("close",{}):l.trigger("select",{data:t})}}),t.on("results:previous",function(){var e=l.getHighlightedResults(),t=l.$results.find("[aria-selected]"),n=t.index(e);if(!(n<=0)){var r=n-1;0===e.length&&(r=0);var i=t.eq(r);i.trigger("mouseenter");var o=l.$results.offset().top,s=i.offset().top,a=l.$results.scrollTop()+(s-o);0===r?l.$results.scrollTop(0):s-o<0&&l.$results.scrollTop(a)}}),t.on("results:next",function(){var e=l.getHighlightedResults(),t=l.$results.find("[aria-selected]"),n=t.index(e)+1;if(!(n>=t.length)){var r=t.eq(n);r.trigger("mouseenter");var i=l.$results.offset().top+l.$results.outerHeight(!1),o=r.offset().top+r.outerHeight(!1),s=l.$results.scrollTop()+o-i;0===n?l.$results.scrollTop(0):ithis.$results.outerHeight()||o<0)&&this.$results.scrollTop(i)}},r.prototype.template=function(e,t){var n=this.options.get("templateResult"),r=this.options.get("escapeMarkup"),i=n(e,t);null==i?t.style.display="none":"string"==typeof i?t.innerHTML=r(i):h(t).append(i)},r}),e.define("select2/keys",[],function(){return{BACKSPACE:8,TAB:9,ENTER:13,SHIFT:16,CTRL:17,ALT:18,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46}}),e.define("select2/selection/base",["jquery","../utils","../keys"],function(n,r,i){function o(e,t){this.$element=e,this.options=t,o.__super__.constructor.call(this)}return r.Extend(o,r.Observable),o.prototype.render=function(){var e=n('');return this._tabindex=0,null!=r.GetData(this.$element[0],"old-tabindex")?this._tabindex=r.GetData(this.$element[0],"old-tabindex"):null!=this.$element.attr("tabindex")&&(this._tabindex=this.$element.attr("tabindex")),e.attr("title",this.$element.attr("title")),e.attr("tabindex",this._tabindex),e.attr("aria-disabled","false"),this.$selection=e},o.prototype.bind=function(e,t){var n=this,r=e.id+"-results";this.container=e,this.$selection.on("focus",function(e){n.trigger("focus",e)}),this.$selection.on("blur",function(e){n._handleBlur(e)}),this.$selection.on("keydown",function(e){n.trigger("keypress",e),e.which===i.SPACE&&e.preventDefault()}),e.on("results:focus",function(e){n.$selection.attr("aria-activedescendant",e.data._resultId)}),e.on("selection:update",function(e){n.update(e.data)}),e.on("open",function(){n.$selection.attr("aria-expanded","true"),n.$selection.attr("aria-owns",r),n._attachCloseHandler(e)}),e.on("close",function(){n.$selection.attr("aria-expanded","false"),n.$selection.removeAttr("aria-activedescendant"),n.$selection.removeAttr("aria-owns"),n.$selection.trigger("focus"),n._detachCloseHandler(e)}),e.on("enable",function(){n.$selection.attr("tabindex",n._tabindex),n.$selection.attr("aria-disabled","false")}),e.on("disable",function(){n.$selection.attr("tabindex","-1"),n.$selection.attr("aria-disabled","true")})},o.prototype._handleBlur=function(e){var t=this;window.setTimeout(function(){document.activeElement==t.$selection[0]||n.contains(t.$selection[0],document.activeElement)||t.trigger("blur",e)},1)},o.prototype._attachCloseHandler=function(e){n(document.body).on("mousedown.select2."+e.id,function(e){var t=n(e.target).closest(".select2");n(".select2.select2-container--open").each(function(){this!=t[0]&&r.GetData(this,"element").select2("close")})})},o.prototype._detachCloseHandler=function(e){n(document.body).off("mousedown.select2."+e.id)},o.prototype.position=function(e,t){t.find(".selection").append(e)},o.prototype.destroy=function(){this._detachCloseHandler(this.container)},o.prototype.update=function(e){throw new Error("The `update` method must be defined in child classes.")},o}),e.define("select2/selection/single",["jquery","./base","../utils","../keys"],function(e,t,n,r){function i(){i.__super__.constructor.apply(this,arguments)}return n.Extend(i,t),i.prototype.render=function(){var e=i.__super__.render.call(this);return e.addClass("select2-selection--single"),e.html(''),e},i.prototype.bind=function(t,e){var n=this;i.__super__.bind.apply(this,arguments);var r=t.id+"-container";this.$selection.find(".select2-selection__rendered").attr("id",r).attr("role","textbox").attr("aria-readonly","true"),this.$selection.attr("aria-labelledby",r),this.$selection.on("mousedown",function(e){1===e.which&&n.trigger("toggle",{originalEvent:e})}),this.$selection.on("focus",function(e){}),this.$selection.on("blur",function(e){}),t.on("focus",function(e){t.isOpen()||n.$selection.trigger("focus")})},i.prototype.clear=function(){var e=this.$selection.find(".select2-selection__rendered");e.empty(),e.removeAttr("title")},i.prototype.display=function(e,t){var n=this.options.get("templateSelection");return this.options.get("escapeMarkup")(n(e,t))},i.prototype.selectionContainer=function(){return e("")},i.prototype.update=function(e){if(0!==e.length){var t=e[0],n=this.$selection.find(".select2-selection__rendered"),r=this.display(t,n);n.empty().append(r);var i=t.title||t.text;i?n.attr("title",i):n.removeAttr("title")}else this.clear()},i}),e.define("select2/selection/multiple",["jquery","./base","../utils"],function(i,e,l){function n(e,t){n.__super__.constructor.apply(this,arguments)}return l.Extend(n,e),n.prototype.render=function(){var e=n.__super__.render.call(this);return e.addClass("select2-selection--multiple"),e.html('
    '),e},n.prototype.bind=function(e,t){var r=this;n.__super__.bind.apply(this,arguments),this.$selection.on("click",function(e){r.trigger("toggle",{originalEvent:e})}),this.$selection.on("click",".select2-selection__choice__remove",function(e){if(!r.options.get("disabled")){var t=i(this).parent(),n=l.GetData(t[0],"data");r.trigger("unselect",{originalEvent:e,data:n})}})},n.prototype.clear=function(){var e=this.$selection.find(".select2-selection__rendered");e.empty(),e.removeAttr("title")},n.prototype.display=function(e,t){var n=this.options.get("templateSelection");return this.options.get("escapeMarkup")(n(e,t))},n.prototype.selectionContainer=function(){return i('
  • ×
  • ')},n.prototype.update=function(e){if(this.clear(),0!==e.length){for(var t=[],n=0;n×');a.StoreData(r[0],"data",t),this.$selection.find(".select2-selection__rendered").prepend(r)}},e}),e.define("select2/selection/search",["jquery","../utils","../keys"],function(r,a,l){function e(e,t,n){e.call(this,t,n)}return e.prototype.render=function(e){var t=r('');this.$searchContainer=t,this.$search=t.find("input");var n=e.call(this);return this._transferTabIndex(),n},e.prototype.bind=function(e,t,n){var r=this,i=t.id+"-results";e.call(this,t,n),t.on("open",function(){r.$search.attr("aria-controls",i),r.$search.trigger("focus")}),t.on("close",function(){r.$search.val(""),r.$search.removeAttr("aria-controls"),r.$search.removeAttr("aria-activedescendant"),r.$search.trigger("focus")}),t.on("enable",function(){r.$search.prop("disabled",!1),r._transferTabIndex()}),t.on("disable",function(){r.$search.prop("disabled",!0)}),t.on("focus",function(e){r.$search.trigger("focus")}),t.on("results:focus",function(e){e.data._resultId?r.$search.attr("aria-activedescendant",e.data._resultId):r.$search.removeAttr("aria-activedescendant")}),this.$selection.on("focusin",".select2-search--inline",function(e){r.trigger("focus",e)}),this.$selection.on("focusout",".select2-search--inline",function(e){r._handleBlur(e)}),this.$selection.on("keydown",".select2-search--inline",function(e){if(e.stopPropagation(),r.trigger("keypress",e),r._keyUpPrevented=e.isDefaultPrevented(),e.which===l.BACKSPACE&&""===r.$search.val()){var t=r.$searchContainer.prev(".select2-selection__choice");if(0this.maximumInputLength?this.trigger("results:message",{message:"inputTooLong",args:{maximum:this.maximumInputLength,input:t.term,params:t}}):e.call(this,t,n)},e}),e.define("select2/data/maximumSelectionLength",[],function(){function e(e,t,n){this.maximumSelectionLength=n.get("maximumSelectionLength"),e.call(this,t,n)}return e.prototype.bind=function(e,t,n){var r=this;e.call(this,t,n),t.on("select",function(){r._checkIfMaximumSelected()})},e.prototype.query=function(e,t,n){var r=this;this._checkIfMaximumSelected(function(){e.call(r,t,n)})},e.prototype._checkIfMaximumSelected=function(e,n){var r=this;this.current(function(e){var t=null!=e?e.length:0;0=r.maximumSelectionLength?r.trigger("results:message",{message:"maximumSelected",args:{maximum:r.maximumSelectionLength}}):n&&n()})},e}),e.define("select2/dropdown",["jquery","./utils"],function(t,e){function n(e,t){this.$element=e,this.options=t,n.__super__.constructor.call(this)}return e.Extend(n,e.Observable),n.prototype.render=function(){var e=t('');return e.attr("dir",this.options.get("dir")),this.$dropdown=e},n.prototype.bind=function(){},n.prototype.position=function(e,t){},n.prototype.destroy=function(){this.$dropdown.remove()},n}),e.define("select2/dropdown/search",["jquery","../utils"],function(o,e){function t(){}return t.prototype.render=function(e){var t=e.call(this),n=o('');return this.$searchContainer=n,this.$search=n.find("input"),t.prepend(n),t},t.prototype.bind=function(e,t,n){var r=this,i=t.id+"-results";e.call(this,t,n),this.$search.on("keydown",function(e){r.trigger("keypress",e),r._keyUpPrevented=e.isDefaultPrevented()}),this.$search.on("input",function(e){o(this).off("keyup")}),this.$search.on("keyup input",function(e){r.handleSearch(e)}),t.on("open",function(){r.$search.attr("tabindex",0),r.$search.attr("aria-controls",i),r.$search.trigger("focus"),window.setTimeout(function(){r.$search.trigger("focus")},0)}),t.on("close",function(){r.$search.attr("tabindex",-1),r.$search.removeAttr("aria-controls"),r.$search.removeAttr("aria-activedescendant"),r.$search.val(""),r.$search.trigger("blur")}),t.on("focus",function(){t.isOpen()||r.$search.trigger("focus")}),t.on("results:all",function(e){null!=e.query.term&&""!==e.query.term||(r.showSearch(e)?r.$searchContainer.removeClass("select2-search--hide"):r.$searchContainer.addClass("select2-search--hide"))}),t.on("results:focus",function(e){e.data._resultId?r.$search.attr("aria-activedescendant",e.data._resultId):r.$search.removeAttr("aria-activedescendant")})},t.prototype.handleSearch=function(e){if(!this._keyUpPrevented){var t=this.$search.val();this.trigger("query",{term:t})}this._keyUpPrevented=!1},t.prototype.showSearch=function(e,t){return!0},t}),e.define("select2/dropdown/hidePlaceholder",[],function(){function e(e,t,n,r){this.placeholder=this.normalizePlaceholder(n.get("placeholder")),e.call(this,t,n,r)}return e.prototype.append=function(e,t){t.results=this.removePlaceholder(t.results),e.call(this,t)},e.prototype.normalizePlaceholder=function(e,t){return"string"==typeof t&&(t={id:"",text:t}),t},e.prototype.removePlaceholder=function(e,t){for(var n=t.slice(0),r=t.length-1;0<=r;r--){var i=t[r];this.placeholder.id===i.id&&n.splice(r,1)}return n},e}),e.define("select2/dropdown/infiniteScroll",["jquery"],function(n){function e(e,t,n,r){this.lastParams={},e.call(this,t,n,r),this.$loadingMore=this.createLoadingMore(),this.loading=!1}return e.prototype.append=function(e,t){this.$loadingMore.remove(),this.loading=!1,e.call(this,t),this.showLoadingMore(t)&&(this.$results.append(this.$loadingMore),this.loadMoreIfNeeded())},e.prototype.bind=function(e,t,n){var r=this;e.call(this,t,n),t.on("query",function(e){r.lastParams=e,r.loading=!0}),t.on("query:append",function(e){r.lastParams=e,r.loading=!0}),this.$results.on("scroll",this.loadMoreIfNeeded.bind(this))},e.prototype.loadMoreIfNeeded=function(){var e=n.contains(document.documentElement,this.$loadingMore[0]);if(!this.loading&&e){var t=this.$results.offset().top+this.$results.outerHeight(!1);this.$loadingMore.offset().top+this.$loadingMore.outerHeight(!1)<=t+50&&this.loadMore()}},e.prototype.loadMore=function(){this.loading=!0;var e=n.extend({},{page:1},this.lastParams);e.page++,this.trigger("query:append",e)},e.prototype.showLoadingMore=function(e,t){return t.pagination&&t.pagination.more},e.prototype.createLoadingMore=function(){var e=n('
  • '),t=this.options.get("translations").get("loadingMore");return e.html(t(this.lastParams)),e},e}),e.define("select2/dropdown/attachBody",["jquery","../utils"],function(f,a){function e(e,t,n){this.$dropdownParent=f(n.get("dropdownParent")||document.body),e.call(this,t,n)}return e.prototype.bind=function(e,t,n){var r=this;e.call(this,t,n),t.on("open",function(){r._showDropdown(),r._attachPositioningHandler(t),r._bindContainerResultHandlers(t)}),t.on("close",function(){r._hideDropdown(),r._detachPositioningHandler(t)}),this.$dropdownContainer.on("mousedown",function(e){e.stopPropagation()})},e.prototype.destroy=function(e){e.call(this),this.$dropdownContainer.remove()},e.prototype.position=function(e,t,n){t.attr("class",n.attr("class")),t.removeClass("select2"),t.addClass("select2-container--open"),t.css({position:"absolute",top:-999999}),this.$container=n},e.prototype.render=function(e){var t=f(""),n=e.call(this);return t.append(n),this.$dropdownContainer=t},e.prototype._hideDropdown=function(e){this.$dropdownContainer.detach()},e.prototype._bindContainerResultHandlers=function(e,t){if(!this._containerResultsHandlersBound){var n=this;t.on("results:all",function(){n._positionDropdown(),n._resizeDropdown()}),t.on("results:append",function(){n._positionDropdown(),n._resizeDropdown()}),t.on("results:message",function(){n._positionDropdown(),n._resizeDropdown()}),t.on("select",function(){n._positionDropdown(),n._resizeDropdown()}),t.on("unselect",function(){n._positionDropdown(),n._resizeDropdown()}),this._containerResultsHandlersBound=!0}},e.prototype._attachPositioningHandler=function(e,t){var n=this,r="scroll.select2."+t.id,i="resize.select2."+t.id,o="orientationchange.select2."+t.id,s=this.$container.parents().filter(a.hasScroll);s.each(function(){a.StoreData(this,"select2-scroll-position",{x:f(this).scrollLeft(),y:f(this).scrollTop()})}),s.on(r,function(e){var t=a.GetData(this,"select2-scroll-position");f(this).scrollTop(t.y)}),f(window).on(r+" "+i+" "+o,function(e){n._positionDropdown(),n._resizeDropdown()})},e.prototype._detachPositioningHandler=function(e,t){var n="scroll.select2."+t.id,r="resize.select2."+t.id,i="orientationchange.select2."+t.id;this.$container.parents().filter(a.hasScroll).off(n),f(window).off(n+" "+r+" "+i)},e.prototype._positionDropdown=function(){var e=f(window),t=this.$dropdown.hasClass("select2-dropdown--above"),n=this.$dropdown.hasClass("select2-dropdown--below"),r=null,i=this.$container.offset();i.bottom=i.top+this.$container.outerHeight(!1);var o={height:this.$container.outerHeight(!1)};o.top=i.top,o.bottom=i.top+o.height;var s=this.$dropdown.outerHeight(!1),a=e.scrollTop(),l=e.scrollTop()+e.height(),c=ai.bottom+s,d={left:i.left,top:o.bottom},p=this.$dropdownParent;"static"===p.css("position")&&(p=p.offsetParent());var h=p.offset();d.top-=h.top,d.left-=h.left,t||n||(r="below"),u||!c||t?!c&&u&&t&&(r="below"):r="above",("above"==r||t&&"below"!==r)&&(d.top=o.top-h.top-s),null!=r&&(this.$dropdown.removeClass("select2-dropdown--below select2-dropdown--above").addClass("select2-dropdown--"+r),this.$container.removeClass("select2-container--below select2-container--above").addClass("select2-container--"+r)),this.$dropdownContainer.css(d)},e.prototype._resizeDropdown=function(){var e={width:this.$container.outerWidth(!1)+"px"};this.options.get("dropdownAutoWidth")&&(e.minWidth=e.width,e.position="relative",e.width="auto"),this.$dropdown.css(e)},e.prototype._showDropdown=function(e){this.$dropdownContainer.appendTo(this.$dropdownParent),this._positionDropdown(),this._resizeDropdown()},e}),e.define("select2/dropdown/minimumResultsForSearch",[],function(){function e(e,t,n,r){this.minimumResultsForSearch=n.get("minimumResultsForSearch"),this.minimumResultsForSearch<0&&(this.minimumResultsForSearch=1/0),e.call(this,t,n,r)}return e.prototype.showSearch=function(e,t){return!(function e(t){for(var n=0,r=0;r');return e.attr("dir",this.options.get("dir")),this.$container=e,this.$container.addClass("select2-container--"+this.options.get("theme")),u.StoreData(e[0],"element",this.$element),e},d}),e.define("jquery-mousewheel",["jquery"],function(e){return e}),e.define("jquery.select2",["jquery","jquery-mousewheel","./select2/core","./select2/defaults","./select2/utils"],function(i,e,o,t,s){if(null==i.fn.select2){var a=["open","close","destroy"];i.fn.select2=function(t){if("object"==typeof(t=t||{}))return this.each(function(){var e=i.extend(!0,{},t);new o(i(this),e)}),this;if("string"!=typeof t)throw new Error("Invalid arguments for Select2: "+t);var n,r=Array.prototype.slice.call(arguments,1);return this.each(function(){var e=s.GetData(this,"select2");null==e&&window.console&&console.error&&console.error("The select2('"+t+"') method was called on an element that is not using Select2."),n=e[t].apply(e,r)}),-1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/INCUBATE/incubate/incubate/static/vendors/simple-line-icons/fonts/Simple-Line-Icons.ttf b/INCUBATE/incubate/incubate/static/vendors/simple-line-icons/fonts/Simple-Line-Icons.ttf new file mode 100644 index 0000000000000000000000000000000000000000..6ecb68683477ecc5aed38ec3fc8910d9bb66276c Binary files /dev/null and b/INCUBATE/incubate/incubate/static/vendors/simple-line-icons/fonts/Simple-Line-Icons.ttf differ diff --git a/INCUBATE/incubate/incubate/static/vendors/simple-line-icons/fonts/Simple-Line-Icons.woff b/INCUBATE/incubate/incubate/static/vendors/simple-line-icons/fonts/Simple-Line-Icons.woff new file mode 100644 index 0000000000000000000000000000000000000000..b17d69491bf374d36e07339bedd3349caaa30d65 Binary files /dev/null and b/INCUBATE/incubate/incubate/static/vendors/simple-line-icons/fonts/Simple-Line-Icons.woff differ diff --git a/INCUBATE/incubate/incubate/static/vendors/simple-line-icons/fonts/Simple-Line-Icons.woff2 b/INCUBATE/incubate/incubate/static/vendors/simple-line-icons/fonts/Simple-Line-Icons.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..c49fccf510eb41b4aac2bfa21b3b87c254083bf8 Binary files /dev/null and b/INCUBATE/incubate/incubate/static/vendors/simple-line-icons/fonts/Simple-Line-Icons.woff2 differ diff --git a/INCUBATE/incubate/incubate/static/vendors/twbs-pagination/jquery.twbsPagination.min.js b/INCUBATE/incubate/incubate/static/vendors/twbs-pagination/jquery.twbsPagination.min.js new file mode 100644 index 0000000000000000000000000000000000000000..8ad0ed1129235a0d939f9d7ad7b9a728a98a2922 --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/twbs-pagination/jquery.twbsPagination.min.js @@ -0,0 +1,9 @@ +/* + * jQuery Bootstrap Pagination v1.4.1 + * https://github.com/esimakin/twbs-pagination + * + * Copyright 2014-2016, Eugene Simakin + * Released under Apache-2.0 license + * http://apache.org/licenses/LICENSE-2.0.html + */ +!function(a,b,c,d){"use strict";var e=a.fn.twbsPagination,f=function(b,c){if(this.$element=a(b),this.options=a.extend({},a.fn.twbsPagination.defaults,c),this.options.startPage<1||this.options.startPage>this.options.totalPages)throw new Error("Start page option is incorrect");if(this.options.totalPages=parseInt(this.options.totalPages),isNaN(this.options.totalPages))throw new Error("Total pages option is not correct!");if(this.options.visiblePages=parseInt(this.options.visiblePages),isNaN(this.options.visiblePages))throw new Error("Visible pages option is not correct!");if(this.options.onPageClick instanceof Function&&this.$element.first().on("page",this.options.onPageClick),this.options.hideOnlyOnePage&&1==this.options.totalPages)return this.$element.trigger("page",1),this;this.options.totalPages"),this.$listContainer.addClass(this.options.paginationClass),"UL"!==d&&this.$element.append(this.$listContainer),this.options.initiateStartPageClick?this.show(this.options.startPage):(this.currentPage=this.options.startPage,this.render(this.getPages(this.options.startPage)),this.setupEvents()),this};f.prototype={constructor:f,destroy:function(){return this.$element.empty(),this.$element.removeData("twbs-pagination"),this.$element.off("page"),this},show:function(a){if(a<1||a>this.options.totalPages)throw new Error("Page is incorrect.");return this.currentPage=a,this.render(this.getPages(a)),this.setupEvents(),this.$element.trigger("page",a),this},enable:function(){this.show(this.currentPage)},disable:function(){var b=this;this.$listContainer.off("click").on("click","li",function(a){a.preventDefault()}),this.$listContainer.children().each(function(){var c=a(this);c.hasClass(b.options.activeClass)||a(this).addClass(b.options.disabledClass)})},buildListItems:function(a){var b=[];if(this.options.first&&b.push(this.buildItem("first",1)),this.options.prev){var c=a.currentPage>1?a.currentPage-1:this.options.loop?this.options.totalPages:1;b.push(this.buildItem("prev",c))}for(var d=0;d"),e=a(""),f=this.options[b]?this.makeText(this.options[b],c):c;return d.addClass(this.options[b+"Class"]),d.data("page",c),d.data("page-type",b),d.append(e.attr("href",this.makeHref(c)).addClass(this.options.anchorClass).html(f)),d},getPages:function(a){var b=[],c=Math.floor(this.options.visiblePages/2),d=a-c+1-this.options.visiblePages%2,e=a+c;d<=0&&(d=1,e=this.options.visiblePages),e>this.options.totalPages&&(d=this.options.totalPages-this.options.visiblePages+1,e=this.options.totalPages);for(var f=d;f<=e;)b.push(f),f++;return{currentPage:a,numeric:b}},render:function(b){var c=this;this.$listContainer.children().remove();var d=this.buildListItems(b);a.each(d,function(a,b){c.$listContainer.append(b)}),this.$listContainer.children().each(function(){var d=a(this),e=d.data("page-type");switch(e){case"page":d.data("page")===b.currentPage&&d.addClass(c.options.activeClass);break;case"first":d.toggleClass(c.options.disabledClass,1===b.currentPage);break;case"last":d.toggleClass(c.options.disabledClass,b.currentPage===c.options.totalPages);break;case"prev":d.toggleClass(c.options.disabledClass,!c.options.loop&&1===b.currentPage);break;case"next":d.toggleClass(c.options.disabledClass,!c.options.loop&&b.currentPage===c.options.totalPages)}})},setupEvents:function(){var b=this;this.$listContainer.off("click").on("click","li",function(c){var d=a(this);return!d.hasClass(b.options.disabledClass)&&!d.hasClass(b.options.activeClass)&&(!b.options.href&&c.preventDefault(),void b.show(parseInt(d.data("page"))))})},makeHref:function(a){return this.options.href?this.generateQueryString(a):"#"},makeText:function(a,b){return a.replace(this.options.pageVariable,b).replace(this.options.totalPagesVariable,this.options.totalPages)},getPageFromQueryString:function(a){var b=this.getSearchString(a),c=new RegExp(this.options.pageVariable+"(=([^&#]*)|&|#|$)"),d=c.exec(b);return d&&d[2]?(d=decodeURIComponent(d[2]),d=parseInt(d),isNaN(d)?null:d):null},generateQueryString:function(a,b){var c=this.getSearchString(b),d=new RegExp(this.options.pageVariable+"=*[^&#]*");return c?"?"+c.replace(d,this.options.pageVariable+"="+a):""},getSearchString:function(a){var c=a||b.location.search;return""===c?null:(0===c.indexOf("?")&&(c=c.substr(1)),c)},getCurrentPage:function(){return this.currentPage}},a.fn.twbsPagination=function(b){var c,e=Array.prototype.slice.call(arguments,1),g=a(this),h=g.data("twbs-pagination"),i="object"==typeof b?b:{};return h||g.data("twbs-pagination",h=new f(this,i)),"string"==typeof b&&(c=h[b].apply(h,e)),c===d?g:c},a.fn.twbsPagination.defaults={totalPages:1,startPage:1,visiblePages:5,initiateStartPageClick:!0,hideOnlyOnePage:!1,href:!1,pageVariable:"{{page}}",totalPagesVariable:"{{total_pages}}",page:null,first:"First",prev:"Previous",next:"Next",last:"Last",loop:!1,onPageClick:null,paginationClass:"pagination",nextClass:"page-item next",prevClass:"page-item prev",lastClass:"page-item last",firstClass:"page-item first",pageClass:"page-item",activeClass:"active",disabledClass:"disabled",anchorClass:"page-link"},a.fn.twbsPagination.Constructor=f,a.fn.twbsPagination.noConflict=function(){return a.fn.twbsPagination=e,this},a.fn.twbsPagination.version="1.4.1"}(window.jQuery,window,document); \ No newline at end of file diff --git a/INCUBATE/incubate/incubate/static/vendors/typeahead.js/typeahead.bundle.min.js b/INCUBATE/incubate/incubate/static/vendors/typeahead.js/typeahead.bundle.min.js new file mode 100644 index 0000000000000000000000000000000000000000..ffd98f3202a76f0970358f2906defbff88b3365b --- /dev/null +++ b/INCUBATE/incubate/incubate/static/vendors/typeahead.js/typeahead.bundle.min.js @@ -0,0 +1,8 @@ +/*! + * typeahead.js 0.11.1 + * https://github.com/twitter/typeahead.js + * Copyright 2013-2015 Twitter, Inc. and other contributors; Licensed MIT + */ + +!function(a,b){"function"==typeof define&&define.amd?define("bloodhound",["jquery"],function(c){return a.Bloodhound=b(c)}):"object"==typeof exports?module.exports=b(require("jquery")):a.Bloodhound=b(jQuery)}(this,function(a){var b=function(){"use strict";return{isMsie:function(){return/(msie|trident)/i.test(navigator.userAgent)?navigator.userAgent.match(/(msie |rv:)(\d+(.\d+)?)/i)[2]:!1},isBlankString:function(a){return!a||/^\s*$/.test(a)},escapeRegExChars:function(a){return a.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&")},isString:function(a){return"string"==typeof a},isNumber:function(a){return"number"==typeof a},isArray:a.isArray,isFunction:a.isFunction,isObject:a.isPlainObject,isUndefined:function(a){return"undefined"==typeof a},isElement:function(a){return!(!a||1!==a.nodeType)},isJQuery:function(b){return b instanceof a},toStr:function(a){return b.isUndefined(a)||null===a?"":a+""},bind:a.proxy,each:function(b,c){function d(a,b){return c(b,a)}a.each(b,d)},map:a.map,filter:a.grep,every:function(b,c){var d=!0;return b?(a.each(b,function(a,e){return(d=c.call(null,e,a,b))?void 0:!1}),!!d):d},some:function(b,c){var d=!1;return b?(a.each(b,function(a,e){return(d=c.call(null,e,a,b))?!1:void 0}),!!d):d},mixin:a.extend,identity:function(a){return a},clone:function(b){return a.extend(!0,{},b)},getIdGenerator:function(){var a=0;return function(){return a++}},templatify:function(b){function c(){return String(b)}return a.isFunction(b)?b:c},defer:function(a){setTimeout(a,0)},debounce:function(a,b,c){var d,e;return function(){var f,g,h=this,i=arguments;return f=function(){d=null,c||(e=a.apply(h,i))},g=c&&!d,clearTimeout(d),d=setTimeout(f,b),g&&(e=a.apply(h,i)),e}},throttle:function(a,b){var c,d,e,f,g,h;return g=0,h=function(){g=new Date,e=null,f=a.apply(c,d)},function(){var i=new Date,j=b-(i-g);return c=this,d=arguments,0>=j?(clearTimeout(e),e=null,g=i,f=a.apply(c,d)):e||(e=setTimeout(h,j)),f}},stringify:function(a){return b.isString(a)?a:JSON.stringify(a)},noop:function(){}}}(),c="0.11.1",d=function(){"use strict";function a(a){return a=b.toStr(a),a?a.split(/\s+/):[]}function c(a){return a=b.toStr(a),a?a.split(/\W+/):[]}function d(a){return function(c){return c=b.isArray(c)?c:[].slice.call(arguments,0),function(d){var e=[];return b.each(c,function(c){e=e.concat(a(b.toStr(d[c])))}),e}}}return{nonword:c,whitespace:a,obj:{nonword:d(c),whitespace:d(a)}}}(),e=function(){"use strict";function c(c){this.maxSize=b.isNumber(c)?c:100,this.reset(),this.maxSize<=0&&(this.set=this.get=a.noop)}function d(){this.head=this.tail=null}function e(a,b){this.key=a,this.val=b,this.prev=this.next=null}return b.mixin(c.prototype,{set:function(a,b){var c,d=this.list.tail;this.size>=this.maxSize&&(this.list.remove(d),delete this.hash[d.key],this.size--),(c=this.hash[a])?(c.val=b,this.list.moveToFront(c)):(c=new e(a,b),this.list.add(c),this.hash[a]=c,this.size++)},get:function(a){var b=this.hash[a];return b?(this.list.moveToFront(b),b.val):void 0},reset:function(){this.size=0,this.hash={},this.list=new d}}),b.mixin(d.prototype,{add:function(a){this.head&&(a.next=this.head,this.head.prev=a),this.head=a,this.tail=this.tail||a},remove:function(a){a.prev?a.prev.next=a.next:this.head=a.next,a.next?a.next.prev=a.prev:this.tail=a.prev},moveToFront:function(a){this.remove(a),this.add(a)}}),c}(),f=function(){"use strict";function c(a,c){this.prefix=["__",a,"__"].join(""),this.ttlKey="__ttl__",this.keyMatcher=new RegExp("^"+b.escapeRegExChars(this.prefix)),this.ls=c||h,!this.ls&&this._noop()}function d(){return(new Date).getTime()}function e(a){return JSON.stringify(b.isUndefined(a)?null:a)}function f(b){return a.parseJSON(b)}function g(a){var b,c,d=[],e=h.length;for(b=0;e>b;b++)(c=h.key(b)).match(a)&&d.push(c.replace(a,""));return d}var h;try{h=window.localStorage,h.setItem("~~~","!"),h.removeItem("~~~")}catch(i){h=null}return b.mixin(c.prototype,{_prefix:function(a){return this.prefix+a},_ttlKey:function(a){return this._prefix(a)+this.ttlKey},_noop:function(){this.get=this.set=this.remove=this.clear=this.isExpired=b.noop},_safeSet:function(a,b){try{this.ls.setItem(a,b)}catch(c){"QuotaExceededError"===c.name&&(this.clear(),this._noop())}},get:function(a){return this.isExpired(a)&&this.remove(a),f(this.ls.getItem(this._prefix(a)))},set:function(a,c,f){return b.isNumber(f)?this._safeSet(this._ttlKey(a),e(d()+f)):this.ls.removeItem(this._ttlKey(a)),this._safeSet(this._prefix(a),e(c))},remove:function(a){return this.ls.removeItem(this._ttlKey(a)),this.ls.removeItem(this._prefix(a)),this},clear:function(){var a,b=g(this.keyMatcher);for(a=b.length;a--;)this.remove(b[a]);return this},isExpired:function(a){var c=f(this.ls.getItem(this._ttlKey(a)));return b.isNumber(c)&&d()>c?!0:!1}}),c}(),g=function(){"use strict";function c(a){a=a||{},this.cancelled=!1,this.lastReq=null,this._send=a.transport,this._get=a.limiter?a.limiter(this._get):this._get,this._cache=a.cache===!1?new e(0):h}var d=0,f={},g=6,h=new e(10);return c.setMaxPendingRequests=function(a){g=a},c.resetCache=function(){h.reset()},b.mixin(c.prototype,{_fingerprint:function(b){return b=b||{},b.url+b.type+a.param(b.data||{})},_get:function(a,b){function c(a){b(null,a),k._cache.set(i,a)}function e(){b(!0)}function h(){d--,delete f[i],k.onDeckRequestArgs&&(k._get.apply(k,k.onDeckRequestArgs),k.onDeckRequestArgs=null)}var i,j,k=this;i=this._fingerprint(a),this.cancelled||i!==this.lastReq||((j=f[i])?j.done(c).fail(e):g>d?(d++,f[i]=this._send(a).done(c).fail(e).always(h)):this.onDeckRequestArgs=[].slice.call(arguments,0))},get:function(c,d){var e,f;d=d||a.noop,c=b.isString(c)?{url:c}:c||{},f=this._fingerprint(c),this.cancelled=!1,this.lastReq=f,(e=this._cache.get(f))?d(null,e):this._get(c,d)},cancel:function(){this.cancelled=!0}}),c}(),h=window.SearchIndex=function(){"use strict";function c(c){c=c||{},c.datumTokenizer&&c.queryTokenizer||a.error("datumTokenizer and queryTokenizer are both required"),this.identify=c.identify||b.stringify,this.datumTokenizer=c.datumTokenizer,this.queryTokenizer=c.queryTokenizer,this.reset()}function d(a){return a=b.filter(a,function(a){return!!a}),a=b.map(a,function(a){return a.toLowerCase()})}function e(){var a={};return a[i]=[],a[h]={},a}function f(a){for(var b={},c=[],d=0,e=a.length;e>d;d++)b[a[d]]||(b[a[d]]=!0,c.push(a[d]));return c}function g(a,b){var c=0,d=0,e=[];a=a.sort(),b=b.sort();for(var f=a.length,g=b.length;f>c&&g>d;)a[c]b[d]?d++:(e.push(a[c]),c++,d++);return e}var h="c",i="i";return b.mixin(c.prototype,{bootstrap:function(a){this.datums=a.datums,this.trie=a.trie},add:function(a){var c=this;a=b.isArray(a)?a:[a],b.each(a,function(a){var f,g;c.datums[f=c.identify(a)]=a,g=d(c.datumTokenizer(a)),b.each(g,function(a){var b,d,g;for(b=c.trie,d=a.split("");g=d.shift();)b=b[h][g]||(b[h][g]=e()),b[i].push(f)})})},get:function(a){var c=this;return b.map(a,function(a){return c.datums[a]})},search:function(a){var c,e,j=this;return c=d(this.queryTokenizer(a)),b.each(c,function(a){var b,c,d,f;if(e&&0===e.length)return!1;for(b=j.trie,c=a.split("");b&&(d=c.shift());)b=b[h][d];return b&&0===c.length?(f=b[i].slice(0),void(e=e?g(e,f):f)):(e=[],!1)}),e?b.map(f(e),function(a){return j.datums[a]}):[]},all:function(){var a=[];for(var b in this.datums)a.push(this.datums[b]);return a},reset:function(){this.datums={},this.trie=e()},serialize:function(){return{datums:this.datums,trie:this.trie}}}),c}(),i=function(){"use strict";function a(a){this.url=a.url,this.ttl=a.ttl,this.cache=a.cache,this.prepare=a.prepare,this.transform=a.transform,this.transport=a.transport,this.thumbprint=a.thumbprint,this.storage=new f(a.cacheKey)}var c;return c={data:"data",protocol:"protocol",thumbprint:"thumbprint"},b.mixin(a.prototype,{_settings:function(){return{url:this.url,type:"GET",dataType:"json"}},store:function(a){this.cache&&(this.storage.set(c.data,a,this.ttl),this.storage.set(c.protocol,location.protocol,this.ttl),this.storage.set(c.thumbprint,this.thumbprint,this.ttl))},fromCache:function(){var a,b={};return this.cache?(b.data=this.storage.get(c.data),b.protocol=this.storage.get(c.protocol),b.thumbprint=this.storage.get(c.thumbprint),a=b.thumbprint!==this.thumbprint||b.protocol!==location.protocol,b.data&&!a?b.data:null):null},fromNetwork:function(a){function b(){a(!0)}function c(b){a(null,e.transform(b))}var d,e=this;a&&(d=this.prepare(this._settings()),this.transport(d).fail(b).done(c))},clear:function(){return this.storage.clear(),this}}),a}(),j=function(){"use strict";function a(a){this.url=a.url,this.prepare=a.prepare,this.transform=a.transform,this.transport=new g({cache:a.cache,limiter:a.limiter,transport:a.transport})}return b.mixin(a.prototype,{_settings:function(){return{url:this.url,type:"GET",dataType:"json"}},get:function(a,b){function c(a,c){b(a?[]:e.transform(c))}var d,e=this;if(b)return a=a||"",d=this.prepare(a,this._settings()),this.transport.get(d,c)},cancelLastRequest:function(){this.transport.cancel()}}),a}(),k=function(){"use strict";function d(d){var e;return d?(e={url:null,ttl:864e5,cache:!0,cacheKey:null,thumbprint:"",prepare:b.identity,transform:b.identity,transport:null},d=b.isString(d)?{url:d}:d,d=b.mixin(e,d),!d.url&&a.error("prefetch requires url to be set"),d.transform=d.filter||d.transform,d.cacheKey=d.cacheKey||d.url,d.thumbprint=c+d.thumbprint,d.transport=d.transport?h(d.transport):a.ajax,d):null}function e(c){var d;if(c)return d={url:null,cache:!0,prepare:null,replace:null,wildcard:null,limiter:null,rateLimitBy:"debounce",rateLimitWait:300,transform:b.identity,transport:null},c=b.isString(c)?{url:c}:c,c=b.mixin(d,c),!c.url&&a.error("remote requires url to be set"),c.transform=c.filter||c.transform,c.prepare=f(c),c.limiter=g(c),c.transport=c.transport?h(c.transport):a.ajax,delete c.replace,delete c.wildcard,delete c.rateLimitBy,delete c.rateLimitWait,c}function f(a){function b(a,b){return b.url=f(b.url,a),b}function c(a,b){return b.url=b.url.replace(g,encodeURIComponent(a)),b}function d(a,b){return b}var e,f,g;return e=a.prepare,f=a.replace,g=a.wildcard,e?e:e=f?b:a.wildcard?c:d}function g(a){function c(a){return function(c){return b.debounce(c,a)}}function d(a){return function(c){return b.throttle(c,a)}}var e,f,g;return e=a.limiter,f=a.rateLimitBy,g=a.rateLimitWait,e||(e=/^throttle$/i.test(f)?d(g):c(g)),e}function h(c){return function(d){function e(a){b.defer(function(){g.resolve(a)})}function f(a){b.defer(function(){g.reject(a)})}var g=a.Deferred();return c(d,e,f),g}}return function(c){var f,g;return f={initialize:!0,identify:b.stringify,datumTokenizer:null,queryTokenizer:null,sufficient:5,sorter:null,local:[],prefetch:null,remote:null},c=b.mixin(f,c||{}),!c.datumTokenizer&&a.error("datumTokenizer is required"),!c.queryTokenizer&&a.error("queryTokenizer is required"),g=c.sorter,c.sorter=g?function(a){return a.sort(g)}:b.identity,c.local=b.isFunction(c.local)?c.local():c.local,c.prefetch=d(c.prefetch),c.remote=e(c.remote),c}}(),l=function(){"use strict";function c(a){a=k(a),this.sorter=a.sorter,this.identify=a.identify,this.sufficient=a.sufficient,this.local=a.local,this.remote=a.remote?new j(a.remote):null,this.prefetch=a.prefetch?new i(a.prefetch):null,this.index=new h({identify:this.identify,datumTokenizer:a.datumTokenizer,queryTokenizer:a.queryTokenizer}),a.initialize!==!1&&this.initialize()}var e;return e=window&&window.Bloodhound,c.noConflict=function(){return window&&(window.Bloodhound=e),c},c.tokenizers=d,b.mixin(c.prototype,{__ttAdapter:function(){function a(a,b,d){return c.search(a,b,d)}function b(a,b){return c.search(a,b)}var c=this;return this.remote?a:b},_loadPrefetch:function(){function b(a,b){return a?c.reject():(e.add(b),e.prefetch.store(e.index.serialize()),void c.resolve())}var c,d,e=this;return c=a.Deferred(),this.prefetch?(d=this.prefetch.fromCache())?(this.index.bootstrap(d),c.resolve()):this.prefetch.fromNetwork(b):c.resolve(),c.promise()},_initialize:function(){function a(){b.add(b.local)}var b=this;return this.clear(),(this.initPromise=this._loadPrefetch()).done(a),this.initPromise},initialize:function(a){return!this.initPromise||a?this._initialize():this.initPromise},add:function(a){return this.index.add(a),this},get:function(a){return a=b.isArray(a)?a:[].slice.call(arguments),this.index.get(a)},search:function(a,c,d){function e(a){var c=[];b.each(a,function(a){!b.some(f,function(b){return g.identify(a)===g.identify(b)})&&c.push(a)}),d&&d(c)}var f,g=this;return f=this.sorter(this.index.search(a)),c(this.remote?f.slice():f),this.remote&&f.length=j?(clearTimeout(e),e=null,g=i,f=a.apply(c,d)):e||(e=setTimeout(h,j)),f}},stringify:function(a){return b.isString(a)?a:JSON.stringify(a)},noop:function(){}}}(),c=function(){"use strict";function a(a){var g,h;return h=b.mixin({},f,a),g={css:e(),classes:h,html:c(h),selectors:d(h)},{css:g.css,html:g.html,classes:g.classes,selectors:g.selectors,mixin:function(a){b.mixin(a,g)}}}function c(a){return{wrapper:'',menu:'
    '}}function d(a){var c={};return b.each(a,function(a,b){c[b]="."+a}),c}function e(){var a={wrapper:{position:"relative",display:"inline-block"},hint:{position:"absolute",top:"0",left:"0",borderColor:"transparent",boxShadow:"none",opacity:"1"},input:{position:"relative",verticalAlign:"top",backgroundColor:"transparent"},inputWithNoHint:{position:"relative",verticalAlign:"top"},menu:{position:"absolute",top:"100%",left:"0",zIndex:"100",display:"none"},ltr:{left:"0",right:"auto"},rtl:{left:"auto",right:" 0"}};return b.isMsie()&&b.mixin(a.input,{backgroundImage:"url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)"}),a}var f={wrapper:"twitter-typeahead",input:"tt-input",hint:"tt-hint",menu:"tt-menu",dataset:"tt-dataset",suggestion:"tt-suggestion",selectable:"tt-selectable",empty:"tt-empty",open:"tt-open",cursor:"tt-cursor",highlight:"tt-highlight"};return a}(),d=function(){"use strict";function c(b){b&&b.el||a.error("EventBus initialized without el"),this.$el=a(b.el)}var d,e;return d="typeahead:",e={render:"rendered",cursorchange:"cursorchanged",select:"selected",autocomplete:"autocompleted"},b.mixin(c.prototype,{_trigger:function(b,c){var e;return e=a.Event(d+b),(c=c||[]).unshift(e),this.$el.trigger.apply(this.$el,c),e},before:function(a){var b,c;return b=[].slice.call(arguments,1),c=this._trigger("before"+a,b),c.isDefaultPrevented()},trigger:function(a){var b;this._trigger(a,[].slice.call(arguments,1)),(b=e[a])&&this._trigger(b,[].slice.call(arguments,1))}}),c}(),e=function(){"use strict";function a(a,b,c,d){var e;if(!c)return this;for(b=b.split(i),c=d?h(c,d):c,this._callbacks=this._callbacks||{};e=b.shift();)this._callbacks[e]=this._callbacks[e]||{sync:[],async:[]},this._callbacks[e][a].push(c);return this}function b(b,c,d){return a.call(this,"async",b,c,d)}function c(b,c,d){return a.call(this,"sync",b,c,d)}function d(a){var b;if(!this._callbacks)return this;for(a=a.split(i);b=a.shift();)delete this._callbacks[b];return this}function e(a){var b,c,d,e,g;if(!this._callbacks)return this;for(a=a.split(i),d=[].slice.call(arguments,1);(b=a.shift())&&(c=this._callbacks[b]);)e=f(c.sync,this,[b].concat(d)),g=f(c.async,this,[b].concat(d)),e()&&j(g);return this}function f(a,b,c){function d(){for(var d,e=0,f=a.length;!d&&f>e;e+=1)d=a[e].apply(b,c)===!1;return!d}return d}function g(){var a;return a=window.setImmediate?function(a){setImmediate(function(){a()})}:function(a){setTimeout(function(){a()},0)}}function h(a,b){return a.bind?a.bind(b):function(){a.apply(b,[].slice.call(arguments,0))}}var i=/\s+/,j=g();return{onSync:c,onAsync:b,off:d,trigger:e}}(),f=function(a){"use strict";function c(a,c,d){for(var e,f=[],g=0,h=a.length;h>g;g++)f.push(b.escapeRegExChars(a[g]));return e=d?"\\b("+f.join("|")+")\\b":"("+f.join("|")+")",c?new RegExp(e):new RegExp(e,"i")}var d={node:null,pattern:null,tagName:"strong",className:null,wordsOnly:!1,caseSensitive:!1};return function(e){function f(b){var c,d,f;return(c=h.exec(b.data))&&(f=a.createElement(e.tagName),e.className&&(f.className=e.className),d=b.splitText(c.index),d.splitText(c[0].length),f.appendChild(d.cloneNode(!0)),b.parentNode.replaceChild(f,d)),!!c}function g(a,b){for(var c,d=3,e=0;e