/* css/global.css */
/* #4BDAF5 azul claro */
/* #4293CF azul escuro */

:root {
  --clr-blue: #4BDAF5; /* light blue */
  --clr-blue-dark: #4293CF;
  --clr-red: #f87171;  /* light red */
  --clr-red-dark: #ef4444;
  --clr-bg: #f8f9ff;
  --clr-gray: #6b7280;
  --radius: 0.75rem;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --font-base: "Inter", sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--clr-bg);
  color: var(--clr-gray);
  -webkit-font-smoothing: antialiased;
}

main {
  max-width:600px;
  margin:56px auto 2rem;
  padding:2rem;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.section__header {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--clr-blue-dark);
}

.link-primary {
  text-decoration: none;
  color: #ef4444;
}

/* ---------- Layout wrappers ---------- */
.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}
#wrapper {
  display: flex;
  margin-top: 56px;
  margin-right: 0;
}
.card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card__header {
  text-align: center;
}

.logo {
  width: 400px;
  height: auto;
}

/* ---------- Buttons ---------- */

/* botão com tom vermelho, ideal para ações de sair/desfazer */
.btn--danger {
  background: linear-gradient(135deg, var(--clr-red), var(--clr-red-dark));
  color: #fff;
}

.btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 200;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.1s ease;
}

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

.btn--google {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #111827;
}

.btn__icon {
  width: 20px;
  height: 20px;
}

.btn--primary {
  background: linear-gradient(25deg, var(--clr-red), var(--clr-blue));
  color: #fff;
}

/* Navbar login button (outline blue) */
.btn--login {
  background: #fff;
  border: 1px solid var(--clr-blue-dark);
  color: var(--clr-blue-dark);
  padding: 0.5rem 0.9rem;
  font-weight: 500;
}
.btn--login:hover { background: #f3f4f6; }

.w-full {
  width: 100%;
}

/* ---------- Divider ---------- */
.divider {
  position: relative;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #e5e7eb;
  transform: translateY(-50%);
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

/* ---------- Form ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.form__input {
  padding: 0.625rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-size: 1rem;
}

.form__input:focus {
  outline: none;
  border-color: var(--clr-blue-dark);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

/* ---------- Footer links ---------- */
.card__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.link {
  color: var(--clr-blue-dark);
  text-decoration: none;
  font-weight: 500;
}

.link:hover {
  text-decoration: underline;
}

.separator {
  color: #d1d5db;
}

/* ---------- Search suggestions ---------- */
.suggestion-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #e5e7eb;
}

.suggestion-item:hover {
  background: var(--clr-bg);
}

.suggestion-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.75rem;
}

.suggestion-text {
  display: flex;
  flex-direction: column;
}

.suggestion-username {
  font-weight: 600;
  color: #111827;
}

.suggestion-name {
  font-size: 0.875rem;
  color: #6b7280;
}

/* navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  background: #fff;
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 20;
}

.navbar__left {
  display: flex; align-items: center; gap: 1rem;
}

/* Oculta o ícone de busca por padrão (desktop). Mostrado apenas no mobile. */
#nav-search-toggle { display: none; }
.navbar__right {
  display: flex; align-items: center; gap: .5rem;
}

#sidebar-toggle {
  width: 24px; 
  height: 24px; 
  cursor: pointer;
}

.logo {
  width: 120px;
  height: auto;
}

.logo img {
  height: 25px;
}

.navbar__center {
  flex: 1; max-width: 400px; margin: 0 1rem; position: relative;
}

/* container relativo para o input + ícone */
.navbar__center .search-wrapper {
  position: relative;
  width: 100%;
}

/* ícone posicionado dentro do wrapper */
.navbar__center .search-icon {
  position: absolute;
  left: 0.75rem;            /* distância do lado esquerdo */
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;     /* para que o clique passe para o input */
}

/* afasta o texto do input para não sobrepor o ícone */
.navbar__center .form__input {
  padding-left: 2.5rem;     /* deve ser >= ícone width + left offset + um gap */
}

.form__input {
  width: 100%; padding: 0.5rem 1rem; border-radius: var(--radius); border: 1px solid #d1d5db;
}

#search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-top: none;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 25;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__right img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .navbar__center { display: none; position: absolute; left: 0; right: 0; top: 56px; background:#fff; padding: .5rem 1rem; box-shadow: var(--shadow); z-index: 30; }
  body.show-search .navbar__center { display: block; }
  #nav-search-toggle { display: inline-flex; }
}

/* sidebar oculto por padrão */
#sidebar { display: none; }
.sidebar {
  width: 200px;
  background: #fff;
  position: fixed;
  top: 56px;
  left: 0;
  bottom: 0;
  border-right: 1px solid #e5e7eb;
  padding: 1rem;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  /* Permit scroll quando houver muitos itens */
  overflow-y: auto;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

#sidebar a {
  color: #111827;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  display: block;
}

#sidebar a p {
  text-align: center;
}

#sidebar a:hover {
  background: var(--clr-bg);
}

/* ícones ao lado do texto dos links do sidebar */
.sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;           /* espaço entre ícone e texto */
}

.sidebar__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: auto;
  display: block;
}

#sidebar .sidebar__logout {
  margin: auto;
  display: block;

}

.sb-heading{
  font-size:.9rem;
  margin:1.2rem 0 .4rem;
  color:var(--clr-gray);
  text-transform:uppercase;
}
.sb-subs{list-style:none;margin:0;padding:0}
.sb-subs li{display:flex;align-items:center;gap:.6rem;margin-bottom:.6rem}
.sb-subs img{width:32px;height:32px;border-radius:50%;object-fit:cover}
.sb-subs a{color:inherit;text-decoration:none}
.sb-subs a:hover{text-decoration:underline}


body.sidebar-open #sidebar { display: block; }

/* ---------- Suggestions sidebar ---------- */
#suggestions-container { display: none !important; }

.suggestions-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
  overflow-y: auto;
}

#tags-bar h4 {
  margin: 0 0 .5rem;
  color: var(--clr-blue-dark);
}

#tags-bar {
  flex: 1;
  overflow-y: auto;
}

#tags-bar ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

#tags-bar button {
  background: var(--clr-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: .25rem .5rem;
  cursor: pointer;
  font-size: .875rem;
}

#tags-bar button:hover {
  background: var(--clr-blue-dark);
}

.sug {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.sug:hover { transform: translateY(-2px); }

.sug img.bg {
  width: 100%;
  height: 80px;
  object-fit: cover;
  transform: scale(1.1);
}

.sug img.avatar {
  position: absolute;
  bottom: 2px;
  left: 50%;
  translate: -50% 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #fff;
  object-fit: cover;
  background: #fff;
}

.sug p {
  margin-top: 40px;
  margin-left: 58px;
  font-weight: 600;
  color: #111;
}

.sug.promo {
  border: 3px solid gold;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

/* ---------- Feed layout ---------- */
#wrapper {
  display: flex;
  margin-top: 56px;
  margin-right: 0; /* ocupa 100% da largura, centralizado via .feed-container */
}

@media (max-width: 768px) {
  #wrapper { margin: 56px 0 0; flex-direction: column; }
  /* Oculta o painel lateral (sugestões + trending tags) em telas pequenas */
  #suggestions-container { display: none !important; }
}

/* Feed container constrained like YouTube */
.feed-container { width: 100%; max-width: 3000px; margin: 0 auto; }

#feed {
  padding: 1rem 1rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

/* 5 cards for giant TVs */
@media (min-width: 2400px) { #feed { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
/* 3 cards: tablet landscape */
@media (max-width: 1199px) { #feed { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
/* 2 cards: tablet portrait */
@media (max-width: 1023px) { #feed { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
/* 1 card: mobile */
@media (max-width: 767px)  { #feed { grid-template-columns: 1fr; } }

.profile-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform 0.2s;
}
.profile-card.promoted-card, .profile-card.sponsored-card {
  border: 2px solid var(--clr-red-dark);
  box-shadow: 0 16px 32px -12px rgba(168, 85, 247, 0.55);
}
.profile-card:hover { transform: translateY(-2px); }
.profile-card img.bg { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.profile-card img.avatar {
  position: absolute;
  bottom: 8px; left: 8px;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  background: #fff;
}

/* ---------- Top Tags (YouTube-like) ---------- */
.top-tags { display:flex; gap:.5rem; padding:.5rem 1rem; overflow-x:auto; background:#fff; position:sticky; top:56px; z-index:15; box-shadow: var(--shadow); }
.top-tags .tag-chip{ white-space:nowrap; padding:.35rem .7rem; border:1px solid #e5e7eb; border-radius:999px; background:#fff; color:#111827; cursor:pointer; font-weight:600; }
.top-tags .tag-chip.active{ background:#111827; color:#fff; border-color:#111827 }
/* Video ad slot */
.video-promos {
  margin: 1rem auto 0;
  padding: 0 1rem;
  display: none;
  max-width: 620px;
}
.video-promos.active { display: block; }
.video-promos.flex { display: flex; gap: 1rem; }
.video-promos.flex .video-ad-card {
  flex: 1 1 360px;
  max-width: 420px;
}
.video-ad-card {
  display: grid;
  gap: .85rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: .9rem;
}
.video-ad-card .video-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.video-ad-card .video-wrapper video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  background: #000;
}
.video-ad-card .video-wrapper .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(17,24,39,.85);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.video-ad-card .meta {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.video-ad-card .meta h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #111827;
}
.video-ad-card .meta .company {
  font-size: .9rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.video-ad-card .meta p {
  margin: 0;
  color: #374151;
  line-height: 1.45;
}
.video-ad-card .meta .cta {
  align-self: flex-start;
  margin-top: .35rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: linear-gradient(120deg, var(--clr-red), var(--clr-blue));
  color: #fff;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.video-ad-card .meta .cta:focus-visible {
  outline: 2px solid var(--clr-blue);
  outline-offset: 2px;
}
.video-ad-card .meta .cta:hover { filter: brightness(.95); }
@media (min-width: 1024px) {
  .video-promos.flex .video-ad-card .meta h3 { font-size: 1rem; }
  .video-promos.flex .video-ad-card { padding: .85rem; }
}
@media (max-width: 767px) {
  .video-promos.flex { display: block; }
}
/* meta abaixo da imagem no mesmo card */
.profile-card .img-wrap { position: relative; }
.profile-card .meta { padding: .5rem .5rem .6rem; }
.profile-card .meta .username { margin: .25rem 0 0; font-weight: 600; color: #111; }
.profile-card .meta .location { margin: .15rem 0 0; font-size: .875rem; color: var(--clr-gray); }
.profile-card .meta .pricing {
  margin: .4rem 0 0;
  font-size: .85rem;
  color: #4b5563;
  line-height: 1.3;
}
.profile-card .meta .pricing span {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #9ca3af;
}
.profile-card .meta .pricing strong {
  display: block;
  margin-top: .08rem;
  font-weight: 600;
  color: #111827;
}
.profile-card .meta .pricing.pricing-muted span { color: #d1d5db; }
.profile-card .meta .pricing.pricing-muted strong { color: #9ca3af; }
/* texto do anúncio (patrocinado) um pouco menor */
.profile-card .meta .ad-text {
  font-size: .9rem;
  color: var(--clr-gray);
  margin: .2rem 0 .35rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;           /* máximo 2 linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;         /* reticências na 2ª linha */
}
.profile-card .meta .ad-headline {
  margin: .1rem 0 0;
  font-size: .95rem;
  color: #111827;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.profile-card .meta .ad-headline .ad-company {
  font-weight: 600;
}
.profile-card .meta .ad-headline .ad-title {
  font-weight: 500;
  color: #1f2937;
}
.profile-card .meta .ad-description {
  margin: .25rem 0 0;
  font-size: .9rem;
  color: var(--clr-gray);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-card .img-wrap .ad-badge {
  position:absolute;
  top:6px;
  left:6px;
  background:#f59e0b;
  color:#111;
  padding:.15rem .35rem;
  border-radius:6px;
  font-size:.75rem;
  font-weight:600;
}
.profile-card.promoted-card .promo-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: .2rem .5rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.85);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  z-index: 2;
}
.profile-card.promoted-card .meta {
  background: linear-gradient(135deg, rgba(168,85,247,0.08), rgba(59,130,246,0.08));
}
.profile-card.promoted-card .meta .username,
.profile-card.promoted-card .meta .ad-headline .ad-company,
.profile-card.promoted-card .meta .ad-headline .ad-title {
  color: #4c1d95;
}
.profile-card.promoted-card .meta .pricing strong {
  color: #4c1d95;
}
.profile-card.promoted-card .meta .pricing.pricing-muted span { color: rgba(76,29,149,0.4); }
.profile-card.promoted-card .meta .pricing.pricing-muted strong { color: rgba(76,29,149,0.45); }
.profile-card.promoted-card .promo-badge img {
  width: 14px;
  height: 14px;
  display: block;
}

/* ---------- Central Ads ---------- */
.teaser-status {
  font-weight: 600;
}
.teaser-status.rejected { color: var(--clr-red-dark); }
.teaser-status.public   { color: var(--clr-blue-dark); }
.teaser-status.pending  { color: var(--clr-gray); }

.teaser-box { position: relative; }
.teaser-thumb { width: 100%; border-radius: 0.5rem; }
.teaser-thumb.pending { opacity: 0.5; }
.teaser-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: #facc15;
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
}
.teaser-select-btn {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 480px) {
  .card {
    padding: 1.5rem;
  }

  .logo {
    width: 96px;
  }
}

/*-----------PROMO NO ACC------------*/
/* --- promo cards (assinaturas) --- */
.promo-card {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid var(--clr-blue);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: border-color .2s, box-shadow .2s;
  cursor: pointer;
  margin-bottom: 1rem;
}

.promo-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); }

.promo-card input[type="checkbox"] {
  appearance: none;
  width: 20px; height: 20px;
  border: 2px solid var(--clr-gray);
  border-radius: 4px;
  margin-top: 4px;
  cursor: pointer;
  position: relative;
}
.promo-card input[type="checkbox"]:checked {
  background: var(--clr-blue-dark);
  border-color: var(--clr-blue-dark);
}
.promo-card input[type="checkbox"]:checked::after {
  content:"";
  position:absolute;
  top:2px; left:5px;
  width:6px; height:10px;
  border:solid #fff; border-width:0 2px 2px 0;
  transform: rotate(45deg);
}

/* corpo interno */
.promo-body { flex:1; }

.promo-title {
  margin: 0 0 .25rem;
  font-size: 1.05rem;
  color: var(--clr-blue-dark);
}

.promo-price {
  margin: 0 0 .5rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: #111;
}

.promo-info {
  list-style: disc;
  margin: 0 0 0 1rem;
  padding: 0;
  font-size: 0.875rem;
  color: var(--clr-gray);
}

/* cartão fixo (mensal) não clicável */
.promo-fixed { cursor: default; border-style: dashed; }
.promo-fixed:hover { box-shadow: var(--shadow); }

/* ---------- Phone tips (Telegram verify) ---------- */
#phone_tips {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--clr-blue-dark);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  color: #374151;
}
#phone_tips a {
  color: var(--clr-blue-dark);
  text-decoration: none;
  font-weight: 600;
}
#phone_tips a:hover { text-decoration: underline; }
#phone_tips ul { margin: 0.5rem 0 0 1rem; padding: 0; }
#phone_tips li { margin: 0.2rem 0; }
.btn--boost {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.btn--boost .boost-icon { display: none; width: 18px; height: 18px; }
@media (max-width: 640px) {
  .btn--boost { width:40px; height:40px; border-radius:50%; padding:0; justify-content:center; }
  .btn--boost .boost-text { display: none; }
  .btn--boost .boost-icon { display: inline-block; width:80%; height:80%; }
}

/* ---------- Micro Toast ---------- */
.toast-container {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2000;
}
.toast {
  background: #111827;
  color: #fff;
  padding: .6rem .9rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  font-size: .9rem;
  opacity: .95;
  transition: opacity .4s ease, transform .4s ease;
}
.toast--ok { background: #1f2937; }
.toast--err { background: #b91c1c; }
.toast--info { background: #374151; }

/* info dot (anchor) */
.info-dot{
  display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;
  background:#eef2ff;color:#3730a3;border:1px solid #c7d2fe;font-weight:700;font-size:.8rem;text-decoration:none;
}
.btn--icon {
  background:#fff; border:1px solid #e5e7eb; width:40px; height:40px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; padding:0;
}
