:root {
  --t3-bg: #f2f1e8;
  --t3-surface: #ffffff;
  --t3-ink: #121826;
  --t3-muted: #626b7a;
  --t3-line: #c0c1bb;
  --t3-accent: #0f766e;
  --t3-accent-2: #b45309;
  --t3-warm: #fff7ed;
  --t3-cool: #eef7f4;
  --t3-radius: 8px;
  --t3-shadow: 0 14px 40px rgba(18, 24, 38, .08);
}

* { box-sizing: border-box; }
body.theme3 {
  margin: 0;
  background: var(--t3-bg);
  color: var(--t3-ink);
  font-family: Jannat, Arial, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--t3-accent); text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1180px; }
.page-content,
.t3-section { padding: 34px 0 56px; }

.t3-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--t3-bg);
  border-bottom: 1px solid var(--t3-line);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}
.t3-logo { display: inline-flex; align-items: center; }
.t3-logo-img {
  width: 138px;
  max-height: 62px;
  object-fit: contain;
}
.t3-mobile-logo {
  width: 128px;
  max-height: 56px;
  object-fit: contain;
}
.t3-nav { display: flex; justify-content: center; gap: 6px; }
.t3-nav a,
.t3-utility,
.t3-chip-list a,
.t3-pill {
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: rgba(255,255,255,.65);
  padding: 8px 12px;
  color: var(--t3-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.t3-nav a.is-active,
.t3-nav a:hover,
.t3-utility:hover,
.t3-chip-list a:hover {
  background: var(--t3-accent);
  color: #fff;
}
.t3-nav i,
.t3-utility i,
.t3-mobile-panel a i {
  width: 16px;
  text-align: center;
}
.t3-utility { font: inherit; font-size:10px; cursor: pointer; text-align: center; }
.t3-score-menu {
  width: min(280px, 92vw);
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: var(--t3-surface);
}
.dropdown-menu{
  box-shadow: 0 0 10px #ccc !important;
}
.score-dropdown-lg,
.latest-score {
  margin: 0;
}
.latest-score {
  max-height: min(420px, 70vh);
  overflow: auto;
  padding: 0;
}
.latest-score .text-center {
  padding: 18px;
  color: var(--t3-muted);
}
.latest-score .score + .score {
  border-top: 1px solid var(--t3-line);
}
.latest-score .score a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--t3-radius);
  color: var(--t3-ink);
}
.latest-score .score a:hover {
  background: var(--t3-cool);
  color: var(--t3-ink);
}
.score-rank {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--t3-radius);
  background: var(--t3-warm);
  color: var(--t3-accent-2);
}
.score-copy {
  min-width: 0;
}
.score-copy b,
.score-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.score-copy small {
  color: var(--t3-muted);
}
.score-value {
  padding: 4px 8px;
  border-radius: var(--t3-radius);
  background: var(--t3-ink);
  color: #fff;
  font-weight: 700;
}
.t3-menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: var(--t3-surface);
}
.t3-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--t3-ink);
  margin: 6px 8px;
}
.t3-mobile-panel {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(320px, 86vw);
  background: var(--t3-surface);
  z-index: 90;
  transform: translateX(-105%);
  transition: transform .22s ease;
  padding: 18px;
  box-shadow: var(--t3-shadow);
}
[dir="rtl"] .t3-mobile-panel {
  inset: 0 0 0 auto;
  transform: translateX(105%);
}
.t3-mobile-panel.show { transform: translateX(0); }
.t3-mobile-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}
.t3-mobile-head { display: flex; align-items: center; justify-content: space-between; }
.t3-mobile-head button,
.t3-mobile-overlay {
  border: 0;
  background: transparent;
}
.t3-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgba(18,24,38,.28);
}
.t3-mobile-overlay.show { display: block; }

.search-box {
  justify-content: center;
  position: relative;
  z-index: 70;
}
.search-field-module {
  position: relative;
  width: min(100%, 720px);
  margin: 0 auto;
}
.search-field-wrap {
  display: grid;
  grid-template-columns: 1fr 52px;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: var(--t3-surface);
  box-shadow: 0 10px 28px rgba(18, 24, 38, .07);
}
.search-field-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 16px;
  color: var(--t3-ink);
  outline: 0;
}
.search-field-wrap input::placeholder { color: var(--t3-muted); }
.search-field-wrap .slidebtn {
  width: 52px;
  min-width: 52px;
  border-radius: 0;
  padding: 0;
}
.search_result {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 120;
  display: none;
  max-height: min(420px, 70vh);
  overflow: auto;
  background: var(--t3-surface);
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  box-shadow: var(--t3-shadow);
  padding: 10px;
}
.search_result.res_show { display: block; }
.search_result_group { padding: 6px; }
.search_result_group + .search_result_group {
  border-top: 1px solid var(--t3-line);
}
.search_result b {
  display: block;
  color: var(--t3-muted);
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.res_item a {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--t3-radius);
  color: var(--t3-ink);
}
.res_item a:hover {
  background: var(--t3-cool);
  color: var(--t3-accent);
}

.t3-hero {
  padding: 28px 0 18px;
}
.t3-hero-card {
  background: linear-gradient(135deg, var(--t3-cool), var(--t3-warm));
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  padding: clamp(22px, 4vw, 44px);
}
.t3-kicker {
  color: var(--t3-accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}
.t3-title {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.t3-lead {
  color: var(--t3-muted);
  font-size: 18px;
  max-width: 760px;
  margin: 0;
}
.t3-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 20px;
}
.t3-page-head h1 { margin: 0; font-size: clamp(28px, 3vw, 42px); }
.t3-page-head p { color: var(--t3-muted); margin: 0; max-width: 620px; }

.t3-card {
  display: block;
  height: 100%;
  background: var(--t3-surface);
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(18,24,38,.04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.t3-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--t3-shadow);
}
.t3-card-media {
  aspect-ratio: 16 / 10;
  background: var(--t3-cool);
  overflow: hidden;
}
.t3-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t3-card-body { padding: 16px; }
.t3-card h2 {
  font-size: 20px;
  line-height: 1.35;
  margin: 8px 0;
}
.t3-card p {
  color: var(--t3-muted);
  margin: 0 0 14px;
}
.t3-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--t3-muted);
  font-size: 13px;
}
.t3-tag {
  color: var(--t3-accent-2);
  font-weight: 700;
  font-size: 13px;
}
.t3-list-gap { row-gap: 22px; }

.t3-detail,
.t3-mini-card,
.t3-insight,
.t3-booking,
.t3-ad-hero {
  background: var(--t3-surface);
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(18,24,38,.04);
}
.t3-detail-media {
  aspect-ratio: 16 / 8;
  background: var(--t3-cool);
  margin: 0;
  overflow: hidden;
}
.t3-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t3-detail-body { padding: clamp(18px, 4vw, 34px); }
.t3-rich-text {
  color: var(--t3-muted);
  margin: 16px 0;
}
.t3-rich-text img { border-radius: var(--t3-radius); }

.greenText { color: var(--t3-accent); }
.blueText { color: #1d4ed8; }
.redText { color: #dc2626; }
.grayText { color: var(--t3-muted); }

.result .articles {
  padding: 5px 15px;
}
.result .articles .title {
  margin-bottom: 20px;
  text-align: center;
}
.result-cert {
  position: relative;
  display: grid;
  align-content: center;
  min-height: clamp(360px, 54vw, 640px);
  margin: 18px auto 24px;
  padding: clamp(96px, 17vw, 170px) clamp(44px, 10vw, 120px);
  overflow: hidden;
  background: url("../img/certificate.jpg") center / contain no-repeat;
  color: #2f2a1f;
  text-align: center;
}
.result-cert .blueText {
  display: block;
  color: #123b72;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.2;
}
.result-cert .grayText {
  color: #4f4633;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.9;
}
.result-cert .greenText {
  display: inline-block;
  color: #0f766e;
  font-size: clamp(18px, 2.5vw, 30px);
}
.result_desc {
  margin: 0 0 28px;
  padding: clamp(18px, 4vw, 34px);
  background: var(--t3-surface);
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  box-shadow: var(--t3-shadow);
  text-align: center;
}
.result_desc h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.25;
}
.result_desc h2 b {
  display: block;
  width: 100%;
}
.result_desc .exam-desc {
  margin: 14px 0;
  padding: 18px;
  background: var(--t3-cool);
  border: 1px solid rgba(15, 118, 110, .16);
  border-radius: var(--t3-radius);
  color: var(--t3-muted);
  text-align: start;
}
.result_desc .exam-desc p:last-child {
  margin-bottom: 0;
}

.exam_review {
  margin: 22px 0 0;
  padding: clamp(16px, 3vw, 26px);
  background: var(--t3-surface);
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  box-shadow: var(--t3-shadow);
}
.exam_review .card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 14px 16px;
  background: var(--t3-cool);
  border: 1px solid rgba(15, 118, 110, .16);
  border-radius: var(--t3-radius);
  color: var(--t3-ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
.exam_review .card-header span:nth-child(2) {
  display: inline-grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--t3-accent);
  color: #fff;
}
.exam_review .collapse.show {
  display: grid;
  gap: 18px;
}
.exam_review .main-img {
  width: 100%;
  padding: 0;
}
.exam_review .main-img .image {
  overflow: hidden;
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: var(--t3-cool);
}
.exam_review .main-img img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}
.reviewOptions {
  width: 100%;
}
.reviewOptions > p {
  margin: 0 0 16px;
  color: var(--t3-muted);
  font-size: 17px;
}
.results-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  padding: 12px 14px;
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: #fff;
}
.results-option.greenText {
  border-color: rgba(15, 118, 110, .35);
  background: var(--t3-cool);
}
.results-option img {
  width: 44px;
  height: 44px !important;
  border-radius: 6px;
  object-fit: cover;
}
.noselect * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.t3-answer-form,
.t3-start-form { margin: 18px 0 0; }
.t3-start-form {
  display: grid;
  gap: 12px;
  max-width: 460px;
}
.t3-field-label {
  display: block;
  color: var(--t3-ink);
  font-weight: 700;
  margin-bottom: 6px;
}
.form-control {
  min-height: 44px;
  border-color: var(--t3-line);
  border-radius: var(--t3-radius);
}
.form-control:focus {
  border-color: var(--t3-accent);
  box-shadow: 0 0 0 .2rem rgba(15,118,110,.12);
}
.t3-option { height: 100%; }
.t3-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.t3-option label {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  min-height: 112px;
  width: 100%;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: #fff;
}
.t3-option input:checked + label {
  border-color: var(--t3-accent);
  box-shadow: 0 0 0 3px rgba(15,118,110,.12);
}
.t3-option-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  border-radius: var(--t3-radius);
  background: var(--t3-cool);
  overflow: hidden;
}
.t3-option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t3-option-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.t3-option-copy strong {
  overflow-wrap: anywhere;
  line-height: 1.45;
}
.t3-option-copy small { color: var(--t3-muted); }
.t3-option-wide label { grid-template-columns: 132px 1fr; }
.t3-result-bar {
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: var(--t3-accent);
}
.t3-rate-list { display: grid; gap: 12px; }
.t3-rate-row {
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: #fff;
  padding: 14px;
}
.rateOptionTitle { font-weight: 800; margin-bottom: 8px; }
.rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
  min-height: 34px;
  border: 0;
}
.rating input { position: absolute; opacity: 0; }
.rating label {
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.rating label:before {
  content: "\2605";
  color: #cbd5c8;
  font-size: 25px;
  line-height: 1;
}
.rating input:checked ~ label:before,
.rating label:hover:before,
.rating label:hover ~ label:before { color: var(--t3-accent-2); }
.t3-help {
  color: #b91c1c;
  font-weight: 700;
}
.t3-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}
.t3-primary-btn {
  min-height: 46px;
  min-width: 150px;
}
.t3-chart,
.t3-share-block,
.t3-stats,
.t3-examples { margin-top: 18px; }
.t3-share-block,
.t3-stats {
  background: var(--t3-surface);
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  padding: 16px;
}
.t3-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--t3-muted);
}
.t3-examples h2 {
  font-size: 22px;
  margin: 0 0 12px;
}
.t3-mini-card { padding: 16px; }
.t3-mini-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.t3-chip-list span {
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: var(--t3-cool);
  padding: 6px 10px;
  color: var(--t3-ink);
}

.t3-sidebar { top: 112px; }
.t3-side-block {
  background: var(--t3-surface);
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  padding: 16px;
  margin-bottom: 16px;
}
.t3-side-block h2 { font-size: 18px; margin: 0 0 12px; }
.t3-side-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--t3-line);
}
.t3-side-link:last-child { border-bottom: 0; }
.t3-side-link span { display: block; color: var(--t3-muted); font-size: 13px; }
.t3-chip-list { display: flex; flex-wrap: wrap; gap: 8px; }

.paginator {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.paginator .loader-item a {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: var(--t3-surface);
  color: var(--t3-ink);
  font-weight: 800;
  box-shadow: 0 1px 0 rgba(18,24,38,.04);
}
.paginator .loader-item.active a,
.paginator .loader-item a:hover {
  border-color: var(--t3-accent);
  background: var(--t3-accent);
  color: #fff;
}
.showing_total_record {
  display: block;
  color: var(--t3-muted);
  text-align: center;
  margin-top: 20px;
}

.t3-global-sponsors {
  margin-top: 32px;
  margin-bottom: 32px;
}
.sponsorships {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  width: 100%;
}
.sponsorships .sponsor {
  min-height: 100%;
  text-align: center;
}
.sponsorships .sponsor a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: var(--t3-surface);
  color: var(--t3-ink);
  box-shadow: 0 1px 0 rgba(18,24,38,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.sponsorships .sponsor a:hover {
  transform: translateY(-2px);
  border-color: rgba(15,118,110,.35);
  box-shadow: var(--t3-shadow);
}
.sponsorships .sponsor img {
  width: auto !important;
  max-width: 160px;
  max-height: 74px;
  object-fit: contain;
}
.sponsorships .sponsor h2 {
  font-size: 17px;
  line-height: 1.35;
  margin: 6px 0 0;
}
.sponsorships .sponsor p {
  color: var(--t3-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.sponsorships .adArea {
  min-height: 120px;
  border: 1px dashed var(--t3-line);
  border-radius: var(--t3-radius);
  background: rgba(255,255,255,.55);
}

.shareBar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  justify-content: center;  
  background-color: #fff;
  margin: 20px 0;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
}
.shareBar h4 {
  flex: 1 0 100%;
  margin: 0 0 2px;
  font-size: 18px;
}
.shareBar a {
  display: inline-grid;
  place-items: center;
  font-size: 55px;
  transition: all 0.5s;
}
.shareBar a:hover {
  transform: translateY(-2px);
}
.shareBar a.facebook { color: #1877f2; }
.shareBar a.twitter { color: #111827; }
.shareBar a.whatsapp { color: #16a34a; }
.shareBar a.linkedin { color: #0a66c2; }
.shareBar a.pinterest { color: #bd081c; }
.shareBar a:hover {
  border-color: currentColor;
}
.shareBar small {
  color: var(--t3-muted);
  padding-inline-start: 4px;
}
.shareBar br { display: none; }
.shareBar.bigFont a {
  width: 48px;
  height: 48px;
  font-size: 20px;
}

.t3-ad-hero {
  background: #121826;
  color: #fff;
  padding: clamp(22px, 4vw, 38px);
  margin-bottom: 18px;
}
.t3-ad-hero p { color: #d5f4ee; }
.t3-ad-hero h2,
.t3-insight h2,
.t3-booking h2 { font-size: 24px; margin: 0 0 10px; }
.t3-insight {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 280px);
  align-items: center;
  gap: 18px;
  padding: 18px;
}
.t3-insight p,
.t3-booking p { color: var(--t3-muted); margin-bottom: 0; }
.t3-insight img {
  width: 100%;
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: var(--t3-bg);
}
.t3-booking {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 30px);
  margin-top: 18px;
}
.t3-feature {
  background: var(--t3-surface);
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  padding: 22px;
  height: 100%;
}
.t3-feature h2 { font-size: 22px; margin-bottom: 10px; }
.t3-stat-img {
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  background: var(--t3-surface);
  padding: 8px;
}
.slidebtn,
.bigbtn {
  border: 0;
  border-radius: var(--t3-radius);
  background: var(--t3-accent);
  color: #fff !important;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.slidebtn:hover,
.bigbtn:hover { background: var(--t3-ink); }

.t3-feedback {
  background: var(--t3-ink);
  color: #fff;
  padding: 36px 0;
}
.t3-feedback p { color: #d8ded8; }
.t3-footer-main { padding: 36px 15px; }
.t3-footer-logo {
  width: 152px;
  max-height: 72px;
  object-fit: contain;
}
.t3-footer h3 { font-size: 16px; margin-bottom: 12px; }
.t3-footer-main a { display: block; color: var(--t3-muted); margin-bottom: 8px; }
.t3-copyright {
  border-top: 1px solid var(--t3-line);
  color: var(--t3-muted);
  padding: 14px;
  text-align: center;
}

.error-message {
  color: #b91c1c;
  font-size: 13px;
  margin-top: 4px;
}
#flash {
  position: fixed;
  z-index: 110;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: min(520px, 92vw);
  pointer-events: none;
  display: none;
}
#flash.show { pointer-events: auto; }
#flash .message {
  background: var(--t3-surface);
  border: 1px solid var(--t3-line);
  border-radius: var(--t3-radius);
  box-shadow: var(--t3-shadow);
  padding: 12px 14px;
}
#flash.danger .message { border-color: #fecaca; }
#flash.success .message { border-color: #a7f3d0; }

@media (max-width: 991.98px) {
  .t3-sidebar { position: static; margin-top: 22px; }
  .t3-page-head { display: block; }
  .t3-title { font-size: 32px; }
  .t3-insight { grid-template-columns: 1fr; }
  .t3-detail-media { aspect-ratio: 16 / 10; }
}

@media (max-width: 575.98px) {
  .t3-option label,
  .t3-option-wide label {
    grid-template-columns: 74px 1fr;
    min-height: 94px;
  }
  .t3-card h2 { font-size: 18px; }
}
.tag{
  display: inline-block;
  padding: 0 10px;
  border-radius: 8px;
  margin: 1px;
  font-size: 12px;
}
.mycard{
  padding: 20px;
  background-color: #fff0;
}

.card.col-12.col-lg-6.mycard {
  width: calc(100% - 16px);
  margin: 0 8px 16px;
  border-radius: 8px;
}
.modal-header .btn-close {
  margin: 8px -8px;
  float: right;
}
.modal-header {
  display: block;
  padding: 4px 20px;
}
.adArea {
  text-align: center;
  height: 200px;
}
.card-img-top{
  border-radius: 8px;
}

.adArea img{
  max-height: 200px !important;
}
@media (min-width: 992px) {
  .card.col-12.col-lg-6.mycard {
    width: calc(50% - 16px);
  }
}
