Showing preview only (1,219K chars total). Download the full file or copy to clipboard to get everything.
Repository: wwpedro/NodejsLivrariaCRUD
Branch: main
Commit: 0fe27d0073de
Files: 39
Total size: 1.2 MB
Directory structure:
gitextract_7tenys2a/
├── app.js
├── config/
│ └── pass.js
├── configuraçoesNecessarias.txt
├── helpautenticacao/
│ └── eBibliotecario.js
├── models/
│ ├── Comentario.js
│ ├── Leitor.js
│ └── Livro.js
├── package.json
├── public/
│ ├── css/
│ │ ├── bootstrap-grid.css
│ │ ├── bootstrap-grid.rtl.css
│ │ ├── bootstrap-reboot.css
│ │ ├── bootstrap-reboot.rtl.css
│ │ ├── bootstrap-utilities.css
│ │ ├── bootstrap-utilities.rtl.css
│ │ ├── bootstrap.css
│ │ └── bootstrap.rtl.css
│ ├── csslocal/
│ │ ├── all.css
│ │ ├── body.css
│ │ ├── home.css
│ │ └── livro.css
│ └── js/
│ ├── bootstrap.bundle.js
│ ├── bootstrap.esm.js
│ └── bootstrap.js
├── rotas/
│ ├── bibliotecario.js
│ ├── leitor.js
│ └── principal.js
└── views/
├── bibliotecario/
│ ├── comentarios.handlebars
│ ├── index.handlebars
│ ├── livro.handlebars
│ └── livroeditar.handlebars
├── index.handlebars
├── layouts/
│ └── main.handlebars
├── leitor/
│ ├── cadastro.handlebars
│ ├── listaLeitores.handlebars
│ └── login.handlebars
├── listaLivros.handlebars
├── livro.handlebars
└── partials/
├── _msg.handlebars
└── _navbar.handlebars
================================================
FILE CONTENTS
================================================
================================================
FILE: app.js
================================================
//Carregar Modulos
const express = require("express");
const handlebars = require("express-handlebars");
const bodyParser = require("body-parser");
const app = express();
const bibliotecario = require("./rotas/bibliotecario");
const leitor = require("./rotas/leitor")
const principal = require("./rotas/principal");
const path = require('path');
const mongoose = require("mongoose");
const session = require("express-session");
const flash = require("connect-flash");
const passport = require("passport");
require("./config/pass")(passport);
//Configurações
//Sessões
app.use(session({
secret: "secretSegura",
resave: true,
saveUninitialized: true
}));
app.use(passport.initialize());
app.use(passport.session());
app.use(flash());
//MiddleWare
app.use((req,res,next)=>{
res.locals.sucess_msg = req.flash("sucess_msg");
res.locals.error_msg = req.flash("error_msg");
res.locals.error = req.flash("error");
res.locals.user = req.user || null;
next();
});
//body_parser
app.use(bodyParser.urlencoded({defaultLayout: true}));
app.use(bodyParser.json());
//Handlebars
app.engine("handlebars", handlebars({
defaultLayout:'main',
runtimeOptions: {
allowProtoPropertiesByDefault: true,
allowProtoMethodsByDefault: true,
},
}));
app.set("view engine", "handlebars");
//Configuração mongoose
mongoose.Promise = global.Promise;
mongoose.connect('mongodb://localhost/livraria',{ useNewUrlParser: true ,useUnifiedTopology: true },()=>{
console.log("mongoDB livraria conectado");
});
//Public
app.use(express.static(path.join(__dirname,"public")));
//Rotas
app.use("/",principal)
app.use('/bibliotecario', bibliotecario);
app.use('/leitor',leitor);
//Outros
app.listen(40449,()=>{
console.log("Serviddor roddando na porta 40449");
});
================================================
FILE: config/pass.js
================================================
//autenticaçao local
const localStrategy = require("passport-local").Strategy;
const mongoose = require("mongoose");
const bcrypt = require("bcryptjs");
require('../models/Leitor');
const Leitor = mongoose.model("leitores");
module.exports = function(passport){
passport.use(new localStrategy({usernameField:"apelido",passwordField:"senha"},(apelido , senha ,done)=>{
Leitor.findOne({apelido : apelido}).then((leitor)=>{
if(!leitor) {
return done(null , false, {message:"esta conta não existe"});
}
bcrypt.compare(senha,leitor.senha,(erro,congruentes)=>{
if(congruentes) {
return done(null,leitor);
}else{
return done(null,false,{message:"senha incorreta"});
}
});
});
}));
//salvando leitor na sessão
passport.serializeUser((leitor,done)=>{
done(null,leitor.id);
});
passport.deserializeUser((id,done)=>{
Leitor.findById(id,(erro, leitor)=>{
done(erro,leitor);
});
});
}
================================================
FILE: configuraçoesNecessarias.txt
================================================
Nodejs
Banco de dados Usado - MONGODB
NPM- Dependencias
(npm install <Dependencia>)
-express
-express-handlebars
-body-parser
-mongoose
-express-session
-connect-flash
================================================
FILE: helpautenticacao/eBibliotecario.js
================================================
module.exports={
ebibliotecario:(req,res,next)=>{
if (req.isAuthenticated() && req.user.eBibliotecario == 1) {
return next();
}
req.flash("error_msg","voce nao esta logado em bibliotecario parar entrar aqui");
res.redirect("/");
}
}
================================================
FILE: models/Comentario.js
================================================
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const Comentario = new Schema({
titulo:{
type: String,
required: true
},
conteudo:{
type: String,
required: true
},
leitor:{
type: Schema.Types.ObjectId,
ref: "leitores",
required: true
},
livro:{
type: Schema.Types.ObjectId,
ref: "livros",
required: true
},
date:{
type: Date,
default: Date.now()
}
});
mongoose.model("comentarios", Comentario);
================================================
FILE: models/Leitor.js
================================================
const mongoose = require('mongoose');
const Schema = mongoose.Schema;
const Leitor = new Schema({
apelido:{
type: String,
required: true
},
nome:{
type: String,
required: true
},
email:{
type: String,
required: true
},
senha:{
type: String,
required: true
},
eBibliotecario:{
type: Number,
default: 0
}
});
mongoose.model("leitores",Leitor)
================================================
FILE: models/Livro.js
================================================
const mongoose = require("mongoose");
const Schema = mongoose.Schema;
const Livro = new Schema({
titulo:{
type: String,
required: true
},
autor:{
type: String,
required: true
},
numero_paginas:{
type: Number,
required: true
},
ano_lancamento:{
type: String,
required: true
},
sinopse:{
type: String,
required: true
},
genero:{
type: String,
required: true
}
});
mongoose.model("livros", Livro);
================================================
FILE: package.json
================================================
{
"name": "livrariacadastro",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"bootstrap": "^5.0.2",
"connect-flash": "^0.1.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"express-session": "^1.17.2",
"gridfs-stream": "^1.1.1",
"handlebars": "^4.7.7",
"mongoose": "^5.13.3",
"mongoose-date-format": "^1.2.0",
"multer": "^1.4.2",
"multer-gridfs-storage": "^5.0.0",
"nodemon": "^2.0.12",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
}
}
================================================
FILE: public/css/bootstrap-grid.css
================================================
/*!
* Bootstrap Grid v5.0.2 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
width: 100%;
padding-right: var(--bs-gutter-x, 0.75rem);
padding-left: var(--bs-gutter-x, 0.75rem);
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container-sm, .container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container-md, .container-sm, .container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container-lg, .container-md, .container-sm, .container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container-xl, .container-lg, .container-md, .container-sm, .container {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
max-width: 1320px;
}
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: flex;
flex-wrap: wrap;
margin-top: calc(var(--bs-gutter-y) * -1);
margin-right: calc(var(--bs-gutter-x) * -.5);
margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
box-sizing: border-box;
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-right: calc(var(--bs-gutter-x) * .5);
padding-left: calc(var(--bs-gutter-x) * .5);
margin-top: var(--bs-gutter-y);
}
.col {
flex: 1 0 0%;
}
.row-cols-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
@media (min-width: 576px) {
.col-sm {
flex: 1 0 0%;
}
.row-cols-sm-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-sm-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-sm-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-sm-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-sm-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-sm-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-sm-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
}
@media (min-width: 768px) {
.col-md {
flex: 1 0 0%;
}
.row-cols-md-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-md-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-md-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-md-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-md-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-md-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-md-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
}
@media (min-width: 992px) {
.col-lg {
flex: 1 0 0%;
}
.row-cols-lg-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-lg-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-lg-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-lg-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-lg-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-lg-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-lg-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
}
@media (min-width: 1200px) {
.col-xl {
flex: 1 0 0%;
}
.row-cols-xl-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-xl-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-xl-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-xl-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-xl-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-xl-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-xl-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
}
@media (min-width: 1400px) {
.col-xxl {
flex: 1 0 0%;
}
.row-cols-xxl-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-xxl-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-xxl-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-xxl-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-xxl-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-xxl-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-xxl-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
}
.col-auto {
flex: 0 0 auto;
width: auto;
}
.col-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-3 {
flex: 0 0 auto;
width: 25%;
}
.col-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-6 {
flex: 0 0 auto;
width: 50%;
}
.col-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-9 {
flex: 0 0 auto;
width: 75%;
}
.col-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-1 {
margin-left: 8.33333333%;
}
.offset-2 {
margin-left: 16.66666667%;
}
.offset-3 {
margin-left: 25%;
}
.offset-4 {
margin-left: 33.33333333%;
}
.offset-5 {
margin-left: 41.66666667%;
}
.offset-6 {
margin-left: 50%;
}
.offset-7 {
margin-left: 58.33333333%;
}
.offset-8 {
margin-left: 66.66666667%;
}
.offset-9 {
margin-left: 75%;
}
.offset-10 {
margin-left: 83.33333333%;
}
.offset-11 {
margin-left: 91.66666667%;
}
.g-0,
.gx-0 {
--bs-gutter-x: 0;
}
.g-0,
.gy-0 {
--bs-gutter-y: 0;
}
.g-1,
.gx-1 {
--bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
--bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
--bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
--bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
--bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
--bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
--bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
--bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
--bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
--bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
.col-sm-auto {
flex: 0 0 auto;
width: auto;
}
.col-sm-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-sm-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-sm-3 {
flex: 0 0 auto;
width: 25%;
}
.col-sm-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-sm-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-sm-6 {
flex: 0 0 auto;
width: 50%;
}
.col-sm-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-sm-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-sm-9 {
flex: 0 0 auto;
width: 75%;
}
.col-sm-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-sm-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-sm-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-sm-0 {
margin-left: 0;
}
.offset-sm-1 {
margin-left: 8.33333333%;
}
.offset-sm-2 {
margin-left: 16.66666667%;
}
.offset-sm-3 {
margin-left: 25%;
}
.offset-sm-4 {
margin-left: 33.33333333%;
}
.offset-sm-5 {
margin-left: 41.66666667%;
}
.offset-sm-6 {
margin-left: 50%;
}
.offset-sm-7 {
margin-left: 58.33333333%;
}
.offset-sm-8 {
margin-left: 66.66666667%;
}
.offset-sm-9 {
margin-left: 75%;
}
.offset-sm-10 {
margin-left: 83.33333333%;
}
.offset-sm-11 {
margin-left: 91.66666667%;
}
.g-sm-0,
.gx-sm-0 {
--bs-gutter-x: 0;
}
.g-sm-0,
.gy-sm-0 {
--bs-gutter-y: 0;
}
.g-sm-1,
.gx-sm-1 {
--bs-gutter-x: 0.25rem;
}
.g-sm-1,
.gy-sm-1 {
--bs-gutter-y: 0.25rem;
}
.g-sm-2,
.gx-sm-2 {
--bs-gutter-x: 0.5rem;
}
.g-sm-2,
.gy-sm-2 {
--bs-gutter-y: 0.5rem;
}
.g-sm-3,
.gx-sm-3 {
--bs-gutter-x: 1rem;
}
.g-sm-3,
.gy-sm-3 {
--bs-gutter-y: 1rem;
}
.g-sm-4,
.gx-sm-4 {
--bs-gutter-x: 1.5rem;
}
.g-sm-4,
.gy-sm-4 {
--bs-gutter-y: 1.5rem;
}
.g-sm-5,
.gx-sm-5 {
--bs-gutter-x: 3rem;
}
.g-sm-5,
.gy-sm-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 768px) {
.col-md-auto {
flex: 0 0 auto;
width: auto;
}
.col-md-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-md-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-md-3 {
flex: 0 0 auto;
width: 25%;
}
.col-md-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-md-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-md-6 {
flex: 0 0 auto;
width: 50%;
}
.col-md-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-md-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-md-9 {
flex: 0 0 auto;
width: 75%;
}
.col-md-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-md-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-md-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-md-0 {
margin-left: 0;
}
.offset-md-1 {
margin-left: 8.33333333%;
}
.offset-md-2 {
margin-left: 16.66666667%;
}
.offset-md-3 {
margin-left: 25%;
}
.offset-md-4 {
margin-left: 33.33333333%;
}
.offset-md-5 {
margin-left: 41.66666667%;
}
.offset-md-6 {
margin-left: 50%;
}
.offset-md-7 {
margin-left: 58.33333333%;
}
.offset-md-8 {
margin-left: 66.66666667%;
}
.offset-md-9 {
margin-left: 75%;
}
.offset-md-10 {
margin-left: 83.33333333%;
}
.offset-md-11 {
margin-left: 91.66666667%;
}
.g-md-0,
.gx-md-0 {
--bs-gutter-x: 0;
}
.g-md-0,
.gy-md-0 {
--bs-gutter-y: 0;
}
.g-md-1,
.gx-md-1 {
--bs-gutter-x: 0.25rem;
}
.g-md-1,
.gy-md-1 {
--bs-gutter-y: 0.25rem;
}
.g-md-2,
.gx-md-2 {
--bs-gutter-x: 0.5rem;
}
.g-md-2,
.gy-md-2 {
--bs-gutter-y: 0.5rem;
}
.g-md-3,
.gx-md-3 {
--bs-gutter-x: 1rem;
}
.g-md-3,
.gy-md-3 {
--bs-gutter-y: 1rem;
}
.g-md-4,
.gx-md-4 {
--bs-gutter-x: 1.5rem;
}
.g-md-4,
.gy-md-4 {
--bs-gutter-y: 1.5rem;
}
.g-md-5,
.gx-md-5 {
--bs-gutter-x: 3rem;
}
.g-md-5,
.gy-md-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 992px) {
.col-lg-auto {
flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-lg-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-lg-3 {
flex: 0 0 auto;
width: 25%;
}
.col-lg-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-lg-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-lg-6 {
flex: 0 0 auto;
width: 50%;
}
.col-lg-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-lg-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-lg-9 {
flex: 0 0 auto;
width: 75%;
}
.col-lg-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-lg-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-lg-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-lg-0 {
margin-left: 0;
}
.offset-lg-1 {
margin-left: 8.33333333%;
}
.offset-lg-2 {
margin-left: 16.66666667%;
}
.offset-lg-3 {
margin-left: 25%;
}
.offset-lg-4 {
margin-left: 33.33333333%;
}
.offset-lg-5 {
margin-left: 41.66666667%;
}
.offset-lg-6 {
margin-left: 50%;
}
.offset-lg-7 {
margin-left: 58.33333333%;
}
.offset-lg-8 {
margin-left: 66.66666667%;
}
.offset-lg-9 {
margin-left: 75%;
}
.offset-lg-10 {
margin-left: 83.33333333%;
}
.offset-lg-11 {
margin-left: 91.66666667%;
}
.g-lg-0,
.gx-lg-0 {
--bs-gutter-x: 0;
}
.g-lg-0,
.gy-lg-0 {
--bs-gutter-y: 0;
}
.g-lg-1,
.gx-lg-1 {
--bs-gutter-x: 0.25rem;
}
.g-lg-1,
.gy-lg-1 {
--bs-gutter-y: 0.25rem;
}
.g-lg-2,
.gx-lg-2 {
--bs-gutter-x: 0.5rem;
}
.g-lg-2,
.gy-lg-2 {
--bs-gutter-y: 0.5rem;
}
.g-lg-3,
.gx-lg-3 {
--bs-gutter-x: 1rem;
}
.g-lg-3,
.gy-lg-3 {
--bs-gutter-y: 1rem;
}
.g-lg-4,
.gx-lg-4 {
--bs-gutter-x: 1.5rem;
}
.g-lg-4,
.gy-lg-4 {
--bs-gutter-y: 1.5rem;
}
.g-lg-5,
.gx-lg-5 {
--bs-gutter-x: 3rem;
}
.g-lg-5,
.gy-lg-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1200px) {
.col-xl-auto {
flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-xl-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-xl-3 {
flex: 0 0 auto;
width: 25%;
}
.col-xl-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-xl-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-xl-6 {
flex: 0 0 auto;
width: 50%;
}
.col-xl-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-xl-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-xl-9 {
flex: 0 0 auto;
width: 75%;
}
.col-xl-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-xl-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-xl-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-xl-0 {
margin-left: 0;
}
.offset-xl-1 {
margin-left: 8.33333333%;
}
.offset-xl-2 {
margin-left: 16.66666667%;
}
.offset-xl-3 {
margin-left: 25%;
}
.offset-xl-4 {
margin-left: 33.33333333%;
}
.offset-xl-5 {
margin-left: 41.66666667%;
}
.offset-xl-6 {
margin-left: 50%;
}
.offset-xl-7 {
margin-left: 58.33333333%;
}
.offset-xl-8 {
margin-left: 66.66666667%;
}
.offset-xl-9 {
margin-left: 75%;
}
.offset-xl-10 {
margin-left: 83.33333333%;
}
.offset-xl-11 {
margin-left: 91.66666667%;
}
.g-xl-0,
.gx-xl-0 {
--bs-gutter-x: 0;
}
.g-xl-0,
.gy-xl-0 {
--bs-gutter-y: 0;
}
.g-xl-1,
.gx-xl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xl-1,
.gy-xl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xl-2,
.gx-xl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xl-2,
.gy-xl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xl-3,
.gx-xl-3 {
--bs-gutter-x: 1rem;
}
.g-xl-3,
.gy-xl-3 {
--bs-gutter-y: 1rem;
}
.g-xl-4,
.gx-xl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xl-4,
.gy-xl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xl-5,
.gx-xl-5 {
--bs-gutter-x: 3rem;
}
.g-xl-5,
.gy-xl-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1400px) {
.col-xxl-auto {
flex: 0 0 auto;
width: auto;
}
.col-xxl-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-xxl-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-xxl-3 {
flex: 0 0 auto;
width: 25%;
}
.col-xxl-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-xxl-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-xxl-6 {
flex: 0 0 auto;
width: 50%;
}
.col-xxl-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-xxl-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-xxl-9 {
flex: 0 0 auto;
width: 75%;
}
.col-xxl-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-xxl-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-xxl-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-xxl-0 {
margin-left: 0;
}
.offset-xxl-1 {
margin-left: 8.33333333%;
}
.offset-xxl-2 {
margin-left: 16.66666667%;
}
.offset-xxl-3 {
margin-left: 25%;
}
.offset-xxl-4 {
margin-left: 33.33333333%;
}
.offset-xxl-5 {
margin-left: 41.66666667%;
}
.offset-xxl-6 {
margin-left: 50%;
}
.offset-xxl-7 {
margin-left: 58.33333333%;
}
.offset-xxl-8 {
margin-left: 66.66666667%;
}
.offset-xxl-9 {
margin-left: 75%;
}
.offset-xxl-10 {
margin-left: 83.33333333%;
}
.offset-xxl-11 {
margin-left: 91.66666667%;
}
.g-xxl-0,
.gx-xxl-0 {
--bs-gutter-x: 0;
}
.g-xxl-0,
.gy-xxl-0 {
--bs-gutter-y: 0;
}
.g-xxl-1,
.gx-xxl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xxl-1,
.gy-xxl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xxl-2,
.gx-xxl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xxl-2,
.gy-xxl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xxl-3,
.gx-xxl-3 {
--bs-gutter-x: 1rem;
}
.g-xxl-3,
.gy-xxl-3 {
--bs-gutter-y: 1rem;
}
.g-xxl-4,
.gx-xxl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xxl-4,
.gy-xxl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xxl-5,
.gx-xxl-5 {
--bs-gutter-x: 3rem;
}
.g-xxl-5,
.gy-xxl-5 {
--bs-gutter-y: 3rem;
}
}
.d-inline {
display: inline !important;
}
.d-inline-block {
display: inline-block !important;
}
.d-block {
display: block !important;
}
.d-grid {
display: grid !important;
}
.d-table {
display: table !important;
}
.d-table-row {
display: table-row !important;
}
.d-table-cell {
display: table-cell !important;
}
.d-flex {
display: flex !important;
}
.d-inline-flex {
display: inline-flex !important;
}
.d-none {
display: none !important;
}
.flex-fill {
flex: 1 1 auto !important;
}
.flex-row {
flex-direction: row !important;
}
.flex-column {
flex-direction: column !important;
}
.flex-row-reverse {
flex-direction: row-reverse !important;
}
.flex-column-reverse {
flex-direction: column-reverse !important;
}
.flex-grow-0 {
flex-grow: 0 !important;
}
.flex-grow-1 {
flex-grow: 1 !important;
}
.flex-shrink-0 {
flex-shrink: 0 !important;
}
.flex-shrink-1 {
flex-shrink: 1 !important;
}
.flex-wrap {
flex-wrap: wrap !important;
}
.flex-nowrap {
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-start {
justify-content: flex-start !important;
}
.justify-content-end {
justify-content: flex-end !important;
}
.justify-content-center {
justify-content: center !important;
}
.justify-content-between {
justify-content: space-between !important;
}
.justify-content-around {
justify-content: space-around !important;
}
.justify-content-evenly {
justify-content: space-evenly !important;
}
.align-items-start {
align-items: flex-start !important;
}
.align-items-end {
align-items: flex-end !important;
}
.align-items-center {
align-items: center !important;
}
.align-items-baseline {
align-items: baseline !important;
}
.align-items-stretch {
align-items: stretch !important;
}
.align-content-start {
align-content: flex-start !important;
}
.align-content-end {
align-content: flex-end !important;
}
.align-content-center {
align-content: center !important;
}
.align-content-between {
align-content: space-between !important;
}
.align-content-around {
align-content: space-around !important;
}
.align-content-stretch {
align-content: stretch !important;
}
.align-self-auto {
align-self: auto !important;
}
.align-self-start {
align-self: flex-start !important;
}
.align-self-end {
align-self: flex-end !important;
}
.align-self-center {
align-self: center !important;
}
.align-self-baseline {
align-self: baseline !important;
}
.align-self-stretch {
align-self: stretch !important;
}
.order-first {
order: -1 !important;
}
.order-0 {
order: 0 !important;
}
.order-1 {
order: 1 !important;
}
.order-2 {
order: 2 !important;
}
.order-3 {
order: 3 !important;
}
.order-4 {
order: 4 !important;
}
.order-5 {
order: 5 !important;
}
.order-last {
order: 6 !important;
}
.m-0 {
margin: 0 !important;
}
.m-1 {
margin: 0.25rem !important;
}
.m-2 {
margin: 0.5rem !important;
}
.m-3 {
margin: 1rem !important;
}
.m-4 {
margin: 1.5rem !important;
}
.m-5 {
margin: 3rem !important;
}
.m-auto {
margin: auto !important;
}
.mx-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-0 {
margin-top: 0 !important;
}
.mt-1 {
margin-top: 0.25rem !important;
}
.mt-2 {
margin-top: 0.5rem !important;
}
.mt-3 {
margin-top: 1rem !important;
}
.mt-4 {
margin-top: 1.5rem !important;
}
.mt-5 {
margin-top: 3rem !important;
}
.mt-auto {
margin-top: auto !important;
}
.me-0 {
margin-right: 0 !important;
}
.me-1 {
margin-right: 0.25rem !important;
}
.me-2 {
margin-right: 0.5rem !important;
}
.me-3 {
margin-right: 1rem !important;
}
.me-4 {
margin-right: 1.5rem !important;
}
.me-5 {
margin-right: 3rem !important;
}
.me-auto {
margin-right: auto !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mb-1 {
margin-bottom: 0.25rem !important;
}
.mb-2 {
margin-bottom: 0.5rem !important;
}
.mb-3 {
margin-bottom: 1rem !important;
}
.mb-4 {
margin-bottom: 1.5rem !important;
}
.mb-5 {
margin-bottom: 3rem !important;
}
.mb-auto {
margin-bottom: auto !important;
}
.ms-0 {
margin-left: 0 !important;
}
.ms-1 {
margin-left: 0.25rem !important;
}
.ms-2 {
margin-left: 0.5rem !important;
}
.ms-3 {
margin-left: 1rem !important;
}
.ms-4 {
margin-left: 1.5rem !important;
}
.ms-5 {
margin-left: 3rem !important;
}
.ms-auto {
margin-left: auto !important;
}
.p-0 {
padding: 0 !important;
}
.p-1 {
padding: 0.25rem !important;
}
.p-2 {
padding: 0.5rem !important;
}
.p-3 {
padding: 1rem !important;
}
.p-4 {
padding: 1.5rem !important;
}
.p-5 {
padding: 3rem !important;
}
.px-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-0 {
padding-top: 0 !important;
}
.pt-1 {
padding-top: 0.25rem !important;
}
.pt-2 {
padding-top: 0.5rem !important;
}
.pt-3 {
padding-top: 1rem !important;
}
.pt-4 {
padding-top: 1.5rem !important;
}
.pt-5 {
padding-top: 3rem !important;
}
.pe-0 {
padding-right: 0 !important;
}
.pe-1 {
padding-right: 0.25rem !important;
}
.pe-2 {
padding-right: 0.5rem !important;
}
.pe-3 {
padding-right: 1rem !important;
}
.pe-4 {
padding-right: 1.5rem !important;
}
.pe-5 {
padding-right: 3rem !important;
}
.pb-0 {
padding-bottom: 0 !important;
}
.pb-1 {
padding-bottom: 0.25rem !important;
}
.pb-2 {
padding-bottom: 0.5rem !important;
}
.pb-3 {
padding-bottom: 1rem !important;
}
.pb-4 {
padding-bottom: 1.5rem !important;
}
.pb-5 {
padding-bottom: 3rem !important;
}
.ps-0 {
padding-left: 0 !important;
}
.ps-1 {
padding-left: 0.25rem !important;
}
.ps-2 {
padding-left: 0.5rem !important;
}
.ps-3 {
padding-left: 1rem !important;
}
.ps-4 {
padding-left: 1.5rem !important;
}
.ps-5 {
padding-left: 3rem !important;
}
@media (min-width: 576px) {
.d-sm-inline {
display: inline !important;
}
.d-sm-inline-block {
display: inline-block !important;
}
.d-sm-block {
display: block !important;
}
.d-sm-grid {
display: grid !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: flex !important;
}
.d-sm-inline-flex {
display: inline-flex !important;
}
.d-sm-none {
display: none !important;
}
.flex-sm-fill {
flex: 1 1 auto !important;
}
.flex-sm-row {
flex-direction: row !important;
}
.flex-sm-column {
flex-direction: column !important;
}
.flex-sm-row-reverse {
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
flex-direction: column-reverse !important;
}
.flex-sm-grow-0 {
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
flex-shrink: 1 !important;
}
.flex-sm-wrap {
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-sm-start {
justify-content: flex-start !important;
}
.justify-content-sm-end {
justify-content: flex-end !important;
}
.justify-content-sm-center {
justify-content: center !important;
}
.justify-content-sm-between {
justify-content: space-between !important;
}
.justify-content-sm-around {
justify-content: space-around !important;
}
.justify-content-sm-evenly {
justify-content: space-evenly !important;
}
.align-items-sm-start {
align-items: flex-start !important;
}
.align-items-sm-end {
align-items: flex-end !important;
}
.align-items-sm-center {
align-items: center !important;
}
.align-items-sm-baseline {
align-items: baseline !important;
}
.align-items-sm-stretch {
align-items: stretch !important;
}
.align-content-sm-start {
align-content: flex-start !important;
}
.align-content-sm-end {
align-content: flex-end !important;
}
.align-content-sm-center {
align-content: center !important;
}
.align-content-sm-between {
align-content: space-between !important;
}
.align-content-sm-around {
align-content: space-around !important;
}
.align-content-sm-stretch {
align-content: stretch !important;
}
.align-self-sm-auto {
align-self: auto !important;
}
.align-self-sm-start {
align-self: flex-start !important;
}
.align-self-sm-end {
align-self: flex-end !important;
}
.align-self-sm-center {
align-self: center !important;
}
.align-self-sm-baseline {
align-self: baseline !important;
}
.align-self-sm-stretch {
align-self: stretch !important;
}
.order-sm-first {
order: -1 !important;
}
.order-sm-0 {
order: 0 !important;
}
.order-sm-1 {
order: 1 !important;
}
.order-sm-2 {
order: 2 !important;
}
.order-sm-3 {
order: 3 !important;
}
.order-sm-4 {
order: 4 !important;
}
.order-sm-5 {
order: 5 !important;
}
.order-sm-last {
order: 6 !important;
}
.m-sm-0 {
margin: 0 !important;
}
.m-sm-1 {
margin: 0.25rem !important;
}
.m-sm-2 {
margin: 0.5rem !important;
}
.m-sm-3 {
margin: 1rem !important;
}
.m-sm-4 {
margin: 1.5rem !important;
}
.m-sm-5 {
margin: 3rem !important;
}
.m-sm-auto {
margin: auto !important;
}
.mx-sm-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-sm-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-sm-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-sm-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-sm-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-sm-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-sm-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-sm-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-sm-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-sm-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-sm-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-sm-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-sm-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-sm-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-sm-0 {
margin-top: 0 !important;
}
.mt-sm-1 {
margin-top: 0.25rem !important;
}
.mt-sm-2 {
margin-top: 0.5rem !important;
}
.mt-sm-3 {
margin-top: 1rem !important;
}
.mt-sm-4 {
margin-top: 1.5rem !important;
}
.mt-sm-5 {
margin-top: 3rem !important;
}
.mt-sm-auto {
margin-top: auto !important;
}
.me-sm-0 {
margin-right: 0 !important;
}
.me-sm-1 {
margin-right: 0.25rem !important;
}
.me-sm-2 {
margin-right: 0.5rem !important;
}
.me-sm-3 {
margin-right: 1rem !important;
}
.me-sm-4 {
margin-right: 1.5rem !important;
}
.me-sm-5 {
margin-right: 3rem !important;
}
.me-sm-auto {
margin-right: auto !important;
}
.mb-sm-0 {
margin-bottom: 0 !important;
}
.mb-sm-1 {
margin-bottom: 0.25rem !important;
}
.mb-sm-2 {
margin-bottom: 0.5rem !important;
}
.mb-sm-3 {
margin-bottom: 1rem !important;
}
.mb-sm-4 {
margin-bottom: 1.5rem !important;
}
.mb-sm-5 {
margin-bottom: 3rem !important;
}
.mb-sm-auto {
margin-bottom: auto !important;
}
.ms-sm-0 {
margin-left: 0 !important;
}
.ms-sm-1 {
margin-left: 0.25rem !important;
}
.ms-sm-2 {
margin-left: 0.5rem !important;
}
.ms-sm-3 {
margin-left: 1rem !important;
}
.ms-sm-4 {
margin-left: 1.5rem !important;
}
.ms-sm-5 {
margin-left: 3rem !important;
}
.ms-sm-auto {
margin-left: auto !important;
}
.p-sm-0 {
padding: 0 !important;
}
.p-sm-1 {
padding: 0.25rem !important;
}
.p-sm-2 {
padding: 0.5rem !important;
}
.p-sm-3 {
padding: 1rem !important;
}
.p-sm-4 {
padding: 1.5rem !important;
}
.p-sm-5 {
padding: 3rem !important;
}
.px-sm-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-sm-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-sm-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-sm-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-sm-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-sm-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-sm-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-sm-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-sm-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-sm-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-sm-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-sm-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-sm-0 {
padding-top: 0 !important;
}
.pt-sm-1 {
padding-top: 0.25rem !important;
}
.pt-sm-2 {
padding-top: 0.5rem !important;
}
.pt-sm-3 {
padding-top: 1rem !important;
}
.pt-sm-4 {
padding-top: 1.5rem !important;
}
.pt-sm-5 {
padding-top: 3rem !important;
}
.pe-sm-0 {
padding-right: 0 !important;
}
.pe-sm-1 {
padding-right: 0.25rem !important;
}
.pe-sm-2 {
padding-right: 0.5rem !important;
}
.pe-sm-3 {
padding-right: 1rem !important;
}
.pe-sm-4 {
padding-right: 1.5rem !important;
}
.pe-sm-5 {
padding-right: 3rem !important;
}
.pb-sm-0 {
padding-bottom: 0 !important;
}
.pb-sm-1 {
padding-bottom: 0.25rem !important;
}
.pb-sm-2 {
padding-bottom: 0.5rem !important;
}
.pb-sm-3 {
padding-bottom: 1rem !important;
}
.pb-sm-4 {
padding-bottom: 1.5rem !important;
}
.pb-sm-5 {
padding-bottom: 3rem !important;
}
.ps-sm-0 {
padding-left: 0 !important;
}
.ps-sm-1 {
padding-left: 0.25rem !important;
}
.ps-sm-2 {
padding-left: 0.5rem !important;
}
.ps-sm-3 {
padding-left: 1rem !important;
}
.ps-sm-4 {
padding-left: 1.5rem !important;
}
.ps-sm-5 {
padding-left: 3rem !important;
}
}
@media (min-width: 768px) {
.d-md-inline {
display: inline !important;
}
.d-md-inline-block {
display: inline-block !important;
}
.d-md-block {
display: block !important;
}
.d-md-grid {
display: grid !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: flex !important;
}
.d-md-inline-flex {
display: inline-flex !important;
}
.d-md-none {
display: none !important;
}
.flex-md-fill {
flex: 1 1 auto !important;
}
.flex-md-row {
flex-direction: row !important;
}
.flex-md-column {
flex-direction: column !important;
}
.flex-md-row-reverse {
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
flex-direction: column-reverse !important;
}
.flex-md-grow-0 {
flex-grow: 0 !important;
}
.flex-md-grow-1 {
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
flex-shrink: 1 !important;
}
.flex-md-wrap {
flex-wrap: wrap !important;
}
.flex-md-nowrap {
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-md-start {
justify-content: flex-start !important;
}
.justify-content-md-end {
justify-content: flex-end !important;
}
.justify-content-md-center {
justify-content: center !important;
}
.justify-content-md-between {
justify-content: space-between !important;
}
.justify-content-md-around {
justify-content: space-around !important;
}
.justify-content-md-evenly {
justify-content: space-evenly !important;
}
.align-items-md-start {
align-items: flex-start !important;
}
.align-items-md-end {
align-items: flex-end !important;
}
.align-items-md-center {
align-items: center !important;
}
.align-items-md-baseline {
align-items: baseline !important;
}
.align-items-md-stretch {
align-items: stretch !important;
}
.align-content-md-start {
align-content: flex-start !important;
}
.align-content-md-end {
align-content: flex-end !important;
}
.align-content-md-center {
align-content: center !important;
}
.align-content-md-between {
align-content: space-between !important;
}
.align-content-md-around {
align-content: space-around !important;
}
.align-content-md-stretch {
align-content: stretch !important;
}
.align-self-md-auto {
align-self: auto !important;
}
.align-self-md-start {
align-self: flex-start !important;
}
.align-self-md-end {
align-self: flex-end !important;
}
.align-self-md-center {
align-self: center !important;
}
.align-self-md-baseline {
align-self: baseline !important;
}
.align-self-md-stretch {
align-self: stretch !important;
}
.order-md-first {
order: -1 !important;
}
.order-md-0 {
order: 0 !important;
}
.order-md-1 {
order: 1 !important;
}
.order-md-2 {
order: 2 !important;
}
.order-md-3 {
order: 3 !important;
}
.order-md-4 {
order: 4 !important;
}
.order-md-5 {
order: 5 !important;
}
.order-md-last {
order: 6 !important;
}
.m-md-0 {
margin: 0 !important;
}
.m-md-1 {
margin: 0.25rem !important;
}
.m-md-2 {
margin: 0.5rem !important;
}
.m-md-3 {
margin: 1rem !important;
}
.m-md-4 {
margin: 1.5rem !important;
}
.m-md-5 {
margin: 3rem !important;
}
.m-md-auto {
margin: auto !important;
}
.mx-md-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-md-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-md-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-md-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-md-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-md-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-md-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-md-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-md-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-md-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-md-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-md-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-md-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-md-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-md-0 {
margin-top: 0 !important;
}
.mt-md-1 {
margin-top: 0.25rem !important;
}
.mt-md-2 {
margin-top: 0.5rem !important;
}
.mt-md-3 {
margin-top: 1rem !important;
}
.mt-md-4 {
margin-top: 1.5rem !important;
}
.mt-md-5 {
margin-top: 3rem !important;
}
.mt-md-auto {
margin-top: auto !important;
}
.me-md-0 {
margin-right: 0 !important;
}
.me-md-1 {
margin-right: 0.25rem !important;
}
.me-md-2 {
margin-right: 0.5rem !important;
}
.me-md-3 {
margin-right: 1rem !important;
}
.me-md-4 {
margin-right: 1.5rem !important;
}
.me-md-5 {
margin-right: 3rem !important;
}
.me-md-auto {
margin-right: auto !important;
}
.mb-md-0 {
margin-bottom: 0 !important;
}
.mb-md-1 {
margin-bottom: 0.25rem !important;
}
.mb-md-2 {
margin-bottom: 0.5rem !important;
}
.mb-md-3 {
margin-bottom: 1rem !important;
}
.mb-md-4 {
margin-bottom: 1.5rem !important;
}
.mb-md-5 {
margin-bottom: 3rem !important;
}
.mb-md-auto {
margin-bottom: auto !important;
}
.ms-md-0 {
margin-left: 0 !important;
}
.ms-md-1 {
margin-left: 0.25rem !important;
}
.ms-md-2 {
margin-left: 0.5rem !important;
}
.ms-md-3 {
margin-left: 1rem !important;
}
.ms-md-4 {
margin-left: 1.5rem !important;
}
.ms-md-5 {
margin-left: 3rem !important;
}
.ms-md-auto {
margin-left: auto !important;
}
.p-md-0 {
padding: 0 !important;
}
.p-md-1 {
padding: 0.25rem !important;
}
.p-md-2 {
padding: 0.5rem !important;
}
.p-md-3 {
padding: 1rem !important;
}
.p-md-4 {
padding: 1.5rem !important;
}
.p-md-5 {
padding: 3rem !important;
}
.px-md-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-md-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-md-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-md-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-md-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-md-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-md-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-md-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-md-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-md-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-md-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-md-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-md-0 {
padding-top: 0 !important;
}
.pt-md-1 {
padding-top: 0.25rem !important;
}
.pt-md-2 {
padding-top: 0.5rem !important;
}
.pt-md-3 {
padding-top: 1rem !important;
}
.pt-md-4 {
padding-top: 1.5rem !important;
}
.pt-md-5 {
padding-top: 3rem !important;
}
.pe-md-0 {
padding-right: 0 !important;
}
.pe-md-1 {
padding-right: 0.25rem !important;
}
.pe-md-2 {
padding-right: 0.5rem !important;
}
.pe-md-3 {
padding-right: 1rem !important;
}
.pe-md-4 {
padding-right: 1.5rem !important;
}
.pe-md-5 {
padding-right: 3rem !important;
}
.pb-md-0 {
padding-bottom: 0 !important;
}
.pb-md-1 {
padding-bottom: 0.25rem !important;
}
.pb-md-2 {
padding-bottom: 0.5rem !important;
}
.pb-md-3 {
padding-bottom: 1rem !important;
}
.pb-md-4 {
padding-bottom: 1.5rem !important;
}
.pb-md-5 {
padding-bottom: 3rem !important;
}
.ps-md-0 {
padding-left: 0 !important;
}
.ps-md-1 {
padding-left: 0.25rem !important;
}
.ps-md-2 {
padding-left: 0.5rem !important;
}
.ps-md-3 {
padding-left: 1rem !important;
}
.ps-md-4 {
padding-left: 1.5rem !important;
}
.ps-md-5 {
padding-left: 3rem !important;
}
}
@media (min-width: 992px) {
.d-lg-inline {
display: inline !important;
}
.d-lg-inline-block {
display: inline-block !important;
}
.d-lg-block {
display: block !important;
}
.d-lg-grid {
display: grid !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: flex !important;
}
.d-lg-inline-flex {
display: inline-flex !important;
}
.d-lg-none {
display: none !important;
}
.flex-lg-fill {
flex: 1 1 auto !important;
}
.flex-lg-row {
flex-direction: row !important;
}
.flex-lg-column {
flex-direction: column !important;
}
.flex-lg-row-reverse {
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
flex-direction: column-reverse !important;
}
.flex-lg-grow-0 {
flex-grow: 0 !important;
}
.flex-lg-grow-1 {
flex-grow: 1 !important;
}
.flex-lg-shrink-0 {
flex-shrink: 0 !important;
}
.flex-lg-shrink-1 {
flex-shrink: 1 !important;
}
.flex-lg-wrap {
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-lg-start {
justify-content: flex-start !important;
}
.justify-content-lg-end {
justify-content: flex-end !important;
}
.justify-content-lg-center {
justify-content: center !important;
}
.justify-content-lg-between {
justify-content: space-between !important;
}
.justify-content-lg-around {
justify-content: space-around !important;
}
.justify-content-lg-evenly {
justify-content: space-evenly !important;
}
.align-items-lg-start {
align-items: flex-start !important;
}
.align-items-lg-end {
align-items: flex-end !important;
}
.align-items-lg-center {
align-items: center !important;
}
.align-items-lg-baseline {
align-items: baseline !important;
}
.align-items-lg-stretch {
align-items: stretch !important;
}
.align-content-lg-start {
align-content: flex-start !important;
}
.align-content-lg-end {
align-content: flex-end !important;
}
.align-content-lg-center {
align-content: center !important;
}
.align-content-lg-between {
align-content: space-between !important;
}
.align-content-lg-around {
align-content: space-around !important;
}
.align-content-lg-stretch {
align-content: stretch !important;
}
.align-self-lg-auto {
align-self: auto !important;
}
.align-self-lg-start {
align-self: flex-start !important;
}
.align-self-lg-end {
align-self: flex-end !important;
}
.align-self-lg-center {
align-self: center !important;
}
.align-self-lg-baseline {
align-self: baseline !important;
}
.align-self-lg-stretch {
align-self: stretch !important;
}
.order-lg-first {
order: -1 !important;
}
.order-lg-0 {
order: 0 !important;
}
.order-lg-1 {
order: 1 !important;
}
.order-lg-2 {
order: 2 !important;
}
.order-lg-3 {
order: 3 !important;
}
.order-lg-4 {
order: 4 !important;
}
.order-lg-5 {
order: 5 !important;
}
.order-lg-last {
order: 6 !important;
}
.m-lg-0 {
margin: 0 !important;
}
.m-lg-1 {
margin: 0.25rem !important;
}
.m-lg-2 {
margin: 0.5rem !important;
}
.m-lg-3 {
margin: 1rem !important;
}
.m-lg-4 {
margin: 1.5rem !important;
}
.m-lg-5 {
margin: 3rem !important;
}
.m-lg-auto {
margin: auto !important;
}
.mx-lg-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-lg-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-lg-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-lg-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-lg-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-lg-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-lg-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-lg-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-lg-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-lg-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-lg-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-lg-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-lg-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-lg-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-lg-0 {
margin-top: 0 !important;
}
.mt-lg-1 {
margin-top: 0.25rem !important;
}
.mt-lg-2 {
margin-top: 0.5rem !important;
}
.mt-lg-3 {
margin-top: 1rem !important;
}
.mt-lg-4 {
margin-top: 1.5rem !important;
}
.mt-lg-5 {
margin-top: 3rem !important;
}
.mt-lg-auto {
margin-top: auto !important;
}
.me-lg-0 {
margin-right: 0 !important;
}
.me-lg-1 {
margin-right: 0.25rem !important;
}
.me-lg-2 {
margin-right: 0.5rem !important;
}
.me-lg-3 {
margin-right: 1rem !important;
}
.me-lg-4 {
margin-right: 1.5rem !important;
}
.me-lg-5 {
margin-right: 3rem !important;
}
.me-lg-auto {
margin-right: auto !important;
}
.mb-lg-0 {
margin-bottom: 0 !important;
}
.mb-lg-1 {
margin-bottom: 0.25rem !important;
}
.mb-lg-2 {
margin-bottom: 0.5rem !important;
}
.mb-lg-3 {
margin-bottom: 1rem !important;
}
.mb-lg-4 {
margin-bottom: 1.5rem !important;
}
.mb-lg-5 {
margin-bottom: 3rem !important;
}
.mb-lg-auto {
margin-bottom: auto !important;
}
.ms-lg-0 {
margin-left: 0 !important;
}
.ms-lg-1 {
margin-left: 0.25rem !important;
}
.ms-lg-2 {
margin-left: 0.5rem !important;
}
.ms-lg-3 {
margin-left: 1rem !important;
}
.ms-lg-4 {
margin-left: 1.5rem !important;
}
.ms-lg-5 {
margin-left: 3rem !important;
}
.ms-lg-auto {
margin-left: auto !important;
}
.p-lg-0 {
padding: 0 !important;
}
.p-lg-1 {
padding: 0.25rem !important;
}
.p-lg-2 {
padding: 0.5rem !important;
}
.p-lg-3 {
padding: 1rem !important;
}
.p-lg-4 {
padding: 1.5rem !important;
}
.p-lg-5 {
padding: 3rem !important;
}
.px-lg-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-lg-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-lg-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-lg-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-lg-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-lg-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-lg-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-lg-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-lg-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-lg-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-lg-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-lg-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-lg-0 {
padding-top: 0 !important;
}
.pt-lg-1 {
padding-top: 0.25rem !important;
}
.pt-lg-2 {
padding-top: 0.5rem !important;
}
.pt-lg-3 {
padding-top: 1rem !important;
}
.pt-lg-4 {
padding-top: 1.5rem !important;
}
.pt-lg-5 {
padding-top: 3rem !important;
}
.pe-lg-0 {
padding-right: 0 !important;
}
.pe-lg-1 {
padding-right: 0.25rem !important;
}
.pe-lg-2 {
padding-right: 0.5rem !important;
}
.pe-lg-3 {
padding-right: 1rem !important;
}
.pe-lg-4 {
padding-right: 1.5rem !important;
}
.pe-lg-5 {
padding-right: 3rem !important;
}
.pb-lg-0 {
padding-bottom: 0 !important;
}
.pb-lg-1 {
padding-bottom: 0.25rem !important;
}
.pb-lg-2 {
padding-bottom: 0.5rem !important;
}
.pb-lg-3 {
padding-bottom: 1rem !important;
}
.pb-lg-4 {
padding-bottom: 1.5rem !important;
}
.pb-lg-5 {
padding-bottom: 3rem !important;
}
.ps-lg-0 {
padding-left: 0 !important;
}
.ps-lg-1 {
padding-left: 0.25rem !important;
}
.ps-lg-2 {
padding-left: 0.5rem !important;
}
.ps-lg-3 {
padding-left: 1rem !important;
}
.ps-lg-4 {
padding-left: 1.5rem !important;
}
.ps-lg-5 {
padding-left: 3rem !important;
}
}
@media (min-width: 1200px) {
.d-xl-inline {
display: inline !important;
}
.d-xl-inline-block {
display: inline-block !important;
}
.d-xl-block {
display: block !important;
}
.d-xl-grid {
display: grid !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: flex !important;
}
.d-xl-inline-flex {
display: inline-flex !important;
}
.d-xl-none {
display: none !important;
}
.flex-xl-fill {
flex: 1 1 auto !important;
}
.flex-xl-row {
flex-direction: row !important;
}
.flex-xl-column {
flex-direction: column !important;
}
.flex-xl-row-reverse {
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
flex-direction: column-reverse !important;
}
.flex-xl-grow-0 {
flex-grow: 0 !important;
}
.flex-xl-grow-1 {
flex-grow: 1 !important;
}
.flex-xl-shrink-0 {
flex-shrink: 0 !important;
}
.flex-xl-shrink-1 {
flex-shrink: 1 !important;
}
.flex-xl-wrap {
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-xl-start {
justify-content: flex-start !important;
}
.justify-content-xl-end {
justify-content: flex-end !important;
}
.justify-content-xl-center {
justify-content: center !important;
}
.justify-content-xl-between {
justify-content: space-between !important;
}
.justify-content-xl-around {
justify-content: space-around !important;
}
.justify-content-xl-evenly {
justify-content: space-evenly !important;
}
.align-items-xl-start {
align-items: flex-start !important;
}
.align-items-xl-end {
align-items: flex-end !important;
}
.align-items-xl-center {
align-items: center !important;
}
.align-items-xl-baseline {
align-items: baseline !important;
}
.align-items-xl-stretch {
align-items: stretch !important;
}
.align-content-xl-start {
align-content: flex-start !important;
}
.align-content-xl-end {
align-content: flex-end !important;
}
.align-content-xl-center {
align-content: center !important;
}
.align-content-xl-between {
align-content: space-between !important;
}
.align-content-xl-around {
align-content: space-around !important;
}
.align-content-xl-stretch {
align-content: stretch !important;
}
.align-self-xl-auto {
align-self: auto !important;
}
.align-self-xl-start {
align-self: flex-start !important;
}
.align-self-xl-end {
align-self: flex-end !important;
}
.align-self-xl-center {
align-self: center !important;
}
.align-self-xl-baseline {
align-self: baseline !important;
}
.align-self-xl-stretch {
align-self: stretch !important;
}
.order-xl-first {
order: -1 !important;
}
.order-xl-0 {
order: 0 !important;
}
.order-xl-1 {
order: 1 !important;
}
.order-xl-2 {
order: 2 !important;
}
.order-xl-3 {
order: 3 !important;
}
.order-xl-4 {
order: 4 !important;
}
.order-xl-5 {
order: 5 !important;
}
.order-xl-last {
order: 6 !important;
}
.m-xl-0 {
margin: 0 !important;
}
.m-xl-1 {
margin: 0.25rem !important;
}
.m-xl-2 {
margin: 0.5rem !important;
}
.m-xl-3 {
margin: 1rem !important;
}
.m-xl-4 {
margin: 1.5rem !important;
}
.m-xl-5 {
margin: 3rem !important;
}
.m-xl-auto {
margin: auto !important;
}
.mx-xl-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-xl-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-xl-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-xl-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-xl-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-xl-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-xl-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-xl-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-xl-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-xl-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-xl-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-xl-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-xl-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-xl-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-xl-0 {
margin-top: 0 !important;
}
.mt-xl-1 {
margin-top: 0.25rem !important;
}
.mt-xl-2 {
margin-top: 0.5rem !important;
}
.mt-xl-3 {
margin-top: 1rem !important;
}
.mt-xl-4 {
margin-top: 1.5rem !important;
}
.mt-xl-5 {
margin-top: 3rem !important;
}
.mt-xl-auto {
margin-top: auto !important;
}
.me-xl-0 {
margin-right: 0 !important;
}
.me-xl-1 {
margin-right: 0.25rem !important;
}
.me-xl-2 {
margin-right: 0.5rem !important;
}
.me-xl-3 {
margin-right: 1rem !important;
}
.me-xl-4 {
margin-right: 1.5rem !important;
}
.me-xl-5 {
margin-right: 3rem !important;
}
.me-xl-auto {
margin-right: auto !important;
}
.mb-xl-0 {
margin-bottom: 0 !important;
}
.mb-xl-1 {
margin-bottom: 0.25rem !important;
}
.mb-xl-2 {
margin-bottom: 0.5rem !important;
}
.mb-xl-3 {
margin-bottom: 1rem !important;
}
.mb-xl-4 {
margin-bottom: 1.5rem !important;
}
.mb-xl-5 {
margin-bottom: 3rem !important;
}
.mb-xl-auto {
margin-bottom: auto !important;
}
.ms-xl-0 {
margin-left: 0 !important;
}
.ms-xl-1 {
margin-left: 0.25rem !important;
}
.ms-xl-2 {
margin-left: 0.5rem !important;
}
.ms-xl-3 {
margin-left: 1rem !important;
}
.ms-xl-4 {
margin-left: 1.5rem !important;
}
.ms-xl-5 {
margin-left: 3rem !important;
}
.ms-xl-auto {
margin-left: auto !important;
}
.p-xl-0 {
padding: 0 !important;
}
.p-xl-1 {
padding: 0.25rem !important;
}
.p-xl-2 {
padding: 0.5rem !important;
}
.p-xl-3 {
padding: 1rem !important;
}
.p-xl-4 {
padding: 1.5rem !important;
}
.p-xl-5 {
padding: 3rem !important;
}
.px-xl-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-xl-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-xl-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-xl-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-xl-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-xl-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-xl-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-xl-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-xl-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-xl-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-xl-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-xl-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-xl-0 {
padding-top: 0 !important;
}
.pt-xl-1 {
padding-top: 0.25rem !important;
}
.pt-xl-2 {
padding-top: 0.5rem !important;
}
.pt-xl-3 {
padding-top: 1rem !important;
}
.pt-xl-4 {
padding-top: 1.5rem !important;
}
.pt-xl-5 {
padding-top: 3rem !important;
}
.pe-xl-0 {
padding-right: 0 !important;
}
.pe-xl-1 {
padding-right: 0.25rem !important;
}
.pe-xl-2 {
padding-right: 0.5rem !important;
}
.pe-xl-3 {
padding-right: 1rem !important;
}
.pe-xl-4 {
padding-right: 1.5rem !important;
}
.pe-xl-5 {
padding-right: 3rem !important;
}
.pb-xl-0 {
padding-bottom: 0 !important;
}
.pb-xl-1 {
padding-bottom: 0.25rem !important;
}
.pb-xl-2 {
padding-bottom: 0.5rem !important;
}
.pb-xl-3 {
padding-bottom: 1rem !important;
}
.pb-xl-4 {
padding-bottom: 1.5rem !important;
}
.pb-xl-5 {
padding-bottom: 3rem !important;
}
.ps-xl-0 {
padding-left: 0 !important;
}
.ps-xl-1 {
padding-left: 0.25rem !important;
}
.ps-xl-2 {
padding-left: 0.5rem !important;
}
.ps-xl-3 {
padding-left: 1rem !important;
}
.ps-xl-4 {
padding-left: 1.5rem !important;
}
.ps-xl-5 {
padding-left: 3rem !important;
}
}
@media (min-width: 1400px) {
.d-xxl-inline {
display: inline !important;
}
.d-xxl-inline-block {
display: inline-block !important;
}
.d-xxl-block {
display: block !important;
}
.d-xxl-grid {
display: grid !important;
}
.d-xxl-table {
display: table !important;
}
.d-xxl-table-row {
display: table-row !important;
}
.d-xxl-table-cell {
display: table-cell !important;
}
.d-xxl-flex {
display: flex !important;
}
.d-xxl-inline-flex {
display: inline-flex !important;
}
.d-xxl-none {
display: none !important;
}
.flex-xxl-fill {
flex: 1 1 auto !important;
}
.flex-xxl-row {
flex-direction: row !important;
}
.flex-xxl-column {
flex-direction: column !important;
}
.flex-xxl-row-reverse {
flex-direction: row-reverse !important;
}
.flex-xxl-column-reverse {
flex-direction: column-reverse !important;
}
.flex-xxl-grow-0 {
flex-grow: 0 !important;
}
.flex-xxl-grow-1 {
flex-grow: 1 !important;
}
.flex-xxl-shrink-0 {
flex-shrink: 0 !important;
}
.flex-xxl-shrink-1 {
flex-shrink: 1 !important;
}
.flex-xxl-wrap {
flex-wrap: wrap !important;
}
.flex-xxl-nowrap {
flex-wrap: nowrap !important;
}
.flex-xxl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-xxl-start {
justify-content: flex-start !important;
}
.justify-content-xxl-end {
justify-content: flex-end !important;
}
.justify-content-xxl-center {
justify-content: center !important;
}
.justify-content-xxl-between {
justify-content: space-between !important;
}
.justify-content-xxl-around {
justify-content: space-around !important;
}
.justify-content-xxl-evenly {
justify-content: space-evenly !important;
}
.align-items-xxl-start {
align-items: flex-start !important;
}
.align-items-xxl-end {
align-items: flex-end !important;
}
.align-items-xxl-center {
align-items: center !important;
}
.align-items-xxl-baseline {
align-items: baseline !important;
}
.align-items-xxl-stretch {
align-items: stretch !important;
}
.align-content-xxl-start {
align-content: flex-start !important;
}
.align-content-xxl-end {
align-content: flex-end !important;
}
.align-content-xxl-center {
align-content: center !important;
}
.align-content-xxl-between {
align-content: space-between !important;
}
.align-content-xxl-around {
align-content: space-around !important;
}
.align-content-xxl-stretch {
align-content: stretch !important;
}
.align-self-xxl-auto {
align-self: auto !important;
}
.align-self-xxl-start {
align-self: flex-start !important;
}
.align-self-xxl-end {
align-self: flex-end !important;
}
.align-self-xxl-center {
align-self: center !important;
}
.align-self-xxl-baseline {
align-self: baseline !important;
}
.align-self-xxl-stretch {
align-self: stretch !important;
}
.order-xxl-first {
order: -1 !important;
}
.order-xxl-0 {
order: 0 !important;
}
.order-xxl-1 {
order: 1 !important;
}
.order-xxl-2 {
order: 2 !important;
}
.order-xxl-3 {
order: 3 !important;
}
.order-xxl-4 {
order: 4 !important;
}
.order-xxl-5 {
order: 5 !important;
}
.order-xxl-last {
order: 6 !important;
}
.m-xxl-0 {
margin: 0 !important;
}
.m-xxl-1 {
margin: 0.25rem !important;
}
.m-xxl-2 {
margin: 0.5rem !important;
}
.m-xxl-3 {
margin: 1rem !important;
}
.m-xxl-4 {
margin: 1.5rem !important;
}
.m-xxl-5 {
margin: 3rem !important;
}
.m-xxl-auto {
margin: auto !important;
}
.mx-xxl-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-xxl-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-xxl-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-xxl-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-xxl-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-xxl-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-xxl-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-xxl-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-xxl-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-xxl-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-xxl-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-xxl-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-xxl-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-xxl-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-xxl-0 {
margin-top: 0 !important;
}
.mt-xxl-1 {
margin-top: 0.25rem !important;
}
.mt-xxl-2 {
margin-top: 0.5rem !important;
}
.mt-xxl-3 {
margin-top: 1rem !important;
}
.mt-xxl-4 {
margin-top: 1.5rem !important;
}
.mt-xxl-5 {
margin-top: 3rem !important;
}
.mt-xxl-auto {
margin-top: auto !important;
}
.me-xxl-0 {
margin-right: 0 !important;
}
.me-xxl-1 {
margin-right: 0.25rem !important;
}
.me-xxl-2 {
margin-right: 0.5rem !important;
}
.me-xxl-3 {
margin-right: 1rem !important;
}
.me-xxl-4 {
margin-right: 1.5rem !important;
}
.me-xxl-5 {
margin-right: 3rem !important;
}
.me-xxl-auto {
margin-right: auto !important;
}
.mb-xxl-0 {
margin-bottom: 0 !important;
}
.mb-xxl-1 {
margin-bottom: 0.25rem !important;
}
.mb-xxl-2 {
margin-bottom: 0.5rem !important;
}
.mb-xxl-3 {
margin-bottom: 1rem !important;
}
.mb-xxl-4 {
margin-bottom: 1.5rem !important;
}
.mb-xxl-5 {
margin-bottom: 3rem !important;
}
.mb-xxl-auto {
margin-bottom: auto !important;
}
.ms-xxl-0 {
margin-left: 0 !important;
}
.ms-xxl-1 {
margin-left: 0.25rem !important;
}
.ms-xxl-2 {
margin-left: 0.5rem !important;
}
.ms-xxl-3 {
margin-left: 1rem !important;
}
.ms-xxl-4 {
margin-left: 1.5rem !important;
}
.ms-xxl-5 {
margin-left: 3rem !important;
}
.ms-xxl-auto {
margin-left: auto !important;
}
.p-xxl-0 {
padding: 0 !important;
}
.p-xxl-1 {
padding: 0.25rem !important;
}
.p-xxl-2 {
padding: 0.5rem !important;
}
.p-xxl-3 {
padding: 1rem !important;
}
.p-xxl-4 {
padding: 1.5rem !important;
}
.p-xxl-5 {
padding: 3rem !important;
}
.px-xxl-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-xxl-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-xxl-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-xxl-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-xxl-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-xxl-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-xxl-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-xxl-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-xxl-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-xxl-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-xxl-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-xxl-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-xxl-0 {
padding-top: 0 !important;
}
.pt-xxl-1 {
padding-top: 0.25rem !important;
}
.pt-xxl-2 {
padding-top: 0.5rem !important;
}
.pt-xxl-3 {
padding-top: 1rem !important;
}
.pt-xxl-4 {
padding-top: 1.5rem !important;
}
.pt-xxl-5 {
padding-top: 3rem !important;
}
.pe-xxl-0 {
padding-right: 0 !important;
}
.pe-xxl-1 {
padding-right: 0.25rem !important;
}
.pe-xxl-2 {
padding-right: 0.5rem !important;
}
.pe-xxl-3 {
padding-right: 1rem !important;
}
.pe-xxl-4 {
padding-right: 1.5rem !important;
}
.pe-xxl-5 {
padding-right: 3rem !important;
}
.pb-xxl-0 {
padding-bottom: 0 !important;
}
.pb-xxl-1 {
padding-bottom: 0.25rem !important;
}
.pb-xxl-2 {
padding-bottom: 0.5rem !important;
}
.pb-xxl-3 {
padding-bottom: 1rem !important;
}
.pb-xxl-4 {
padding-bottom: 1.5rem !important;
}
.pb-xxl-5 {
padding-bottom: 3rem !important;
}
.ps-xxl-0 {
padding-left: 0 !important;
}
.ps-xxl-1 {
padding-left: 0.25rem !important;
}
.ps-xxl-2 {
padding-left: 0.5rem !important;
}
.ps-xxl-3 {
padding-left: 1rem !important;
}
.ps-xxl-4 {
padding-left: 1.5rem !important;
}
.ps-xxl-5 {
padding-left: 3rem !important;
}
}
@media print {
.d-print-inline {
display: inline !important;
}
.d-print-inline-block {
display: inline-block !important;
}
.d-print-block {
display: block !important;
}
.d-print-grid {
display: grid !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: flex !important;
}
.d-print-inline-flex {
display: inline-flex !important;
}
.d-print-none {
display: none !important;
}
}
/*# sourceMappingURL=bootstrap-grid.css.map */
================================================
FILE: public/css/bootstrap-grid.rtl.css
================================================
/*!
* Bootstrap Grid v5.0.2 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
width: 100%;
padding-left: var(--bs-gutter-x, 0.75rem);
padding-right: var(--bs-gutter-x, 0.75rem);
margin-left: auto;
margin-right: auto;
}
@media (min-width: 576px) {
.container-sm, .container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container-md, .container-sm, .container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container-lg, .container-md, .container-sm, .container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container-xl, .container-lg, .container-md, .container-sm, .container {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
max-width: 1320px;
}
}
.row {
--bs-gutter-x: 1.5rem;
--bs-gutter-y: 0;
display: flex;
flex-wrap: wrap;
margin-top: calc(var(--bs-gutter-y) * -1);
margin-left: calc(var(--bs-gutter-x) * -.5);
margin-right: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
box-sizing: border-box;
flex-shrink: 0;
width: 100%;
max-width: 100%;
padding-left: calc(var(--bs-gutter-x) * .5);
padding-right: calc(var(--bs-gutter-x) * .5);
margin-top: var(--bs-gutter-y);
}
.col {
flex: 1 0 0%;
}
.row-cols-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
@media (min-width: 576px) {
.col-sm {
flex: 1 0 0%;
}
.row-cols-sm-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-sm-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-sm-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-sm-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-sm-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-sm-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-sm-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
}
@media (min-width: 768px) {
.col-md {
flex: 1 0 0%;
}
.row-cols-md-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-md-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-md-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-md-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-md-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-md-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-md-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
}
@media (min-width: 992px) {
.col-lg {
flex: 1 0 0%;
}
.row-cols-lg-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-lg-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-lg-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-lg-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-lg-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-lg-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-lg-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
}
@media (min-width: 1200px) {
.col-xl {
flex: 1 0 0%;
}
.row-cols-xl-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-xl-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-xl-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-xl-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-xl-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-xl-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-xl-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
}
@media (min-width: 1400px) {
.col-xxl {
flex: 1 0 0%;
}
.row-cols-xxl-auto > * {
flex: 0 0 auto;
width: auto;
}
.row-cols-xxl-1 > * {
flex: 0 0 auto;
width: 100%;
}
.row-cols-xxl-2 > * {
flex: 0 0 auto;
width: 50%;
}
.row-cols-xxl-3 > * {
flex: 0 0 auto;
width: 33.3333333333%;
}
.row-cols-xxl-4 > * {
flex: 0 0 auto;
width: 25%;
}
.row-cols-xxl-5 > * {
flex: 0 0 auto;
width: 20%;
}
.row-cols-xxl-6 > * {
flex: 0 0 auto;
width: 16.6666666667%;
}
}
.col-auto {
flex: 0 0 auto;
width: auto;
}
.col-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-3 {
flex: 0 0 auto;
width: 25%;
}
.col-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-6 {
flex: 0 0 auto;
width: 50%;
}
.col-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-9 {
flex: 0 0 auto;
width: 75%;
}
.col-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-1 {
margin-right: 8.33333333%;
}
.offset-2 {
margin-right: 16.66666667%;
}
.offset-3 {
margin-right: 25%;
}
.offset-4 {
margin-right: 33.33333333%;
}
.offset-5 {
margin-right: 41.66666667%;
}
.offset-6 {
margin-right: 50%;
}
.offset-7 {
margin-right: 58.33333333%;
}
.offset-8 {
margin-right: 66.66666667%;
}
.offset-9 {
margin-right: 75%;
}
.offset-10 {
margin-right: 83.33333333%;
}
.offset-11 {
margin-right: 91.66666667%;
}
.g-0,
.gx-0 {
--bs-gutter-x: 0;
}
.g-0,
.gy-0 {
--bs-gutter-y: 0;
}
.g-1,
.gx-1 {
--bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
--bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
--bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
--bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
--bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
--bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
--bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
--bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
--bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
--bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
.col-sm-auto {
flex: 0 0 auto;
width: auto;
}
.col-sm-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-sm-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-sm-3 {
flex: 0 0 auto;
width: 25%;
}
.col-sm-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-sm-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-sm-6 {
flex: 0 0 auto;
width: 50%;
}
.col-sm-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-sm-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-sm-9 {
flex: 0 0 auto;
width: 75%;
}
.col-sm-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-sm-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-sm-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-sm-0 {
margin-right: 0;
}
.offset-sm-1 {
margin-right: 8.33333333%;
}
.offset-sm-2 {
margin-right: 16.66666667%;
}
.offset-sm-3 {
margin-right: 25%;
}
.offset-sm-4 {
margin-right: 33.33333333%;
}
.offset-sm-5 {
margin-right: 41.66666667%;
}
.offset-sm-6 {
margin-right: 50%;
}
.offset-sm-7 {
margin-right: 58.33333333%;
}
.offset-sm-8 {
margin-right: 66.66666667%;
}
.offset-sm-9 {
margin-right: 75%;
}
.offset-sm-10 {
margin-right: 83.33333333%;
}
.offset-sm-11 {
margin-right: 91.66666667%;
}
.g-sm-0,
.gx-sm-0 {
--bs-gutter-x: 0;
}
.g-sm-0,
.gy-sm-0 {
--bs-gutter-y: 0;
}
.g-sm-1,
.gx-sm-1 {
--bs-gutter-x: 0.25rem;
}
.g-sm-1,
.gy-sm-1 {
--bs-gutter-y: 0.25rem;
}
.g-sm-2,
.gx-sm-2 {
--bs-gutter-x: 0.5rem;
}
.g-sm-2,
.gy-sm-2 {
--bs-gutter-y: 0.5rem;
}
.g-sm-3,
.gx-sm-3 {
--bs-gutter-x: 1rem;
}
.g-sm-3,
.gy-sm-3 {
--bs-gutter-y: 1rem;
}
.g-sm-4,
.gx-sm-4 {
--bs-gutter-x: 1.5rem;
}
.g-sm-4,
.gy-sm-4 {
--bs-gutter-y: 1.5rem;
}
.g-sm-5,
.gx-sm-5 {
--bs-gutter-x: 3rem;
}
.g-sm-5,
.gy-sm-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 768px) {
.col-md-auto {
flex: 0 0 auto;
width: auto;
}
.col-md-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-md-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-md-3 {
flex: 0 0 auto;
width: 25%;
}
.col-md-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-md-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-md-6 {
flex: 0 0 auto;
width: 50%;
}
.col-md-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-md-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-md-9 {
flex: 0 0 auto;
width: 75%;
}
.col-md-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-md-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-md-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-md-0 {
margin-right: 0;
}
.offset-md-1 {
margin-right: 8.33333333%;
}
.offset-md-2 {
margin-right: 16.66666667%;
}
.offset-md-3 {
margin-right: 25%;
}
.offset-md-4 {
margin-right: 33.33333333%;
}
.offset-md-5 {
margin-right: 41.66666667%;
}
.offset-md-6 {
margin-right: 50%;
}
.offset-md-7 {
margin-right: 58.33333333%;
}
.offset-md-8 {
margin-right: 66.66666667%;
}
.offset-md-9 {
margin-right: 75%;
}
.offset-md-10 {
margin-right: 83.33333333%;
}
.offset-md-11 {
margin-right: 91.66666667%;
}
.g-md-0,
.gx-md-0 {
--bs-gutter-x: 0;
}
.g-md-0,
.gy-md-0 {
--bs-gutter-y: 0;
}
.g-md-1,
.gx-md-1 {
--bs-gutter-x: 0.25rem;
}
.g-md-1,
.gy-md-1 {
--bs-gutter-y: 0.25rem;
}
.g-md-2,
.gx-md-2 {
--bs-gutter-x: 0.5rem;
}
.g-md-2,
.gy-md-2 {
--bs-gutter-y: 0.5rem;
}
.g-md-3,
.gx-md-3 {
--bs-gutter-x: 1rem;
}
.g-md-3,
.gy-md-3 {
--bs-gutter-y: 1rem;
}
.g-md-4,
.gx-md-4 {
--bs-gutter-x: 1.5rem;
}
.g-md-4,
.gy-md-4 {
--bs-gutter-y: 1.5rem;
}
.g-md-5,
.gx-md-5 {
--bs-gutter-x: 3rem;
}
.g-md-5,
.gy-md-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 992px) {
.col-lg-auto {
flex: 0 0 auto;
width: auto;
}
.col-lg-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-lg-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-lg-3 {
flex: 0 0 auto;
width: 25%;
}
.col-lg-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-lg-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-lg-6 {
flex: 0 0 auto;
width: 50%;
}
.col-lg-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-lg-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-lg-9 {
flex: 0 0 auto;
width: 75%;
}
.col-lg-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-lg-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-lg-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-lg-0 {
margin-right: 0;
}
.offset-lg-1 {
margin-right: 8.33333333%;
}
.offset-lg-2 {
margin-right: 16.66666667%;
}
.offset-lg-3 {
margin-right: 25%;
}
.offset-lg-4 {
margin-right: 33.33333333%;
}
.offset-lg-5 {
margin-right: 41.66666667%;
}
.offset-lg-6 {
margin-right: 50%;
}
.offset-lg-7 {
margin-right: 58.33333333%;
}
.offset-lg-8 {
margin-right: 66.66666667%;
}
.offset-lg-9 {
margin-right: 75%;
}
.offset-lg-10 {
margin-right: 83.33333333%;
}
.offset-lg-11 {
margin-right: 91.66666667%;
}
.g-lg-0,
.gx-lg-0 {
--bs-gutter-x: 0;
}
.g-lg-0,
.gy-lg-0 {
--bs-gutter-y: 0;
}
.g-lg-1,
.gx-lg-1 {
--bs-gutter-x: 0.25rem;
}
.g-lg-1,
.gy-lg-1 {
--bs-gutter-y: 0.25rem;
}
.g-lg-2,
.gx-lg-2 {
--bs-gutter-x: 0.5rem;
}
.g-lg-2,
.gy-lg-2 {
--bs-gutter-y: 0.5rem;
}
.g-lg-3,
.gx-lg-3 {
--bs-gutter-x: 1rem;
}
.g-lg-3,
.gy-lg-3 {
--bs-gutter-y: 1rem;
}
.g-lg-4,
.gx-lg-4 {
--bs-gutter-x: 1.5rem;
}
.g-lg-4,
.gy-lg-4 {
--bs-gutter-y: 1.5rem;
}
.g-lg-5,
.gx-lg-5 {
--bs-gutter-x: 3rem;
}
.g-lg-5,
.gy-lg-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1200px) {
.col-xl-auto {
flex: 0 0 auto;
width: auto;
}
.col-xl-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-xl-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-xl-3 {
flex: 0 0 auto;
width: 25%;
}
.col-xl-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-xl-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-xl-6 {
flex: 0 0 auto;
width: 50%;
}
.col-xl-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-xl-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-xl-9 {
flex: 0 0 auto;
width: 75%;
}
.col-xl-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-xl-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-xl-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-xl-0 {
margin-right: 0;
}
.offset-xl-1 {
margin-right: 8.33333333%;
}
.offset-xl-2 {
margin-right: 16.66666667%;
}
.offset-xl-3 {
margin-right: 25%;
}
.offset-xl-4 {
margin-right: 33.33333333%;
}
.offset-xl-5 {
margin-right: 41.66666667%;
}
.offset-xl-6 {
margin-right: 50%;
}
.offset-xl-7 {
margin-right: 58.33333333%;
}
.offset-xl-8 {
margin-right: 66.66666667%;
}
.offset-xl-9 {
margin-right: 75%;
}
.offset-xl-10 {
margin-right: 83.33333333%;
}
.offset-xl-11 {
margin-right: 91.66666667%;
}
.g-xl-0,
.gx-xl-0 {
--bs-gutter-x: 0;
}
.g-xl-0,
.gy-xl-0 {
--bs-gutter-y: 0;
}
.g-xl-1,
.gx-xl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xl-1,
.gy-xl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xl-2,
.gx-xl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xl-2,
.gy-xl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xl-3,
.gx-xl-3 {
--bs-gutter-x: 1rem;
}
.g-xl-3,
.gy-xl-3 {
--bs-gutter-y: 1rem;
}
.g-xl-4,
.gx-xl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xl-4,
.gy-xl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xl-5,
.gx-xl-5 {
--bs-gutter-x: 3rem;
}
.g-xl-5,
.gy-xl-5 {
--bs-gutter-y: 3rem;
}
}
@media (min-width: 1400px) {
.col-xxl-auto {
flex: 0 0 auto;
width: auto;
}
.col-xxl-1 {
flex: 0 0 auto;
width: 8.33333333%;
}
.col-xxl-2 {
flex: 0 0 auto;
width: 16.66666667%;
}
.col-xxl-3 {
flex: 0 0 auto;
width: 25%;
}
.col-xxl-4 {
flex: 0 0 auto;
width: 33.33333333%;
}
.col-xxl-5 {
flex: 0 0 auto;
width: 41.66666667%;
}
.col-xxl-6 {
flex: 0 0 auto;
width: 50%;
}
.col-xxl-7 {
flex: 0 0 auto;
width: 58.33333333%;
}
.col-xxl-8 {
flex: 0 0 auto;
width: 66.66666667%;
}
.col-xxl-9 {
flex: 0 0 auto;
width: 75%;
}
.col-xxl-10 {
flex: 0 0 auto;
width: 83.33333333%;
}
.col-xxl-11 {
flex: 0 0 auto;
width: 91.66666667%;
}
.col-xxl-12 {
flex: 0 0 auto;
width: 100%;
}
.offset-xxl-0 {
margin-right: 0;
}
.offset-xxl-1 {
margin-right: 8.33333333%;
}
.offset-xxl-2 {
margin-right: 16.66666667%;
}
.offset-xxl-3 {
margin-right: 25%;
}
.offset-xxl-4 {
margin-right: 33.33333333%;
}
.offset-xxl-5 {
margin-right: 41.66666667%;
}
.offset-xxl-6 {
margin-right: 50%;
}
.offset-xxl-7 {
margin-right: 58.33333333%;
}
.offset-xxl-8 {
margin-right: 66.66666667%;
}
.offset-xxl-9 {
margin-right: 75%;
}
.offset-xxl-10 {
margin-right: 83.33333333%;
}
.offset-xxl-11 {
margin-right: 91.66666667%;
}
.g-xxl-0,
.gx-xxl-0 {
--bs-gutter-x: 0;
}
.g-xxl-0,
.gy-xxl-0 {
--bs-gutter-y: 0;
}
.g-xxl-1,
.gx-xxl-1 {
--bs-gutter-x: 0.25rem;
}
.g-xxl-1,
.gy-xxl-1 {
--bs-gutter-y: 0.25rem;
}
.g-xxl-2,
.gx-xxl-2 {
--bs-gutter-x: 0.5rem;
}
.g-xxl-2,
.gy-xxl-2 {
--bs-gutter-y: 0.5rem;
}
.g-xxl-3,
.gx-xxl-3 {
--bs-gutter-x: 1rem;
}
.g-xxl-3,
.gy-xxl-3 {
--bs-gutter-y: 1rem;
}
.g-xxl-4,
.gx-xxl-4 {
--bs-gutter-x: 1.5rem;
}
.g-xxl-4,
.gy-xxl-4 {
--bs-gutter-y: 1.5rem;
}
.g-xxl-5,
.gx-xxl-5 {
--bs-gutter-x: 3rem;
}
.g-xxl-5,
.gy-xxl-5 {
--bs-gutter-y: 3rem;
}
}
.d-inline {
display: inline !important;
}
.d-inline-block {
display: inline-block !important;
}
.d-block {
display: block !important;
}
.d-grid {
display: grid !important;
}
.d-table {
display: table !important;
}
.d-table-row {
display: table-row !important;
}
.d-table-cell {
display: table-cell !important;
}
.d-flex {
display: flex !important;
}
.d-inline-flex {
display: inline-flex !important;
}
.d-none {
display: none !important;
}
.flex-fill {
flex: 1 1 auto !important;
}
.flex-row {
flex-direction: row !important;
}
.flex-column {
flex-direction: column !important;
}
.flex-row-reverse {
flex-direction: row-reverse !important;
}
.flex-column-reverse {
flex-direction: column-reverse !important;
}
.flex-grow-0 {
flex-grow: 0 !important;
}
.flex-grow-1 {
flex-grow: 1 !important;
}
.flex-shrink-0 {
flex-shrink: 0 !important;
}
.flex-shrink-1 {
flex-shrink: 1 !important;
}
.flex-wrap {
flex-wrap: wrap !important;
}
.flex-nowrap {
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-start {
justify-content: flex-start !important;
}
.justify-content-end {
justify-content: flex-end !important;
}
.justify-content-center {
justify-content: center !important;
}
.justify-content-between {
justify-content: space-between !important;
}
.justify-content-around {
justify-content: space-around !important;
}
.justify-content-evenly {
justify-content: space-evenly !important;
}
.align-items-start {
align-items: flex-start !important;
}
.align-items-end {
align-items: flex-end !important;
}
.align-items-center {
align-items: center !important;
}
.align-items-baseline {
align-items: baseline !important;
}
.align-items-stretch {
align-items: stretch !important;
}
.align-content-start {
align-content: flex-start !important;
}
.align-content-end {
align-content: flex-end !important;
}
.align-content-center {
align-content: center !important;
}
.align-content-between {
align-content: space-between !important;
}
.align-content-around {
align-content: space-around !important;
}
.align-content-stretch {
align-content: stretch !important;
}
.align-self-auto {
align-self: auto !important;
}
.align-self-start {
align-self: flex-start !important;
}
.align-self-end {
align-self: flex-end !important;
}
.align-self-center {
align-self: center !important;
}
.align-self-baseline {
align-self: baseline !important;
}
.align-self-stretch {
align-self: stretch !important;
}
.order-first {
order: -1 !important;
}
.order-0 {
order: 0 !important;
}
.order-1 {
order: 1 !important;
}
.order-2 {
order: 2 !important;
}
.order-3 {
order: 3 !important;
}
.order-4 {
order: 4 !important;
}
.order-5 {
order: 5 !important;
}
.order-last {
order: 6 !important;
}
.m-0 {
margin: 0 !important;
}
.m-1 {
margin: 0.25rem !important;
}
.m-2 {
margin: 0.5rem !important;
}
.m-3 {
margin: 1rem !important;
}
.m-4 {
margin: 1.5rem !important;
}
.m-5 {
margin: 3rem !important;
}
.m-auto {
margin: auto !important;
}
.mx-0 {
margin-left: 0 !important;
margin-right: 0 !important;
}
.mx-1 {
margin-left: 0.25rem !important;
margin-right: 0.25rem !important;
}
.mx-2 {
margin-left: 0.5rem !important;
margin-right: 0.5rem !important;
}
.mx-3 {
margin-left: 1rem !important;
margin-right: 1rem !important;
}
.mx-4 {
margin-left: 1.5rem !important;
margin-right: 1.5rem !important;
}
.mx-5 {
margin-left: 3rem !important;
margin-right: 3rem !important;
}
.mx-auto {
margin-left: auto !important;
margin-right: auto !important;
}
.my-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-0 {
margin-top: 0 !important;
}
.mt-1 {
margin-top: 0.25rem !important;
}
.mt-2 {
margin-top: 0.5rem !important;
}
.mt-3 {
margin-top: 1rem !important;
}
.mt-4 {
margin-top: 1.5rem !important;
}
.mt-5 {
margin-top: 3rem !important;
}
.mt-auto {
margin-top: auto !important;
}
.me-0 {
margin-left: 0 !important;
}
.me-1 {
margin-left: 0.25rem !important;
}
.me-2 {
margin-left: 0.5rem !important;
}
.me-3 {
margin-left: 1rem !important;
}
.me-4 {
margin-left: 1.5rem !important;
}
.me-5 {
margin-left: 3rem !important;
}
.me-auto {
margin-left: auto !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mb-1 {
margin-bottom: 0.25rem !important;
}
.mb-2 {
margin-bottom: 0.5rem !important;
}
.mb-3 {
margin-bottom: 1rem !important;
}
.mb-4 {
margin-bottom: 1.5rem !important;
}
.mb-5 {
margin-bottom: 3rem !important;
}
.mb-auto {
margin-bottom: auto !important;
}
.ms-0 {
margin-right: 0 !important;
}
.ms-1 {
margin-right: 0.25rem !important;
}
.ms-2 {
margin-right: 0.5rem !important;
}
.ms-3 {
margin-right: 1rem !important;
}
.ms-4 {
margin-right: 1.5rem !important;
}
.ms-5 {
margin-right: 3rem !important;
}
.ms-auto {
margin-right: auto !important;
}
.p-0 {
padding: 0 !important;
}
.p-1 {
padding: 0.25rem !important;
}
.p-2 {
padding: 0.5rem !important;
}
.p-3 {
padding: 1rem !important;
}
.p-4 {
padding: 1.5rem !important;
}
.p-5 {
padding: 3rem !important;
}
.px-0 {
padding-left: 0 !important;
padding-right: 0 !important;
}
.px-1 {
padding-left: 0.25rem !important;
padding-right: 0.25rem !important;
}
.px-2 {
padding-left: 0.5rem !important;
padding-right: 0.5rem !important;
}
.px-3 {
padding-left: 1rem !important;
padding-right: 1rem !important;
}
.px-4 {
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
}
.px-5 {
padding-left: 3rem !important;
padding-right: 3rem !important;
}
.py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-0 {
padding-top: 0 !important;
}
.pt-1 {
padding-top: 0.25rem !important;
}
.pt-2 {
padding-top: 0.5rem !important;
}
.pt-3 {
padding-top: 1rem !important;
}
.pt-4 {
padding-top: 1.5rem !important;
}
.pt-5 {
padding-top: 3rem !important;
}
.pe-0 {
padding-left: 0 !important;
}
.pe-1 {
padding-left: 0.25rem !important;
}
.pe-2 {
padding-left: 0.5rem !important;
}
.pe-3 {
padding-left: 1rem !important;
}
.pe-4 {
padding-left: 1.5rem !important;
}
.pe-5 {
padding-left: 3rem !important;
}
.pb-0 {
padding-bottom: 0 !important;
}
.pb-1 {
padding-bottom: 0.25rem !important;
}
.pb-2 {
padding-bottom: 0.5rem !important;
}
.pb-3 {
padding-bottom: 1rem !important;
}
.pb-4 {
padding-bottom: 1.5rem !important;
}
.pb-5 {
padding-bottom: 3rem !important;
}
.ps-0 {
padding-right: 0 !important;
}
.ps-1 {
padding-right: 0.25rem !important;
}
.ps-2 {
padding-right: 0.5rem !important;
}
.ps-3 {
padding-right: 1rem !important;
}
.ps-4 {
padding-right: 1.5rem !important;
}
.ps-5 {
padding-right: 3rem !important;
}
@media (min-width: 576px) {
.d-sm-inline {
display: inline !important;
}
.d-sm-inline-block {
display: inline-block !important;
}
.d-sm-block {
display: block !important;
}
.d-sm-grid {
display: grid !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: flex !important;
}
.d-sm-inline-flex {
display: inline-flex !important;
}
.d-sm-none {
display: none !important;
}
.flex-sm-fill {
flex: 1 1 auto !important;
}
.flex-sm-row {
flex-direction: row !important;
}
.flex-sm-column {
flex-direction: column !important;
}
.flex-sm-row-reverse {
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
flex-direction: column-reverse !important;
}
.flex-sm-grow-0 {
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
flex-shrink: 1 !important;
}
.flex-sm-wrap {
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-sm-start {
justify-content: flex-start !important;
}
.justify-content-sm-end {
justify-content: flex-end !important;
}
.justify-content-sm-center {
justify-content: center !important;
}
.justify-content-sm-between {
justify-content: space-between !important;
}
.justify-content-sm-around {
justify-content: space-around !important;
}
.justify-content-sm-evenly {
justify-content: space-evenly !important;
}
.align-items-sm-start {
align-items: flex-start !important;
}
.align-items-sm-end {
align-items: flex-end !important;
}
.align-items-sm-center {
align-items: center !important;
}
.align-items-sm-baseline {
align-items: baseline !important;
}
.align-items-sm-stretch {
align-items: stretch !important;
}
.align-content-sm-start {
align-content: flex-start !important;
}
.align-content-sm-end {
align-content: flex-end !important;
}
.align-content-sm-center {
align-content: center !important;
}
.align-content-sm-between {
align-content: space-between !important;
}
.align-content-sm-around {
align-content: space-around !important;
}
.align-content-sm-stretch {
align-content: stretch !important;
}
.align-self-sm-auto {
align-self: auto !important;
}
.align-self-sm-start {
align-self: flex-start !important;
}
.align-self-sm-end {
align-self: flex-end !important;
}
.align-self-sm-center {
align-self: center !important;
}
.align-self-sm-baseline {
align-self: baseline !important;
}
.align-self-sm-stretch {
align-self: stretch !important;
}
.order-sm-first {
order: -1 !important;
}
.order-sm-0 {
order: 0 !important;
}
.order-sm-1 {
order: 1 !important;
}
.order-sm-2 {
order: 2 !important;
}
.order-sm-3 {
order: 3 !important;
}
.order-sm-4 {
order: 4 !important;
}
.order-sm-5 {
order: 5 !important;
}
.order-sm-last {
order: 6 !important;
}
.m-sm-0 {
margin: 0 !important;
}
.m-sm-1 {
margin: 0.25rem !important;
}
.m-sm-2 {
margin: 0.5rem !important;
}
.m-sm-3 {
margin: 1rem !important;
}
.m-sm-4 {
margin: 1.5rem !important;
}
.m-sm-5 {
margin: 3rem !important;
}
.m-sm-auto {
margin: auto !important;
}
.mx-sm-0 {
margin-left: 0 !important;
margin-right: 0 !important;
}
.mx-sm-1 {
margin-left: 0.25rem !important;
margin-right: 0.25rem !important;
}
.mx-sm-2 {
margin-left: 0.5rem !important;
margin-right: 0.5rem !important;
}
.mx-sm-3 {
margin-left: 1rem !important;
margin-right: 1rem !important;
}
.mx-sm-4 {
margin-left: 1.5rem !important;
margin-right: 1.5rem !important;
}
.mx-sm-5 {
margin-left: 3rem !important;
margin-right: 3rem !important;
}
.mx-sm-auto {
margin-left: auto !important;
margin-right: auto !important;
}
.my-sm-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-sm-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-sm-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-sm-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-sm-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-sm-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-sm-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-sm-0 {
margin-top: 0 !important;
}
.mt-sm-1 {
margin-top: 0.25rem !important;
}
.mt-sm-2 {
margin-top: 0.5rem !important;
}
.mt-sm-3 {
margin-top: 1rem !important;
}
.mt-sm-4 {
margin-top: 1.5rem !important;
}
.mt-sm-5 {
margin-top: 3rem !important;
}
.mt-sm-auto {
margin-top: auto !important;
}
.me-sm-0 {
margin-left: 0 !important;
}
.me-sm-1 {
margin-left: 0.25rem !important;
}
.me-sm-2 {
margin-left: 0.5rem !important;
}
.me-sm-3 {
margin-left: 1rem !important;
}
.me-sm-4 {
margin-left: 1.5rem !important;
}
.me-sm-5 {
margin-left: 3rem !important;
}
.me-sm-auto {
margin-left: auto !important;
}
.mb-sm-0 {
margin-bottom: 0 !important;
}
.mb-sm-1 {
margin-bottom: 0.25rem !important;
}
.mb-sm-2 {
margin-bottom: 0.5rem !important;
}
.mb-sm-3 {
margin-bottom: 1rem !important;
}
.mb-sm-4 {
margin-bottom: 1.5rem !important;
}
.mb-sm-5 {
margin-bottom: 3rem !important;
}
.mb-sm-auto {
margin-bottom: auto !important;
}
.ms-sm-0 {
margin-right: 0 !important;
}
.ms-sm-1 {
margin-right: 0.25rem !important;
}
.ms-sm-2 {
margin-right: 0.5rem !important;
}
.ms-sm-3 {
margin-right: 1rem !important;
}
.ms-sm-4 {
margin-right: 1.5rem !important;
}
.ms-sm-5 {
margin-right: 3rem !important;
}
.ms-sm-auto {
margin-right: auto !important;
}
.p-sm-0 {
padding: 0 !important;
}
.p-sm-1 {
padding: 0.25rem !important;
}
.p-sm-2 {
padding: 0.5rem !important;
}
.p-sm-3 {
padding: 1rem !important;
}
.p-sm-4 {
padding: 1.5rem !important;
}
.p-sm-5 {
padding: 3rem !important;
}
.px-sm-0 {
padding-left: 0 !important;
padding-right: 0 !important;
}
.px-sm-1 {
padding-left: 0.25rem !important;
padding-right: 0.25rem !important;
}
.px-sm-2 {
padding-left: 0.5rem !important;
padding-right: 0.5rem !important;
}
.px-sm-3 {
padding-left: 1rem !important;
padding-right: 1rem !important;
}
.px-sm-4 {
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
}
.px-sm-5 {
padding-left: 3rem !important;
padding-right: 3rem !important;
}
.py-sm-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-sm-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-sm-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-sm-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-sm-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-sm-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-sm-0 {
padding-top: 0 !important;
}
.pt-sm-1 {
padding-top: 0.25rem !important;
}
.pt-sm-2 {
padding-top: 0.5rem !important;
}
.pt-sm-3 {
padding-top: 1rem !important;
}
.pt-sm-4 {
padding-top: 1.5rem !important;
}
.pt-sm-5 {
padding-top: 3rem !important;
}
.pe-sm-0 {
padding-left: 0 !important;
}
.pe-sm-1 {
padding-left: 0.25rem !important;
}
.pe-sm-2 {
padding-left: 0.5rem !important;
}
.pe-sm-3 {
padding-left: 1rem !important;
}
.pe-sm-4 {
padding-left: 1.5rem !important;
}
.pe-sm-5 {
padding-left: 3rem !important;
}
.pb-sm-0 {
padding-bottom: 0 !important;
}
.pb-sm-1 {
padding-bottom: 0.25rem !important;
}
.pb-sm-2 {
padding-bottom: 0.5rem !important;
}
.pb-sm-3 {
padding-bottom: 1rem !important;
}
.pb-sm-4 {
padding-bottom: 1.5rem !important;
}
.pb-sm-5 {
padding-bottom: 3rem !important;
}
.ps-sm-0 {
padding-right: 0 !important;
}
.ps-sm-1 {
padding-right: 0.25rem !important;
}
.ps-sm-2 {
padding-right: 0.5rem !important;
}
.ps-sm-3 {
padding-right: 1rem !important;
}
.ps-sm-4 {
padding-right: 1.5rem !important;
}
.ps-sm-5 {
padding-right: 3rem !important;
}
}
@media (min-width: 768px) {
.d-md-inline {
display: inline !important;
}
.d-md-inline-block {
display: inline-block !important;
}
.d-md-block {
display: block !important;
}
.d-md-grid {
display: grid !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: flex !important;
}
.d-md-inline-flex {
display: inline-flex !important;
}
.d-md-none {
display: none !important;
}
.flex-md-fill {
flex: 1 1 auto !important;
}
.flex-md-row {
flex-direction: row !important;
}
.flex-md-column {
flex-direction: column !important;
}
.flex-md-row-reverse {
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
flex-direction: column-reverse !important;
}
.flex-md-grow-0 {
flex-grow: 0 !important;
}
.flex-md-grow-1 {
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
flex-shrink: 1 !important;
}
.flex-md-wrap {
flex-wrap: wrap !important;
}
.flex-md-nowrap {
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-md-start {
justify-content: flex-start !important;
}
.justify-content-md-end {
justify-content: flex-end !important;
}
.justify-content-md-center {
justify-content: center !important;
}
.justify-content-md-between {
justify-content: space-between !important;
}
.justify-content-md-around {
justify-content: space-around !important;
}
.justify-content-md-evenly {
justify-content: space-evenly !important;
}
.align-items-md-start {
align-items: flex-start !important;
}
.align-items-md-end {
align-items: flex-end !important;
}
.align-items-md-center {
align-items: center !important;
}
.align-items-md-baseline {
align-items: baseline !important;
}
.align-items-md-stretch {
align-items: stretch !important;
}
.align-content-md-start {
align-content: flex-start !important;
}
.align-content-md-end {
align-content: flex-end !important;
}
.align-content-md-center {
align-content: center !important;
}
.align-content-md-between {
align-content: space-between !important;
}
.align-content-md-around {
align-content: space-around !important;
}
.align-content-md-stretch {
align-content: stretch !important;
}
.align-self-md-auto {
align-self: auto !important;
}
.align-self-md-start {
align-self: flex-start !important;
}
.align-self-md-end {
align-self: flex-end !important;
}
.align-self-md-center {
align-self: center !important;
}
.align-self-md-baseline {
align-self: baseline !important;
}
.align-self-md-stretch {
align-self: stretch !important;
}
.order-md-first {
order: -1 !important;
}
.order-md-0 {
order: 0 !important;
}
.order-md-1 {
order: 1 !important;
}
.order-md-2 {
order: 2 !important;
}
.order-md-3 {
order: 3 !important;
}
.order-md-4 {
order: 4 !important;
}
.order-md-5 {
order: 5 !important;
}
.order-md-last {
order: 6 !important;
}
.m-md-0 {
margin: 0 !important;
}
.m-md-1 {
margin: 0.25rem !important;
}
.m-md-2 {
margin: 0.5rem !important;
}
.m-md-3 {
margin: 1rem !important;
}
.m-md-4 {
margin: 1.5rem !important;
}
.m-md-5 {
margin: 3rem !important;
}
.m-md-auto {
margin: auto !important;
}
.mx-md-0 {
margin-left: 0 !important;
margin-right: 0 !important;
}
.mx-md-1 {
margin-left: 0.25rem !important;
margin-right: 0.25rem !important;
}
.mx-md-2 {
margin-left: 0.5rem !important;
margin-right: 0.5rem !important;
}
.mx-md-3 {
margin-left: 1rem !important;
margin-right: 1rem !important;
}
.mx-md-4 {
margin-left: 1.5rem !important;
margin-right: 1.5rem !important;
}
.mx-md-5 {
margin-left: 3rem !important;
margin-right: 3rem !important;
}
.mx-md-auto {
margin-left: auto !important;
margin-right: auto !important;
}
.my-md-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-md-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-md-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-md-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-md-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-md-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-md-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-md-0 {
margin-top: 0 !important;
}
.mt-md-1 {
margin-top: 0.25rem !important;
}
.mt-md-2 {
margin-top: 0.5rem !important;
}
.mt-md-3 {
margin-top: 1rem !important;
}
.mt-md-4 {
margin-top: 1.5rem !important;
}
.mt-md-5 {
margin-top: 3rem !important;
}
.mt-md-auto {
margin-top: auto !important;
}
.me-md-0 {
margin-left: 0 !important;
}
.me-md-1 {
margin-left: 0.25rem !important;
}
.me-md-2 {
margin-left: 0.5rem !important;
}
.me-md-3 {
margin-left: 1rem !important;
}
.me-md-4 {
margin-left: 1.5rem !important;
}
.me-md-5 {
margin-left: 3rem !important;
}
.me-md-auto {
margin-left: auto !important;
}
.mb-md-0 {
margin-bottom: 0 !important;
}
.mb-md-1 {
margin-bottom: 0.25rem !important;
}
.mb-md-2 {
margin-bottom: 0.5rem !important;
}
.mb-md-3 {
margin-bottom: 1rem !important;
}
.mb-md-4 {
margin-bottom: 1.5rem !important;
}
.mb-md-5 {
margin-bottom: 3rem !important;
}
.mb-md-auto {
margin-bottom: auto !important;
}
.ms-md-0 {
margin-right: 0 !important;
}
.ms-md-1 {
margin-right: 0.25rem !important;
}
.ms-md-2 {
margin-right: 0.5rem !important;
}
.ms-md-3 {
margin-right: 1rem !important;
}
.ms-md-4 {
margin-right: 1.5rem !important;
}
.ms-md-5 {
margin-right: 3rem !important;
}
.ms-md-auto {
margin-right: auto !important;
}
.p-md-0 {
padding: 0 !important;
}
.p-md-1 {
padding: 0.25rem !important;
}
.p-md-2 {
padding: 0.5rem !important;
}
.p-md-3 {
padding: 1rem !important;
}
.p-md-4 {
padding: 1.5rem !important;
}
.p-md-5 {
padding: 3rem !important;
}
.px-md-0 {
padding-left: 0 !important;
padding-right: 0 !important;
}
.px-md-1 {
padding-left: 0.25rem !important;
padding-right: 0.25rem !important;
}
.px-md-2 {
padding-left: 0.5rem !important;
padding-right: 0.5rem !important;
}
.px-md-3 {
padding-left: 1rem !important;
padding-right: 1rem !important;
}
.px-md-4 {
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
}
.px-md-5 {
padding-left: 3rem !important;
padding-right: 3rem !important;
}
.py-md-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-md-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-md-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-md-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-md-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-md-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-md-0 {
padding-top: 0 !important;
}
.pt-md-1 {
padding-top: 0.25rem !important;
}
.pt-md-2 {
padding-top: 0.5rem !important;
}
.pt-md-3 {
padding-top: 1rem !important;
}
.pt-md-4 {
padding-top: 1.5rem !important;
}
.pt-md-5 {
padding-top: 3rem !important;
}
.pe-md-0 {
padding-left: 0 !important;
}
.pe-md-1 {
padding-left: 0.25rem !important;
}
.pe-md-2 {
padding-left: 0.5rem !important;
}
.pe-md-3 {
padding-left: 1rem !important;
}
.pe-md-4 {
padding-left: 1.5rem !important;
}
.pe-md-5 {
padding-left: 3rem !important;
}
.pb-md-0 {
padding-bottom: 0 !important;
}
.pb-md-1 {
padding-bottom: 0.25rem !important;
}
.pb-md-2 {
padding-bottom: 0.5rem !important;
}
.pb-md-3 {
padding-bottom: 1rem !important;
}
.pb-md-4 {
padding-bottom: 1.5rem !important;
}
.pb-md-5 {
padding-bottom: 3rem !important;
}
.ps-md-0 {
padding-right: 0 !important;
}
.ps-md-1 {
padding-right: 0.25rem !important;
}
.ps-md-2 {
padding-right: 0.5rem !important;
}
.ps-md-3 {
padding-right: 1rem !important;
}
.ps-md-4 {
padding-right: 1.5rem !important;
}
.ps-md-5 {
padding-right: 3rem !important;
}
}
@media (min-width: 992px) {
.d-lg-inline {
display: inline !important;
}
.d-lg-inline-block {
display: inline-block !important;
}
.d-lg-block {
display: block !important;
}
.d-lg-grid {
display: grid !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: flex !important;
}
.d-lg-inline-flex {
display: inline-flex !important;
}
.d-lg-none {
display: none !important;
}
.flex-lg-fill {
flex: 1 1 auto !important;
}
.flex-lg-row {
flex-direction: row !important;
}
.flex-lg-column {
flex-direction: column !important;
}
.flex-lg-row-reverse {
flex-direction: row-reverse !important;
}
.flex-lg-column-reverse {
flex-direction: column-reverse !important;
}
.flex-lg-grow-0 {
flex-grow: 0 !important;
}
.flex-lg-grow-1 {
flex-grow: 1 !important;
}
.flex-lg-shrink-0 {
flex-shrink: 0 !important;
}
.flex-lg-shrink-1 {
flex-shrink: 1 !important;
}
.flex-lg-wrap {
flex-wrap: wrap !important;
}
.flex-lg-nowrap {
flex-wrap: nowrap !important;
}
.flex-lg-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-lg-start {
justify-content: flex-start !important;
}
.justify-content-lg-end {
justify-content: flex-end !important;
}
.justify-content-lg-center {
justify-content: center !important;
}
.justify-content-lg-between {
justify-content: space-between !important;
}
.justify-content-lg-around {
justify-content: space-around !important;
}
.justify-content-lg-evenly {
justify-content: space-evenly !important;
}
.align-items-lg-start {
align-items: flex-start !important;
}
.align-items-lg-end {
align-items: flex-end !important;
}
.align-items-lg-center {
align-items: center !important;
}
.align-items-lg-baseline {
align-items: baseline !important;
}
.align-items-lg-stretch {
align-items: stretch !important;
}
.align-content-lg-start {
align-content: flex-start !important;
}
.align-content-lg-end {
align-content: flex-end !important;
}
.align-content-lg-center {
align-content: center !important;
}
.align-content-lg-between {
align-content: space-between !important;
}
.align-content-lg-around {
align-content: space-around !important;
}
.align-content-lg-stretch {
align-content: stretch !important;
}
.align-self-lg-auto {
align-self: auto !important;
}
.align-self-lg-start {
align-self: flex-start !important;
}
.align-self-lg-end {
align-self: flex-end !important;
}
.align-self-lg-center {
align-self: center !important;
}
.align-self-lg-baseline {
align-self: baseline !important;
}
.align-self-lg-stretch {
align-self: stretch !important;
}
.order-lg-first {
order: -1 !important;
}
.order-lg-0 {
order: 0 !important;
}
.order-lg-1 {
order: 1 !important;
}
.order-lg-2 {
order: 2 !important;
}
.order-lg-3 {
order: 3 !important;
}
.order-lg-4 {
order: 4 !important;
}
.order-lg-5 {
order: 5 !important;
}
.order-lg-last {
order: 6 !important;
}
.m-lg-0 {
margin: 0 !important;
}
.m-lg-1 {
margin: 0.25rem !important;
}
.m-lg-2 {
margin: 0.5rem !important;
}
.m-lg-3 {
margin: 1rem !important;
}
.m-lg-4 {
margin: 1.5rem !important;
}
.m-lg-5 {
margin: 3rem !important;
}
.m-lg-auto {
margin: auto !important;
}
.mx-lg-0 {
margin-left: 0 !important;
margin-right: 0 !important;
}
.mx-lg-1 {
margin-left: 0.25rem !important;
margin-right: 0.25rem !important;
}
.mx-lg-2 {
margin-left: 0.5rem !important;
margin-right: 0.5rem !important;
}
.mx-lg-3 {
margin-left: 1rem !important;
margin-right: 1rem !important;
}
.mx-lg-4 {
margin-left: 1.5rem !important;
margin-right: 1.5rem !important;
}
.mx-lg-5 {
margin-left: 3rem !important;
margin-right: 3rem !important;
}
.mx-lg-auto {
margin-left: auto !important;
margin-right: auto !important;
}
.my-lg-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-lg-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-lg-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-lg-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-lg-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-lg-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-lg-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-lg-0 {
margin-top: 0 !important;
}
.mt-lg-1 {
margin-top: 0.25rem !important;
}
.mt-lg-2 {
margin-top: 0.5rem !important;
}
.mt-lg-3 {
margin-top: 1rem !important;
}
.mt-lg-4 {
margin-top: 1.5rem !important;
}
.mt-lg-5 {
margin-top: 3rem !important;
}
.mt-lg-auto {
margin-top: auto !important;
}
.me-lg-0 {
margin-left: 0 !important;
}
.me-lg-1 {
margin-left: 0.25rem !important;
}
.me-lg-2 {
margin-left: 0.5rem !important;
}
.me-lg-3 {
margin-left: 1rem !important;
}
.me-lg-4 {
margin-left: 1.5rem !important;
}
.me-lg-5 {
margin-left: 3rem !important;
}
.me-lg-auto {
margin-left: auto !important;
}
.mb-lg-0 {
margin-bottom: 0 !important;
}
.mb-lg-1 {
margin-bottom: 0.25rem !important;
}
.mb-lg-2 {
margin-bottom: 0.5rem !important;
}
.mb-lg-3 {
margin-bottom: 1rem !important;
}
.mb-lg-4 {
margin-bottom: 1.5rem !important;
}
.mb-lg-5 {
margin-bottom: 3rem !important;
}
.mb-lg-auto {
margin-bottom: auto !important;
}
.ms-lg-0 {
margin-right: 0 !important;
}
.ms-lg-1 {
margin-right: 0.25rem !important;
}
.ms-lg-2 {
margin-right: 0.5rem !important;
}
.ms-lg-3 {
margin-right: 1rem !important;
}
.ms-lg-4 {
margin-right: 1.5rem !important;
}
.ms-lg-5 {
margin-right: 3rem !important;
}
.ms-lg-auto {
margin-right: auto !important;
}
.p-lg-0 {
padding: 0 !important;
}
.p-lg-1 {
padding: 0.25rem !important;
}
.p-lg-2 {
padding: 0.5rem !important;
}
.p-lg-3 {
padding: 1rem !important;
}
.p-lg-4 {
padding: 1.5rem !important;
}
.p-lg-5 {
padding: 3rem !important;
}
.px-lg-0 {
padding-left: 0 !important;
padding-right: 0 !important;
}
.px-lg-1 {
padding-left: 0.25rem !important;
padding-right: 0.25rem !important;
}
.px-lg-2 {
padding-left: 0.5rem !important;
padding-right: 0.5rem !important;
}
.px-lg-3 {
padding-left: 1rem !important;
padding-right: 1rem !important;
}
.px-lg-4 {
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
}
.px-lg-5 {
padding-left: 3rem !important;
padding-right: 3rem !important;
}
.py-lg-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-lg-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-lg-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-lg-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-lg-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-lg-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-lg-0 {
padding-top: 0 !important;
}
.pt-lg-1 {
padding-top: 0.25rem !important;
}
.pt-lg-2 {
padding-top: 0.5rem !important;
}
.pt-lg-3 {
padding-top: 1rem !important;
}
.pt-lg-4 {
padding-top: 1.5rem !important;
}
.pt-lg-5 {
padding-top: 3rem !important;
}
.pe-lg-0 {
padding-left: 0 !important;
}
.pe-lg-1 {
padding-left: 0.25rem !important;
}
.pe-lg-2 {
padding-left: 0.5rem !important;
}
.pe-lg-3 {
padding-left: 1rem !important;
}
.pe-lg-4 {
padding-left: 1.5rem !important;
}
.pe-lg-5 {
padding-left: 3rem !important;
}
.pb-lg-0 {
padding-bottom: 0 !important;
}
.pb-lg-1 {
padding-bottom: 0.25rem !important;
}
.pb-lg-2 {
padding-bottom: 0.5rem !important;
}
.pb-lg-3 {
padding-bottom: 1rem !important;
}
.pb-lg-4 {
padding-bottom: 1.5rem !important;
}
.pb-lg-5 {
padding-bottom: 3rem !important;
}
.ps-lg-0 {
padding-right: 0 !important;
}
.ps-lg-1 {
padding-right: 0.25rem !important;
}
.ps-lg-2 {
padding-right: 0.5rem !important;
}
.ps-lg-3 {
padding-right: 1rem !important;
}
.ps-lg-4 {
padding-right: 1.5rem !important;
}
.ps-lg-5 {
padding-right: 3rem !important;
}
}
@media (min-width: 1200px) {
.d-xl-inline {
display: inline !important;
}
.d-xl-inline-block {
display: inline-block !important;
}
.d-xl-block {
display: block !important;
}
.d-xl-grid {
display: grid !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: flex !important;
}
.d-xl-inline-flex {
display: inline-flex !important;
}
.d-xl-none {
display: none !important;
}
.flex-xl-fill {
flex: 1 1 auto !important;
}
.flex-xl-row {
flex-direction: row !important;
}
.flex-xl-column {
flex-direction: column !important;
}
.flex-xl-row-reverse {
flex-direction: row-reverse !important;
}
.flex-xl-column-reverse {
flex-direction: column-reverse !important;
}
.flex-xl-grow-0 {
flex-grow: 0 !important;
}
.flex-xl-grow-1 {
flex-grow: 1 !important;
}
.flex-xl-shrink-0 {
flex-shrink: 0 !important;
}
.flex-xl-shrink-1 {
flex-shrink: 1 !important;
}
.flex-xl-wrap {
flex-wrap: wrap !important;
}
.flex-xl-nowrap {
flex-wrap: nowrap !important;
}
.flex-xl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-xl-start {
justify-content: flex-start !important;
}
.justify-content-xl-end {
justify-content: flex-end !important;
}
.justify-content-xl-center {
justify-content: center !important;
}
.justify-content-xl-between {
justify-content: space-between !important;
}
.justify-content-xl-around {
justify-content: space-around !important;
}
.justify-content-xl-evenly {
justify-content: space-evenly !important;
}
.align-items-xl-start {
align-items: flex-start !important;
}
.align-items-xl-end {
align-items: flex-end !important;
}
.align-items-xl-center {
align-items: center !important;
}
.align-items-xl-baseline {
align-items: baseline !important;
}
.align-items-xl-stretch {
align-items: stretch !important;
}
.align-content-xl-start {
align-content: flex-start !important;
}
.align-content-xl-end {
align-content: flex-end !important;
}
.align-content-xl-center {
align-content: center !important;
}
.align-content-xl-between {
align-content: space-between !important;
}
.align-content-xl-around {
align-content: space-around !important;
}
.align-content-xl-stretch {
align-content: stretch !important;
}
.align-self-xl-auto {
align-self: auto !important;
}
.align-self-xl-start {
align-self: flex-start !important;
}
.align-self-xl-end {
align-self: flex-end !important;
}
.align-self-xl-center {
align-self: center !important;
}
.align-self-xl-baseline {
align-self: baseline !important;
}
.align-self-xl-stretch {
align-self: stretch !important;
}
.order-xl-first {
order: -1 !important;
}
.order-xl-0 {
order: 0 !important;
}
.order-xl-1 {
order: 1 !important;
}
.order-xl-2 {
order: 2 !important;
}
.order-xl-3 {
order: 3 !important;
}
.order-xl-4 {
order: 4 !important;
}
.order-xl-5 {
order: 5 !important;
}
.order-xl-last {
order: 6 !important;
}
.m-xl-0 {
margin: 0 !important;
}
.m-xl-1 {
margin: 0.25rem !important;
}
.m-xl-2 {
margin: 0.5rem !important;
}
.m-xl-3 {
margin: 1rem !important;
}
.m-xl-4 {
margin: 1.5rem !important;
}
.m-xl-5 {
margin: 3rem !important;
}
.m-xl-auto {
margin: auto !important;
}
.mx-xl-0 {
margin-left: 0 !important;
margin-right: 0 !important;
}
.mx-xl-1 {
margin-left: 0.25rem !important;
margin-right: 0.25rem !important;
}
.mx-xl-2 {
margin-left: 0.5rem !important;
margin-right: 0.5rem !important;
}
.mx-xl-3 {
margin-left: 1rem !important;
margin-right: 1rem !important;
}
.mx-xl-4 {
margin-left: 1.5rem !important;
margin-right: 1.5rem !important;
}
.mx-xl-5 {
margin-left: 3rem !important;
margin-right: 3rem !important;
}
.mx-xl-auto {
margin-left: auto !important;
margin-right: auto !important;
}
.my-xl-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-xl-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-xl-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-xl-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-xl-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-xl-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-xl-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-xl-0 {
margin-top: 0 !important;
}
.mt-xl-1 {
margin-top: 0.25rem !important;
}
.mt-xl-2 {
margin-top: 0.5rem !important;
}
.mt-xl-3 {
margin-top: 1rem !important;
}
.mt-xl-4 {
margin-top: 1.5rem !important;
}
.mt-xl-5 {
margin-top: 3rem !important;
}
.mt-xl-auto {
margin-top: auto !important;
}
.me-xl-0 {
margin-left: 0 !important;
}
.me-xl-1 {
margin-left: 0.25rem !important;
}
.me-xl-2 {
margin-left: 0.5rem !important;
}
.me-xl-3 {
margin-left: 1rem !important;
}
.me-xl-4 {
margin-left: 1.5rem !important;
}
.me-xl-5 {
margin-left: 3rem !important;
}
.me-xl-auto {
margin-left: auto !important;
}
.mb-xl-0 {
margin-bottom: 0 !important;
}
.mb-xl-1 {
margin-bottom: 0.25rem !important;
}
.mb-xl-2 {
margin-bottom: 0.5rem !important;
}
.mb-xl-3 {
margin-bottom: 1rem !important;
}
.mb-xl-4 {
margin-bottom: 1.5rem !important;
}
.mb-xl-5 {
margin-bottom: 3rem !important;
}
.mb-xl-auto {
margin-bottom: auto !important;
}
.ms-xl-0 {
margin-right: 0 !important;
}
.ms-xl-1 {
margin-right: 0.25rem !important;
}
.ms-xl-2 {
margin-right: 0.5rem !important;
}
.ms-xl-3 {
margin-right: 1rem !important;
}
.ms-xl-4 {
margin-right: 1.5rem !important;
}
.ms-xl-5 {
margin-right: 3rem !important;
}
.ms-xl-auto {
margin-right: auto !important;
}
.p-xl-0 {
padding: 0 !important;
}
.p-xl-1 {
padding: 0.25rem !important;
}
.p-xl-2 {
padding: 0.5rem !important;
}
.p-xl-3 {
padding: 1rem !important;
}
.p-xl-4 {
padding: 1.5rem !important;
}
.p-xl-5 {
padding: 3rem !important;
}
.px-xl-0 {
padding-left: 0 !important;
padding-right: 0 !important;
}
.px-xl-1 {
padding-left: 0.25rem !important;
padding-right: 0.25rem !important;
}
.px-xl-2 {
padding-left: 0.5rem !important;
padding-right: 0.5rem !important;
}
.px-xl-3 {
padding-left: 1rem !important;
padding-right: 1rem !important;
}
.px-xl-4 {
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
}
.px-xl-5 {
padding-left: 3rem !important;
padding-right: 3rem !important;
}
.py-xl-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-xl-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-xl-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-xl-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-xl-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-xl-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-xl-0 {
padding-top: 0 !important;
}
.pt-xl-1 {
padding-top: 0.25rem !important;
}
.pt-xl-2 {
padding-top: 0.5rem !important;
}
.pt-xl-3 {
padding-top: 1rem !important;
}
.pt-xl-4 {
padding-top: 1.5rem !important;
}
.pt-xl-5 {
padding-top: 3rem !important;
}
.pe-xl-0 {
padding-left: 0 !important;
}
.pe-xl-1 {
padding-left: 0.25rem !important;
}
.pe-xl-2 {
padding-left: 0.5rem !important;
}
.pe-xl-3 {
padding-left: 1rem !important;
}
.pe-xl-4 {
padding-left: 1.5rem !important;
}
.pe-xl-5 {
padding-left: 3rem !important;
}
.pb-xl-0 {
padding-bottom: 0 !important;
}
.pb-xl-1 {
padding-bottom: 0.25rem !important;
}
.pb-xl-2 {
padding-bottom: 0.5rem !important;
}
.pb-xl-3 {
padding-bottom: 1rem !important;
}
.pb-xl-4 {
padding-bottom: 1.5rem !important;
}
.pb-xl-5 {
padding-bottom: 3rem !important;
}
.ps-xl-0 {
padding-right: 0 !important;
}
.ps-xl-1 {
padding-right: 0.25rem !important;
}
.ps-xl-2 {
padding-right: 0.5rem !important;
}
.ps-xl-3 {
padding-right: 1rem !important;
}
.ps-xl-4 {
padding-right: 1.5rem !important;
}
.ps-xl-5 {
padding-right: 3rem !important;
}
}
@media (min-width: 1400px) {
.d-xxl-inline {
display: inline !important;
}
.d-xxl-inline-block {
display: inline-block !important;
}
.d-xxl-block {
display: block !important;
}
.d-xxl-grid {
display: grid !important;
}
.d-xxl-table {
display: table !important;
}
.d-xxl-table-row {
display: table-row !important;
}
.d-xxl-table-cell {
display: table-cell !important;
}
.d-xxl-flex {
display: flex !important;
}
.d-xxl-inline-flex {
display: inline-flex !important;
}
.d-xxl-none {
display: none !important;
}
.flex-xxl-fill {
flex: 1 1 auto !important;
}
.flex-xxl-row {
flex-direction: row !important;
}
.flex-xxl-column {
flex-direction: column !important;
}
.flex-xxl-row-reverse {
flex-direction: row-reverse !important;
}
.flex-xxl-column-reverse {
flex-direction: column-reverse !important;
}
.flex-xxl-grow-0 {
flex-grow: 0 !important;
}
.flex-xxl-grow-1 {
flex-grow: 1 !important;
}
.flex-xxl-shrink-0 {
flex-shrink: 0 !important;
}
.flex-xxl-shrink-1 {
flex-shrink: 1 !important;
}
.flex-xxl-wrap {
flex-wrap: wrap !important;
}
.flex-xxl-nowrap {
flex-wrap: nowrap !important;
}
.flex-xxl-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.justify-content-xxl-start {
justify-content: flex-start !important;
}
.justify-content-xxl-end {
justify-content: flex-end !important;
}
.justify-content-xxl-center {
justify-content: center !important;
}
.justify-content-xxl-between {
justify-content: space-between !important;
}
.justify-content-xxl-around {
justify-content: space-around !important;
}
.justify-content-xxl-evenly {
justify-content: space-evenly !important;
}
.align-items-xxl-start {
align-items: flex-start !important;
}
.align-items-xxl-end {
align-items: flex-end !important;
}
.align-items-xxl-center {
align-items: center !important;
}
.align-items-xxl-baseline {
align-items: baseline !important;
}
.align-items-xxl-stretch {
align-items: stretch !important;
}
.align-content-xxl-start {
align-content: flex-start !important;
}
.align-content-xxl-end {
align-content: flex-end !important;
}
.align-content-xxl-center {
align-content: center !important;
}
.align-content-xxl-between {
align-content: space-between !important;
}
.align-content-xxl-around {
align-content: space-around !important;
}
.align-content-xxl-stretch {
align-content: stretch !important;
}
.align-self-xxl-auto {
align-self: auto !important;
}
.align-self-xxl-start {
align-self: flex-start !important;
}
.align-self-xxl-end {
align-self: flex-end !important;
}
.align-self-xxl-center {
align-self: center !important;
}
.align-self-xxl-baseline {
align-self: baseline !important;
}
.align-self-xxl-stretch {
align-self: stretch !important;
}
.order-xxl-first {
order: -1 !important;
}
.order-xxl-0 {
order: 0 !important;
}
.order-xxl-1 {
order: 1 !important;
}
.order-xxl-2 {
order: 2 !important;
}
.order-xxl-3 {
order: 3 !important;
}
.order-xxl-4 {
order: 4 !important;
}
.order-xxl-5 {
order: 5 !important;
}
.order-xxl-last {
order: 6 !important;
}
.m-xxl-0 {
margin: 0 !important;
}
.m-xxl-1 {
margin: 0.25rem !important;
}
.m-xxl-2 {
margin: 0.5rem !important;
}
.m-xxl-3 {
margin: 1rem !important;
}
.m-xxl-4 {
margin: 1.5rem !important;
}
.m-xxl-5 {
margin: 3rem !important;
}
.m-xxl-auto {
margin: auto !important;
}
.mx-xxl-0 {
margin-left: 0 !important;
margin-right: 0 !important;
}
.mx-xxl-1 {
margin-left: 0.25rem !important;
margin-right: 0.25rem !important;
}
.mx-xxl-2 {
margin-left: 0.5rem !important;
margin-right: 0.5rem !important;
}
.mx-xxl-3 {
margin-left: 1rem !important;
margin-right: 1rem !important;
}
.mx-xxl-4 {
margin-left: 1.5rem !important;
margin-right: 1.5rem !important;
}
.mx-xxl-5 {
margin-left: 3rem !important;
margin-right: 3rem !important;
}
.mx-xxl-auto {
margin-left: auto !important;
margin-right: auto !important;
}
.my-xxl-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-xxl-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-xxl-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-xxl-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-xxl-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-xxl-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-xxl-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-xxl-0 {
margin-top: 0 !important;
}
.mt-xxl-1 {
margin-top: 0.25rem !important;
}
.mt-xxl-2 {
margin-top: 0.5rem !important;
}
.mt-xxl-3 {
margin-top: 1rem !important;
}
.mt-xxl-4 {
margin-top: 1.5rem !important;
}
.mt-xxl-5 {
margin-top: 3rem !important;
}
.mt-xxl-auto {
margin-top: auto !important;
}
.me-xxl-0 {
margin-left: 0 !important;
}
.me-xxl-1 {
margin-left: 0.25rem !important;
}
.me-xxl-2 {
margin-left: 0.5rem !important;
}
.me-xxl-3 {
margin-left: 1rem !important;
}
.me-xxl-4 {
margin-left: 1.5rem !important;
}
.me-xxl-5 {
margin-left: 3rem !important;
}
.me-xxl-auto {
margin-left: auto !important;
}
.mb-xxl-0 {
margin-bottom: 0 !important;
}
.mb-xxl-1 {
margin-bottom: 0.25rem !important;
}
.mb-xxl-2 {
margin-bottom: 0.5rem !important;
}
.mb-xxl-3 {
margin-bottom: 1rem !important;
}
.mb-xxl-4 {
margin-bottom: 1.5rem !important;
}
.mb-xxl-5 {
margin-bottom: 3rem !important;
}
.mb-xxl-auto {
margin-bottom: auto !important;
}
.ms-xxl-0 {
margin-right: 0 !important;
}
.ms-xxl-1 {
margin-right: 0.25rem !important;
}
.ms-xxl-2 {
margin-right: 0.5rem !important;
}
.ms-xxl-3 {
margin-right: 1rem !important;
}
.ms-xxl-4 {
margin-right: 1.5rem !important;
}
.ms-xxl-5 {
margin-right: 3rem !important;
}
.ms-xxl-auto {
margin-right: auto !important;
}
.p-xxl-0 {
padding: 0 !important;
}
.p-xxl-1 {
padding: 0.25rem !important;
}
.p-xxl-2 {
padding: 0.5rem !important;
}
.p-xxl-3 {
padding: 1rem !important;
}
.p-xxl-4 {
padding: 1.5rem !important;
}
.p-xxl-5 {
padding: 3rem !important;
}
.px-xxl-0 {
padding-left: 0 !important;
padding-right: 0 !important;
}
.px-xxl-1 {
padding-left: 0.25rem !important;
padding-right: 0.25rem !important;
}
.px-xxl-2 {
padding-left: 0.5rem !important;
padding-right: 0.5rem !important;
}
.px-xxl-3 {
padding-left: 1rem !important;
padding-right: 1rem !important;
}
.px-xxl-4 {
padding-left: 1.5rem !important;
padding-right: 1.5rem !important;
}
.px-xxl-5 {
padding-left: 3rem !important;
padding-right: 3rem !important;
}
.py-xxl-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-xxl-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-xxl-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-xxl-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-xxl-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-xxl-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-xxl-0 {
padding-top: 0 !important;
}
.pt-xxl-1 {
padding-top: 0.25rem !important;
}
.pt-xxl-2 {
padding-top: 0.5rem !important;
}
.pt-xxl-3 {
padding-top: 1rem !important;
}
.pt-xxl-4 {
padding-top: 1.5rem !important;
}
.pt-xxl-5 {
padding-top: 3rem !important;
}
.pe-xxl-0 {
padding-left: 0 !important;
}
.pe-xxl-1 {
padding-left: 0.25rem !important;
}
.pe-xxl-2 {
padding-left: 0.5rem !important;
}
.pe-xxl-3 {
padding-left: 1rem !important;
}
.pe-xxl-4 {
padding-left: 1.5rem !important;
}
.pe-xxl-5 {
padding-left: 3rem !important;
}
.pb-xxl-0 {
padding-bottom: 0 !important;
}
.pb-xxl-1 {
padding-bottom: 0.25rem !important;
}
.pb-xxl-2 {
padding-bottom: 0.5rem !important;
}
.pb-xxl-3 {
padding-bottom: 1rem !important;
}
.pb-xxl-4 {
padding-bottom: 1.5rem !important;
}
.pb-xxl-5 {
padding-bottom: 3rem !important;
}
.ps-xxl-0 {
padding-right: 0 !important;
}
.ps-xxl-1 {
padding-right: 0.25rem !important;
}
.ps-xxl-2 {
padding-right: 0.5rem !important;
}
.ps-xxl-3 {
padding-right: 1rem !important;
}
.ps-xxl-4 {
padding-right: 1.5rem !important;
}
.ps-xxl-5 {
padding-right: 3rem !important;
}
}
@media print {
.d-print-inline {
display: inline !important;
}
.d-print-inline-block {
display: inline-block !important;
}
.d-print-block {
display: block !important;
}
.d-print-grid {
display: grid !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: flex !important;
}
.d-print-inline-flex {
display: inline-flex !important;
}
.d-print-none {
display: none !important;
}
}
/*# sourceMappingURL=bootstrap-grid.rtl.css.map */
================================================
FILE: public/css/bootstrap-reboot.css
================================================
/*!
* Bootstrap Reboot v5.0.2 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
*,
*::before,
*::after {
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
margin: 0;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation 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: #212529;
background-color: #fff;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
h6, h5, h4, h3, h2, h1 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
}
h1 {
font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1 {
font-size: 2.5rem;
}
}
h2 {
font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2 {
font-size: 2rem;
}
}
h3 {
font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3 {
font-size: 1.75rem;
}
}
h4 {
font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4 {
font-size: 1.5rem;
}
}
h5 {
font-size: 1.25rem;
}
h6 {
font-size: 1rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-bs-original-title] {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
-webkit-text-decoration-skip-ink: none;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul {
padding-left: 2rem;
}
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: 0.5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 0.875em;
}
mark {
padding: 0.2em;
background-color: #fcf8e3;
}
sub,
sup {
position: relative;
font-size: 0.75em;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
a {
color: #0d6efd;
text-decoration: underline;
}
a:hover {
color: #0a58ca;
}
a:not([href]):not([class]), 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;
direction: ltr /* rtl:ignore */;
unicode-bidi: bidi-override;
}
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
font-size: 0.875em;
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
code {
font-size: 0.875em;
color: #d63384;
word-wrap: break-word;
}
a > code {
color: inherit;
}
kbd {
padding: 0.2rem 0.4rem;
font-size: 0.875em;
color: #fff;
background-color: #212529;
border-radius: 0.2rem;
}
kbd kbd {
padding: 0;
font-size: 1em;
font-weight: 700;
}
figure {
margin: 0 0 1rem;
}
img,
svg {
vertical-align: middle;
}
table {
caption-side: bottom;
border-collapse: collapse;
}
caption {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
color: #6c757d;
text-align: left;
}
th {
text-align: inherit;
text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
border-color: inherit;
border-style: solid;
border-width: 0;
}
label {
display: inline-block;
}
button {
border-radius: 0;
}
button:focus:not(:focus-visible) {
outline: 0;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
select {
text-transform: none;
}
[role=button] {
cursor: pointer;
}
select {
word-wrap: normal;
}
select:disabled {
opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
display: none;
}
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;
}
::-moz-focus-inner {
padding: 0;
border-style: none;
}
textarea {
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
float: left;
width: 100%;
padding: 0;
margin-bottom: 0.5rem;
font-size: calc(1.275rem + 0.3vw);
line-height: inherit;
}
@media (min-width: 1200px) {
legend {
font-size: 1.5rem;
}
}
legend + * {
clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
padding: 0;
}
::-webkit-inner-spin-button {
height: auto;
}
[type=search] {
outline-offset: -2px;
-webkit-appearance: textfield;
}
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
direction: ltr;
}
*/
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
padding: 0;
}
::file-selector-button {
font: inherit;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
iframe {
border: 0;
}
summary {
display: list-item;
cursor: pointer;
}
progress {
vertical-align: baseline;
}
[hidden] {
display: none !important;
}
/*# sourceMappingURL=bootstrap-reboot.css.map */
================================================
FILE: public/css/bootstrap-reboot.rtl.css
================================================
/*!
* Bootstrap Reboot v5.0.2 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
*,
*::before,
*::after {
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: smooth;
}
}
body {
margin: 0;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation 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: #212529;
background-color: #fff;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
h6, h5, h4, h3, h2, h1 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
}
h1 {
font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1 {
font-size: 2.5rem;
}
}
h2 {
font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2 {
font-size: 2rem;
}
}
h3 {
font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3 {
font-size: 1.75rem;
}
}
h4 {
font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4 {
font-size: 1.5rem;
}
}
h5 {
font-size: 1.25rem;
}
h6 {
font-size: 1rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-bs-original-title] {
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
-webkit-text-decoration-skip-ink: none;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul {
padding-right: 2rem;
}
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: 0.5rem;
margin-right: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 0.875em;
}
mark {
padding: 0.2em;
background-color: #fcf8e3;
}
sub,
sup {
position: relative;
font-size: 0.75em;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
a {
color: #0d6efd;
text-decoration: underline;
}
a:hover {
color: #0a58ca;
}
a:not([href]):not([class]), 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;
direction: ltr ;
unicode-bidi: bidi-override;
}
pre {
display: block;
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
font-size: 0.875em;
}
pre code {
font-size: inherit;
color: inherit;
word-break: normal;
}
code {
font-size: 0.875em;
color: #d63384;
word-wrap: break-word;
}
a > code {
color: inherit;
}
kbd {
padding: 0.2rem 0.4rem;
font-size: 0.875em;
color: #fff;
background-color: #212529;
border-radius: 0.2rem;
}
kbd kbd {
padding: 0;
font-size: 1em;
font-weight: 700;
}
figure {
margin: 0 0 1rem;
}
img,
svg {
vertical-align: middle;
}
table {
caption-side: bottom;
border-collapse: collapse;
}
caption {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
color: #6c757d;
text-align: right;
}
th {
text-align: inherit;
text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
border-color: inherit;
border-style: solid;
border-width: 0;
}
label {
display: inline-block;
}
button {
border-radius: 0;
}
button:focus:not(:focus-visible) {
outline: 0;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
select {
text-transform: none;
}
[role=button] {
cursor: pointer;
}
select {
word-wrap: normal;
}
select:disabled {
opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
display: none;
}
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;
}
::-moz-focus-inner {
padding: 0;
border-style: none;
}
textarea {
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
float: right;
width: 100%;
padding: 0;
margin-bottom: 0.5rem;
font-size: calc(1.275rem + 0.3vw);
line-height: inherit;
}
@media (min-width: 1200px) {
legend {
font-size: 1.5rem;
}
}
legend + * {
clear: right;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
padding: 0;
}
::-webkit-inner-spin-button {
height: auto;
}
[type=search] {
outline-offset: -2px;
-webkit-appearance: textfield;
}
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
direction: ltr;
}
::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
padding: 0;
}
::file-selector-button {
font: inherit;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
iframe {
border: 0;
}
summary {
display: list-item;
cursor: pointer;
}
progress {
vertical-align: baseline;
}
[hidden] {
display: none !important;
}
/*# sourceMappingURL=bootstrap-reboot.rtl.css.map */
================================================
FILE: public/css/bootstrap-utilities.css
================================================
/*!
* Bootstrap Utilities v5.0.2 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
.clearfix::after {
display: block;
clear: both;
content: "";
}
.link-primary {
color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
color: #0a58ca;
}
.link-secondary {
color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
color: #565e64;
}
.link-success {
color: #198754;
}
.link-success:hover, .link-success:focus {
color: #146c43;
}
.link-info {
color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
color: #3dd5f3;
}
.link-warning {
color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
color: #ffcd39;
}
.link-danger {
color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
color: #b02a37;
}
.link-light {
color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
color: #f9fafb;
}
.link-dark {
color: #212529;
}
.link-dark:hover, .link-dark:focus {
color: #1a1e21;
}
.ratio {
position: relative;
width: 100%;
}
.ratio::before {
display: block;
padding-top: var(--bs-aspect-ratio);
content: "";
}
.ratio > * {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ratio-1x1 {
--bs-aspect-ratio: 100%;
}
.ratio-4x3 {
--bs-aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
--bs-aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
--bs-aspect-ratio: calc(9 / 21 * 100%);
}
.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;
}
.sticky-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
@media (min-width: 576px) {
.sticky-sm-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 768px) {
.sticky-md-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 992px) {
.sticky-lg-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 1200px) {
.sticky-xl-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
@media (min-width: 1400px) {
.sticky-xxl-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020;
}
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
.stretched-link::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
content: "";
}
.text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.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;
}
.float-start {
float: left !important;
}
.float-end {
float: right !important;
}
.float-none {
float: none !important;
}
.overflow-auto {
overflow: auto !important;
}
.overflow-hidden {
overflow: hidden !important;
}
.overflow-visible {
overflow: visible !important;
}
.overflow-scroll {
overflow: scroll !important;
}
.d-inline {
display: inline !important;
}
.d-inline-block {
display: inline-block !important;
}
.d-block {
display: block !important;
}
.d-grid {
display: grid !important;
}
.d-table {
display: table !important;
}
.d-table-row {
display: table-row !important;
}
.d-table-cell {
display: table-cell !important;
}
.d-flex {
display: flex !important;
}
.d-inline-flex {
display: inline-flex !important;
}
.d-none {
display: none !important;
}
.shadow {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
box-shadow: none !important;
}
.position-static {
position: static !important;
}
.position-relative {
position: relative !important;
}
.position-absolute {
position: absolute !important;
}
.position-fixed {
position: fixed !important;
}
.position-sticky {
position: -webkit-sticky !important;
position: sticky !important;
}
.top-0 {
top: 0 !important;
}
.top-50 {
top: 50% !important;
}
.top-100 {
top: 100% !important;
}
.bottom-0 {
bottom: 0 !important;
}
.bottom-50 {
bottom: 50% !important;
}
.bottom-100 {
bottom: 100% !important;
}
.start-0 {
left: 0 !important;
}
.start-50 {
left: 50% !important;
}
.start-100 {
left: 100% !important;
}
.end-0 {
right: 0 !important;
}
.end-50 {
right: 50% !important;
}
.end-100 {
right: 100% !important;
}
.translate-middle {
transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
transform: translateX(-50%) !important;
}
.translate-middle-y {
transform: translateY(-50%) !important;
}
.border {
border: 1px solid #dee2e6 !important;
}
.border-0 {
border: 0 !important;
}
.border-top {
border-top: 1px solid #dee2e6 !important;
}
.border-top-0 {
border-top: 0 !important;
}
.border-end {
border-right: 1px solid #dee2e6 !important;
}
.border-end-0 {
border-right: 0 !important;
}
.border-bottom {
border-bottom: 1px solid #dee2e6 !important;
}
.border-bottom-0 {
border-bottom: 0 !important;
}
.border-start {
border-left: 1px solid #dee2e6 !important;
}
.border-start-0 {
border-left: 0 !important;
}
.border-primary {
border-color: #0d6efd !important;
}
.border-secondary {
border-color: #6c757d !important;
}
.border-success {
border-color: #198754 !important;
}
.border-info {
border-color: #0dcaf0 !important;
}
.border-warning {
border-color: #ffc107 !important;
}
.border-danger {
border-color: #dc3545 !important;
}
.border-light {
border-color: #f8f9fa !important;
}
.border-dark {
border-color: #212529 !important;
}
.border-white {
border-color: #fff !important;
}
.border-1 {
border-width: 1px !important;
}
.border-2 {
border-width: 2px !important;
}
.border-3 {
border-width: 3px !important;
}
.border-4 {
border-width: 4px !important;
}
.border-5 {
border-width: 5px !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;
}
.mw-100 {
max-width: 100% !important;
}
.vw-100 {
width: 100vw !important;
}
.min-vw-100 {
min-width: 100vw !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;
}
.mh-100 {
max-height: 100% !important;
}
.vh-100 {
height: 100vh !important;
}
.min-vh-100 {
min-height: 100vh !important;
}
.flex-fill {
flex: 1 1 auto !important;
}
.flex-row {
flex-direction: row !important;
}
.flex-column {
flex-direction: column !important;
}
.flex-row-reverse {
flex-direction: row-reverse !important;
}
.flex-column-reverse {
flex-direction: column-reverse !important;
}
.flex-grow-0 {
flex-grow: 0 !important;
}
.flex-grow-1 {
flex-grow: 1 !important;
}
.flex-shrink-0 {
flex-shrink: 0 !important;
}
.flex-shrink-1 {
flex-shrink: 1 !important;
}
.flex-wrap {
flex-wrap: wrap !important;
}
.flex-nowrap {
flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-0 {
gap: 0 !important;
}
.gap-1 {
gap: 0.25rem !important;
}
.gap-2 {
gap: 0.5rem !important;
}
.gap-3 {
gap: 1rem !important;
}
.gap-4 {
gap: 1.5rem !important;
}
.gap-5 {
gap: 3rem !important;
}
.justify-content-start {
justify-content: flex-start !important;
}
.justify-content-end {
justify-content: flex-end !important;
}
.justify-content-center {
justify-content: center !important;
}
.justify-content-between {
justify-content: space-between !important;
}
.justify-content-around {
justify-content: space-around !important;
}
.justify-content-evenly {
justify-content: space-evenly !important;
}
.align-items-start {
align-items: flex-start !important;
}
.align-items-end {
align-items: flex-end !important;
}
.align-items-center {
align-items: center !important;
}
.align-items-baseline {
align-items: baseline !important;
}
.align-items-stretch {
align-items: stretch !important;
}
.align-content-start {
align-content: flex-start !important;
}
.align-content-end {
align-content: flex-end !important;
}
.align-content-center {
align-content: center !important;
}
.align-content-between {
align-content: space-between !important;
}
.align-content-around {
align-content: space-around !important;
}
.align-content-stretch {
align-content: stretch !important;
}
.align-self-auto {
align-self: auto !important;
}
.align-self-start {
align-self: flex-start !important;
}
.align-self-end {
align-self: flex-end !important;
}
.align-self-center {
align-self: center !important;
}
.align-self-baseline {
align-self: baseline !important;
}
.align-self-stretch {
align-self: stretch !important;
}
.order-first {
order: -1 !important;
}
.order-0 {
order: 0 !important;
}
.order-1 {
order: 1 !important;
}
.order-2 {
order: 2 !important;
}
.order-3 {
order: 3 !important;
}
.order-4 {
order: 4 !important;
}
.order-5 {
order: 5 !important;
}
.order-last {
order: 6 !important;
}
.m-0 {
margin: 0 !important;
}
.m-1 {
margin: 0.25rem !important;
}
.m-2 {
margin: 0.5rem !important;
}
.m-3 {
margin: 1rem !important;
}
.m-4 {
margin: 1.5rem !important;
}
.m-5 {
margin: 3rem !important;
}
.m-auto {
margin: auto !important;
}
.mx-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-0 {
margin-top: 0 !important;
}
.mt-1 {
margin-top: 0.25rem !important;
}
.mt-2 {
margin-top: 0.5rem !important;
}
.mt-3 {
margin-top: 1rem !important;
}
.mt-4 {
margin-top: 1.5rem !important;
}
.mt-5 {
margin-top: 3rem !important;
}
.mt-auto {
margin-top: auto !important;
}
.me-0 {
margin-right: 0 !important;
}
.me-1 {
margin-right: 0.25rem !important;
}
.me-2 {
margin-right: 0.5rem !important;
}
.me-3 {
margin-right: 1rem !important;
}
.me-4 {
margin-right: 1.5rem !important;
}
.me-5 {
margin-right: 3rem !important;
}
.me-auto {
margin-right: auto !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mb-1 {
margin-bottom: 0.25rem !important;
}
.mb-2 {
margin-bottom: 0.5rem !important;
}
.mb-3 {
margin-bottom: 1rem !important;
}
.mb-4 {
margin-bottom: 1.5rem !important;
}
.mb-5 {
margin-bottom: 3rem !important;
}
.mb-auto {
margin-bottom: auto !important;
}
.ms-0 {
margin-left: 0 !important;
}
.ms-1 {
margin-left: 0.25rem !important;
}
.ms-2 {
margin-left: 0.5rem !important;
}
.ms-3 {
margin-left: 1rem !important;
}
.ms-4 {
margin-left: 1.5rem !important;
}
.ms-5 {
margin-left: 3rem !important;
}
.ms-auto {
margin-left: auto !important;
}
.p-0 {
padding: 0 !important;
}
.p-1 {
padding: 0.25rem !important;
}
.p-2 {
padding: 0.5rem !important;
}
.p-3 {
padding: 1rem !important;
}
.p-4 {
padding: 1.5rem !important;
}
.p-5 {
padding: 3rem !important;
}
.px-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-0 {
padding-top: 0 !important;
}
.pt-1 {
padding-top: 0.25rem !important;
}
.pt-2 {
padding-top: 0.5rem !important;
}
.pt-3 {
padding-top: 1rem !important;
}
.pt-4 {
padding-top: 1.5rem !important;
}
.pt-5 {
padding-top: 3rem !important;
}
.pe-0 {
padding-right: 0 !important;
}
.pe-1 {
padding-right: 0.25rem !important;
}
.pe-2 {
padding-right: 0.5rem !important;
}
.pe-3 {
padding-right: 1rem !important;
}
.pe-4 {
padding-right: 1.5rem !important;
}
.pe-5 {
padding-right: 3rem !important;
}
.pb-0 {
padding-bottom: 0 !important;
}
.pb-1 {
padding-bottom: 0.25rem !important;
}
.pb-2 {
padding-bottom: 0.5rem !important;
}
.pb-3 {
padding-bottom: 1rem !important;
}
.pb-4 {
padding-bottom: 1.5rem !important;
}
.pb-5 {
padding-bottom: 3rem !important;
}
.ps-0 {
padding-left: 0 !important;
}
.ps-1 {
padding-left: 0.25rem !important;
}
.ps-2 {
padding-left: 0.5rem !important;
}
.ps-3 {
padding-left: 1rem !important;
}
.ps-4 {
padding-left: 1.5rem !important;
}
.ps-5 {
padding-left: 3rem !important;
}
.font-monospace {
font-family: var(--bs-font-monospace) !important;
}
.fs-1 {
font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-3 {
font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
font-size: 1.25rem !important;
}
.fs-6 {
font-size: 1rem !important;
}
.fst-italic {
font-style: italic !important;
}
.fst-normal {
font-style: normal !important;
}
.fw-light {
font-weight: 300 !important;
}
.fw-lighter {
font-weight: lighter !important;
}
.fw-normal {
font-weight: 400 !important;
}
.fw-bold {
font-weight: 700 !important;
}
.fw-bolder {
font-weight: bolder !important;
}
.lh-1 {
line-height: 1 !important;
}
.lh-sm {
line-height: 1.25 !important;
}
.lh-base {
line-height: 1.5 !important;
}
.lh-lg {
line-height: 2 !important;
}
.text-start {
text-align: left !important;
}
.text-end {
text-align: right !important;
}
.text-center {
text-align: center !important;
}
.text-decoration-none {
text-decoration: none !important;
}
.text-decoration-underline {
text-decoration: underline !important;
}
.text-decoration-line-through {
text-decoration: line-through !important;
}
.text-lowercase {
text-transform: lowercase !important;
}
.text-uppercase {
text-transform: uppercase !important;
}
.text-capitalize {
text-transform: capitalize !important;
}
.text-wrap {
white-space: normal !important;
}
.text-nowrap {
white-space: nowrap !important;
}
/* rtl:begin:remove */
.text-break {
word-wrap: break-word !important;
word-break: break-word !important;
}
/* rtl:end:remove */
.text-primary {
color: #0d6efd !important;
}
.text-secondary {
color: #6c757d !important;
}
.text-success {
color: #198754 !important;
}
.text-info {
color: #0dcaf0 !important;
}
.text-warning {
color: #ffc107 !important;
}
.text-danger {
color: #dc3545 !important;
}
.text-light {
color: #f8f9fa !important;
}
.text-dark {
color: #212529 !important;
}
.text-white {
color: #fff !important;
}
.text-body {
color: #212529 !important;
}
.text-muted {
color: #6c757d !important;
}
.text-black-50 {
color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
color: inherit !important;
}
.bg-primary {
background-color: #0d6efd !important;
}
.bg-secondary {
background-color: #6c757d !important;
}
.bg-success {
background-color: #198754 !important;
}
.bg-info {
background-color: #0dcaf0 !important;
}
.bg-warning {
background-color: #ffc107 !important;
}
.bg-danger {
background-color: #dc3545 !important;
}
.bg-light {
background-color: #f8f9fa !important;
}
.bg-dark {
background-color: #212529 !important;
}
.bg-body {
background-color: #fff !important;
}
.bg-white {
background-color: #fff !important;
}
.bg-transparent {
background-color: transparent !important;
}
.bg-gradient {
background-image: var(--bs-gradient) !important;
}
.user-select-all {
-webkit-user-select: all !important;
-moz-user-select: all !important;
user-select: all !important;
}
.user-select-auto {
-webkit-user-select: auto !important;
-moz-user-select: auto !important;
user-select: auto !important;
}
.user-select-none {
-webkit-user-select: none !important;
-moz-user-select: none !important;
user-select: none !important;
}
.pe-none {
pointer-events: none !important;
}
.pe-auto {
pointer-events: auto !important;
}
.rounded {
border-radius: 0.25rem !important;
}
.rounded-0 {
border-radius: 0 !important;
}
.rounded-1 {
border-radius: 0.2rem !important;
}
.rounded-2 {
border-radius: 0.25rem !important;
}
.rounded-3 {
border-radius: 0.3rem !important;
}
.rounded-circle {
border-radius: 50% !important;
}
.rounded-pill {
border-radius: 50rem !important;
}
.rounded-top {
border-top-left-radius: 0.25rem !important;
border-top-right-radius: 0.25rem !important;
}
.rounded-end {
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-start {
border-bottom-left-radius: 0.25rem !important;
border-top-left-radius: 0.25rem !important;
}
.visible {
visibility: visible !important;
}
.invisible {
visibility: hidden !important;
}
@media (min-width: 576px) {
.float-sm-start {
float: left !important;
}
.float-sm-end {
float: right !important;
}
.float-sm-none {
float: none !important;
}
.d-sm-inline {
display: inline !important;
}
.d-sm-inline-block {
display: inline-block !important;
}
.d-sm-block {
display: block !important;
}
.d-sm-grid {
display: grid !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: flex !important;
}
.d-sm-inline-flex {
display: inline-flex !important;
}
.d-sm-none {
display: none !important;
}
.flex-sm-fill {
flex: 1 1 auto !important;
}
.flex-sm-row {
flex-direction: row !important;
}
.flex-sm-column {
flex-direction: column !important;
}
.flex-sm-row-reverse {
flex-direction: row-reverse !important;
}
.flex-sm-column-reverse {
flex-direction: column-reverse !important;
}
.flex-sm-grow-0 {
flex-grow: 0 !important;
}
.flex-sm-grow-1 {
flex-grow: 1 !important;
}
.flex-sm-shrink-0 {
flex-shrink: 0 !important;
}
.flex-sm-shrink-1 {
flex-shrink: 1 !important;
}
.flex-sm-wrap {
flex-wrap: wrap !important;
}
.flex-sm-nowrap {
flex-wrap: nowrap !important;
}
.flex-sm-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-sm-0 {
gap: 0 !important;
}
.gap-sm-1 {
gap: 0.25rem !important;
}
.gap-sm-2 {
gap: 0.5rem !important;
}
.gap-sm-3 {
gap: 1rem !important;
}
.gap-sm-4 {
gap: 1.5rem !important;
}
.gap-sm-5 {
gap: 3rem !important;
}
.justify-content-sm-start {
justify-content: flex-start !important;
}
.justify-content-sm-end {
justify-content: flex-end !important;
}
.justify-content-sm-center {
justify-content: center !important;
}
.justify-content-sm-between {
justify-content: space-between !important;
}
.justify-content-sm-around {
justify-content: space-around !important;
}
.justify-content-sm-evenly {
justify-content: space-evenly !important;
}
.align-items-sm-start {
align-items: flex-start !important;
}
.align-items-sm-end {
align-items: flex-end !important;
}
.align-items-sm-center {
align-items: center !important;
}
.align-items-sm-baseline {
align-items: baseline !important;
}
.align-items-sm-stretch {
align-items: stretch !important;
}
.align-content-sm-start {
align-content: flex-start !important;
}
.align-content-sm-end {
align-content: flex-end !important;
}
.align-content-sm-center {
align-content: center !important;
}
.align-content-sm-between {
align-content: space-between !important;
}
.align-content-sm-around {
align-content: space-around !important;
}
.align-content-sm-stretch {
align-content: stretch !important;
}
.align-self-sm-auto {
align-self: auto !important;
}
.align-self-sm-start {
align-self: flex-start !important;
}
.align-self-sm-end {
align-self: flex-end !important;
}
.align-self-sm-center {
align-self: center !important;
}
.align-self-sm-baseline {
align-self: baseline !important;
}
.align-self-sm-stretch {
align-self: stretch !important;
}
.order-sm-first {
order: -1 !important;
}
.order-sm-0 {
order: 0 !important;
}
.order-sm-1 {
order: 1 !important;
}
.order-sm-2 {
order: 2 !important;
}
.order-sm-3 {
order: 3 !important;
}
.order-sm-4 {
order: 4 !important;
}
.order-sm-5 {
order: 5 !important;
}
.order-sm-last {
order: 6 !important;
}
.m-sm-0 {
margin: 0 !important;
}
.m-sm-1 {
margin: 0.25rem !important;
}
.m-sm-2 {
margin: 0.5rem !important;
}
.m-sm-3 {
margin: 1rem !important;
}
.m-sm-4 {
margin: 1.5rem !important;
}
.m-sm-5 {
margin: 3rem !important;
}
.m-sm-auto {
margin: auto !important;
}
.mx-sm-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-sm-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-sm-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-sm-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-sm-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-sm-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-sm-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-sm-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-sm-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-sm-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-sm-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-sm-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-sm-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-sm-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-sm-0 {
margin-top: 0 !important;
}
.mt-sm-1 {
margin-top: 0.25rem !important;
}
.mt-sm-2 {
margin-top: 0.5rem !important;
}
.mt-sm-3 {
margin-top: 1rem !important;
}
.mt-sm-4 {
margin-top: 1.5rem !important;
}
.mt-sm-5 {
margin-top: 3rem !important;
}
.mt-sm-auto {
margin-top: auto !important;
}
.me-sm-0 {
margin-right: 0 !important;
}
.me-sm-1 {
margin-right: 0.25rem !important;
}
.me-sm-2 {
margin-right: 0.5rem !important;
}
.me-sm-3 {
margin-right: 1rem !important;
}
.me-sm-4 {
margin-right: 1.5rem !important;
}
.me-sm-5 {
margin-right: 3rem !important;
}
.me-sm-auto {
margin-right: auto !important;
}
.mb-sm-0 {
margin-bottom: 0 !important;
}
.mb-sm-1 {
margin-bottom: 0.25rem !important;
}
.mb-sm-2 {
margin-bottom: 0.5rem !important;
}
.mb-sm-3 {
margin-bottom: 1rem !important;
}
.mb-sm-4 {
margin-bottom: 1.5rem !important;
}
.mb-sm-5 {
margin-bottom: 3rem !important;
}
.mb-sm-auto {
margin-bottom: auto !important;
}
.ms-sm-0 {
margin-left: 0 !important;
}
.ms-sm-1 {
margin-left: 0.25rem !important;
}
.ms-sm-2 {
margin-left: 0.5rem !important;
}
.ms-sm-3 {
margin-left: 1rem !important;
}
.ms-sm-4 {
margin-left: 1.5rem !important;
}
.ms-sm-5 {
margin-left: 3rem !important;
}
.ms-sm-auto {
margin-left: auto !important;
}
.p-sm-0 {
padding: 0 !important;
}
.p-sm-1 {
padding: 0.25rem !important;
}
.p-sm-2 {
padding: 0.5rem !important;
}
.p-sm-3 {
padding: 1rem !important;
}
.p-sm-4 {
padding: 1.5rem !important;
}
.p-sm-5 {
padding: 3rem !important;
}
.px-sm-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-sm-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-sm-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-sm-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-sm-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-sm-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-sm-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-sm-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-sm-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-sm-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-sm-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-sm-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-sm-0 {
padding-top: 0 !important;
}
.pt-sm-1 {
padding-top: 0.25rem !important;
}
.pt-sm-2 {
padding-top: 0.5rem !important;
}
.pt-sm-3 {
padding-top: 1rem !important;
}
.pt-sm-4 {
padding-top: 1.5rem !important;
}
.pt-sm-5 {
padding-top: 3rem !important;
}
.pe-sm-0 {
padding-right: 0 !important;
}
.pe-sm-1 {
padding-right: 0.25rem !important;
}
.pe-sm-2 {
padding-right: 0.5rem !important;
}
.pe-sm-3 {
padding-right: 1rem !important;
}
.pe-sm-4 {
padding-right: 1.5rem !important;
}
.pe-sm-5 {
padding-right: 3rem !important;
}
.pb-sm-0 {
padding-bottom: 0 !important;
}
.pb-sm-1 {
padding-bottom: 0.25rem !important;
}
.pb-sm-2 {
padding-bottom: 0.5rem !important;
}
.pb-sm-3 {
padding-bottom: 1rem !important;
}
.pb-sm-4 {
padding-bottom: 1.5rem !important;
}
.pb-sm-5 {
padding-bottom: 3rem !important;
}
.ps-sm-0 {
padding-left: 0 !important;
}
.ps-sm-1 {
padding-left: 0.25rem !important;
}
.ps-sm-2 {
padding-left: 0.5rem !important;
}
.ps-sm-3 {
padding-left: 1rem !important;
}
.ps-sm-4 {
padding-left: 1.5rem !important;
}
.ps-sm-5 {
padding-left: 3rem !important;
}
.text-sm-start {
text-align: left !important;
}
.text-sm-end {
text-align: right !important;
}
.text-sm-center {
text-align: center !important;
}
}
@media (min-width: 768px) {
.float-md-start {
float: left !important;
}
.float-md-end {
float: right !important;
}
.float-md-none {
float: none !important;
}
.d-md-inline {
display: inline !important;
}
.d-md-inline-block {
display: inline-block !important;
}
.d-md-block {
display: block !important;
}
.d-md-grid {
display: grid !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: flex !important;
}
.d-md-inline-flex {
display: inline-flex !important;
}
.d-md-none {
display: none !important;
}
.flex-md-fill {
flex: 1 1 auto !important;
}
.flex-md-row {
flex-direction: row !important;
}
.flex-md-column {
flex-direction: column !important;
}
.flex-md-row-reverse {
flex-direction: row-reverse !important;
}
.flex-md-column-reverse {
flex-direction: column-reverse !important;
}
.flex-md-grow-0 {
flex-grow: 0 !important;
}
.flex-md-grow-1 {
flex-grow: 1 !important;
}
.flex-md-shrink-0 {
flex-shrink: 0 !important;
}
.flex-md-shrink-1 {
flex-shrink: 1 !important;
}
.flex-md-wrap {
flex-wrap: wrap !important;
}
.flex-md-nowrap {
flex-wrap: nowrap !important;
}
.flex-md-wrap-reverse {
flex-wrap: wrap-reverse !important;
}
.gap-md-0 {
gap: 0 !important;
}
.gap-md-1 {
gap: 0.25rem !important;
}
.gap-md-2 {
gap: 0.5rem !important;
}
.gap-md-3 {
gap: 1rem !important;
}
.gap-md-4 {
gap: 1.5rem !important;
}
.gap-md-5 {
gap: 3rem !important;
}
.justify-content-md-start {
justify-content: flex-start !important;
}
.justify-content-md-end {
justify-content: flex-end !important;
}
.justify-content-md-center {
justify-content: center !important;
}
.justify-content-md-between {
justify-content: space-between !important;
}
.justify-content-md-around {
justify-content: space-around !important;
}
.justify-content-md-evenly {
justify-content: space-evenly !important;
}
.align-items-md-start {
align-items: flex-start !important;
}
.align-items-md-end {
align-items: flex-end !important;
}
.align-items-md-center {
align-items: center !important;
}
.align-items-md-baseline {
align-items: baseline !important;
}
.align-items-md-stretch {
align-items: stretch !important;
}
.align-content-md-start {
align-content: flex-start !important;
}
.align-content-md-end {
align-content: flex-end !important;
}
.align-content-md-center {
align-content: center !important;
}
.align-content-md-between {
align-content: space-between !important;
}
.align-content-md-around {
align-content: space-around !important;
}
.align-content-md-stretch {
align-content: stretch !important;
}
.align-self-md-auto {
align-self: auto !important;
}
.align-self-md-start {
align-self: flex-start !important;
}
.align-self-md-end {
align-self: flex-end !important;
}
.align-self-md-center {
align-self: center !important;
}
.align-self-md-baseline {
align-self: baseline !important;
}
.align-self-md-stretch {
align-self: stretch !important;
}
.order-md-first {
order: -1 !important;
}
.order-md-0 {
order: 0 !important;
}
.order-md-1 {
order: 1 !important;
}
.order-md-2 {
order: 2 !important;
}
.order-md-3 {
order: 3 !important;
}
.order-md-4 {
order: 4 !important;
}
.order-md-5 {
order: 5 !important;
}
.order-md-last {
order: 6 !important;
}
.m-md-0 {
margin: 0 !important;
}
.m-md-1 {
margin: 0.25rem !important;
}
.m-md-2 {
margin: 0.5rem !important;
}
.m-md-3 {
margin: 1rem !important;
}
.m-md-4 {
margin: 1.5rem !important;
}
.m-md-5 {
margin: 3rem !important;
}
.m-md-auto {
margin: auto !important;
}
.mx-md-0 {
margin-right: 0 !important;
margin-left: 0 !important;
}
.mx-md-1 {
margin-right: 0.25rem !important;
margin-left: 0.25rem !important;
}
.mx-md-2 {
margin-right: 0.5rem !important;
margin-left: 0.5rem !important;
}
.mx-md-3 {
margin-right: 1rem !important;
margin-left: 1rem !important;
}
.mx-md-4 {
margin-right: 1.5rem !important;
margin-left: 1.5rem !important;
}
.mx-md-5 {
margin-right: 3rem !important;
margin-left: 3rem !important;
}
.mx-md-auto {
margin-right: auto !important;
margin-left: auto !important;
}
.my-md-0 {
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.my-md-1 {
margin-top: 0.25rem !important;
margin-bottom: 0.25rem !important;
}
.my-md-2 {
margin-top: 0.5rem !important;
margin-bottom: 0.5rem !important;
}
.my-md-3 {
margin-top: 1rem !important;
margin-bottom: 1rem !important;
}
.my-md-4 {
margin-top: 1.5rem !important;
margin-bottom: 1.5rem !important;
}
.my-md-5 {
margin-top: 3rem !important;
margin-bottom: 3rem !important;
}
.my-md-auto {
margin-top: auto !important;
margin-bottom: auto !important;
}
.mt-md-0 {
margin-top: 0 !important;
}
.mt-md-1 {
margin-top: 0.25rem !important;
}
.mt-md-2 {
margin-top: 0.5rem !important;
}
.mt-md-3 {
margin-top: 1rem !important;
}
.mt-md-4 {
margin-top: 1.5rem !important;
}
.mt-md-5 {
margin-top: 3rem !important;
}
.mt-md-auto {
margin-top: auto !important;
}
.me-md-0 {
margin-right: 0 !important;
}
.me-md-1 {
margin-right: 0.25rem !important;
}
.me-md-2 {
margin-right: 0.5rem !important;
}
.me-md-3 {
margin-right: 1rem !important;
}
.me-md-4 {
margin-right: 1.5rem !important;
}
.me-md-5 {
margin-right: 3rem !important;
}
.me-md-auto {
margin-right: auto !important;
}
.mb-md-0 {
margin-bottom: 0 !important;
}
.mb-md-1 {
margin-bottom: 0.25rem !important;
}
.mb-md-2 {
margin-bottom: 0.5rem !important;
}
.mb-md-3 {
margin-bottom: 1rem !important;
}
.mb-md-4 {
margin-bottom: 1.5rem !important;
}
.mb-md-5 {
margin-bottom: 3rem !important;
}
.mb-md-auto {
margin-bottom: auto !important;
}
.ms-md-0 {
margin-left: 0 !important;
}
.ms-md-1 {
margin-left: 0.25rem !important;
}
.ms-md-2 {
margin-left: 0.5rem !important;
}
.ms-md-3 {
margin-left: 1rem !important;
}
.ms-md-4 {
margin-left: 1.5rem !important;
}
.ms-md-5 {
margin-left: 3rem !important;
}
.ms-md-auto {
margin-left: auto !important;
}
.p-md-0 {
padding: 0 !important;
}
.p-md-1 {
padding: 0.25rem !important;
}
.p-md-2 {
padding: 0.5rem !important;
}
.p-md-3 {
padding: 1rem !important;
}
.p-md-4 {
padding: 1.5rem !important;
}
.p-md-5 {
padding: 3rem !important;
}
.px-md-0 {
padding-right: 0 !important;
padding-left: 0 !important;
}
.px-md-1 {
padding-right: 0.25rem !important;
padding-left: 0.25rem !important;
}
.px-md-2 {
padding-right: 0.5rem !important;
padding-left: 0.5rem !important;
}
.px-md-3 {
padding-right: 1rem !important;
padding-left: 1rem !important;
}
.px-md-4 {
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
.px-md-5 {
padding-right: 3rem !important;
padding-left: 3rem !important;
}
.py-md-0 {
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.py-md-1 {
padding-top: 0.25rem !important;
padding-bottom: 0.25rem !important;
}
.py-md-2 {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
}
.py-md-3 {
padding-top: 1rem !important;
padding-bottom: 1rem !important;
}
.py-md-4 {
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
}
.py-md-5 {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
.pt-md-0 {
padding-top: 0 !important;
}
.pt-md-1 {
padding-top: 0.25rem !important;
}
.pt-md-2 {
padding-top: 0.5rem !important;
}
.pt-md-3 {
padding-top: 1rem !important;
}
.pt-md-4 {
padding-top: 1.5rem !important;
}
.pt-md-5 {
padding-top: 3rem !important;
}
.pe-md-0 {
padding-right: 0 !important;
}
.pe-md-1 {
padding-right: 0.25rem !important;
}
.pe-md-2 {
padding-right: 0.5rem !important;
}
.pe-md-3 {
padding-right: 1rem !important;
}
.pe-md-4 {
padding-right: 1.5rem !important;
}
.pe-md-5 {
padding-right: 3rem !important;
}
.pb-md-0 {
padding-bottom: 0 !important;
}
.pb-md-1 {
padding-bottom: 0.25rem !important;
}
.pb-md-2 {
padding-bottom: 0.5rem !important;
}
.pb-md-3 {
padding-bottom: 1rem !important;
}
.pb-md-4 {
padding-bottom: 1.5rem !important;
}
.pb-md-5 {
padding-bottom: 3rem !important;
}
.ps-md-0 {
padding-left: 0 !important;
}
.ps-md-1 {
padding-left: 0.25rem !important;
}
.ps-md-2 {
padding-left: 0.5rem !important;
}
.ps-md-3 {
padding-left: 1rem !important;
}
.ps-md-4 {
padding-left: 1.5rem !important;
}
.ps-md-5 {
padding-left: 3rem !important;
}
.text-md-start {
text-align: left !important;
}
.text-md-end {
text-align: right !important;
}
.text-md-center {
text-align: center !important;
}
}
@media (min-width: 992px) {
.float-lg-start {
float: left !important;
}
.float-lg-end {
float: right !important;
}
.float-lg-none {
float: none !important;
}
.d-lg-inline {
display: inline !important;
}
.d-lg-inline-block {
display: inline-block !important;
}
.d-lg-block {
gitextract_7tenys2a/
├── app.js
├── config/
│ └── pass.js
├── configuraçoesNecessarias.txt
├── helpautenticacao/
│ └── eBibliotecario.js
├── models/
│ ├── Comentario.js
│ ├── Leitor.js
│ └── Livro.js
├── package.json
├── public/
│ ├── css/
│ │ ├── bootstrap-grid.css
│ │ ├── bootstrap-grid.rtl.css
│ │ ├── bootstrap-reboot.css
│ │ ├── bootstrap-reboot.rtl.css
│ │ ├── bootstrap-utilities.css
│ │ ├── bootstrap-utilities.rtl.css
│ │ ├── bootstrap.css
│ │ └── bootstrap.rtl.css
│ ├── csslocal/
│ │ ├── all.css
│ │ ├── body.css
│ │ ├── home.css
│ │ └── livro.css
│ └── js/
│ ├── bootstrap.bundle.js
│ ├── bootstrap.esm.js
│ └── bootstrap.js
├── rotas/
│ ├── bibliotecario.js
│ ├── leitor.js
│ └── principal.js
└── views/
├── bibliotecario/
│ ├── comentarios.handlebars
│ ├── index.handlebars
│ ├── livro.handlebars
│ └── livroeditar.handlebars
├── index.handlebars
├── layouts/
│ └── main.handlebars
├── leitor/
│ ├── cadastro.handlebars
│ ├── listaLeitores.handlebars
│ └── login.handlebars
├── listaLivros.handlebars
├── livro.handlebars
└── partials/
├── _msg.handlebars
└── _navbar.handlebars
SYMBOL INDEX (975 symbols across 3 files)
FILE: public/js/bootstrap.bundle.js
method find (line 26) | find(selector, element = document.documentElement) {
method findOne (line 30) | findOne(selector, element = document.documentElement) {
method children (line 34) | children(element, selector) {
method parents (line 38) | parents(element, selector) {
method prev (line 53) | prev(element, selector) {
method next (line 67) | next(element, selector) {
function getUidEvent (line 413) | function getUidEvent(element, uid) {
function getEvent (line 417) | function getEvent(element) {
function bootstrapHandler (line 424) | function bootstrapHandler(element, fn) {
function bootstrapDelegationHandler (line 436) | function bootstrapDelegationHandler(element, selector, fn) {
function findHandler (line 462) | function findHandler(events, handler, delegationSelector = null) {
function normalizeParams (line 476) | function normalizeParams(originalTypeEvent, handler, delegationFn) {
function addHandler (line 489) | function addHandler(element, originalTypeEvent, handler, delegationFn, o...
function removeHandler (line 537) | function removeHandler(element, events, typeEvent, handler, delegationSe...
function removeNamespacedHandlers (line 548) | function removeNamespacedHandlers(element, events, typeEvent, namespace) {
function getTypeEvent (line 558) | function getTypeEvent(event) {
method on (line 565) | on(element, event, handler, delegationFn) {
method one (line 569) | one(element, event, handler, delegationFn) {
method off (line 573) | off(element, originalTypeEvent, handler, delegationFn) {
method trigger (line 610) | trigger(element, event, args) {
method set (line 686) | set(element, key, instance) {
method get (line 703) | get(element, key) {
method remove (line 711) | remove(element, key) {
class BaseComponent (line 740) | class BaseComponent {
method constructor (line 741) | constructor(element) {
method dispose (line 752) | dispose() {
method _queueCallback (line 760) | _queueCallback(callback, element, isAnimated = true) {
method getInstance (line 766) | static getInstance(element) {
method getOrCreateInstance (line 770) | static getOrCreateInstance(element, config = {}) {
method VERSION (line 774) | static get VERSION() {
method NAME (line 778) | static get NAME() {
method DATA_KEY (line 782) | static get DATA_KEY() {
method EVENT_KEY (line 786) | static get EVENT_KEY() {
class Alert (line 821) | class Alert extends BaseComponent {
method NAME (line 823) | static get NAME() {
method close (line 828) | close(element) {
method _getRootElement (line 841) | _getRootElement(element) {
method _triggerCloseEvent (line 845) | _triggerCloseEvent(element) {
method _removeElement (line 849) | _removeElement(element) {
method _destroyElement (line 856) | _destroyElement(element) {
method jQueryInterface (line 862) | static jQueryInterface(config) {
method handleDismiss (line 872) | static handleDismiss(alertInstance) {
class Button (line 925) | class Button extends BaseComponent {
method NAME (line 927) | static get NAME() {
method toggle (line 932) | toggle() {
method jQueryInterface (line 938) | static jQueryInterface(config) {
function normalizeData (line 977) | function normalizeData(val) {
function normalizeDataKey (line 997) | function normalizeDataKey(key) {
method setDataAttribute (line 1002) | setDataAttribute(element, key, value) {
method removeDataAttribute (line 1006) | removeDataAttribute(element, key) {
method getDataAttributes (line 1010) | getDataAttributes(element) {
method getDataAttribute (line 1024) | getDataAttribute(element, key) {
method offset (line 1028) | offset(element) {
method position (line 1036) | position(element) {
class Carousel (line 1128) | class Carousel extends BaseComponent {
method constructor (line 1129) | constructor(element, config) {
method Default (line 1148) | static get Default() {
method NAME (line 1152) | static get NAME() {
method next (line 1157) | next() {
method nextWhenVisible (line 1161) | nextWhenVisible() {
method prev (line 1169) | prev() {
method pause (line 1173) | pause(event) {
method cycle (line 1187) | cycle(event) {
method to (line 1204) | to(index) {
method _getConfig (line 1230) | _getConfig(config) {
method _handleSwipe (line 1239) | _handleSwipe() {
method _addEventListeners (line 1256) | _addEventListeners() {
method _addTouchEventListeners (line 1271) | _addTouchEventListeners() {
method _keydown (line 1326) | _keydown(event) {
method _getItemIndex (line 1340) | _getItemIndex(element) {
method _getItemByOrder (line 1345) | _getItemByOrder(order, activeElement) {
method _triggerSlideEvent (line 1350) | _triggerSlideEvent(relatedTarget, eventDirectionName) {
method _setActiveIndicatorElement (line 1363) | _setActiveIndicatorElement(element) {
method _updateInterval (line 1380) | _updateInterval() {
method _slide (line 1397) | _slide(directionOrOrder, element) {
method _directionToOrder (line 1481) | _directionToOrder(direction) {
method _orderToDirection (line 1493) | _orderToDirection(order) {
method carouselInterface (line 1506) | static carouselInterface(element, config) {
method jQueryInterface (line 1534) | static jQueryInterface(config) {
method dataApiClickHandler (line 1540) | static dataApiClickHandler(event) {
class Collapse (line 1633) | class Collapse extends BaseComponent {
method constructor (line 1634) | constructor(element, config) {
method Default (line 1665) | static get Default() {
method NAME (line 1669) | static get NAME() {
method toggle (line 1674) | toggle() {
method show (line 1682) | show() {
method hide (line 1768) | hide() {
method setTransitioning (line 1819) | setTransitioning(isTransitioning) {
method _getConfig (line 1824) | _getConfig(config) {
method _getDimension (line 1834) | _getDimension() {
method _getParent (line 1838) | _getParent() {
method _addAriaAndCollapsedClass (line 1852) | _addAriaAndCollapsedClass(element, triggerArray) {
method collapseInterface (line 1870) | static collapseInterface(element, config) {
method jQueryInterface (line 1894) | static jQueryInterface(config) {
function getNodeName (line 1977) | function getNodeName(element) {
function getWindow (line 1981) | function getWindow(node) {
function isElement (line 1994) | function isElement(node) {
function isHTMLElement (line 1999) | function isHTMLElement(node) {
function isShadowRoot (line 2004) | function isShadowRoot(node) {
function applyStyles (line 2016) | function applyStyles(_ref) {
function effect$2 (line 2043) | function effect$2(_ref2) {
function getBasePlacement (line 2097) | function getBasePlacement(placement) {
function getBoundingClientRect (line 2101) | function getBoundingClientRect(element) {
function getLayoutRect (line 2117) | function getLayoutRect(element) {
function contains (line 2140) | function contains(parent, child) {
function getComputedStyle$1 (line 2163) | function getComputedStyle$1(element) {
function isTableElement (line 2167) | function isTableElement(element) {
function getDocumentElement (line 2171) | function getDocumentElement(element) {
function getParentNode (line 2177) | function getParentNode(element) {
function getTrueOffsetParent (line 2194) | function getTrueOffsetParent(element) {
function getContainingBlock (line 2205) | function getContainingBlock(element) {
function getOffsetParent (line 2237) | function getOffsetParent(element) {
function getMainAxisFromPlacement (line 2252) | function getMainAxisFromPlacement(placement) {
function within (line 2260) | function within(min$1, value, max$1) {
function getFreshSideObject (line 2264) | function getFreshSideObject() {
function mergePaddingObject (line 2273) | function mergePaddingObject(paddingObject) {
function expandToHashMap (line 2277) | function expandToHashMap(value, keys) {
function arrow (line 2291) | function arrow(_ref) {
function effect$1 (line 2328) | function effect$1(_ref2) {
function roundOffsetsByDPR (line 2375) | function roundOffsetsByDPR(_ref) {
function mapToStyles (line 2386) | function mapToStyles(_ref2) {
function computeStyles (line 2455) | function computeStyles(_ref4) {
function effect (line 2508) | function effect(_ref) {
function getOppositePlacement (line 2558) | function getOppositePlacement(placement) {
function getOppositeVariationPlacement (line 2568) | function getOppositeVariationPlacement(placement) {
function getWindowScroll (line 2574) | function getWindowScroll(node) {
function getWindowScrollBarX (line 2584) | function getWindowScrollBarX(element) {
function getViewportRect (line 2595) | function getViewportRect(element) {
function getDocumentRect (line 2635) | function getDocumentRect(element) {
function isScrollParent (line 2658) | function isScrollParent(element) {
function getScrollParent (line 2668) | function getScrollParent(node) {
function listScrollParents (line 2688) | function listScrollParents(element, list) {
function rectToClientRect (line 2704) | function rectToClientRect(rect) {
function getInnerBoundingClientRect (line 2713) | function getInnerBoundingClientRect(element) {
function getClientRectFromMixedType (line 2726) | function getClientRectFromMixedType(element, clippingParent) {
function getClippingParents (line 2733) | function getClippingParents(element) {
function getClippingRect (line 2750) | function getClippingRect(element, boundary, rootBoundary) {
function getVariation (line 2769) | function getVariation(placement) {
function computeOffsets (line 2773) | function computeOffsets(_ref) {
function detectOverflow (line 2838) | function detectOverflow(state, options) {
function computeAutoPlacement (line 2893) | function computeAutoPlacement(state, options) {
function getExpandedFallbackPlacements (line 2933) | function getExpandedFallbackPlacements(placement) {
function flip (line 2942) | function flip(_ref) {
function getSideOffsets (line 3073) | function getSideOffsets(overflow, rect, preventedOffsets) {
function isAnySideFullyClipped (line 3089) | function isAnySideFullyClipped(overflow) {
function hide (line 3095) | function hide(_ref) {
function distanceAndSkiddingToXY (line 3132) | function distanceAndSkiddingToXY(placement, rects, offset) {
function offset (line 3153) | function offset(_ref2) {
function popperOffsets (line 3184) | function popperOffsets(_ref) {
function getAltAxis (line 3208) | function getAltAxis(axis) {
function preventOverflow (line 3212) | function preventOverflow(_ref) {
function getHTMLElementScroll (line 3324) | function getHTMLElementScroll(element) {
function getNodeScroll (line 3331) | function getNodeScroll(node) {
function getCompositeRect (line 3341) | function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) {
function order (line 3381) | function order(modifiers) {
function orderModifiers (line 3413) | function orderModifiers(modifiers) {
function debounce (line 3424) | function debounce(fn) {
function mergeByName (line 3440) | function mergeByName(modifiers) {
function areValidElements (line 3461) | function areValidElements() {
function popperGenerator (line 3471) | function popperGenerator(generatorOptions) {
class Dropdown (line 3768) | class Dropdown extends BaseComponent {
method constructor (line 3769) | constructor(element, config) {
method Default (line 3780) | static get Default() {
method DefaultType (line 3784) | static get DefaultType() {
method NAME (line 3788) | static get NAME() {
method toggle (line 3793) | toggle() {
method show (line 3808) | show() {
method hide (line 3870) | hide() {
method dispose (line 3882) | dispose() {
method update (line 3890) | update() {
method _addEventListeners (line 3899) | _addEventListeners() {
method _completeHide (line 3906) | _completeHide(relatedTarget) {
method _getConfig (line 3933) | _getConfig(config) {
method _getMenuElement (line 3948) | _getMenuElement() {
method _getPlacement (line 3952) | _getPlacement() {
method _detectNavbar (line 3973) | _detectNavbar() {
method _getOffset (line 3977) | _getOffset() {
method _getPopperConfig (line 3993) | _getPopperConfig() {
method _selectMenuItem (line 4021) | _selectMenuItem({
method dropdownInterface (line 4037) | static dropdownInterface(element, config) {
method jQueryInterface (line 4049) | static jQueryInterface(config) {
method clearMenus (line 4055) | static clearMenus(event) {
method getParentFromElement (line 4099) | static getParentFromElement(element) {
method dataApiKeydownHandler (line 4103) | static dataApiKeydownHandler(event) {
class ScrollBarHelper (line 4185) | class ScrollBarHelper {
method constructor (line 4186) | constructor() {
method getWidth (line 4190) | getWidth() {
method hide (line 4196) | hide() {
method _disableOverFlow (line 4210) | _disableOverFlow() {
method _setElementAttributes (line 4216) | _setElementAttributes(selector, styleProp, callback) {
method reset (line 4233) | reset() {
method _saveInitialAttribute (line 4243) | _saveInitialAttribute(element, styleProp) {
method _resetElementAttributes (line 4251) | _resetElementAttributes(selector, styleProp) {
method _applyManipulationCallback (line 4266) | _applyManipulationCallback(selector, callBack) {
method isOverflowing (line 4274) | isOverflowing() {
class Backdrop (line 4306) | class Backdrop {
method constructor (line 4307) | constructor(config) {
method show (line 4313) | show(callback) {
method hide (line 4332) | hide(callback) {
method _getElement (line 4347) | _getElement() {
method _getConfig (line 4362) | _getConfig(config) {
method _append (line 4372) | _append() {
method dispose (line 4385) | dispose() {
method _emulateAnimation (line 4397) | _emulateAnimation(callback) {
class Modal (line 4456) | class Modal extends BaseComponent {
method constructor (line 4457) | constructor(element, config) {
method Default (line 4469) | static get Default() {
method NAME (line 4473) | static get NAME() {
method toggle (line 4478) | toggle(relatedTarget) {
method show (line 4482) | show(relatedTarget) {
method hide (line 4523) | hide(event) {
method dispose (line 4560) | dispose() {
method handleUpdate (line 4575) | handleUpdate() {
method _initializeBackDrop (line 4580) | _initializeBackDrop() {
method _getConfig (line 4588) | _getConfig(config) {
method _showElement (line 4597) | _showElement(relatedTarget) {
method _enforceFocus (line 4645) | _enforceFocus() {
method _setEscapeEvent (line 4655) | _setEscapeEvent() {
method _setResizeEvent (line 4670) | _setResizeEvent() {
method _hideModal (line 4678) | _hideModal() {
method _showBackdrop (line 4700) | _showBackdrop(callback) {
method _isAnimated (line 4721) | _isAnimated() {
method _triggerBackdropTransition (line 4725) | _triggerBackdropTransition() {
method _adjustDialog (line 4765) | _adjustDialog() {
method _resetAdjustments (line 4781) | _resetAdjustments() {
method jQueryInterface (line 4787) | static jQueryInterface(config, relatedTarget) {
class Offcanvas (line 4888) | class Offcanvas extends BaseComponent {
method constructor (line 4889) | constructor(element, config) {
method NAME (line 4899) | static get NAME() {
method Default (line 4903) | static get Default() {
method toggle (line 4908) | toggle(relatedTarget) {
method show (line 4912) | show(relatedTarget) {
method hide (line 4953) | hide() {
method dispose (line 4993) | dispose() {
method _getConfig (line 5001) | _getConfig(config) {
method _initializeBackDrop (line 5010) | _initializeBackDrop() {
method _enforceFocusOnElement (line 5019) | _enforceFocusOnElement(element) {
method _addEventListeners (line 5030) | _addEventListeners() {
method jQueryInterface (line 5040) | static jQueryInterface(config) {
function sanitizeHtml (line 5178) | function sanitizeHtml(unsafeHtml, allowList, sanitizeFn) {
class Tooltip (line 5304) | class Tooltip extends BaseComponent {
method constructor (line 5305) | constructor(element, config) {
method Default (line 5325) | static get Default() {
method NAME (line 5329) | static get NAME() {
method Event (line 5333) | static get Event() {
method DefaultType (line 5337) | static get DefaultType() {
method enable (line 5342) | enable() {
method disable (line 5346) | disable() {
method toggleEnabled (line 5350) | toggleEnabled() {
method toggle (line 5354) | toggle(event) {
method dispose (line 5380) | dispose() {
method show (line 5395) | show() {
method hide (line 5478) | hide() {
method update (line 5530) | update() {
method isWithContent (line 5537) | isWithContent() {
method getTipElement (line 5541) | getTipElement() {
method setContent (line 5552) | setContent() {
method setElementContent (line 5558) | setElementContent(element, content) {
method getTitle (line 5589) | getTitle() {
method updateAttachment (line 5599) | updateAttachment(attachment) {
method _initializeOnDelegatedTarget (line 5612) | _initializeOnDelegatedTarget(event, context) {
method _getOffset (line 5624) | _getOffset() {
method _getPopperConfig (line 5640) | _getPopperConfig(attachment) {
method _addAttachmentClass (line 5680) | _addAttachmentClass(attachment) {
method _getAttachment (line 5684) | _getAttachment(placement) {
method _setListeners (line 5688) | _setListeners() {
method _fixTitle (line 5720) | _fixTitle() {
method _enter (line 5736) | _enter(event, context) {
method _leave (line 5763) | _leave(event, context) {
method _isWithActiveTrigger (line 5789) | _isWithActiveTrigger() {
method _getConfig (line 5799) | _getConfig(config) {
method _getDelegateConfig (line 5836) | _getDelegateConfig() {
method _cleanTipClass (line 5850) | _cleanTipClass() {
method _handlePopperPlacementChange (line 5859) | _handlePopperPlacementChange(popperData) {
method jQueryInterface (line 5876) | static jQueryInterface(config) {
class Popover (line 5950) | class Popover extends Tooltip {
method Default (line 5952) | static get Default() {
method NAME (line 5956) | static get NAME() {
method Event (line 5960) | static get Event() {
method DefaultType (line 5964) | static get DefaultType() {
method isWithContent (line 5969) | isWithContent() {
method getTipElement (line 5973) | getTipElement() {
method setContent (line 5991) | setContent() {
method _addAttachmentClass (line 6007) | _addAttachmentClass(attachment) {
method _getContent (line 6011) | _getContent() {
method _cleanTipClass (line 6015) | _cleanTipClass() {
method jQueryInterface (line 6025) | static jQueryInterface(config) {
class ScrollSpy (line 6096) | class ScrollSpy extends BaseComponent {
method constructor (line 6097) | constructor(element, config) {
method Default (line 6113) | static get Default() {
method NAME (line 6117) | static get NAME() {
method refresh (line 6122) | refresh() {
method dispose (line 6150) | dispose() {
method _getConfig (line 6156) | _getConfig(config) {
method _getScrollTop (line 6179) | _getScrollTop() {
method _getScrollHeight (line 6183) | _getScrollHeight() {
method _getOffsetHeight (line 6187) | _getOffsetHeight() {
method _process (line 6191) | _process() {
method _activate (line 6229) | _activate(target) {
method _clear (line 6260) | _clear() {
method jQueryInterface (line 6265) | static jQueryInterface(config) {
class Tab (line 6339) | class Tab extends BaseComponent {
method NAME (line 6341) | static get NAME() {
method show (line 6346) | show() {
method _activate (line 6392) | _activate(element, container, callback) {
method _transitionComplete (line 6408) | _transitionComplete(element, active, callback) {
method jQueryInterface (line 6456) | static jQueryInterface(config) {
class Toast (line 6544) | class Toast extends BaseComponent {
method constructor (line 6545) | constructor(element, config) {
method DefaultType (line 6556) | static get DefaultType() {
method Default (line 6560) | static get Default() {
method NAME (line 6564) | static get NAME() {
method show (line 6569) | show() {
method hide (line 6601) | hide() {
method dispose (line 6623) | dispose() {
method _getConfig (line 6634) | _getConfig(config) {
method _maybeScheduleHide (line 6643) | _maybeScheduleHide() {
method _onInteraction (line 6657) | _onInteraction(event, isInteracting) {
method _setListeners (line 6685) | _setListeners() {
method _clearTimeout (line 6693) | _clearTimeout() {
method jQueryInterface (line 6699) | static jQueryInterface(config) {
FILE: public/js/bootstrap.esm.js
constant NODE_TEXT (line 20) | const NODE_TEXT = 3;
method find (line 22) | find(selector, element = document.documentElement) {
method findOne (line 26) | findOne(selector, element = document.documentElement) {
method children (line 30) | children(element, selector) {
method parents (line 34) | parents(element, selector) {
method prev (line 49) | prev(element, selector) {
method next (line 63) | next(element, selector) {
constant MAX_UID (line 86) | const MAX_UID = 1000000;
constant MILLISECONDS_MULTIPLIER (line 87) | const MILLISECONDS_MULTIPLIER = 1000;
constant TRANSITION_END (line 88) | const TRANSITION_END = 'transitionend';
function getUidEvent (line 409) | function getUidEvent(element, uid) {
function getEvent (line 413) | function getEvent(element) {
function bootstrapHandler (line 420) | function bootstrapHandler(element, fn) {
function bootstrapDelegationHandler (line 432) | function bootstrapDelegationHandler(element, selector, fn) {
function findHandler (line 458) | function findHandler(events, handler, delegationSelector = null) {
function normalizeParams (line 472) | function normalizeParams(originalTypeEvent, handler, delegationFn) {
function addHandler (line 485) | function addHandler(element, originalTypeEvent, handler, delegationFn, o...
function removeHandler (line 533) | function removeHandler(element, events, typeEvent, handler, delegationSe...
function removeNamespacedHandlers (line 544) | function removeNamespacedHandlers(element, events, typeEvent, namespace) {
function getTypeEvent (line 554) | function getTypeEvent(event) {
method on (line 561) | on(element, event, handler, delegationFn) {
method one (line 565) | one(element, event, handler, delegationFn) {
method off (line 569) | off(element, originalTypeEvent, handler, delegationFn) {
method trigger (line 606) | trigger(element, event, args) {
method set (line 682) | set(element, key, instance) {
method get (line 699) | get(element, key) {
method remove (line 707) | remove(element, key) {
constant VERSION (line 734) | const VERSION = '5.0.2';
class BaseComponent (line 736) | class BaseComponent {
method constructor (line 737) | constructor(element) {
method dispose (line 748) | dispose() {
method _queueCallback (line 756) | _queueCallback(callback, element, isAnimated = true) {
method getInstance (line 762) | static getInstance(element) {
method getOrCreateInstance (line 766) | static getOrCreateInstance(element, config = {}) {
method VERSION (line 770) | static get VERSION() {
method NAME (line 774) | static get NAME() {
method DATA_KEY (line 778) | static get DATA_KEY() {
method EVENT_KEY (line 782) | static get EVENT_KEY() {
constant SELECTOR_DISMISS (line 804) | const SELECTOR_DISMISS = '[data-bs-dismiss="alert"]';
constant EVENT_CLOSE (line 805) | const EVENT_CLOSE = `close${EVENT_KEY$b}`;
constant EVENT_CLOSED (line 806) | const EVENT_CLOSED = `closed${EVENT_KEY$b}`;
constant CLASS_NAME_ALERT (line 808) | const CLASS_NAME_ALERT = 'alert';
class Alert (line 817) | class Alert extends BaseComponent {
method NAME (line 819) | static get NAME() {
method close (line 824) | close(element) {
method _getRootElement (line 837) | _getRootElement(element) {
method _triggerCloseEvent (line 841) | _triggerCloseEvent(element) {
method _removeElement (line 845) | _removeElement(element) {
method _destroyElement (line 852) | _destroyElement(element) {
method jQueryInterface (line 858) | static jQueryInterface(config) {
method handleDismiss (line 868) | static handleDismiss(alertInstance) {
class Button (line 921) | class Button extends BaseComponent {
method NAME (line 923) | static get NAME() {
method toggle (line 928) | toggle() {
method jQueryInterface (line 934) | static jQueryInterface(config) {
function normalizeData (line 973) | function normalizeData(val) {
function normalizeDataKey (line 993) | function normalizeDataKey(key) {
method setDataAttribute (line 998) | setDataAttribute(element, key, value) {
method removeDataAttribute (line 1002) | removeDataAttribute(element, key) {
method getDataAttributes (line 1006) | getDataAttributes(element) {
method getDataAttribute (line 1020) | getDataAttribute(element, key) {
method offset (line 1024) | offset(element) {
method position (line 1032) | position(element) {
constant ARROW_LEFT_KEY (line 1057) | const ARROW_LEFT_KEY = 'ArrowLeft';
constant ARROW_RIGHT_KEY (line 1058) | const ARROW_RIGHT_KEY = 'ArrowRight';
constant TOUCHEVENT_COMPAT_WAIT (line 1059) | const TOUCHEVENT_COMPAT_WAIT = 500;
constant SWIPE_THRESHOLD (line 1061) | const SWIPE_THRESHOLD = 40;
constant ORDER_NEXT (line 1078) | const ORDER_NEXT = 'next';
constant ORDER_PREV (line 1079) | const ORDER_PREV = 'prev';
constant DIRECTION_LEFT (line 1080) | const DIRECTION_LEFT = 'left';
constant DIRECTION_RIGHT (line 1081) | const DIRECTION_RIGHT = 'right';
constant KEY_TO_DIRECTION (line 1082) | const KEY_TO_DIRECTION = {
constant EVENT_SLIDE (line 1086) | const EVENT_SLIDE = `slide${EVENT_KEY$9}`;
constant EVENT_SLID (line 1087) | const EVENT_SLID = `slid${EVENT_KEY$9}`;
constant EVENT_KEYDOWN (line 1088) | const EVENT_KEYDOWN = `keydown${EVENT_KEY$9}`;
constant EVENT_MOUSEENTER (line 1089) | const EVENT_MOUSEENTER = `mouseenter${EVENT_KEY$9}`;
constant EVENT_MOUSELEAVE (line 1090) | const EVENT_MOUSELEAVE = `mouseleave${EVENT_KEY$9}`;
constant EVENT_TOUCHSTART (line 1091) | const EVENT_TOUCHSTART = `touchstart${EVENT_KEY$9}`;
constant EVENT_TOUCHMOVE (line 1092) | const EVENT_TOUCHMOVE = `touchmove${EVENT_KEY$9}`;
constant EVENT_TOUCHEND (line 1093) | const EVENT_TOUCHEND = `touchend${EVENT_KEY$9}`;
constant EVENT_POINTERDOWN (line 1094) | const EVENT_POINTERDOWN = `pointerdown${EVENT_KEY$9}`;
constant EVENT_POINTERUP (line 1095) | const EVENT_POINTERUP = `pointerup${EVENT_KEY$9}`;
constant EVENT_DRAG_START (line 1096) | const EVENT_DRAG_START = `dragstart${EVENT_KEY$9}`;
constant CLASS_NAME_CAROUSEL (line 1099) | const CLASS_NAME_CAROUSEL = 'carousel';
constant CLASS_NAME_SLIDE (line 1101) | const CLASS_NAME_SLIDE = 'slide';
constant CLASS_NAME_END (line 1102) | const CLASS_NAME_END = 'carousel-item-end';
constant CLASS_NAME_START (line 1103) | const CLASS_NAME_START = 'carousel-item-start';
constant CLASS_NAME_NEXT (line 1104) | const CLASS_NAME_NEXT = 'carousel-item-next';
constant CLASS_NAME_PREV (line 1105) | const CLASS_NAME_PREV = 'carousel-item-prev';
constant CLASS_NAME_POINTER_EVENT (line 1106) | const CLASS_NAME_POINTER_EVENT = 'pointer-event';
constant SELECTOR_ACTIVE_ITEM (line 1108) | const SELECTOR_ACTIVE_ITEM = '.active.carousel-item';
constant SELECTOR_ITEM (line 1109) | const SELECTOR_ITEM = '.carousel-item';
constant SELECTOR_ITEM_IMG (line 1110) | const SELECTOR_ITEM_IMG = '.carousel-item img';
constant SELECTOR_NEXT_PREV (line 1111) | const SELECTOR_NEXT_PREV = '.carousel-item-next, .carousel-item-prev';
constant SELECTOR_INDICATORS (line 1112) | const SELECTOR_INDICATORS = '.carousel-indicators';
constant SELECTOR_INDICATOR (line 1113) | const SELECTOR_INDICATOR = '[data-bs-target]';
constant SELECTOR_DATA_SLIDE (line 1114) | const SELECTOR_DATA_SLIDE = '[data-bs-slide], [data-bs-slide-to]';
constant SELECTOR_DATA_RIDE (line 1115) | const SELECTOR_DATA_RIDE = '[data-bs-ride="carousel"]';
constant POINTER_TYPE_TOUCH (line 1116) | const POINTER_TYPE_TOUCH = 'touch';
constant POINTER_TYPE_PEN (line 1117) | const POINTER_TYPE_PEN = 'pen';
class Carousel (line 1124) | class Carousel extends BaseComponent {
method constructor (line 1125) | constructor(element, config) {
method Default (line 1144) | static get Default() {
method NAME (line 1148) | static get NAME() {
method next (line 1153) | next() {
method nextWhenVisible (line 1157) | nextWhenVisible() {
method prev (line 1165) | prev() {
method pause (line 1169) | pause(event) {
method cycle (line 1183) | cycle(event) {
method to (line 1200) | to(index) {
method _getConfig (line 1226) | _getConfig(config) {
method _handleSwipe (line 1235) | _handleSwipe() {
method _addEventListeners (line 1252) | _addEventListeners() {
method _addTouchEventListeners (line 1267) | _addTouchEventListeners() {
method _keydown (line 1322) | _keydown(event) {
method _getItemIndex (line 1336) | _getItemIndex(element) {
method _getItemByOrder (line 1341) | _getItemByOrder(order, activeElement) {
method _triggerSlideEvent (line 1346) | _triggerSlideEvent(relatedTarget, eventDirectionName) {
method _setActiveIndicatorElement (line 1359) | _setActiveIndicatorElement(element) {
method _updateInterval (line 1376) | _updateInterval() {
method _slide (line 1393) | _slide(directionOrOrder, element) {
method _directionToOrder (line 1477) | _directionToOrder(direction) {
method _orderToDirection (line 1489) | _orderToDirection(order) {
method carouselInterface (line 1502) | static carouselInterface(element, config) {
method jQueryInterface (line 1530) | static jQueryInterface(config) {
method dataApiClickHandler (line 1536) | static dataApiClickHandler(event) {
constant CLASS_NAME_COLLAPSE (line 1616) | const CLASS_NAME_COLLAPSE = 'collapse';
constant CLASS_NAME_COLLAPSING (line 1617) | const CLASS_NAME_COLLAPSING = 'collapsing';
constant CLASS_NAME_COLLAPSED (line 1618) | const CLASS_NAME_COLLAPSED = 'collapsed';
constant WIDTH (line 1619) | const WIDTH = 'width';
constant HEIGHT (line 1620) | const HEIGHT = 'height';
constant SELECTOR_ACTIVES (line 1621) | const SELECTOR_ACTIVES = '.show, .collapsing';
class Collapse (line 1629) | class Collapse extends BaseComponent {
method constructor (line 1630) | constructor(element, config) {
method Default (line 1661) | static get Default() {
method NAME (line 1665) | static get NAME() {
method toggle (line 1670) | toggle() {
method show (line 1678) | show() {
method hide (line 1764) | hide() {
method setTransitioning (line 1815) | setTransitioning(isTransitioning) {
method _getConfig (line 1820) | _getConfig(config) {
method _getDimension (line 1830) | _getDimension() {
method _getParent (line 1834) | _getParent() {
method _addAriaAndCollapsedClass (line 1848) | _addAriaAndCollapsedClass(element, triggerArray) {
method collapseInterface (line 1866) | static collapseInterface(element, config) {
method jQueryInterface (line 1890) | static jQueryInterface(config) {
constant SPACE_KEY (line 1958) | const SPACE_KEY = 'Space';
constant TAB_KEY (line 1959) | const TAB_KEY = 'Tab';
constant ARROW_UP_KEY (line 1960) | const ARROW_UP_KEY = 'ArrowUp';
constant ARROW_DOWN_KEY (line 1961) | const ARROW_DOWN_KEY = 'ArrowDown';
constant RIGHT_MOUSE_BUTTON (line 1962) | const RIGHT_MOUSE_BUTTON = 2;
constant REGEXP_KEYDOWN (line 1964) | const REGEXP_KEYDOWN = new RegExp(`${ARROW_UP_KEY}|${ARROW_DOWN_KEY}|${E...
constant EVENT_CLICK (line 1969) | const EVENT_CLICK = `click${EVENT_KEY$7}`;
constant EVENT_KEYDOWN_DATA_API (line 1971) | const EVENT_KEYDOWN_DATA_API = `keydown${EVENT_KEY$7}${DATA_API_KEY$4}`;
constant EVENT_KEYUP_DATA_API (line 1972) | const EVENT_KEYUP_DATA_API = `keyup${EVENT_KEY$7}${DATA_API_KEY$4}`;
constant CLASS_NAME_DROPUP (line 1974) | const CLASS_NAME_DROPUP = 'dropup';
constant CLASS_NAME_DROPEND (line 1975) | const CLASS_NAME_DROPEND = 'dropend';
constant CLASS_NAME_DROPSTART (line 1976) | const CLASS_NAME_DROPSTART = 'dropstart';
constant CLASS_NAME_NAVBAR (line 1977) | const CLASS_NAME_NAVBAR = 'navbar';
constant SELECTOR_MENU (line 1979) | const SELECTOR_MENU = '.dropdown-menu';
constant SELECTOR_NAVBAR_NAV (line 1980) | const SELECTOR_NAVBAR_NAV = '.navbar-nav';
constant SELECTOR_VISIBLE_ITEMS (line 1981) | const SELECTOR_VISIBLE_ITEMS = '.dropdown-menu .dropdown-item:not(.disab...
constant PLACEMENT_TOP (line 1982) | const PLACEMENT_TOP = isRTL() ? 'top-end' : 'top-start';
constant PLACEMENT_TOPEND (line 1983) | const PLACEMENT_TOPEND = isRTL() ? 'top-start' : 'top-end';
constant PLACEMENT_BOTTOM (line 1984) | const PLACEMENT_BOTTOM = isRTL() ? 'bottom-end' : 'bottom-start';
constant PLACEMENT_BOTTOMEND (line 1985) | const PLACEMENT_BOTTOMEND = isRTL() ? 'bottom-start' : 'bottom-end';
constant PLACEMENT_RIGHT (line 1986) | const PLACEMENT_RIGHT = isRTL() ? 'left-start' : 'right-start';
constant PLACEMENT_LEFT (line 1987) | const PLACEMENT_LEFT = isRTL() ? 'right-start' : 'left-start';
class Dropdown (line 2010) | class Dropdown extends BaseComponent {
method constructor (line 2011) | constructor(element, config) {
method Default (line 2022) | static get Default() {
method DefaultType (line 2026) | static get DefaultType() {
method NAME (line 2030) | static get NAME() {
method toggle (line 2035) | toggle() {
method show (line 2050) | show() {
method hide (line 2112) | hide() {
method dispose (line 2124) | dispose() {
method update (line 2132) | update() {
method _addEventListeners (line 2141) | _addEventListeners() {
method _completeHide (line 2148) | _completeHide(relatedTarget) {
method _getConfig (line 2175) | _getConfig(config) {
method _getMenuElement (line 2190) | _getMenuElement() {
method _getPlacement (line 2194) | _getPlacement() {
method _detectNavbar (line 2215) | _detectNavbar() {
method _getOffset (line 2219) | _getOffset() {
method _getPopperConfig (line 2235) | _getPopperConfig() {
method _selectMenuItem (line 2263) | _selectMenuItem({
method dropdownInterface (line 2279) | static dropdownInterface(element, config) {
method jQueryInterface (line 2291) | static jQueryInterface(config) {
method clearMenus (line 2297) | static clearMenus(event) {
method getParentFromElement (line 2341) | static getParentFromElement(element) {
method dataApiKeydownHandler (line 2345) | static dataApiKeydownHandler(event) {
constant SELECTOR_FIXED_CONTENT (line 2424) | const SELECTOR_FIXED_CONTENT = '.fixed-top, .fixed-bottom, .is-fixed, .s...
constant SELECTOR_STICKY_CONTENT (line 2425) | const SELECTOR_STICKY_CONTENT = '.sticky-top';
class ScrollBarHelper (line 2427) | class ScrollBarHelper {
method constructor (line 2428) | constructor() {
method getWidth (line 2432) | getWidth() {
method hide (line 2438) | hide() {
method _disableOverFlow (line 2452) | _disableOverFlow() {
method _setElementAttributes (line 2458) | _setElementAttributes(selector, styleProp, callback) {
method reset (line 2475) | reset() {
method _saveInitialAttribute (line 2485) | _saveInitialAttribute(element, styleProp) {
method _resetElementAttributes (line 2493) | _resetElementAttributes(selector, styleProp) {
method _applyManipulationCallback (line 2508) | _applyManipulationCallback(selector, callBack) {
method isOverflowing (line 2516) | isOverflowing() {
constant CLASS_NAME_BACKDROP (line 2543) | const CLASS_NAME_BACKDROP = 'modal-backdrop';
constant EVENT_MOUSEDOWN (line 2546) | const EVENT_MOUSEDOWN = `mousedown.bs.${NAME$7}`;
class Backdrop (line 2548) | class Backdrop {
method constructor (line 2549) | constructor(config) {
method show (line 2555) | show(callback) {
method hide (line 2574) | hide(callback) {
method _getElement (line 2589) | _getElement() {
method _getConfig (line 2604) | _getConfig(config) {
method _append (line 2614) | _append() {
method dispose (line 2627) | dispose() {
method _emulateAnimation (line 2639) | _emulateAnimation(callback) {
constant EVENT_HIDE_PREVENTED (line 2673) | const EVENT_HIDE_PREVENTED = `hidePrevented${EVENT_KEY$6}`;
constant EVENT_RESIZE (line 2678) | const EVENT_RESIZE = `resize${EVENT_KEY$6}`;
constant EVENT_MOUSEUP_DISMISS (line 2681) | const EVENT_MOUSEUP_DISMISS = `mouseup.dismiss${EVENT_KEY$6}`;
constant EVENT_MOUSEDOWN_DISMISS (line 2682) | const EVENT_MOUSEDOWN_DISMISS = `mousedown.dismiss${EVENT_KEY$6}`;
constant CLASS_NAME_OPEN (line 2684) | const CLASS_NAME_OPEN = 'modal-open';
constant CLASS_NAME_STATIC (line 2687) | const CLASS_NAME_STATIC = 'modal-static';
constant SELECTOR_DIALOG (line 2688) | const SELECTOR_DIALOG = '.modal-dialog';
constant SELECTOR_MODAL_BODY (line 2689) | const SELECTOR_MODAL_BODY = '.modal-body';
class Modal (line 2698) | class Modal extends BaseComponent {
method constructor (line 2699) | constructor(element, config) {
method Default (line 2711) | static get Default() {
method NAME (line 2715) | static get NAME() {
method toggle (line 2720) | toggle(relatedTarget) {
method show (line 2724) | show(relatedTarget) {
method hide (line 2765) | hide(event) {
method dispose (line 2802) | dispose() {
method handleUpdate (line 2817) | handleUpdate() {
method _initializeBackDrop (line 2822) | _initializeBackDrop() {
method _getConfig (line 2830) | _getConfig(config) {
method _showElement (line 2839) | _showElement(relatedTarget) {
method _enforceFocus (line 2887) | _enforceFocus() {
method _setEscapeEvent (line 2897) | _setEscapeEvent() {
method _setResizeEvent (line 2912) | _setResizeEvent() {
method _hideModal (line 2920) | _hideModal() {
method _showBackdrop (line 2942) | _showBackdrop(callback) {
method _isAnimated (line 2963) | _isAnimated() {
method _triggerBackdropTransition (line 2967) | _triggerBackdropTransition() {
method _adjustDialog (line 3007) | _adjustDialog() {
method _resetAdjustments (line 3023) | _resetAdjustments() {
method jQueryInterface (line 3029) | static jQueryInterface(config, relatedTarget) {
constant ESCAPE_KEY (line 3101) | const ESCAPE_KEY = 'Escape';
constant OPEN_SELECTOR (line 3113) | const OPEN_SELECTOR = '.offcanvas.show';
constant EVENT_KEYDOWN_DISMISS (line 3121) | const EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY$5}`;
class Offcanvas (line 3130) | class Offcanvas extends BaseComponent {
method constructor (line 3131) | constructor(element, config) {
method NAME (line 3141) | static get NAME() {
method Default (line 3145) | static get Default() {
method toggle (line 3150) | toggle(relatedTarget) {
method show (line 3154) | show(relatedTarget) {
method hide (line 3195) | hide() {
method dispose (line 3235) | dispose() {
method _getConfig (line 3243) | _getConfig(config) {
method _initializeBackDrop (line 3252) | _initializeBackDrop() {
method _enforceFocusOnElement (line 3261) | _enforceFocusOnElement(element) {
method _addEventListeners (line 3272) | _addEventListeners() {
method jQueryInterface (line 3282) | static jQueryInterface(config) {
constant ARIA_ATTRIBUTE_PATTERN (line 3349) | const ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i;
constant SAFE_URL_PATTERN (line 3356) | const SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(...
constant DATA_URL_PATTERN (line 3363) | const DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|w...
function sanitizeHtml (line 3420) | function sanitizeHtml(unsafeHtml, allowList, sanitizeFn) {
constant DISALLOWED_ATTRIBUTES (line 3472) | const DISALLOWED_ATTRIBUTES = new Set(['sanitize', 'allowList', 'sanitiz...
constant CLASS_NAME_MODAL (line 3531) | const CLASS_NAME_MODAL = 'modal';
constant HOVER_STATE_SHOW (line 3533) | const HOVER_STATE_SHOW = 'show';
constant HOVER_STATE_OUT (line 3534) | const HOVER_STATE_OUT = 'out';
constant SELECTOR_TOOLTIP_INNER (line 3535) | const SELECTOR_TOOLTIP_INNER = '.tooltip-inner';
constant TRIGGER_HOVER (line 3536) | const TRIGGER_HOVER = 'hover';
constant TRIGGER_FOCUS (line 3537) | const TRIGGER_FOCUS = 'focus';
constant TRIGGER_CLICK (line 3538) | const TRIGGER_CLICK = 'click';
constant TRIGGER_MANUAL (line 3539) | const TRIGGER_MANUAL = 'manual';
class Tooltip (line 3546) | class Tooltip extends BaseComponent {
method constructor (line 3547) | constructor(element, config) {
method Default (line 3567) | static get Default() {
method NAME (line 3571) | static get NAME() {
method Event (line 3575) | static get Event() {
method DefaultType (line 3579) | static get DefaultType() {
method enable (line 3584) | enable() {
method disable (line 3588) | disable() {
method toggleEnabled (line 3592) | toggleEnabled() {
method toggle (line 3596) | toggle(event) {
method dispose (line 3622) | dispose() {
method show (line 3637) | show() {
method hide (line 3720) | hide() {
method update (line 3772) | update() {
method isWithContent (line 3779) | isWithContent() {
method getTipElement (line 3783) | getTipElement() {
method setContent (line 3794) | setContent() {
method setElementContent (line 3800) | setElementContent(element, content) {
method getTitle (line 3831) | getTitle() {
method updateAttachment (line 3841) | updateAttachment(attachment) {
method _initializeOnDelegatedTarget (line 3854) | _initializeOnDelegatedTarget(event, context) {
method _getOffset (line 3866) | _getOffset() {
method _getPopperConfig (line 3882) | _getPopperConfig(attachment) {
method _addAttachmentClass (line 3922) | _addAttachmentClass(attachment) {
method _getAttachment (line 3926) | _getAttachment(placement) {
method _setListeners (line 3930) | _setListeners() {
method _fixTitle (line 3962) | _fixTitle() {
method _enter (line 3978) | _enter(event, context) {
method _leave (line 4005) | _leave(event, context) {
method _isWithActiveTrigger (line 4031) | _isWithActiveTrigger() {
method _getConfig (line 4041) | _getConfig(config) {
method _getDelegateConfig (line 4078) | _getDelegateConfig() {
method _cleanTipClass (line 4092) | _cleanTipClass() {
method _handlePopperPlacementChange (line 4101) | _handlePopperPlacementChange(popperData) {
method jQueryInterface (line 4118) | static jQueryInterface(config) {
constant CLASS_PREFIX (line 4158) | const CLASS_PREFIX = 'bs-popover';
constant BSCLS_PREFIX_REGEX (line 4159) | const BSCLS_PREFIX_REGEX = new RegExp(`(^|\\s)${CLASS_PREFIX}\\S+`, 'g');
constant SELECTOR_TITLE (line 4184) | const SELECTOR_TITLE = '.popover-header';
constant SELECTOR_CONTENT (line 4185) | const SELECTOR_CONTENT = '.popover-body';
class Popover (line 4192) | class Popover extends Tooltip {
method Default (line 4194) | static get Default() {
method NAME (line 4198) | static get NAME() {
method Event (line 4202) | static get Event() {
method DefaultType (line 4206) | static get DefaultType() {
method isWithContent (line 4211) | isWithContent() {
method getTipElement (line 4215) | getTipElement() {
method setContent (line 4233) | setContent() {
method _addAttachmentClass (line 4249) | _addAttachmentClass(attachment) {
method _getContent (line 4253) | _getContent() {
method _cleanTipClass (line 4257) | _cleanTipClass() {
method jQueryInterface (line 4267) | static jQueryInterface(config) {
constant EVENT_ACTIVATE (line 4318) | const EVENT_ACTIVATE = `activate${EVENT_KEY$2}`;
constant EVENT_SCROLL (line 4319) | const EVENT_SCROLL = `scroll${EVENT_KEY$2}`;
constant EVENT_LOAD_DATA_API (line 4320) | const EVENT_LOAD_DATA_API = `load${EVENT_KEY$2}${DATA_API_KEY$1}`;
constant CLASS_NAME_DROPDOWN_ITEM (line 4321) | const CLASS_NAME_DROPDOWN_ITEM = 'dropdown-item';
constant SELECTOR_DATA_SPY (line 4323) | const SELECTOR_DATA_SPY = '[data-bs-spy="scroll"]';
constant SELECTOR_NAV_LINKS (line 4325) | const SELECTOR_NAV_LINKS = '.nav-link';
constant SELECTOR_NAV_ITEMS (line 4326) | const SELECTOR_NAV_ITEMS = '.nav-item';
constant SELECTOR_LIST_ITEMS (line 4327) | const SELECTOR_LIST_ITEMS = '.list-group-item';
constant METHOD_OFFSET (line 4330) | const METHOD_OFFSET = 'offset';
constant METHOD_POSITION (line 4331) | const METHOD_POSITION = 'position';
class ScrollSpy (line 4338) | class ScrollSpy extends BaseComponent {
method constructor (line 4339) | constructor(element, config) {
method Default (line 4355) | static get Default() {
method NAME (line 4359) | static get NAME() {
method refresh (line 4364) | refresh() {
method dispose (line 4392) | dispose() {
method _getConfig (line 4398) | _getConfig(config) {
method _getScrollTop (line 4421) | _getScrollTop() {
method _getScrollHeight (line 4425) | _getScrollHeight() {
method _getOffsetHeight (line 4429) | _getOffsetHeight() {
method _process (line 4433) | _process() {
method _activate (line 4471) | _activate(target) {
method _clear (line 4502) | _clear() {
method jQueryInterface (line 4507) | static jQueryInterface(config) {
constant DATA_API_KEY (line 4558) | const DATA_API_KEY = '.data-api';
constant EVENT_CLICK_DATA_API (line 4563) | const EVENT_CLICK_DATA_API = `click${EVENT_KEY$1}${DATA_API_KEY}`;
constant CLASS_NAME_DROPDOWN_MENU (line 4564) | const CLASS_NAME_DROPDOWN_MENU = 'dropdown-menu';
constant CLASS_NAME_ACTIVE (line 4565) | const CLASS_NAME_ACTIVE = 'active';
constant SELECTOR_DROPDOWN (line 4568) | const SELECTOR_DROPDOWN = '.dropdown';
constant SELECTOR_NAV_LIST_GROUP (line 4569) | const SELECTOR_NAV_LIST_GROUP = '.nav, .list-group';
constant SELECTOR_ACTIVE (line 4570) | const SELECTOR_ACTIVE = '.active';
constant SELECTOR_ACTIVE_UL (line 4571) | const SELECTOR_ACTIVE_UL = ':scope > li > .active';
constant SELECTOR_DATA_TOGGLE (line 4572) | const SELECTOR_DATA_TOGGLE = '[data-bs-toggle="tab"], [data-bs-toggle="p...
constant SELECTOR_DROPDOWN_TOGGLE (line 4573) | const SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle';
constant SELECTOR_DROPDOWN_ACTIVE_CHILD (line 4574) | const SELECTOR_DROPDOWN_ACTIVE_CHILD = ':scope > .dropdown-menu .active';
class Tab (line 4581) | class Tab extends BaseComponent {
method NAME (line 4583) | static get NAME() {
method show (line 4588) | show() {
method _activate (line 4634) | _activate(element, container, callback) {
method _transitionComplete (line 4650) | _transitionComplete(element, active, callback) {
method jQueryInterface (line 4698) | static jQueryInterface(config) {
constant NAME (line 4753) | const NAME = 'toast';
constant DATA_KEY (line 4754) | const DATA_KEY = 'bs.toast';
constant EVENT_KEY (line 4755) | const EVENT_KEY = `.${DATA_KEY}`;
constant EVENT_CLICK_DISMISS (line 4756) | const EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY}`;
constant EVENT_MOUSEOVER (line 4757) | const EVENT_MOUSEOVER = `mouseover${EVENT_KEY}`;
constant EVENT_MOUSEOUT (line 4758) | const EVENT_MOUSEOUT = `mouseout${EVENT_KEY}`;
constant EVENT_FOCUSIN (line 4759) | const EVENT_FOCUSIN = `focusin${EVENT_KEY}`;
constant EVENT_FOCUSOUT (line 4760) | const EVENT_FOCUSOUT = `focusout${EVENT_KEY}`;
constant EVENT_HIDE (line 4761) | const EVENT_HIDE = `hide${EVENT_KEY}`;
constant EVENT_HIDDEN (line 4762) | const EVENT_HIDDEN = `hidden${EVENT_KEY}`;
constant EVENT_SHOW (line 4763) | const EVENT_SHOW = `show${EVENT_KEY}`;
constant EVENT_SHOWN (line 4764) | const EVENT_SHOWN = `shown${EVENT_KEY}`;
constant CLASS_NAME_FADE (line 4765) | const CLASS_NAME_FADE = 'fade';
constant CLASS_NAME_HIDE (line 4766) | const CLASS_NAME_HIDE = 'hide';
constant CLASS_NAME_SHOW (line 4767) | const CLASS_NAME_SHOW = 'show';
constant CLASS_NAME_SHOWING (line 4768) | const CLASS_NAME_SHOWING = 'showing';
constant SELECTOR_DATA_DISMISS (line 4779) | const SELECTOR_DATA_DISMISS = '[data-bs-dismiss="toast"]';
class Toast (line 4786) | class Toast extends BaseComponent {
method constructor (line 4787) | constructor(element, config) {
method DefaultType (line 4798) | static get DefaultType() {
method Default (line 4802) | static get Default() {
method NAME (line 4806) | static get NAME() {
method show (line 4811) | show() {
method hide (line 4843) | hide() {
method dispose (line 4865) | dispose() {
method _getConfig (line 4876) | _getConfig(config) {
method _maybeScheduleHide (line 4885) | _maybeScheduleHide() {
method _onInteraction (line 4899) | _onInteraction(event, isInteracting) {
method _setListeners (line 4927) | _setListeners() {
method _clearTimeout (line 4935) | _clearTimeout() {
method jQueryInterface (line 4941) | static jQueryInterface(config) {
FILE: public/js/bootstrap.js
function _interopNamespace (line 12) | function _interopNamespace(e) {
method find (line 48) | find(selector, element = document.documentElement) {
method findOne (line 52) | findOne(selector, element = document.documentElement) {
method children (line 56) | children(element, selector) {
method parents (line 60) | parents(element, selector) {
method prev (line 75) | prev(element, selector) {
method next (line 89) | next(element, selector) {
function getUidEvent (line 435) | function getUidEvent(element, uid) {
function getEvent (line 439) | function getEvent(element) {
function bootstrapHandler (line 446) | function bootstrapHandler(element, fn) {
function bootstrapDelegationHandler (line 458) | function bootstrapDelegationHandler(element, selector, fn) {
function findHandler (line 484) | function findHandler(events, handler, delegationSelector = null) {
function normalizeParams (line 498) | function normalizeParams(originalTypeEvent, handler, delegationFn) {
function addHandler (line 511) | function addHandler(element, originalTypeEvent, handler, delegationFn, o...
function removeHandler (line 559) | function removeHandler(element, events, typeEvent, handler, delegationSe...
function removeNamespacedHandlers (line 570) | function removeNamespacedHandlers(element, events, typeEvent, namespace) {
function getTypeEvent (line 580) | function getTypeEvent(event) {
method on (line 587) | on(element, event, handler, delegationFn) {
method one (line 591) | one(element, event, handler, delegationFn) {
method off (line 595) | off(element, originalTypeEvent, handler, delegationFn) {
method trigger (line 632) | trigger(element, event, args) {
method set (line 708) | set(element, key, instance) {
method get (line 725) | get(element, key) {
method remove (line 733) | remove(element, key) {
class BaseComponent (line 762) | class BaseComponent {
method constructor (line 763) | constructor(element) {
method dispose (line 774) | dispose() {
method _queueCallback (line 782) | _queueCallback(callback, element, isAnimated = true) {
method getInstance (line 788) | static getInstance(element) {
method getOrCreateInstance (line 792) | static getOrCreateInstance(element, config = {}) {
method VERSION (line 796) | static get VERSION() {
method NAME (line 800) | static get NAME() {
method DATA_KEY (line 804) | static get DATA_KEY() {
method EVENT_KEY (line 808) | static get EVENT_KEY() {
class Alert (line 843) | class Alert extends BaseComponent {
method NAME (line 845) | static get NAME() {
method close (line 850) | close(element) {
method _getRootElement (line 863) | _getRootElement(element) {
method _triggerCloseEvent (line 867) | _triggerCloseEvent(element) {
method _removeElement (line 871) | _removeElement(element) {
method _destroyElement (line 878) | _destroyElement(element) {
method jQueryInterface (line 884) | static jQueryInterface(config) {
method handleDismiss (line 894) | static handleDismiss(alertInstance) {
class Button (line 947) | class Button extends BaseComponent {
method NAME (line 949) | static get NAME() {
method toggle (line 954) | toggle() {
method jQueryInterface (line 960) | static jQueryInterface(config) {
function normalizeData (line 999) | function normalizeData(val) {
function normalizeDataKey (line 1019) | function normalizeDataKey(key) {
method setDataAttribute (line 1024) | setDataAttribute(element, key, value) {
method removeDataAttribute (line 1028) | removeDataAttribute(element, key) {
method getDataAttributes (line 1032) | getDataAttributes(element) {
method getDataAttribute (line 1046) | getDataAttribute(element, key) {
method offset (line 1050) | offset(element) {
method position (line 1058) | position(element) {
class Carousel (line 1150) | class Carousel extends BaseComponent {
method constructor (line 1151) | constructor(element, config) {
method Default (line 1170) | static get Default() {
method NAME (line 1174) | static get NAME() {
method next (line 1179) | next() {
method nextWhenVisible (line 1183) | nextWhenVisible() {
method prev (line 1191) | prev() {
method pause (line 1195) | pause(event) {
method cycle (line 1209) | cycle(event) {
method to (line 1226) | to(index) {
method _getConfig (line 1252) | _getConfig(config) {
method _handleSwipe (line 1261) | _handleSwipe() {
method _addEventListeners (line 1278) | _addEventListeners() {
method _addTouchEventListeners (line 1293) | _addTouchEventListeners() {
method _keydown (line 1348) | _keydown(event) {
method _getItemIndex (line 1362) | _getItemIndex(element) {
method _getItemByOrder (line 1367) | _getItemByOrder(order, activeElement) {
method _triggerSlideEvent (line 1372) | _triggerSlideEvent(relatedTarget, eventDirectionName) {
method _setActiveIndicatorElement (line 1385) | _setActiveIndicatorElement(element) {
method _updateInterval (line 1402) | _updateInterval() {
method _slide (line 1419) | _slide(directionOrOrder, element) {
method _directionToOrder (line 1503) | _directionToOrder(direction) {
method _orderToDirection (line 1515) | _orderToDirection(order) {
method carouselInterface (line 1528) | static carouselInterface(element, config) {
method jQueryInterface (line 1556) | static jQueryInterface(config) {
method dataApiClickHandler (line 1562) | static dataApiClickHandler(event) {
class Collapse (line 1655) | class Collapse extends BaseComponent {
method constructor (line 1656) | constructor(element, config) {
method Default (line 1687) | static get Default() {
method NAME (line 1691) | static get NAME() {
method toggle (line 1696) | toggle() {
method show (line 1704) | show() {
method hide (line 1790) | hide() {
method setTransitioning (line 1841) | setTransitioning(isTransitioning) {
method _getConfig (line 1846) | _getConfig(config) {
method _getDimension (line 1856) | _getDimension() {
method _getParent (line 1860) | _getParent() {
method _addAriaAndCollapsedClass (line 1874) | _addAriaAndCollapsedClass(element, triggerArray) {
method collapseInterface (line 1892) | static collapseInterface(element, config) {
method jQueryInterface (line 1916) | static jQueryInterface(config) {
class Dropdown (line 2036) | class Dropdown extends BaseComponent {
method constructor (line 2037) | constructor(element, config) {
method Default (line 2048) | static get Default() {
method DefaultType (line 2052) | static get DefaultType() {
method NAME (line 2056) | static get NAME() {
method toggle (line 2061) | toggle() {
method show (line 2076) | show() {
method hide (line 2138) | hide() {
method dispose (line 2150) | dispose() {
method update (line 2158) | update() {
method _addEventListeners (line 2167) | _addEventListeners() {
method _completeHide (line 2174) | _completeHide(relatedTarget) {
method _getConfig (line 2201) | _getConfig(config) {
method _getMenuElement (line 2216) | _getMenuElement() {
method _getPlacement (line 2220) | _getPlacement() {
method _detectNavbar (line 2241) | _detectNavbar() {
method _getOffset (line 2245) | _getOffset() {
method _getPopperConfig (line 2261) | _getPopperConfig() {
method _selectMenuItem (line 2289) | _selectMenuItem({
method dropdownInterface (line 2305) | static dropdownInterface(element, config) {
method jQueryInterface (line 2317) | static jQueryInterface(config) {
method clearMenus (line 2323) | static clearMenus(event) {
method getParentFromElement (line 2367) | static getParentFromElement(element) {
method dataApiKeydownHandler (line 2371) | static dataApiKeydownHandler(event) {
class ScrollBarHelper (line 2453) | class ScrollBarHelper {
method constructor (line 2454) | constructor() {
method getWidth (line 2458) | getWidth() {
method hide (line 2464) | hide() {
method _disableOverFlow (line 2478) | _disableOverFlow() {
method _setElementAttributes (line 2484) | _setElementAttributes(selector, styleProp, callback) {
method reset (line 2501) | reset() {
method _saveInitialAttribute (line 2511) | _saveInitialAttribute(element, styleProp) {
method _resetElementAttributes (line 2519) | _resetElementAttributes(selector, styleProp) {
method _applyManipulationCallback (line 2534) | _applyManipulationCallback(selector, callBack) {
method isOverflowing (line 2542) | isOverflowing() {
class Backdrop (line 2574) | class Backdrop {
method constructor (line 2575) | constructor(config) {
method show (line 2581) | show(callback) {
method hide (line 2600) | hide(callback) {
method _getElement (line 2615) | _getElement() {
method _getConfig (line 2630) | _getConfig(config) {
method _append (line 2640) | _append() {
method dispose (line 2653) | dispose() {
method _emulateAnimation (line 2665) | _emulateAnimation(callback) {
class Modal (line 2724) | class Modal extends BaseComponent {
method constructor (line 2725) | constructor(element, config) {
method Default (line 2737) | static get Default() {
method NAME (line 2741) | static get NAME() {
method toggle (line 2746) | toggle(relatedTarget) {
method show (line 2750) | show(relatedTarget) {
method hide (line 2791) | hide(event) {
method dispose (line 2828) | dispose() {
method handleUpdate (line 2843) | handleUpdate() {
method _initializeBackDrop (line 2848) | _initializeBackDrop() {
method _getConfig (line 2856) | _getConfig(config) {
method _showElement (line 2865) | _showElement(relatedTarget) {
method _enforceFocus (line 2913) | _enforceFocus() {
method _setEscapeEvent (line 2923) | _setEscapeEvent() {
method _setResizeEvent (line 2938) | _setResizeEvent() {
method _hideModal (line 2946) | _hideModal() {
method _showBackdrop (line 2968) | _showBackdrop(callback) {
method _isAnimated (line 2989) | _isAnimated() {
method _triggerBackdropTransition (line 2993) | _triggerBackdropTransition() {
method _adjustDialog (line 3033) | _adjustDialog() {
method _resetAdjustments (line 3049) | _resetAdjustments() {
method jQueryInterface (line 3055) | static jQueryInterface(config, relatedTarget) {
class Offcanvas (line 3156) | class Offcanvas extends BaseComponent {
method constructor (line 3157) | constructor(element, config) {
method NAME (line 3167) | static get NAME() {
method Default (line 3171) | static get Default() {
method toggle (line 3176) | toggle(relatedTarget) {
method show (line 3180) | show(relatedTarget) {
method hide (line 3221) | hide() {
method dispose (line 3261) | dispose() {
method _getConfig (line 3269) | _getConfig(config) {
method _initializeBackDrop (line 3278) | _initializeBackDrop() {
method _enforceFocusOnElement (line 3287) | _enforceFocusOnElement(element) {
method _addEventListeners (line 3298) | _addEventListeners() {
method jQueryInterface (line 3308) | static jQueryInterface(config) {
function sanitizeHtml (line 3446) | function sanitizeHtml(unsafeHtml, allowList, sanitizeFn) {
class Tooltip (line 3572) | class Tooltip extends BaseComponent {
method constructor (line 3573) | constructor(element, config) {
method Default (line 3593) | static get Default() {
method NAME (line 3597) | static get NAME() {
method Event (line 3601) | static get Event() {
method DefaultType (line 3605) | static get DefaultType() {
method enable (line 3610) | enable() {
method disable (line 3614) | disable() {
method toggleEnabled (line 3618) | toggleEnabled() {
method toggle (line 3622) | toggle(event) {
method dispose (line 3648) | dispose() {
method show (line 3663) | show() {
method hide (line 3746) | hide() {
method update (line 3798) | update() {
method isWithContent (line 3805) | isWithContent() {
method getTipElement (line 3809) | getTipElement() {
method setContent (line 3820) | setContent() {
method setElementContent (line 3826) | setElementContent(element, content) {
method getTitle (line 3857) | getTitle() {
method updateAttachment (line 3867) | updateAttachment(attachment) {
method _initializeOnDelegatedTarget (line 3880) | _initializeOnDelegatedTarget(event, context) {
method _getOffset (line 3892) | _getOffset() {
method _getPopperConfig (line 3908) | _getPopperConfig(attachment) {
method _addAttachmentClass (line 3948) | _addAttachmentClass(attachment) {
method _getAttachment (line 3952) | _getAttachment(placement) {
method _setListeners (line 3956) | _setListeners() {
method _fixTitle (line 3988) | _fixTitle() {
method _enter (line 4004) | _enter(event, context) {
method _leave (line 4031) | _leave(event, context) {
method _isWithActiveTrigger (line 4057) | _isWithActiveTrigger() {
method _getConfig (line 4067) | _getConfig(config) {
method _getDelegateConfig (line 4104) | _getDelegateConfig() {
method _cleanTipClass (line 4118) | _cleanTipClass() {
method _handlePopperPlacementChange (line 4127) | _handlePopperPlacementChange(popperData) {
method jQueryInterface (line 4144) | static jQueryInterface(config) {
class Popover (line 4218) | class Popover extends Tooltip {
method Default (line 4220) | static get Default() {
method NAME (line 4224) | static get NAME() {
method Event (line 4228) | static get Event() {
method DefaultType (line 4232) | static get DefaultType() {
method isWithContent (line 4237) | isWithContent() {
method getTipElement (line 4241) | getTipElement() {
method setContent (line 4259) | setContent() {
method _addAttachmentClass (line 4275) | _addAttachmentClass(attachment) {
method _getContent (line 4279) | _getContent() {
method _cleanTipClass (line 4283) | _cleanTipClass() {
method jQueryInterface (line 4293) | static jQueryInterface(config) {
class ScrollSpy (line 4364) | class ScrollSpy extends BaseComponent {
method constructor (line 4365) | constructor(element, config) {
method Default (line 4381) | static get Default() {
method NAME (line 4385) | static get NAME() {
method refresh (line 4390) | refresh() {
method dispose (line 4418) | dispose() {
method _getConfig (line 4424) | _getConfig(config) {
method _getScrollTop (line 4447) | _getScrollTop() {
method _getScrollHeight (line 4451) | _getScrollHeight() {
method _getOffsetHeight (line 4455) | _getOffsetHeight() {
method _process (line 4459) | _process() {
method _activate (line 4497) | _activate(target) {
method _clear (line 4528) | _clear() {
method jQueryInterface (line 4533) | static jQueryInterface(config) {
class Tab (line 4607) | class Tab extends BaseComponent {
method NAME (line 4609) | static get NAME() {
method show (line 4614) | show() {
method _activate (line 4660) | _activate(element, container, callback) {
method _transitionComplete (line 4676) | _transitionComplete(element, active, callback) {
method jQueryInterface (line 4724) | static jQueryInterface(config) {
class Toast (line 4812) | class Toast extends BaseComponent {
method constructor (line 4813) | constructor(element, config) {
method DefaultType (line 4824) | static get DefaultType() {
method Default (line 4828) | static get Default() {
method NAME (line 4832) | static get NAME() {
method show (line 4837) | show() {
method hide (line 4869) | hide() {
method dispose (line 4891) | dispose() {
method _getConfig (line 4902) | _getConfig(config) {
method _maybeScheduleHide (line 4911) | _maybeScheduleHide() {
method _onInteraction (line 4925) | _onInteraction(event, isInteracting) {
method _setListeners (line 4953) | _setListeners() {
method _clearTimeout (line 4961) | _clearTimeout() {
method jQueryInterface (line 4967) | static jQueryInterface(config) {
Condensed preview — 39 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (1,276K chars).
[
{
"path": "app.js",
"chars": 2154,
"preview": "//Carregar Modulos\n\n const express = require(\"express\");\n const handlebars = require(\"express-handlebars\");\n co"
},
{
"path": "config/pass.js",
"chars": 1105,
"preview": "//autenticaçao local\nconst localStrategy = require(\"passport-local\").Strategy;\nconst mongoose = require(\"mongoose\");\ncon"
},
{
"path": "configuraçoesNecessarias.txt",
"chars": 168,
"preview": "Nodejs\nBanco de dados Usado - MONGODB\n\nNPM- Dependencias\n(npm install <Dependencia>)\n-express\n-express-handlebars\n-body-"
},
{
"path": "helpautenticacao/eBibliotecario.js",
"chars": 284,
"preview": "module.exports={\n ebibliotecario:(req,res,next)=>{\n if (req.isAuthenticated() && req.user.eBibliotecario == 1)"
},
{
"path": "models/Comentario.js",
"chars": 554,
"preview": "const mongoose = require('mongoose');\nconst Schema = mongoose.Schema;\n\nconst Comentario = new Schema({\n titulo:{\n "
},
{
"path": "models/Leitor.js",
"chars": 463,
"preview": "const mongoose = require('mongoose');\nconst Schema = mongoose.Schema;\n\nconst Leitor = new Schema({\n apelido:{\n "
},
{
"path": "models/Livro.js",
"chars": 549,
"preview": "const mongoose = require(\"mongoose\");\nconst Schema = mongoose.Schema;\n\nconst Livro = new Schema({\n titulo:{\n t"
},
{
"path": "package.json",
"chars": 761,
"preview": "{\n \"name\": \"livrariacadastro\",\n \"version\": \"1.0.0\",\n \"description\": \"\",\n \"main\": \"app.js\",\n \"scripts\": {\n \"test\""
},
{
"path": "public/css/bootstrap-grid.css",
"chars": 70685,
"preview": "/*!\n * Bootstrap Grid v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-"
},
{
"path": "public/css/bootstrap-grid.rtl.css",
"chars": 70759,
"preview": "/*!\n * Bootstrap Grid v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-"
},
{
"path": "public/css/bootstrap-reboot.css",
"chars": 5882,
"preview": "/*!\n * Bootstrap Reboot v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 201"
},
{
"path": "public/css/bootstrap-reboot.rtl.css",
"chars": 5859,
"preview": "/*!\n * Bootstrap Reboot v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 201"
},
{
"path": "public/css/bootstrap-utilities.css",
"chars": 68963,
"preview": "/*!\n * Bootstrap Utilities v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright "
},
{
"path": "public/css/bootstrap-utilities.rtl.css",
"chars": 68830,
"preview": "/*!\n * Bootstrap Utilities v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright "
},
{
"path": "public/css/bootstrap.css",
"chars": 195701,
"preview": "@charset \"UTF-8\";\n/*!\n * Bootstrap v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Co"
},
{
"path": "public/css/bootstrap.rtl.css",
"chars": 195367,
"preview": "@charset \"UTF-8\";\n/*!\n * Bootstrap v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Co"
},
{
"path": "public/csslocal/all.css",
"chars": 60,
"preview": "@import \"home.css\";\n@import \"body.css\";\n@import \"livro.css\";"
},
{
"path": "public/csslocal/body.css",
"chars": 99,
"preview": "body{\n background-color: rgb(255, 255, 255);\n font-family: 'Times New Roman', Times, serif;\n}"
},
{
"path": "public/csslocal/home.css",
"chars": 602,
"preview": ".card-body{\n background-color: rgb(245, 245, 245);\n color: rgb(19, 19, 19);\n}\n\n#corbanner{\n background-color: r"
},
{
"path": "public/csslocal/livro.css",
"chars": 1323,
"preview": "#bannerlivros{\n background-image: url(\"/imagensProjeto/livrobanner4.jpg\");\n background-repeat: no-repeat;\n back"
},
{
"path": "public/js/bootstrap.bundle.js",
"chars": 207942,
"preview": "/*!\n * Bootstrap v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors (https://github.com/t"
},
{
"path": "public/js/bootstrap.esm.js",
"chars": 139439,
"preview": "/*!\n * Bootstrap v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors (https://github.com/t"
},
{
"path": "public/js/bootstrap.js",
"chars": 148578,
"preview": "/*!\n * Bootstrap v5.0.2 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors (https://github.com/t"
},
{
"path": "rotas/bibliotecario.js",
"chars": 3264,
"preview": "//Arquivos para guardar as rotas de bibliotecario\n\nconst express = require('express');\nconst mongoose = require('mongoo"
},
{
"path": "rotas/leitor.js",
"chars": 4448,
"preview": "const mongoose = require('mongoose');\nconst express = require('express');\nconst router = express.Router();\nrequire(\"../m"
},
{
"path": "rotas/principal.js",
"chars": 1226,
"preview": "const express = require('express');\nconst router = express.Router();\nconst mongoose = require('mongoose');\nrequire(\"../m"
},
{
"path": "views/bibliotecario/comentarios.handlebars",
"chars": 596,
"preview": "{{>_navbar}}\n{{#each sucess_msg }}\n <div class=\"alert alert-success\" role=\"alert\">\n {{texto}}\n</div>\n{{/each}}\n<h1>Com"
},
{
"path": "views/bibliotecario/index.handlebars",
"chars": 989,
"preview": "{{>_navbar}}\n{{#each sucess_msg }}\n <div class=\"alert alert-success\" role=\"alert\">\n {{texto}}\n</div>\n{{/each}}\n<h1>Liv"
},
{
"path": "views/bibliotecario/livro.handlebars",
"chars": 1766,
"preview": "{{>_navbar}}\n{{#each error_msg }}\n <div class=\"alert alert-danger\" role=\"alert\">\n {{texto}}\n</div>\n{{/each}}\n<h2>-Cada"
},
{
"path": "views/bibliotecario/livroeditar.handlebars",
"chars": 2035,
"preview": "{{>_navbar}}\n<h2>-Editar Livro-</h2>\n\n<form action=\"/bibliotecario/livro/editar\" method=\"POST\">\n <div class=\"form\">\n "
},
{
"path": "views/index.handlebars",
"chars": 1387,
"preview": "<div class=\"background\">\n {{>_navbar}}\n\n <div id=\"bannerlivroindex\">\n <div class=\"container\">\n <div class=\"px-"
},
{
"path": "views/layouts/main.handlebars",
"chars": 996,
"preview": "<!DOCTYPE html>\n<html lang=\"pt-br\">\n<head>\n <meta charset=\"UTF-8\">\n <link rel=\"stylesheet\" href=\"/css/bootstrap.cs"
},
{
"path": "views/leitor/cadastro.handlebars",
"chars": 1963,
"preview": "<div class=\"background\">\n <br>\n {{#each erros}}\n <div class=\"alert alert-danger\" role=\"alert\">\n {{texto}}\n "
},
{
"path": "views/leitor/listaLeitores.handlebars",
"chars": 414,
"preview": "{{>_navbar}}\n{{#each sucess_msg }}\n <div class=\"alert alert-success\" role=\"alert\">\n {{texto}}\n</div>\n{{/each}}\n<h1>Lei"
},
{
"path": "views/leitor/login.handlebars",
"chars": 1213,
"preview": "<div class=\"background\">\n <br>\n <br>\n <br>\n {{#each erros}}\n <div class=\"alert alert-danger\" role=\"alert\">\n "
},
{
"path": "views/listaLivros.handlebars",
"chars": 1101,
"preview": "<div class=\"background\">\n {{>_navbar}}\n <div class=\"text-center\">\n <div id=\"bannerlivros\">\n <img"
},
{
"path": "views/livro.handlebars",
"chars": 3786,
"preview": "{{>_navbar}}\n<div class=\"background\">\n <div class=\"text-center\" id=\"banner_livro\">\n <h1>{{livro.titulo}}<br>\n "
},
{
"path": "views/partials/_msg.handlebars",
"chars": 197,
"preview": "{{#if sucess_msg}}\n<div class=\"alert alert-success\" role=\"alert\">\n {{sucess_msg}}\n</div>\n{{/if}}\n \n{{#if error_msg}}"
},
{
"path": "views/partials/_navbar.handlebars",
"chars": 757,
"preview": "<nav class=\"navbar navbar-expand-lg navbar-dark bg-dark\">\n <div class=\"container-fluid\">\n <div class=\"collapse navba"
}
]
About this extraction
This page contains the full source code of the wwpedro/NodejsLivrariaCRUD GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 39 files (1.2 MB), approximately 352.6k tokens, and a symbol index with 975 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.