@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;

0,400;0,700;0,800;1,400;1,700;1,800&display=swap);@charset "UTF-8";
:root {
  --max-width: 1800px;
  --gutter: 1rem;
  --header-height: 0px;
  --border-radius: 0.5rem;
  --min-grid: 400px;
  --columns-grid: 1fr;
}

:root {
  --first-color: #161464;
  /*--second-color: #09f0a0;*/
  --second-color: #18bd84;
  --third-color: #ff3c32;
  --success-color: #00c600;
  --danger-color: #ff0019;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --mediador-color: #ff60b0;
  --tramitador-color: #54ce68;
  --sanitario-color: #49acc5;
  --juridico-color: #b36440;
  --light-color: #ececec;
  --dark-color: #1a1c20;
  --white-color: #ffffff;
  --transparent-color: transparent;
  --text-color: #161464;
  --link-color: var(--first-color);
  --body-bg: #ffffff;
  --border-color: #dfe2e2;
  --modal-bg: #000000b5;
  --download-color:#666;
  --grey-color: #f0f0f0;
}

:root {
  --text-font: "Open Sans", sans-serif;
  --title-font: "Open Sans", sans-serif;
}

:root {
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.875rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  --title-line-height: 1.3;
  --text-line-height: 1.6;
  --input-height: 40px;
}

@media screen and (max-width: 1024px) {
  :root {
    --h1-font-size: 1.625rem;
    --h2-font-size: 1.375rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.9375rem;
    --small-font-size: 0.8125rem;
    --smaller-font-size: 0.6875rem;
  }
}

:root {
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

:root {
  --shadow: 0 2px 16px -2px rgba(0,0,0,0.15);
}

*,
*::before,
*:after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--body-bg);
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}
.tabspanel {
  margin-top: 30px;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

p,
blockquote {
  margin-top: 0;
  margin-bottom: var(--gutter);
}

p:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

p:empty {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: var(--link-color);
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

hr {
  height: 1px;
  color: var(--border-color);
  background-color: var(--border-color);
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

:not(pre) code {
  color: var(--third-color);
  padding: 0.1rem 0.3rem;
  word-break: break-all;
}

[draggable] {
  cursor: move;
}

.header {
  background: #fffffff0;
  width: 100%;
  box-shadow: var(--shadow);
}
.table-container2{
    padding: 50px;
    background:  var(--light-color);
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
}

.header .icon-header {
  font-size: 23px;
}

.header .icon-header .icon {
  margin-left: 5px;
}

.header .minisearch {
  flex: 1;
  margin-bottom: 0;
  position: relative;
}

.header .minisearch .field {
  margin: 0;
}

.header .minisearch .submit {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 36px;
  padding: 0 10px;
  border: 0;
  background: none;
}

@media screen and (max-width: 767px) {
  .header .minisearch {
    flex: 0 0 100%;
    margin: 0;
    order: 1;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
  }

  .header .minisearch.show {
    height: auto;
    margin: var(--gutter) 0;
  }
}

.banner {
  padding: 4rem var(--gutter);
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .banner {
    padding: 2rem var(--gutter);
  }
}

.banner .fondo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
}

.banner .text {
  position: relative;
  color: #fff;
  max-width: 800px;
  margin: auto;
}

.footer {
  background: var(--dark-color);
  color: #FFF;
  padding: 16px 0;
  font-size: var(--small-font-size);
  margin-top: auto;
}

.nav-rrss .icon {
  color: #fff;
  font-size: 30px;
  margin-left: 5px;
}

.accordion .accordion-link {
  background: #161464;
  transition: all 0.3s;
}

.accordion .accordion-link:hover {
  background: rgba(22, 20, 100, 0.75);
}

.accordion .accordion-link {
  color: #FFF;
  border-bottom: 1px solid #FFF;
  font-weight: 700;
  padding: 0.5em 1.5em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion .accordion-link i {
  transition: transform 0.3s;
}

.accordion .accordion-link.active i {
  transform: rotate(90deg);
}

.accordion .accordion-link.active + .collapse {
  display: block;
}

.accordion .collapse {
  padding: var(--gutter);
  box-shadow: var(--shadow);
  -webkit-animation: opac 0.8s;
          animation: opac 0.8s;
  display: none;
}

.accordion.second-color .accordion-link {
  background: #09f0a0;
  transition: all 0.3s;
}

.accordion.second-color .accordion-link:hover {
  background: rgba(9, 240, 160, 0.75);
}

.accordion.third-color .accordion-link {
  background: #ff3c32;
  transition: all 0.3s;
}

.accordion.third-color .accordion-link:hover {
  background: rgba(255, 60, 50, 0.75);
}

.accordion.success-color .accordion-link {
  background: #00c600;
  transition: all 0.3s;
}

.accordion.success-color .accordion-link:hover {
  background: rgba(0, 198, 0, 0.75);
}

.accordion.danger-color .accordion-link {
  background: #ff0019;
  transition: all 0.3s;
}

.accordion.danger-color .accordion-link:hover {
  background: rgba(255, 0, 25, 0.75);
}

.accordion.warning-color .accordion-link {
  background: #ffc107;
  transition: all 0.3s;
}

.accordion.warning-color .accordion-link:hover {
  background: rgba(255, 193, 7, 0.75);
}

.accordion.info-color .accordion-link {
  background: #17a2b8;
  transition: all 0.3s;
}

.accordion.info-color .accordion-link:hover {
  background: rgba(23, 162, 184, 0.75);
}

.accordion.dark-color .accordion-link {
  background: #1a1c20;
  transition: all 0.3s;
}

.accordion.dark-color .accordion-link:hover {
  background: rgba(26, 28, 32, 0.75);
}

.alert {
  padding: 0.75rem 1.25rem;
}

.alert:not(:last-child) {
  margin-bottom: var(--gutter);
}

.alert-success {
  color: #006000;
  border-color: #00c600;
  background-color: #7aff7a;
}

.alert-danger {
  color: #99000f;
  border-color: #ff0019;
  background-color: #ffb3ba;
}

.alert-warning {
  color: #a07800;
  border-color: #ffc107;
  background-color: #ffeeba;
}

.alert-info {
  color: #0c525d;
  border-color: #17a2b8;
  background-color: #90e4f1;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--color);
  color: #FFF;
  cursor: pointer;
  text-decoration: none;
  line-height: inherit;
  transition: all 0.3s;
  border: 1px solid var(--color);
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: none;
  font-size: var(--normal-font-size);
}

.btn.check{
    --color: var(--light-color);
}

.btn.check:hover{
    --color:var(--success-color);
}

.btn:hover {
  background-color: #fff;
  text-decoration: none;
  color: var(--color);
}

.btn.custom:hover {
  background-color: var(--color-alt);
  border-color: var(--color-alt);
  color: var(--white-color);
}

.btn:active {
  transform: scale(0.98);
}

.btn.ghost {
  color: var(--color);
  background: none;
}

.btn.ghost:hover {
  background: var(--color);
  color: #fff;
  border-color: transparent;
}

.btn.btn-big {
  padding: 1rem 1.5rem;
}

.btn.btn-small {
  padding: 0.3rem 0.8rem;
}

.btn.btn-full {
  margin-right: 0;
  margin-left: 0;
  width: 100%;
}

.btn[class*=fixed] {
  position: fixed;
  bottom: var(--gutter);
  z-index: var(--z-tooltip);
  border-radius: 100%;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  box-shadow: var(--shadow);
  padding: 0;
}

.btn[class*=fixed]:hover {
  background: #fff;
}

.btn.fixed-right {
  right: var(--gutter);
}

.btn.fixed-left {
  left: var(--gutter);
}

.field {
  margin-bottom: var(--gutter);
}

.field label {
  display: block;
  margin-bottom: 0.2em;
  font-weight: bold;
}

.field label em {
  color: var(--danger-color);
  margin-left: 2px;
}
.d-flex{
    display: flex;
}
.radio,
.checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.radio label,
.checkbox label {
  margin-right: var(--gutter);
  display: flex;
  align-items: center;
  font-weight: normal;
  white-space: nowrap;
}

.radio label.bg,
.checkbox label.bg {
  padding: 0.25rem 0.5rem;
  background: #f1f1f1;
  border-radius: 0.25rem;
}

input:not([type=file]),
select,
textarea {
  display: block;
  border: 1px solid var(--border-color);
  background: #fff;
  width: 100%;
  line-height: 1.6;
  padding: 0 1rem;
  height: var(--input-height);
  outline: none;
}

input:not([type=file]):disabled,
select:disabled,
textarea:disabled {
  background: var(--border-color);
  cursor: no-drop;
}

input:not([type=file])::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--color);
}

input:not([type=file]):-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--color);
}

input:not([type=file])::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--color);
}

input:not([type=file])::placeholder,
select::placeholder,
textarea::placeholder {
  color: var(--color);
}

textarea {
  height: auto;
  padding: 0.5rem 1rem;
}

input[type=radio],
input[type=checkbox] {
  display: inline-block;
  border: 0;
  height: auto;
  padding: 0;
  margin: 0 5px 0 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=radio]:checked:after,
input[type=checkbox]:checked:after {
  color: var(--success-color);
}

input[type=radio]:after,
input[type=checkbox]:after {
  font-family: "Font Awesome 5 Free";
  color: var(--primary-color);
  font-size: 1.3em;
}

input[type=radio]:after {
  content: "\F111";
}

input[type=radio]:checked:after {
  content: "\F058";
}

input[type=checkbox]:after {
  content: "\F0C8";
}

input[type=checkbox]:checked:after {
  content: "\F14A";
}

ul {
  --color: var(--text-color);
  list-style: none;
  padding-left: var(--gutter);
}

ul.unstyled li:before {
  display: none;
}

ul.circle li:before {
  border: 1px solid var(--color);
  background: none;
}

ul.square li:before {
  border-radius: 0;
}

ul.diamond li:before {
  transform: rotate(45deg);
  border-radius: 0;
}

ul.feature li,
ul.delete li {
  padding-left: 1.2em;
}

ul.feature li:before,
ul.delete li:before {
  font-family: "Font Awesome 5 Free";
  top: 0;
  background: none;
  color: var(--color);
}

ul.feature li:before {
  content: "\F058";
}

ul.delete li:before {
  content: "\F057";
}

ul li {
  position: relative;
  padding-left: 0.75em;
}

ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  background-color: var(--color);
  width: 0.4em;
  height: 0.4em;
  border-radius: 0.4em;
}
.tabspanel ul li::before {
  content: none;
}

ol {
  --color: var(--text-color);
  list-style: none;
  padding-left: var(--gutter);
  counter-reset: list;
}

ol li {
  counter-increment: list;
}

ol li:before {
  content: counters(list, ".") ". ";
  color: var(--color);
}

ol ol {
  --color: inherit;
}

.main-menu,
.vertical-menu {
  font-size: var(--small-font-size);
}

.main-menu ul,
.vertical-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li,
.vertical-menu li {
  color: var(--text-color);
  overflow: hidden;
  padding: 0;
}

.main-menu li:before,
.vertical-menu li:before {
  display: none;
}

.main-menu li a,
.vertical-menu li a {
  color: inherit;
  display: inline-block;
}
.main-menu-show{display:none;}
.main-menu-show > .icon {cursor: pointer;}
@media screen and (max-width: 1280px) {
	.main-menu-show{display:inline-block;}
  .main-menu,
  .vertical-menu {
    position: fixed;
    top: var(--header-height);
    bottom: 0;
    z-index: var(--z-modal);
    background: var(--modal-bg);
    display: flex;
    right: 0;
    left: 100vw;
    justify-content: flex-end;
  }

  .main-menu.show,
  .vertical-menu.show {
    left: 0;
  }

  .main-menu.show ul,
  .vertical-menu.show ul {
    width: 400px;
  }

  .main-menu ul,
  .vertical-menu ul {
    width: 0;
    max-width: 100%;
    background: #fffffff0;
    max-height: 100%;
    overflow-y: auto;
    transition: all 0.3s;
  }

  .main-menu ul li,
  .vertical-menu ul li {
    background: var(--dark-color);
    color: #fff;
    border-bottom: 2px solid #fff;
    padding: 0;
  }

  .main-menu ul li:nth-last-child(1),
  .vertical-menu ul li:nth-last-child(1) {
    border-bottom: 0;
  }

  .main-menu ul li a,
  .vertical-menu ul li a {
    display: block;
    padding: var(--gutter) calc(var(--gutter) * 2);
    font-weight: 600;
    text-decoration: none;
  }

  .main-menu ul li a:hover,
  .main-menu ul li a.active,
  .vertical-menu ul li a:hover,
  .vertical-menu ul li a.active {
    background: var(--first-color);
    color: #fff;
  }
}

.main-menu.full-menu {
  width: 100%;
}

.main-menu.full-menu li {
  flex: 1;
}

@media screen and (min-width: 1280px) {
  .main-menu ul {
    display: flex;
  }
}

.main-menu ul a {
  font-weight: 600;
  padding: var(--gutter) calc(var(--gutter) * 1.2);
  transition: 0.3s;
  text-decoration: none;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.main-menu ul a:hover,
.main-menu ul a.active {
  background: var(--first-color);
  color: #fff;
}

.vertical-menu a {
  padding: 0 0 0.8em 0;
}

.vertical-menu a.active {
  font-weight: bold;
  color: var(--first-color);
}
.w-auto{
    width: auto;
}
.w-autoImp{
    width: auto !important;
}
.w-100{
    width: 100%;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--z-modal);
  background: var(--modal-bg);
}

.modal.active {
  display: flex;
}

.modal .content {
  box-shadow: var(--shadow);
  background: #fff;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  margin: auto;
  padding: 2rem;
  overflow-y: auto;
}

.modal::before {
  content: "\F00D";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  color: var(--danger-color);
  position: absolute;
  right: var(--gutter);
  font-size: 1.8rem;
  cursor: pointer;
}

.m-0 {
  margin: 0;
}

@media screen and (max-width: 480px) {
  .sm-m-0 {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-m-0 {
    margin: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-m-0 {
    margin: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-m-0 {
    margin: 0;
  }
}

.mt-0,
.my-0 {
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  .sm-mt-0 {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-mt-0 {
    margin-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mt-0 {
    margin-top: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mt-0 {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .sm-my-0 {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-my-0 {
    margin-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-my-0 {
    margin-top: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-my-0 {
    margin-top: 0;
  }
}

.mr-0,
.mx-0 {
  margin-right: 0;
}

@media screen and (max-width: 480px) {
  .sm-mr-0 {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-mr-0 {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mr-0 {
    margin-right: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mr-0 {
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .sm-mx-0 {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-mx-0 {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mx-0 {
    margin-right: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mx-0 {
    margin-right: 0;
  }
}

.mb-0,
.my-0 {
  margin-bottom: 0;
}

@media screen and (max-width: 480px) {
  .sm-mb-0 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-mb-0 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mb-0 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mb-0 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .sm-my-0 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-my-0 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-my-0 {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-my-0 {
    margin-bottom: 0;
  }
}

.ml-0,
.mx-0 {
  margin-left: 0;
}

@media screen and (max-width: 480px) {
  .sm-ml-0 {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-ml-0 {
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-ml-0 {
    margin-left: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-ml-0 {
    margin-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .sm-mx-0 {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-mx-0 {
    margin-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mx-0 {
    margin-left: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mx-0 {
    margin-left: 0;
  }
}

.m-05 {
  margin: 0.5rem;
}

@media screen and (max-width: 480px) {
  .sm-m-05 {
    margin: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-m-05 {
    margin: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-m-05 {
    margin: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-m-05 {
    margin: 0.5rem;
  }
}

.mt-05,
.my-05 {
  margin-top: 0.5rem;
}

@media screen and (max-width: 480px) {
  .sm-mt-05 {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mt-05 {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mt-05 {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mt-05 {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-my-05 {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-my-05 {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-my-05 {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-my-05 {
    margin-top: 0.5rem;
  }
}

.mr-05,
.mx-05 {
  margin-right: 0.5rem;
}

@media screen and (max-width: 480px) {
  .sm-mr-05 {
    margin-right: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mr-05 {
    margin-right: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mr-05 {
    margin-right: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mr-05 {
    margin-right: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-mx-05 {
    margin-right: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mx-05 {
    margin-right: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mx-05 {
    margin-right: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mx-05 {
    margin-right: 0.5rem;
  }
}

.mb-05,
.my-05 {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 480px) {
  .sm-mb-05 {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mb-05 {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mb-05 {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mb-05 {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-my-05 {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-my-05 {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-my-05 {
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-my-05 {
    margin-bottom: 0.5rem;
  }
}

.ml-05,
.mx-05 {
  margin-left: 0.5rem;
}

@media screen and (max-width: 480px) {
  .sm-ml-05 {
    margin-left: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-ml-05 {
    margin-left: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-ml-05 {
    margin-left: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-ml-05 {
    margin-left: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-mx-05 {
    margin-left: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mx-05 {
    margin-left: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mx-05 {
    margin-left: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mx-05 {
    margin-left: 0.5rem;
  }
}

.m-1 {
  margin: 1rem;
}

@media screen and (max-width: 480px) {
  .sm-m-1 {
    margin: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-m-1 {
    margin: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-m-1 {
    margin: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-m-1 {
    margin: 1rem;
  }
}

.mt-1,
.my-1 {
  margin-top: 1rem;
}

@media screen and (max-width: 480px) {
  .sm-mt-1 {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mt-1 {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mt-1 {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mt-1 {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-my-1 {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-my-1 {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-my-1 {
    margin-top: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-my-1 {
    margin-top: 1rem;
  }
}

.mr-1,
.mx-1 {
  margin-right: 1rem;
}

@media screen and (max-width: 480px) {
  .sm-mr-1 {
    margin-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mr-1 {
    margin-right: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mr-1 {
    margin-right: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mr-1 {
    margin-right: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-mx-1 {
    margin-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mx-1 {
    margin-right: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mx-1 {
    margin-right: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mx-1 {
    margin-right: 1rem;
  }
}

.mb-1,
.my-1 {
  margin-bottom: 1rem;
}

@media screen and (max-width: 480px) {
  .sm-mb-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mb-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mb-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mb-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-my-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-my-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-my-1 {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-my-1 {
    margin-bottom: 1rem;
  }
}

.ml-1,
.mx-1 {
  margin-left: 1rem;
}

@media screen and (max-width: 480px) {
  .sm-ml-1 {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-ml-1 {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-ml-1 {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-ml-1 {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-mx-1 {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mx-1 {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mx-1 {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mx-1 {
    margin-left: 1rem;
  }
}

.m-2 {
  margin: 2rem;
}

@media screen and (max-width: 480px) {
  .sm-m-2 {
    margin: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-m-2 {
    margin: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-m-2 {
    margin: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-m-2 {
    margin: 2rem;
  }
}

.mt-2,
.my-2 {
  margin-top: 2rem;
}

@media screen and (max-width: 480px) {
  .sm-mt-2 {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mt-2 {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mt-2 {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mt-2 {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-my-2 {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-my-2 {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-my-2 {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-my-2 {
    margin-top: 2rem;
  }
}

.mr-2,
.mx-2 {
  margin-right: 2rem;
}

@media screen and (max-width: 480px) {
  .sm-mr-2 {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mr-2 {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mr-2 {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mr-2 {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-mx-2 {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mx-2 {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mx-2 {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mx-2 {
    margin-right: 2rem;
  }
}

.mb-2,
.my-2 {
  margin-bottom: 2rem;
}

@media screen and (max-width: 480px) {
  .sm-mb-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mb-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mb-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mb-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-my-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-my-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-my-2 {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-my-2 {
    margin-bottom: 2rem;
  }
}

.ml-2,
.mx-2 {
  margin-left: 2rem;
}

@media screen and (max-width: 480px) {
  .sm-ml-2 {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-ml-2 {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-ml-2 {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-ml-2 {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-mx-2 {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mx-2 {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mx-2 {
    margin-left: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mx-2 {
    margin-left: 2rem;
  }
}

.m-3 {
  margin: 3rem;
}

@media screen and (max-width: 480px) {
  .sm-m-3 {
    margin: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-m-3 {
    margin: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-m-3 {
    margin: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-m-3 {
    margin: 3rem;
  }
}

.mt-3,
.my-3 {
  margin-top: 3rem;
}

@media screen and (max-width: 480px) {
  .sm-mt-3 {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mt-3 {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mt-3 {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mt-3 {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-my-3 {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-my-3 {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-my-3 {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-my-3 {
    margin-top: 3rem;
  }
}

.mr-3,
.mx-3 {
  margin-right: 3rem;
}

@media screen and (max-width: 480px) {
  .sm-mr-3 {
    margin-right: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mr-3 {
    margin-right: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mr-3 {
    margin-right: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mr-3 {
    margin-right: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-mx-3 {
    margin-right: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mx-3 {
    margin-right: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mx-3 {
    margin-right: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mx-3 {
    margin-right: 3rem;
  }
}

.mb-3,
.my-3 {
  margin-bottom: 3rem;
}

@media screen and (max-width: 480px) {
  .sm-mb-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mb-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mb-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mb-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-my-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-my-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-my-3 {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-my-3 {
    margin-bottom: 3rem;
  }
}

.ml-3,
.mx-3 {
  margin-left: 3rem;
}

@media screen and (max-width: 480px) {
  .sm-ml-3 {
    margin-left: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-ml-3 {
    margin-left: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-ml-3 {
    margin-left: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-ml-3 {
    margin-left: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-mx-3 {
    margin-left: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-mx-3 {
    margin-left: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-mx-3 {
    margin-left: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-mx-3 {
    margin-left: 3rem;
  }
}

.p-0 {
  padding: 0;
}

@media screen and (max-width: 480px) {
  .sm-p-0 {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-p-0 {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-p-0 {
    padding: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-p-0 {
    padding: 0;
  }
}

.pt-0,
.py-0 {
  padding-top: 0;
}

@media screen and (max-width: 480px) {
  .sm-pt-0 {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-pt-0 {
    padding-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pt-0 {
    padding-top: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pt-0 {
    padding-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .sm-py-0 {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-py-0 {
    padding-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-py-0 {
    padding-top: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-py-0 {
    padding-top: 0;
  }
}

.pr-0,
.px-0 {
  padding-right: 0;
}

@media screen and (max-width: 480px) {
  .sm-pr-0 {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-pr-0 {
    padding-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pr-0 {
    padding-right: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pr-0 {
    padding-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .sm-px-0 {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-px-0 {
    padding-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-px-0 {
    padding-right: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-px-0 {
    padding-right: 0;
  }
}

.pb-0,
.py-0 {
  padding-bottom: 0;
}

@media screen and (max-width: 480px) {
  .sm-pb-0 {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-pb-0 {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pb-0 {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pb-0 {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .sm-py-0 {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-py-0 {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-py-0 {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-py-0 {
    padding-bottom: 0;
  }
}

.pl-0,
.px-0 {
  padding-left: 0;
}

@media screen and (max-width: 480px) {
  .sm-pl-0 {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-pl-0 {
    padding-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pl-0 {
    padding-left: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pl-0 {
    padding-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .sm-px-0 {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .md-px-0 {
    padding-left: 0;
  }
}

@media screen and (max-width: 1024px) {
  .lg-px-0 {
    padding-left: 0;
  }
}

@media screen and (max-width: 1280px) {
  .xl-px-0 {
    padding-left: 0;
  }
}

.p-05 {
  padding: 0.5rem;
}

@media screen and (max-width: 480px) {
  .sm-p-05 {
    padding: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-p-05 {
    padding: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-p-05 {
    padding: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-p-05 {
    padding: 0.5rem;
  }
}

.pt-05,
.py-05 {
  padding-top: 0.5rem;
}

@media screen and (max-width: 480px) {
  .sm-pt-05 {
    padding-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pt-05 {
    padding-top: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pt-05 {
    padding-top: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pt-05 {
    padding-top: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-py-05 {
    padding-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-py-05 {
    padding-top: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-py-05 {
    padding-top: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-py-05 {
    padding-top: 0.5rem;
  }
}

.pr-05,
.px-05 {
  padding-right: 0.5rem;
}

@media screen and (max-width: 480px) {
  .sm-pr-05 {
    padding-right: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pr-05 {
    padding-right: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pr-05 {
    padding-right: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pr-05 {
    padding-right: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-px-05 {
    padding-right: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-px-05 {
    padding-right: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-px-05 {
    padding-right: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-px-05 {
    padding-right: 0.5rem;
  }
}

.pb-05,
.py-05 {
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 480px) {
  .sm-pb-05 {
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pb-05 {
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pb-05 {
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pb-05 {
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-py-05 {
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-py-05 {
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-py-05 {
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-py-05 {
    padding-bottom: 0.5rem;
  }
}

.pl-05,
.px-05 {
  padding-left: 0.5rem;
}

@media screen and (max-width: 480px) {
  .sm-pl-05 {
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pl-05 {
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pl-05 {
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pl-05 {
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-px-05 {
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .md-px-05 {
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-px-05 {
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-px-05 {
    padding-left: 0.5rem;
  }
}

.p-1 {
  padding: 1rem;
}

@media screen and (max-width: 480px) {
  .sm-p-1 {
    padding: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-p-1 {
    padding: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-p-1 {
    padding: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-p-1 {
    padding: 1rem;
  }
}

.pt-1,
.py-1 {
  padding-top: 1rem;
}

@media screen and (max-width: 480px) {
  .sm-pt-1 {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pt-1 {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pt-1 {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pt-1 {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-py-1 {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-py-1 {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-py-1 {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-py-1 {
    padding-top: 1rem;
  }
}

.pr-1,
.px-1 {
  padding-right: 1rem;
}

@media screen and (max-width: 480px) {
  .sm-pr-1 {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pr-1 {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pr-1 {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pr-1 {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-px-1 {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-px-1 {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-px-1 {
    padding-right: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-px-1 {
    padding-right: 1rem;
  }
}

.pb-1,
.py-1 {
  padding-bottom: 1rem;
}

@media screen and (max-width: 480px) {
  .sm-pb-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pb-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pb-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pb-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-py-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-py-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-py-1 {
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-py-1 {
    padding-bottom: 1rem;
  }
}

.pl-1,
.px-1 {
  padding-left: 1rem;
}

@media screen and (max-width: 480px) {
  .sm-pl-1 {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pl-1 {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pl-1 {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pl-1 {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-px-1 {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .md-px-1 {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-px-1 {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-px-1 {
    padding-left: 1rem;
  }
}

.p-2 {
  padding: 2rem;
}

@media screen and (max-width: 480px) {
  .sm-p-2 {
    padding: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-p-2 {
    padding: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-p-2 {
    padding: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-p-2 {
    padding: 2rem;
  }
}

.pt-2,
.py-2 {
  padding-top: 2rem;
}

@media screen and (max-width: 480px) {
  .sm-pt-2 {
    padding-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pt-2 {
    padding-top: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pt-2 {
    padding-top: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pt-2 {
    padding-top: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-py-2 {
    padding-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-py-2 {
    padding-top: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-py-2 {
    padding-top: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-py-2 {
    padding-top: 2rem;
  }
}

.pr-2,
.px-2 {
  padding-right: 2rem;
}

@media screen and (max-width: 480px) {
  .sm-pr-2 {
    padding-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pr-2 {
    padding-right: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pr-2 {
    padding-right: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pr-2 {
    padding-right: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-px-2 {
    padding-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-px-2 {
    padding-right: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-px-2 {
    padding-right: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-px-2 {
    padding-right: 2rem;
  }
}

.pb-2,
.py-2 {
  padding-bottom: 2rem;
}

@media screen and (max-width: 480px) {
  .sm-pb-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pb-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pb-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pb-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-py-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-py-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-py-2 {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-py-2 {
    padding-bottom: 2rem;
  }
}

.pl-2,
.px-2 {
  padding-left: 2rem;
}

@media screen and (max-width: 480px) {
  .sm-pl-2 {
    padding-left: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pl-2 {
    padding-left: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pl-2 {
    padding-left: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pl-2 {
    padding-left: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-px-2 {
    padding-left: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .md-px-2 {
    padding-left: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-px-2 {
    padding-left: 2rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-px-2 {
    padding-left: 2rem;
  }
}

.p-3 {
  padding: 3rem;
}

@media screen and (max-width: 480px) {
  .sm-p-3 {
    padding: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-p-3 {
    padding: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-p-3 {
    padding: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-p-3 {
    padding: 3rem;
  }
}

.pt-3,
.py-3 {
  padding-top: 3rem;
}

@media screen and (max-width: 480px) {
  .sm-pt-3 {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pt-3 {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pt-3 {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pt-3 {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-py-3 {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-py-3 {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-py-3 {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-py-3 {
    padding-top: 3rem;
  }
}

.pr-3,
.px-3 {
  padding-right: 3rem;
}

@media screen and (max-width: 480px) {
  .sm-pr-3 {
    padding-right: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pr-3 {
    padding-right: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pr-3 {
    padding-right: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pr-3 {
    padding-right: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-px-3 {
    padding-right: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-px-3 {
    padding-right: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-px-3 {
    padding-right: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-px-3 {
    padding-right: 3rem;
  }
}

.pb-3,
.py-3 {
  padding-bottom: 3rem;
}

@media screen and (max-width: 480px) {
  .sm-pb-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pb-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pb-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pb-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-py-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-py-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-py-3 {
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-py-3 {
    padding-bottom: 3rem;
  }
}

.pl-3,
.px-3 {
  padding-left: 3rem;
}

@media screen and (max-width: 480px) {
  .sm-pl-3 {
    padding-left: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-pl-3 {
    padding-left: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-pl-3 {
    padding-left: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-pl-3 {
    padding-left: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .sm-px-3 {
    padding-left: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .md-px-3 {
    padding-left: 3rem;
  }
}

@media screen and (max-width: 1024px) {
  .lg-px-3 {
    padding-left: 3rem;
  }
}

@media screen and (max-width: 1280px) {
  .xl-px-3 {
    padding-left: 3rem;
  }
}

.table-container {
  overflow-x: auto;
  min-width: 100%;
  margin-bottom: var(--gutter);
}

table {
  border-collapse: collapse;
  background: #FFF;
  min-width: 100%;
}

table th {
  background: #161464;
}

table tr {
  border-bottom: 1px solid rgba(22, 20, 100, 0.3);
}

table tr:hover {
  background: rgba(22, 20, 100, 0.1);
}

table.first-column td:first-child {
  background: rgba(22, 20, 100, 0.75);
  color: #fff;
}

table th {
  color: #FFF;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  -moz-text-align-last: left;
       text-align-last: left;
}

table td {
  min-width: 100px;
}

table td:nth-child(even) {
  background: rgba(223, 226, 226, 0.2);
}

table td, table th {
  padding: 0.5em 0.5em;
}

table.second-color th {
  background: #09f0a0;
}

table.second-color tr {
  border-bottom: 1px solid rgba(9, 240, 160, 0.3);
}

table.second-color tr:hover {
  background: rgba(9, 240, 160, 0.1);
}

table.second-color.first-column td:first-child {
  background: rgba(9, 240, 160, 0.75);
  color: #fff;
}

table.third-color th {
  background: #ff3c32;
}

table.third-color tr {
  border-bottom: 1px solid rgba(255, 60, 50, 0.3);
}

table.third-color tr:hover {
  background: rgba(255, 60, 50, 0.1);
}

table.third-color.first-column td:first-child {
  background: rgba(255, 60, 50, 0.75);
  color: #fff;
}

table.success-color th {
  background: #00c600;
}

table.success-color tr {
  border-bottom: 1px solid rgba(0, 198, 0, 0.3);
}

table.success-color tr:hover {
  background: rgba(0, 198, 0, 0.1);
}

table.success-color.first-column td:first-child {
  background: rgba(0, 198, 0, 0.75);
  color: #fff;
}

table.danger-color th {
  background: #ff0019;
}

table.danger-color tr {
  border-bottom: 1px solid rgba(255, 0, 25, 0.3);
}

table.danger-color tr:hover {
  background: rgba(255, 0, 25, 0.1);
}

table.danger-color.first-column td:first-child {
  background: rgba(255, 0, 25, 0.75);
  color: #fff;
}

table.warning-color th {
  background: #ffc107;
}

table.warning-color tr {
  border-bottom: 1px solid rgba(255, 193, 7, 0.3);
}

table.warning-color tr:hover {
  background: rgba(255, 193, 7, 0.1);
}

table.warning-color.first-column td:first-child {
  background: rgba(255, 193, 7, 0.75);
  color: #fff;
}

table.info-color th {
  background: #17a2b8;
}

table.info-color tr {
  border-bottom: 1px solid rgba(23, 162, 184, 0.3);
}

table.info-color tr:hover {
  background: rgba(23, 162, 184, 0.1);
}

table.info-color.first-column td:first-child {
  background: rgba(23, 162, 184, 0.75);
  color: #fff;
}

table.dark-color th {
  background: #1a1c20;
}

table.dark-color tr {
  border-bottom: 1px solid rgba(26, 28, 32, 0.3);
}

table.dark-color tr:hover {
  background: rgba(26, 28, 32, 0.1);
}

table.dark-color.first-column td:first-child {
  background: rgba(26, 28, 32, 0.75);
  color: #fff;
}

.tabs {
  margin-bottom: var(--gutter);
}

.tabs .tab {
  background: #161464;
  transition: all 0.3s;
}

.tabs .tab:hover,
.tabs .tab.active {
  background: rgba(22, 20, 100, 0.75);
}

.tabs .panel {
  border: 1px solid rgba(22, 20, 100, 0.3);
}

.tabs .tab-list {
  display: flex;
}

.tabs .tab-list .tab {
  color: #FFF;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5em 1.5em;
  cursor: pointer;
  white-space: nowrap;
}

.tabs .panel {
  padding: var(--gutter);
  box-shadow: var(--shadow);
  -webkit-animation: opac 0.8s;
          animation: opac 0.8s;
  display: none;
}

.tabs .panel.active {
  display: block;
}

.tabs.vertical-tabs {
  display: flex;
}

.tabs.vertical-tabs .tab-list {
  flex-direction: column;
}

.tabs.vertical-tabs .tab-list .tab {
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
}

.tabs.vertical-tabs .tab-content {
  display: flex;
}

.tabs.second-color .tab {
  background: #09f0a0;
  transition: all 0.3s;
}

.tabs.second-color .tab:hover,
.tabs.second-color .tab.active {
  background: rgba(9, 240, 160, 0.75);
}

.tabs.second-color .panel {
  border: 1px solid rgba(9, 240, 160, 0.3);
}

.tabs.third-color .tab {
  background: #ff3c32;
  transition: all 0.3s;
}

.tabs.third-color .tab:hover,
.tabs.third-color .tab.active {
  background: rgba(255, 60, 50, 0.75);
}

.tabs.third-color .panel {
  border: 1px solid rgba(255, 60, 50, 0.3);
}

.tabs.success-color .tab {
  background: #00c600;
  transition: all 0.3s;
}

.tabs.success-color .tab:hover,
.tabs.success-color .tab.active {
  background: rgba(0, 198, 0, 0.75);
}

.tabs.success-color .panel {
  border: 1px solid rgba(0, 198, 0, 0.3);
}

.tabs.danger-color .tab {
  background: #ff0019;
  transition: all 0.3s;
}

.tabs.danger-color .tab:hover,
.tabs.danger-color .tab.active {
  background: rgba(255, 0, 25, 0.75);
}

.tabs.danger-color .panel {
  border: 1px solid rgba(255, 0, 25, 0.3);
}

.tabs.warning-color .tab {
  background: #ffc107;
  transition: all 0.3s;
}

.tabs.warning-color .tab:hover,
.tabs.warning-color .tab.active {
  background: rgba(255, 193, 7, 0.75);
}

.tabs.warning-color .panel {
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.tabs.info-color .tab {
  background: #17a2b8;
  transition: all 0.3s;
}

.tabs.info-color .tab:hover,
.tabs.info-color .tab.active {
  background: rgba(23, 162, 184, 0.75);
}

.tabs.info-color .panel {
  border: 1px solid rgba(23, 162, 184, 0.3);
}

.tabs.dark-color .tab {
  background: #1a1c20;
  transition: all 0.3s;
}

.tabs.dark-color .tab:hover,
.tabs.dark-color .tab.active {
  background: rgba(26, 28, 32, 0.75);
}

.tabs.dark-color .panel {
  border: 1px solid rgba(26, 28, 32, 0.3);
}

@-webkit-keyframes opac {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes opac {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: center;
  align-items: center;
  --color: var(--first-color);
}

.pagination li:before {
  display: none;
}

.pagination .page-item + .page-item {
  padding-left: 2px;
}

.pagination .page-item .page-link {
  width: 35px;
  height: 40px;
  text-align: center;
  padding: 10px 0;
  background-color: #e9ecef;
  color: #495057;
  display: block;
  text-decoration: none;
}

.pagination .disabled .page-link {
  background-color: transparent;
}

.pagination .active .page-link,
.pagination .active .page-link:hover,
.pagination .active .page-link:focus,
.pagination .page-item:not(.disabled) .page-link:hover,
.pagination .page-item:not(.disabled) .page-link:focus {
  background-color: var(--color);
  color: #fff;
}

.tooltip {
  position: relative;
}

.tooltip .icon {
  color: var(--info-color);
}

.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: var(--border-radius);
  padding: 5px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  max-width: 100%;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.animate {
  opacity: 0;
  transition: all 0.5s;
}

.animate.animated.slide-up {
  -webkit-animation: slide-up 0.5s;
          animation: slide-up 0.5s;
}

.animate.animated.slide-down {
  -webkit-animation: slide-down 0.5s;
          animation: slide-down 0.5s;
}

.animate.animated.slide-left {
  -webkit-animation: slide-left 0.5s;
          animation: slide-left 0.5s;
}

.animate.animated.slide-right {
  -webkit-animation: slide-right 0.5s;
          animation: slide-right 0.5s;
}

@-webkit-keyframes slide-up {
  0% {
    transform: translateY(100px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(100px);
  }

  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-down {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes slide-left {
  0% {
    transform: translateX(-100px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slide-left {
  0% {
    transform: translateX(-100px);
  }

  100% {
    transform: translateX(0);
  }
}

@-webkit-keyframes slide-right {
  0% {
    transform: translateX(100px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slide-right {
  0% {
    transform: translateX(100px);
  }

  100% {
    transform: translateX(0);
  }
}

.masonry {
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: var(--columns-grid);
}

.masonry .column > * {
  margin-bottom: var(--gutter);
}

.masonry .column > *:nth-last-child(1) {
  margin-bottom: 0;
}

.max-width {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

.full {
  padding-left: 2000px;
  padding-right: 2000px;
  margin-left: -2000px;
  margin-right: -2000px;
}

.rounded {
  border-radius: 50px;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin-top: var(--header-height);
}

.page-wrapper .header {
  grid-area: header;
}

.page-wrapper .main-section {
  grid-area: main;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 100%;
  margin-top: var(--gutter);
  margin-bottom: var(--gutter);
  flex: 1;
}

.page-wrapper .main-section .left-sidebar {
  grid-area: left;
  border-right: 1px solid var(--border-color);
}

.page-wrapper .main-section .content {
  grid-area: content;
}

.page-wrapper .main-section .right-sidebar {
  grid-area: right;
  border-left: 1px solid var(--border-color);
}

@media screen and (max-width: 1280px) {
  .page-wrapper .main-section .left-sidebar,
  .page-wrapper .main-section .right-sidebar {
    width: 0;
    height: 0;
    position: fixed;
    z-index: var(--z-modal);
  }

  .page-wrapper .main-section .left-sidebar .btn[class*=fixed],
  .page-wrapper .main-section .right-sidebar .btn[class*=fixed] {
    z-index: calc(var(--z-modal) + 1);
  }
}

.page-wrapper .footer {
  grid-area: footer;
  margin-top: auto;
}

.page-wrapper.page-1column .main-section {
  grid-template-areas: "content content content content content content";
}

@media screen and (max-width: 1280px) {
  .page-wrapper.page-1column .main-section {
    grid-template-areas: "content content content content content content";
  }
}

.page-wrapper.page-2columns-left .main-section {
  grid-template-areas: "left content content content content content";
}

@media screen and (max-width: 1280px) {
  .page-wrapper.page-2columns-left .main-section {
    grid-template-areas: "content content content content content content";
  }
}

.page-wrapper.page-2columns-right .main-section {
  grid-template-areas: "content content content content content right";
}

@media screen and (max-width: 1280px) {
  .page-wrapper.page-2columns-right .main-section {
    grid-template-areas: "content content content content content content";
  }
}

.page-wrapper.page-3columns .main-section {
  grid-template-areas: "left content content content content right";
}

@media screen and (max-width: 1280px) {
  .page-wrapper.page-3columns .main-section {
    grid-template-areas: "content content content content content content";
  }
}

.d-block {
  display: block;
}

.d-inline-block {
  display: block;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

@media screen and (max-width: 480px) {
  .sm-d-flex {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .md-d-flex {
    display: flex;
  }
}

@media screen and (max-width: 1024px) {
  .lg-d-flex {
    display: flex;
  }
}

@media screen and (max-width: 1280px) {
  .xl-d-flex {
    display: flex;
  }
}

@media screen and (max-width: 480px) {
  .sm-d-inline-flex {
    display: inline-flex;
  }
}

@media screen and (max-width: 767px) {
  .md-d-inline-flex {
    display: inline-flex;
  }
}

@media screen and (max-width: 1024px) {
  .lg-d-inline-flex {
    display: inline-flex;
  }
}

@media screen and (max-width: 1280px) {
  .xl-d-inline-flex {
    display: inline-flex;
  }
}

@media screen and (max-width: 480px) {
  .sm-d-block {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .md-d-block {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .lg-d-block {
    display: block;
  }
}

@media screen and (max-width: 1280px) {
  .xl-d-block {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .sm-d-inline-block {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .md-d-inline-block {
    display: inline-block;
  }
}

@media screen and (max-width: 1024px) {
  .lg-d-inline-block {
    display: inline-block;
  }
}

@media screen and (max-width: 1280px) {
  .xl-d-inline-block {
    display: inline-block;
  }
}

@media screen and (max-width: 480px) {
  .sm-d-none {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .md-d-none {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .lg-d-none {
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  .xl-d-none {
    display: none;
  }
}

.fd-column {
  flex-direction: column;
}

@media screen and (max-width: 480px) {
  .sm-fd-column {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .md-fd-column {
    flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .lg-fd-column {
    flex-direction: column;
  }
}

@media screen and (max-width: 1280px) {
  .xl-fd-column {
    flex-direction: column;
  }
}

.fw-wrap {
  flex-wrap: wrap;
}

@media screen and (max-width: 480px) {
  .sm-fw-wrap {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .md-fw-wrap {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1024px) {
  .lg-fw-wrap {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1280px) {
  .xl-fw-wrap {
    flex-wrap: wrap;
  }
}

.jc-center {
  justify-content: center;
}

@media screen and (max-width: 480px) {
  .sm-jc-center {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .md-jc-center {
    justify-content: center;
  }
}

@media screen and (max-width: 1024px) {
  .lg-jc-center {
    justify-content: center;
  }
}

@media screen and (max-width: 1280px) {
  .xl-jc-center {
    justify-content: center;
  }
}

.jc-between {
  justify-content: space-between;
}

@media screen and (max-width: 480px) {
  .sm-jc-between {
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .md-jc-between {
    justify-content: space-between;
  }
}

@media screen and (max-width: 1024px) {
  .lg-jc-between {
    justify-content: space-between;
  }
}

@media screen and (max-width: 1280px) {
  .xl-jc-between {
    justify-content: space-between;
  }
}

.jc-around {
  justify-content: space-around;
}

@media screen and (max-width: 480px) {
  .sm-jc-around {
    justify-content: space-around;
  }
}

@media screen and (max-width: 767px) {
  .md-jc-around {
    justify-content: space-around;
  }
}

@media screen and (max-width: 1024px) {
  .lg-jc-around {
    justify-content: space-around;
  }
}

@media screen and (max-width: 1280px) {
  .xl-jc-around {
    justify-content: space-around;
  }
}

.jc-start {
  justify-content: flex-start;
}

@media screen and (max-width: 480px) {
  .sm-jc-start {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .md-jc-start {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 1024px) {
  .lg-jc-start {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 1280px) {
  .xl-jc-start {
    justify-content: flex-start;
  }
}

.jc-end {
  justify-content: flex-end;
}

@media screen and (max-width: 480px) {
  .sm-jc-end {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .md-jc-end {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 1024px) {
  .lg-jc-end {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 1280px) {
  .xl-jc-end {
    justify-content: flex-end;
  }
}

.ai-center {
  align-items: center;
}

@media screen and (max-width: 480px) {
  .sm-ai-center {
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .md-ai-center {
    align-items: center;
  }
}

@media screen and (max-width: 1024px) {
  .lg-ai-center {
    align-items: center;
  }
}

@media screen and (max-width: 1280px) {
  .xl-ai-center {
    align-items: center;
  }
}

.ai-between {
  align-items: space-between;
}

@media screen and (max-width: 480px) {
  .sm-ai-between {
    align-items: space-between;
  }
}

@media screen and (max-width: 767px) {
  .md-ai-between {
    align-items: space-between;
  }
}

@media screen and (max-width: 1024px) {
  .lg-ai-between {
    align-items: space-between;
  }
}

@media screen and (max-width: 1280px) {
  .xl-ai-between {
    align-items: space-between;
  }
}

.ai-around {
  align-items: space-around;
}

@media screen and (max-width: 480px) {
  .sm-ai-around {
    align-items: space-around;
  }
}

@media screen and (max-width: 767px) {
  .md-ai-around {
    align-items: space-around;
  }
}

@media screen and (max-width: 1024px) {
  .lg-ai-around {
    align-items: space-around;
  }
}

@media screen and (max-width: 1280px) {
  .xl-ai-around {
    align-items: space-around;
  }
}

.ai-start {
  align-items: flex-start;
}

@media screen and (max-width: 480px) {
  .sm-ai-start {
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .md-ai-start {
    align-items: flex-start;
  }
}

@media screen and (max-width: 1024px) {
  .lg-ai-start {
    align-items: flex-start;
  }
}

@media screen and (max-width: 1280px) {
  .xl-ai-start {
    align-items: flex-start;
  }
}

.ai-end {
  align-items: flex-end;
}

@media screen and (max-width: 480px) {
  .sm-ai-end {
    align-items: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .md-ai-end {
    align-items: flex-end;
  }
}

@media screen and (max-width: 1024px) {
  .lg-ai-end {
    align-items: flex-end;
  }
}

@media screen and (max-width: 1280px) {
  .xl-ai-end {
    align-items: flex-end;
  }
}

.grid-container {
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: var(--columns-grid);
}

.grid-container.columns1 {
  --columns-grid: repeat(1, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns1 {
    --columns-grid: repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns1 {
    --columns-grid: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns1 {
    --columns-grid: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns1 {
    --columns-grid: repeat(1, 1fr);
  }
}

.grid-container.columns2 {
  --columns-grid: repeat(2, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns2 {
    --columns-grid: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns2 {
    --columns-grid: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns2 {
    --columns-grid: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns2 {
    --columns-grid: repeat(2, 1fr);
  }
}

.grid-container.columns3 {
  --columns-grid: repeat(3, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns3 {
    --columns-grid: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns3 {
    --columns-grid: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns3 {
    --columns-grid: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns3 {
    --columns-grid: repeat(3, 1fr);
  }
}

.grid-container.columns4 {
  --columns-grid: repeat(4, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns4 {
    --columns-grid: repeat(4, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns4 {
    --columns-grid: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns4 {
    --columns-grid: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns4 {
    --columns-grid: repeat(4, 1fr);
  }
}

.grid-container.columns5 {
  --columns-grid: repeat(5, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns5 {
    --columns-grid: repeat(5, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns5 {
    --columns-grid: repeat(5, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns5 {
    --columns-grid: repeat(5, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns5 {
    --columns-grid: repeat(5, 1fr);
  }
}

.grid-container.columns6 {
  --columns-grid: repeat(6, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns6 {
    --columns-grid: repeat(6, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns6 {
    --columns-grid: repeat(6, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns6 {
    --columns-grid: repeat(6, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns6 {
    --columns-grid: repeat(6, 1fr);
  }
}

.grid-container.columns7 {
  --columns-grid: repeat(7, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns7 {
    --columns-grid: repeat(7, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns7 {
    --columns-grid: repeat(7, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns7 {
    --columns-grid: repeat(7, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns7 {
    --columns-grid: repeat(7, 1fr);
  }
}

.grid-container.columns8 {
  --columns-grid: repeat(8, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns8 {
    --columns-grid: repeat(8, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns8 {
    --columns-grid: repeat(8, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns8 {
    --columns-grid: repeat(8, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns8 {
    --columns-grid: repeat(8, 1fr);
  }
}

.grid-container.columns9 {
  --columns-grid: repeat(9, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns9 {
    --columns-grid: repeat(9, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns9 {
    --columns-grid: repeat(9, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns9 {
    --columns-grid: repeat(9, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns9 {
    --columns-grid: repeat(9, 1fr);
  }
}

.grid-container.columns10 {
  --columns-grid: repeat(10, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns10 {
    --columns-grid: repeat(10, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns10 {
    --columns-grid: repeat(10, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns10 {
    --columns-grid: repeat(10, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns10 {
    --columns-grid: repeat(10, 1fr);
  }
}

.grid-container.columns11 {
  --columns-grid: repeat(11, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns11 {
    --columns-grid: repeat(11, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns11 {
    --columns-grid: repeat(11, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns11 {
    --columns-grid: repeat(11, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns11 {
    --columns-grid: repeat(11, 1fr);
  }
}

.grid-container.columns12 {
  --columns-grid: repeat(12, 1fr);
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns12 {
    --columns-grid: repeat(12, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns12 {
    --columns-grid: repeat(12, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns12 {
    --columns-grid: repeat(12, 1fr);
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns12 {
    --columns-grid: repeat(12, 1fr);
  }
}

.grid-container.columns1-3 {
  --columns-grid: 1fr 3fr;
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns1-3 {
    --columns-grid: 1fr 3fr;
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns1-3 {
    --columns-grid: 1fr 3fr;
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns1-3 {
    --columns-grid: 1fr 3fr;
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns1-3 {
    --columns-grid: 1fr 3fr;
  }
}

.grid-container.columns3-1 {
  --columns-grid: 3fr 1fr;
}

@media screen and (max-width: 480px) {
  .grid-container .sm-columns3-1 {
    --columns-grid: 3fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .grid-container .md-columns3-1 {
    --columns-grid: 3fr 1fr;
  }
}

@media screen and (max-width: 1024px) {
  .grid-container .lg-columns3-1 {
    --columns-grid: 3fr 1fr;
  }
}

@media screen and (max-width: 1280px) {
  .grid-container .xl-columns3-1 {
    --columns-grid: 3fr 1fr;
  }
}

.grid-container.auto-columns {
  grid-template-columns: repeat(auto-fit, minmax(var(--min-grid), 1fr));
}

.container-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.container-video .video-resp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1280px) {
  .sticky {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--gutter) + var(--header-height));
  }

  .sticky.max {
    max-height: calc(100vh - (var(--gutter) + var(--header-height)));
    overflow-y: auto;
  }
}

.relative {
  position: relative;
}

.ab-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hidden {
  overflow: hidden;
}

body {
  line-height: var(--text-line-height);
  font-family: var(--text-font);
  font-weight: 400;
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  line-height: var(--title-line-height);
  font-family: var(--title-font);
  font-weight: 600;
}

.biggest,
.bigger,
.big,
.normal,
.small,
.smaller {
  line-height: var(--text-line-height);
  font-family: var(--text-font);
  font-weight: 400;
}

h1,
.h1,
.biggest {
  font-size: var(--h1-font-size);
}

h2,
.h2,
.bigger {
  font-size: var(--h2-font-size);
}

h3,
.h3,
.big {
  font-size: var(--h3-font-size);
}

h4,
.h4,
.normal {
  font-size: var(--normal-font-size);
}

h5,
.h5,
.small {
  font-size: var(--small-font-size);
}

h6,
.h6,
.smaller {
  font-size: var(--smaller-font-size);
}

.body-font {
  font-family: var(--text-font);
}

.heading-font {
  font-family: var(--title-font);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.font-bold {
  font-weight: 700;
}

.font-italic {
  font-style: italic;
}

.text-uppercase {
  text-transform: uppercase;
}
.text-uppercase.admin {
    text-transform: uppercase;
    height: 60px;
    margin-top: 13px;
    padding: 0px 10px;
}

.link-admin {
    margin-bottom: 10px;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-vertical {
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  -webkit-text-orientation: upright;
          text-orientation: upright;
}

blockquote {
  line-height: var(--text-line-height);
  font-family: var(--text-font);
  font-weight: 400;
  font-size: var(--normal-font-size);
  font-style: italic;
  padding: 1.3rem 1rem 1.3rem 2.6rem;
  margin-left: 0;
  margin-right: 0;
  position: relative;
  border-left: 8px solid var(--light-color);
  background: #efefef;
}

blockquote::before {
  content: "\201C";
  font-family: Arial;
  color: var(--light-color);
  font-size: 4.5rem;
  position: absolute;
  left: 0.3rem;
  top: -1rem;
}

.cite {
  padding: 0.4rem 1rem;
  border-left: 0.25rem solid;
  background: #efefef;
}

.nowrap {
  white-space: nowrap;
}

.color {
  color: var(--color);
}

.background {
  background-color: var(--color);
}

.border {
  border-color: var(--color);
}

.grey-color {
  --color: var(--grey-color);
  --color-alt: var(--grey-color);
}

.first-color {
  --color: var(--first-color);
  --color-alt: var(--second-color);
}

.second-color {
  --color: var(--second-color);
  --color-alt: var(--first-color);
}

.third-color {
  --color: var(--third-color);
}

.success-color {
  --color: var(--success-color);
}


.danger-color {
  --color: var(--danger-color);
}

.warning-color {
  --color: var(--warning-color);
}

.info-color {
  --color: var(--info-color);
}

.download-color{
    --color:var(--download-color);
}

.light-color {
  --color: var(--light-color);
}

.dark-color {
  --color: var(--dark-color);
}

.white-color {
  --color: var(--white-color);
}

.transparent-color {
  --color: var(--transparent-color);
}

.text-color {
  --color: var(--text-color);
}

.border-color {
  --color: var(--border-color);
}

.mediador-color {
  --color: var(--mediador-color);
}

.tramitador-color {
  --color: var(--tramitador-color);
}

.sanitario-color {
  --color: var(--sanitario-color);
}

.juridico-color {
  --color: var(--juridico-color);
}

.body-bg {
  --color: var(--body-bg);
}

.bordered {
  border: 1px solid var(--border-color);
}

.radius {
  border-radius: var(--border-radius);
}

.radius-top {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.radius-bottom {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.section {
  background: #fff;
  padding: var(--gutter);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.shadow {
  box-shadow: var(--shadow);
}

.auth input {
  background: none;
  border: 0;
}

.auth .field .line {
  border-bottom: 1px solid var(--color);
}

.auth .auth-container {
  width: 500px;
  max-width: 90%;
}

.auth input:-webkit-autofill,
.auth input:-webkit-autofill:hover,
.auth input:-webkit-autofill:focus,
.auth input:-webkit-autofill:active,
.auth select:-webkit-autofill,
.auth select:-webkit-autofill:hover,
.auth select:-webkit-autofill:focus,
.auth select:-webkit-autofill:active,
.auth textarea:-webkit-autofill,
.auth textarea:-webkit-autofill:hover,
.auth textarea:-webkit-autofill:focus,
.auth textarea:-webkit-autofill:active {
  box-shadow: 0 0 0 30px var(--white-color) inset !important;
}

.auth input:-webkit-autofill,
.auth select:-webkit-autofill,
.auth textarea:-webkit-autofill {
  -webkit-text-fill-color: var(--color) !important;
}

.link-delete a {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex: 1;
  border-right: 0;
}

.link-delete label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: 0;
}

.home .count {
  font-size: 50px;
  border: 3px solid #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
}

.calendar .grid-container {
  grid-auto-flow: dense;
}

.calendar .day {
  position: relative;
}

.calendar .day.active:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

.calendar .old {
  background: #dadada !important;
  cursor: no-drop;
}

.calendar .old .biggest {
  text-decoration: line-through;
}

.calendar .hascite {
  background: #b6f3b6 !important;
  cursor: pointer;
}

.calendar .hascite.lawyer {
  background: #f1ac8d !important;
}

.calendar .hascite.lawyer.medical {
  background: linear-gradient(45deg, #b6f3b6 48%, #f1ac8d 52%) !important;
}

.calendar .cites {
  grid-column: span 7;
}

.calendar .cites .datos {
  border-left: 3px solid #fff;
}

.calendar .cites .delete {
  margin-left: auto;
}

.calendar .cites .delete button {
  padding: 0;
  border: 0;
  cursor: pointer;
}

.calendar .cites.cites-home {
  order: 2;
}

.home .calendar .day.active:after {
  display: none;
}

tr.danger-color {
  background: rgba(255, 0, 25, 0.3);
}

.main-menu .wellcome {
  background: var(--second-color);
  color: #fff;
}

.main-menu .logout,
.main-menu .logout:hover {
  background: var(--danger-color);
  color: #fff;
}


/* OR */

.or-grid {
	display: grid;
}

.or-grid-50-50 {
	grid-template-columns: 50% 50%;
}

.or-grid-gap-1em {
	grid-column-gap: 1em;
	grid-row-gap: 1em;
}

.input-datetime-js{
  position: relative;
}

.xdsoft_datepicker table td{
min-width:0px;
}

i.fas.fa-check-square{
  min-width: 16px !important;
}

.modal-dialog{
  width: 50%;
  margin: auto;
  margin-top: 200px;
}

.modal::before {
  display: none;
}

.column{
  overflow: auto;
}

.none-button{
  font-size: 16px;
  font-family: var(--text-font);
  color: var(--link-color);
  cursor: pointer;
  border: none;
}

.max-md {
  max-width: 1200px;
  margin: auto;
}

.lista.t-items {
  display: grid;
  grid-template-columns: 4fr 1fr 1fr;
  align-items: center;
  padding: 5px 20px;
}