/**
* Show everywhere
*/
html {
  scroll-behavior: smooth;
}

*:not(p, h1, h2, h3, h4, h5, h6, ol, ul, li),
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img,
svg {
  display: block;
}

@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/wp-content/themes/idhub/assets/fonts/plus-jakarta-sans-v12-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/wp-content/themes/idhub/assets/fonts/plus-jakarta-sans-v12-latin-700.woff2") format("woff2");
}
:root {
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #555555;
  --color-text-muted: #888888;
  --color-background-primary: #ffffff;
  --color-background-secondary: #f4f6f8;
  --color-background-alt: #f4f6f9;
  --color-accent-1: #985d73;
  --color-accent-2: #f2a176;
  --color-accent-3: #9fd0d6;
  --color-accent-4: #ecd577;
  --color-accent-4-dark: #a18a2e;
  --color-border: #e0e0e0;
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --color-red-btn: #dc3545; /* Specific red color for buttons */
  --color-red-btn-hover: #c82333;
  --color-border: #e2e8f0;
  --font-primary: "Plus Jakarta Sans", sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --border-radius: 8px;
  --transition: 0.2s ease-in-out;
  --transition-speed: 0.3s;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-background-primary);
  line-height: 1.8;
  font-size: 90%;
  overflow-x: hidden;
}
@media (min-width: 395px) {
  body {
    font-size: 100%;
  }
}

header,
footer,
section,
.section {
  width: 100%;
}

.section {
  padding: 1rem 0;
}
@media (min-width: 540px) {
  .section {
    padding: 1rem 0;
  }
}

.container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 1.25em;
}

a {
  color: var(--color-text-primary);
  text-decoration: none;
}

.underline {
  text-decoration: underline;
}

h1 {
  font-size: 1.1rem;
}
@media (min-width: 395px) {
  h1 {
    font-size: 1.3rem;
  }
}
@media (min-width: 540px) {
  h1 {
    font-size: 1.8rem;
  }
}

h2 {
  font-size: 1rem;
}
@media (min-width: 395px) {
  h2 {
    font-size: 0.95rem;
  }
}
@media (min-width: 540px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 0.9rem;
}
@media (min-width: 395px) {
  h3 {
    font-size: 0.85rem;
  }
}
@media (min-width: 540px) {
  h3 {
    font-size: 1.2rem;
  }
}

ul,
ol {
  margin-bottom: 1rem;
}
ul li,
ol li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-transition: all var(--transition-speed);
  transition: all var(--transition-speed);
}

.lns {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Reusable Components */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--color-text-secondary);
}

/**
* Buttons
*/
.btn.btn-md {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
}
.btn.btn-primary {
  background-color: var(--color-accent-1);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  color: var(--color-background-primary);
}
.btn.btn-primary a {
  color: var(--color-background-primary);
}
.btn.btn-primary:hover {
  background-color: #7a4a5c;
  color: var(--color-background-primary);
}
.btn.btn-secondary {
  background-color: var(--color-accent-4);
}
.btn.btn-secondary a {
  color: var(--color-text-primary);
}
.btn.btn-secondary:hover {
  background-color: var(--color-accent-4-dark);
}
.btn.btn-secondary:hover a {
  color: var(--color-background-primary);
}
.btn.btn-outline {
  border: 1px solid var(--color-accent-1);
  color: var(--color-accent-1);
  border-radius: 6px;
  font-weight: 600;
}
.btn.btn-outline:hover {
  background-color: var(--color-accent-1);
  color: #fff;
}

button.mm-rst[data-mm-rst="1"] {
  display: none !important;
}

/* 1. Header */
.site-header {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
  background-color: var(--color-background-primary);
}
.site-header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .site-header .header-inner {
    gap: 2rem;
  }
}
.site-header .header-inner .header-logo h2 {
  font-weight: 800;
  margin: 0;
  color: var(--color-text-primary);
}
.site-header .header-inner .header-logo span {
  color: var(--color-accent-1);
}
.site-header .header-inner .header-logo a img {
  width: 100px;
  height: auto;
}
.site-header .header-inner .header-nav .primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.site-header .header-inner .header-nav .primary-menu li {
  margin: 0;
}
.site-header .header-inner .header-nav .primary-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.site-header .header-inner .header-nav .primary-menu li aa:hover {
  color: var(--color-accent-1);
}

.hero-section {
  padding: 2rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#f4f6f8), to(#ffffff));
  background: linear-gradient(180deg, #f4f6f8 0%, #ffffff 100%);
  min-height: calc(100dvh - 92px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.hero-section .hero-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: inherit;
}
.hero-section .hero-inner.hero-inner-search {
  width: 100%;
  min-height: inherit;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem 0;
}
.hero-section .hero-copy {
  max-width: 900px;
  margin: 0 auto;
}
.hero-section .hero-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
}
.hero-section .hero-copy p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 1rem;
  color: var(--color-text-secondary);
}
.hero-section .hero-search-form {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
.hero-section .hero-search-form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.92);
  -webkit-box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.hero-section .hero-search-form-row input {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 14px;
  background-color: #f8fafc;
  padding: 0 1rem;
  font-size: 1rem;
  outline: none;
}
.hero-section .hero-search-form-row button {
  min-height: 60px;
  border-radius: 14px;
  background-color: var(--color-accent-1);
  color: #fff;
  font-weight: 700;
  padding: 0 1.5rem;
}
.hero-section .hero-search-form-row button:hover {
  background-color: #7a4a5c;
  color: #fff;
}
@media (min-width: 768px) {
  .hero-section .hero-search-form-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero-section .hero-search-form-row input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .hero-section .hero-search-form-row button {
    min-width: 190px;
  }
}

/* 5. Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .blog-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.featured-post {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.featured-media {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-post img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.featured-content {
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: none;
  padding: 2rem;
  border-radius: 0 0 8px 8px;
}

@media (min-width: 768px) {
  .featured-post img,
  .blog-thumb-placeholder {
    height: 100%;
    min-height: 400px;
  }
  .featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.9)));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    border: none;
  }
  .featured-content h3 {
    color: #fff;
    font-size: 1.5rem;
  }
  .featured-content p {
    color: #ddd;
  }
}
.post-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent-2);
  display: inline-block;
}

.featured-content h3 a,
.post-meta h4 a {
  color: inherit;
}

.post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}

.post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post-img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
}

.post-img a {
  display: block;
  width: 100%;
  height: 100%;
}

.post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-thumb-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--color-background-secondary), #dbe4ea);
}

.blog-thumb-placeholder-sm {
  height: 100%;
}

.post-meta h4 {
  font-size: 0.95rem;
  margin: 1px;
  line-height: 1.4;
}

.post-date {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

#the-content img {
  max-width: 100%;
  height: auto;
}
#the-content p:has(> img),
#the-content a:has(> img) {
  max-width: 100%;
  display: block;
}
#the-content p:has(> a) a {
  text-decoration: underline;
}
#the-content figure {
  max-width: 100%;
}
#the-content .table-responsive,
#the-content .wp-block-table,
#the-content table {
  max-width: 100%;
}
#the-content .wp-block-table,
#the-content .table-responsive {
  margin: 1.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background-color: var(--color-background-primary);
}
#the-content table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.6;
  background-color: var(--color-background-primary);
}
#the-content table caption {
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-text-secondary);
  caption-side: top;
  background-color: var(--color-background-secondary);
  border-bottom: 1px solid var(--color-border);
}
#the-content table th,
#the-content table td {
  padding: 0.55rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}
#the-content table th {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  background-color: var(--color-background-secondary);
  white-space: nowrap;
}
#the-content table td {
  color: var(--color-text-secondary);
  background-color: var(--color-background-primary);
}
#the-content table a {
  color: var(--color-accent-1);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
#the-content table tr:nth-child(even) td {
  background-color: var(--color-background-alt);
}
#the-content table tr:hover td {
  background-color: rgba(152, 93, 115, 0.06);
}
#the-content table thead tr:last-child th,
#the-content table tbody tr:last-child td,
#the-content table tfoot tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 767px) {
  #the-content .wp-block-table,
  #the-content .table-responsive {
    margin: 1.25rem 0;
    border-radius: 14px;
  }
  #the-content table {
    min-width: 560px;
    font-size: 0.92rem;
  }
  #the-content table caption {
    padding: 0.9rem 1rem;
    font-size: 0.84rem;
  }
  #the-content table th,
  #the-content table td {
    padding: 0.8rem 0.9rem;
  }
}
@media (max-width: 480px) {
  #the-content table {
    min-width: 520px;
  }
  #the-content table th {
    font-size: 0.76rem;
  }
  #the-content table th,
  #the-content table td {
    padding: 0.72rem 0.8rem;
  }
}

#part-pro-user {
  background-color: var(--color-accent-1);
  color: var(--color-background-primary);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#part-pro-user .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: left;
  gap: 1rem;
}
@media (min-width: 768px) {
  #part-pro-user .container .top {
    text-align: center;
  }
}
#part-pro-user .container .top h2 {
  font-size: 1.3rem;
  text-align: left;
}
@media (min-width: 768px) {
  #part-pro-user .container .top h2 {
    font-size: 1.5rem;
    margin: 8px 0;
    text-align: center;
  }
}
@media (min-width: 768px) {
  #part-pro-user .container .top p {
    margin: 8px 0;
  }
}
#part-pro-user .container .bot.pu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px) {
  #part-pro-user .container .bot.pu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  #part-pro-user .container .bot.pu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1366px) {
  #part-pro-user .container .bot.pu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
#part-pro-user .container .bot.pu-grid .pu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--color-background-primary);
  padding: 1rem;
  color: var(--color-text-primary);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
#part-pro-user .container .bot.pu-grid .pu-item .pu-logo {
  width: 64px;
  height: 64px;
  overflow: hidden;
}
#part-pro-user .container .bot.pu-grid .pu-item .pu-logo a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
#part-pro-user .container .bot.pu-grid .pu-item .pu-logo a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#part-pro-user .container .bot.pu-grid .pu-item .pu-perusahaan h3 {
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 4px 0;
}
#part-pro-user .container .bot.pu-grid .pu-item .pu-perusahaan p {
  font-size: 0.8rem;
  margin: 4px 0;
}
#part-pro-user .container .bot.pu-grid .pu-item .pu-posts h3 {
  color: var(--color-accent-1);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
  margin: 4px 0 1rem 0;
}
#part-pro-user .container .bot.pu-grid .pu-item .pu-posts ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 0.8rem;
  width: 100%;
}
#part-pro-user .container .bot.pu-grid .pu-item .pu-posts ul li {
  width: 100%;
}
#part-pro-user .container .bot.pu-grid .pu-item .pu-posts ul li a {
  width: 100%;
  display: block;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
  padding-bottom: 0.3rem;
}
#part-pro-user .container .bot.pu-grid .pu-item .pu-posts ul li:last-child a {
  border-bottom: none;
}

/* 6. Footer */
.site-footer {
  background-color: var(--color-text-primary);
  color: #fff;
  padding-top: 4rem;
}
.site-footer .container .footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.site-footer .container .footer-inner .footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 1rem;
}
.site-footer .container .footer-inner .footer-logo span {
  color: var(--color-accent-2);
}
.site-footer .container .footer-inner .footer-desc {
  color: #b3b3b3;
  font-size: 0.9rem;
}
.site-footer .container .footer-inner .footer-heading {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.site-footer .container .footer-inner .footer-links a {
  color: #b3b3b3;
  font-size: 0.9rem;
}
.site-footer .container .footer-inner .footer-links a:hover {
  color: var(--color-accent-2);
  padding-left: 5px;
}
.site-footer .container .footer-inner .footer-contact li {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.site-footer .container .footer-inner .footer-contact li a {
  color: #b3b3b3;
}
.site-footer .container .footer-bottom {
  border-top: 1px solid #333;
  padding: 1.5rem 0;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
}
.site-footer .container .footer-bottom p a {
  color: red;
  text-decoration: underline;
}

#dark-mode-container {
  position: fixed;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1000;
  background-color: var(--color-text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#dark-mode-container button svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
#dark-mode-container button.moon {
  display: block;
}
#dark-mode-container button.sun {
  display: none;
}

/**
* Codef Popup
*/
#codef {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}
#codef.active {
  opacity: 1;
  z-index: 99999;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
#codef .container {
  min-width: 300px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: linear-gradient(to bottom, var(--color-accent-4-dark), var(--color-accent-4));
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  -webkit-transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) all;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) all;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
@media (min-width: 540px) {
  #codef .container {
    min-width: unset;
    max-width: 384px;
  }
}
#codef .container.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}
#codef .container p {
  margin: 0;
  line-height: 1.3;
}
#codef .container h2 {
  margin: 0;
  line-height: 1;
}
#codef .container .btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#codef .container .btn a svg {
  width: 20px;
  margin-right: 5px;
  fill: var(--color-background-primary);
}
#codef .container button.close-codef {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: black;
  color: white;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -38px;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}