:root {
  --app-primary: #4285f4;
  --app-green: #2ecc71;
  --app-purple: #4c6ef5;
  --app-blue-strong: #0a5188;
  --app-dark: #303030;
  /* --app-dark: #0d0f0c; */
  --app-orange: #f18a19;
  --app-orange-strong: #f17819;
  --app-red: #e42e15;
  --app-gold: #f4cb00;
  --app-silver: #b8b8b8;
  --app-secondary: #53587e;
  --app-muted: #96a2a9;
  --app-orange-grandient: 90deg, rgba(242, 122, 27, 1) 0%,
    rgba(245, 150, 46, 1) 100%;
  --app-green-grandient: 90deg, rgba(56, 172, 105, 1) 0%,
    rgba(46, 204, 113, 1) 100%;

  --animate-duration: 0.5s;
  --animate-delay: 0.5s;
  --animate-repeat: 1;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f5f7fb;
  color: var(--app-dark);
}

.t-300 {
  font-weight: 300 !important;
}
.t-400 {
  font-weight: 400 !important;
}
.t-500 {
  font-weight: 500 !important;
}
.t-600 {
  font-weight: 600 !important;
}
.t-700 {
  font-weight: 700 !important;
}
.t-800 {
  font-weight: 800 !important;
}
.t-900 {
  font-weight: 900 !important;
}

.color-success {
  color: var(--app-green) !important;
}
.color-info {
  color: var(--app-purple) !important;
}
.color-warning {
  color: var(--app-orange-strong) !important;
}
.color-secondary {
  color: var(--app-secondary) !important;
}
.color-muted {
  color: var(--app-muted) !important;
}

.bg-primary {
  background-color: var(--app-primary) !important;
}
.bg-light {
  background-color: #f4f6fa !important;
}

.text-muted {
  color: #96a2a9 !important;
  font-size: 12px;
  font-weight: 500;
}
.b-red {
  border: 1px solid red;
}
.transparent {
  background: transparent !important;
}
.shadow {
  box-shadow: 0 2px 2px rgb(154 160 185 / 4%), 2px 2px rgb(166 173 201 / 4%) !important;
}
.wrap-login {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05),
    0 15px 40px rgba(166, 173, 201, 0.2);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  -webkit-border-radius: 20px;
}

button {
  outline: none !important;
  border: none;
  background: transparent;
  box-shadow: none !important;
}
.btn {
  font-size: 14px;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  font-weight: 500;
  border-radius: 0.15rem;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
  -webkit-border-radius: 0.15rem;
  -moz-border-radius: 0.15rem;
  -ms-border-radius: 0.15rem;
  -o-border-radius: 0.15rem;
  transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -moz-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -webkit-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -o-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
}

.btn.btn-block {
  width: 100%;
}
.btn:hover {
  opacity: 0.8;
}
.btn-primary {
  background: -moz-linear-gradient(var(--app-orange-grandient));
  background: -webkit-linear-gradient(var(--app-orange-grandient));
  background: linear-gradient(var(--app-orange-grandient));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f27a1b",endColorstr="#f5962e",GradientType=1);
  border-color: var(--app-orange);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  border-color: var(--app-orange);
}
.btn-success {
  background: -moz-linear-gradient(var(--app-green-grandient));
  background: -webkit-linear-gradient(var(--app-green-grandient));
  background: linear-gradient(var(--app-green-grandient));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#38ac69",endColorstr="#2ecc71",GradientType=1);
  border-color: var(--app-green);
}
.btn-success:active,
.btn-success:hover,
.btn-success:focus {
  border-color: var(--app-green);
}
.btn-gold {
  background-color: var(--app-gold);
  border-color: var(--app-gold);
}
.btn-outline-primary {
  color: var(--app-primary);
  border-color: var(--app-primary);
}
.btn-outline-primary:hover {
  background-color: var(--app-primary);
  border-color: var(--app-primary);
}
.btn-outline-secondary {
  color: #ffffff;
  border-color: #96a9af;
  background: #96a9af;
}
label {
  font-weight: 500;
  color: #8ea2a9;
  padding-bottom: 0.2rem;
  font-size: 13px;
}
.form-group {
  position: relative;
}
.grid-form {
  position: relative;
  border: solid 2px #e6e6e6;
  padding: 20px;
  margin-bottom: 1rem;
}
.grid-form p {
  font-size: 15px;
}

.form-control {
  font-family: "Open Sans", sans-serif !important;
  background-color: transparent;
  border: solid 2px #e6e6e6;
  color: #8ea2a9;
  border-radius: 0.15rem;
  box-shadow: none;
  outline: none;
  padding: 5px 16px 0;
  font-size: 20px;
  text-transform: uppercase;
}
.form-control:focus {
  color: var(--app-dark);
  outline: 0;
  border: 2px solid var(--app-primary);
  box-shadow: none !important;
}
.form-control.text-lg {
  font-size: 2rem;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
  padding-right: 16px;
  background-image: none;
}
.input-group-text {
  background-color: #fff !important;
}
.form-select {
  color: #8ea2a9;
  border-radius: 0.15rem;
  padding: 5px 2.25rem 5px 0.75rem;
  border: solid 2px #e6e6e6;
}
.form-select:focus {
  color: #5a7680;
  outline: 0;
  border: 2px solid var(--app-primary);
  box-shadow: none;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #f9f9f9;
}
.io-form {
  position: relative;
}
.io-form .form-label,
.grid-form .grid-label {
  position: absolute;
  top: 0;
  left: 10px;
  margin: 0;
  font-size: 13px;
  background: #fff;
  line-height: 2px;
  padding: 0 8px;
  z-index: 5;
}
.grid-form .grid-label {
  top: -2px;
}
.io-form .form-control:focus + label {
  color: var(--app-primary);
}
.io-form .input-group .form-label {
  left: 40px;
}
.io-form .form-control:disabled + label,
.io-form .form-control[readonly] + label {
  background: #f9f9f9;
}
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
  box-shadow: none !important;
}
.btn-check:active + .btn-outline-secondary:focus,
.btn-check:checked + .btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
  box-shadow: none !important;
}
/* =========
  CONFIG. TOGGLE
========= */
.toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  border-radius: 100px;
  background-color: #ddd;
  overflow: hidden;
  cursor: pointer;
  vertical-align: middle;
}
.toggle.active:before {
  right: 2px;
  left: 22px;
  transition: 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0.05s, 0s;
}
.toggle:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  right: 22px;
  background-color: #fff;
  border-radius: 36px;
  z-index: 1;
  transition: 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.05s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.toggle.active:after {
  box-shadow: inset 0 0 0 20px #4bd863;
}
.toggle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
}

@media (max-width: 992px) {
  .cart-table tbody [data-cart-update] {
    width: 100%;
    border-radius: 0;
    padding: 5px 15px;
    order: 3;
    border: 0;
  }
  .cart-table tbody input {
    order: 2;
    border: 0;
  }
  .cart-table tbody [data-cart-update]:last-child {
    order: 1;
  }
}
.wrapper {
  background-color: var(--app-light);
  /* width: 100%; */
  /* overflow-x: hidden; */
}
.wrapper .w-top {
  background-color: #fff;
  position: fixed;
  top: 0;
  border-bottom: 1px solid #eceff0;
  z-index: 999;
  transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -moz-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -webkit-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -o-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
}
.wrapper .w-sidebar {
  flex: 0 0 auto;
  width: 240px;
  position: fixed;
  left: 0;
  height: 100vh;
  /* background: var(--app-orange); */
  /* background: rgb(242, 122, 27); */
  background: -moz-linear-gradient(var(--app-orange-grandient));
  background: -webkit-linear-gradient(var(--app-orange-grandient));
  background: linear-gradient(var(--app-orange-grandient));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f27a1b",endColorstr="#f5962e",GradientType=1);
  z-index: 999;
  transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -moz-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -webkit-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -o-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
}
.wrapper .w-content {
  flex: 0 0 auto;
  width: calc(100% - 240px);
  min-height: 100vh;
  margin-left: 240px;
  padding: 70px 1rem 1rem !important;
  transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -moz-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -webkit-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
  -o-transition: all 0.55s cubic-bezier(0.15, 0.75, 0.25, 1);
}
.toggle-close {
  position: absolute;
  right: 0;
  top: 8px;
  color: #fff;
  display: none;
}

@media (max-width: 992px) {
  .wrapper .w-sidebar {
    left: -480px;
  }
  .wrapper .w-content {
    width: 100%;
    margin-left: 0;
  }
  .side-show .w-sidebar {
    left: 0;
  }
  /* .side-show .w-content {
    margin-left: 240px;
    width: calc(100% - 240px);
  } */
  .toggle-close {
    display: block;
  }
}

.w-sidebar .brand {
  background-color: var(--app-orange-strong);
  color: #fff;
  font-weight: 700;
  padding: 0.6rem 1rem;
}
.w-sidebar .menu-list {
  padding-top: 1rem;
}
.w-sidebar .menu-list .nav-link {
  color: #fff;
  padding: 12px 10px;
}
.w-sidebar .menu-list .nav-link i {
  padding: 0 8px;
  width: 34px;
}
.w-sidebar .menu-list .nav-link.active {
  background-color: var(--app-orange-strong);
}
.w-sidebar .menu-list .nav-link:hover {
  background-color: var(--app-orange-strong);
}
.w-sidebar .menu-list .nav-link[aria-expanded="true"] {
  background-color: var(--app-orange-strong);
}
.w-sidebar .menu-list .menu-collapse {
  background-color: rgba(255, 255, 255, 0.15);
}
.w-sidebar .menu-list .menu-collapse .nav-link {
  padding-left: 2.8rem;
}
.w-sidebar .menu-list .menu-collapse .nav-link.active {
  background-color: #f58a35;
}
.w-sidebar .menu-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.accordion-button {
  background-color: transparent;
  box-shadow: none !important;
}

.card {
  border: none;
  border-radius: 0.15px;
  -webkit-border-radius: 0.15px;
  -moz-border-radius: 0.15px;
  -ms-border-radius: 0.15px;
  -o-border-radius: 0.15px;
}
.card-header {
  background-color: #fff;
  padding: 1rem 1rem 0.5rem;
  border-bottom: 1px solid #f0f2f5;
}
.card-header h5 {
  font-size: 15px;
  font-weight: 600;
}
.io-card {
  border: 0;
  margin-bottom: 1rem;
}
.io-card .card-header,
.io-card .card-footer {
  background-color: #fff;
}
.io-card h5 {
  font-weight: bold;
}
.card-item {
  padding: 8px;
  margin-bottom: 0.35rem;
}
.table thead tr {
  background: #fff;
  border-bottom: 4px solid #eceffa;
}
.table thead th {
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #6c757d;
  padding: 0.8rem 0.5rem;
}
.table-hover > tbody > tr:hover {
  --bs-table-accent-bg: #f3f6fb !important;
  color: var(--bs-table-hover-color);
}

.table tbody th,
.table tbody td {
  font-size: 14px;
  background: #fff;
  vertical-align: middle;
}

.table .actions {
  text-align: right;
}
.table .actions .btn-group-sm > .btn,
.table .actions .btn,
.actions .btn-group-sm > .btn,
.actions .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.825rem;
}

/* [data-list] tr td {
  text-transform: uppercase;
} */

.swal2-title {
  font-size: 18px !important;
  color: #6c757d !important;
  /* font-weight: 500 !important; */
}
.swal2-styled {
  padding: 0.4rem 1rem !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
}
.chip {
  position: relative;
  border-radius: 30px;
  padding: 4px 20px;
  text-align: center;
  font-weight: 600;
}
.chip.success {
  background: #cff6dd;
  color: #1fa750;
}
.chip.info {
  background: #e3e1ff;
  color: #7367f0;
}
.chip.danger {
  background: #f5d3da;
  color: #f14668;
}
.chip.warning {
  background: #fdf5dd;
  color: #cfa00c;
}
.chip.muted {
  background: #eceffa;
  color: #96a2a9;
}

.io-cart-list {
  min-height: calc(60vh - 80px);
  max-height: calc(60vh - 80px);
  overflow-x: hidden;
  overflow-y: auto;
}
.io-cart-list ul {
  padding: 0;
  margin: 0;
}
.io-cart-list ul li .item-info p {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}
.io-cart-list ul li .item-sub strong {
  padding: 0.5rem;
}
.io-cart-list ul li .item-sub .btn-sm {
  padding: 0.4rem;
  font-size: 12px;
}
.io-cart-list ul li {
  padding-bottom: 0.5rem;
  list-style: none;
}

.io-cart-list ul li + li {
  border-top: solid 1px #e6e6e6;
  padding-top: 0.5rem;
}

.content-total label {
  color: #6c757d;
  font-size: 28px;
  font-weight: 400;
}
.content-catalog {
  min-height: 20vh;
  max-height: calc(100vh - 25vh);
  overflow: auto;
  scrollbar-color: #96a9af #fff;
  scrollbar-width: thin;
}
.content-catalog::-webkit-scrollbar {
  width: 10px;
}
.content-catalog::-webkit-scrollbar-track {
  background: #fff;
}
.content-catalog::-webkit-scrollbar-thumb {
  background-color: #96a9af;
  border-radius: 20px;
  border: 2px solid #fff;
}

.container-grid {
  display: grid;
  grid-auto-columns: minmax(10rem, auto);
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  grid-gap: 1rem;
  /* grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px; */
}
.container-grid .item {
  display: grid;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem;
  text-align: center;
  box-shadow: 0 2px 2px rgb(154 160 185 / 4%), 2px 2px rgb(166 173 201 / 4%);
}
.container-grid .item img {
  max-width: 120px;
}
.container-grid .item span {
  color: #646970;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.container-grid .item span + span,
.container-grid .item span:only-of-type {
  padding-bottom: 0.5rem;
}
.container-grid .item strong {
  color: #606060;
}
.radius {
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
  box-shadow: none;
}

.wrapper-login {
  background: -moz-linear-gradient(var(--app-orange-grandient));
  background: -webkit-linear-gradient(var(--app-orange-grandient));
  background: linear-gradient(var(--app-orange-grandient));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f27a1b",endColorstr="#f5962e",GradientType=1);
}

.ui-tabs {
  border: 0;
}
.ui-tabs .nav-link {
  margin: 0;
  padding: 1rem 1.5rem 0.5rem;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0;
  background-color: #fff;
  color: #9da3ac;
  border-width: 0 0 2px 0;
  border-color: #fff;
}
.ui-tabs .nav-item.show .nav-link,
.ui-tabs .nav-link.active {
  color: #363a41;
  /* background-color: #f7fbfc; */
  border-bottom: 2px solid var(--app-dark) !important;
}
.ui-tabs .nav-link:focus,
.ui-tabs .nav-link:hover {
  color: var(--app-dark);
}
.offcanvas {
  z-index: 1060;
}
.offcanvas-end {
  border-left: 1px solid #e5e5e5;
}
.offcanvas-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1rem 1.2rem;
}
.dropdown-menu {
  border: 1px solid #e2e2e2;
}
/* ui-check */
.ui-check[type="checkbox"]:checked,
.ui-check[type="checkbox"]:not(:checked),
.ui-check[type="radio"]:checked,
.ui-check[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  visibility: hidden;
}

.ui-check:checked + label,
.ui-check:not(:checked) + label {
  position: relative;
  color: #8ea2a9;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  border: solid 2px #e6e6e6;
  padding: 0.8rem 0.4rem 0.4rem;
  text-align: center;
  border-radius: 0.25rem;
  overflow: hidden;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.ui-check:checked + label {
  border-color: var(--app-orange);
  color: var(--app-orange);
}

.ui-check:not(:checked) + label:hover {
  border-color: #8ea2a9;
  color: #8ea2a9;
}

.ui-check:checked + label i,
.ui-check:not(:checked) + label i {
  font-size: 19px;
  padding-bottom: 0.5rem;
}

/* .container-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding-bottom: 0.5rem;
}

.container-scroll .item {
  flex: 0 0 auto;
} */

#custom-items .count {
  display: flex;
  width: 25px;
  height: 25px;
  border: 2px solid #eaeaea;
  background: #f0f0f0;
  border-radius: 50%;
  color: #53587e;
  align-items: center;
  justify-content: center;
  font-weight: 600 !important;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* .cart-counter {} */
.cart-counter .qt-max,
.cart-counter .qt-min {
  color: #96a2a9;
  font-size: 14px;
  font-weight: 800;
  padding: 0.35em 0.65em;
  text-align: center;
  border-radius: 0.25rem;
  background-color: #f4f6fa;
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cart-counter .qt {
  color: #96a2a9;
  font-size: 12px;
  font-weight: 500;
  width: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.toUp {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;

  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
.notify {
  background-color: var(--app-orange) !important;
  padding: 0.5rem !important;
}
.notify .swal2-title {
  color: #fff !important;
  margin: 0 0 0.25rem !important;
  font-size: 13px !important;
  text-align: center !important;
}
