@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nerko+One&display=swap');

:root {
  --primary-color: #18adde;
  --primary-hover: #1597c2;
  --secondary-color: #6366f1;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition-speed: 0.2s;
  --border-radius-sm: 6px;
  --border-radius: 10px;
  --border-radius-lg: 16px;
  --bs-card-cap-padding-y: 1rem;
}

.nerko-one-regular {
  font-family: "Nerko One", cursive;
  font-weight: 400;
  font-style: normal;
}

/*@font-face {*/
/*  font-family: 'Poppins';*/
/*  src: URL('../fonts/Poppins-Regular.ttf') format('truetype'),*/
/*       URL('../fonts/Poppins-ExtraBold.ttf') format('truetype'),*/
/*       URL('../fonts/Poppins-Bold.ttf') format('truetype'),*/
/*       URL('../fonts/Poppins-Black.ttf') format('truetype'),*/
/*       URL('../fonts/Poppins-ExtraBold.ttf') format('truetype'),*/
/*       URL('../fonts/Poppins-Medium.ttf') format('truetype'),*/
/*       URL('../fonts/Poppins-SemiBold.ttf') format('truetype');*/
/*}*/

body {
  font-family: 'Poppins', sans-serif !important;
  color: var(--text-primary) !important;
  min-height: 100vh;
  background: var(--light-bg) !important;
  display: flex;
  flex-direction: column;
}

.first-block {
  padding: 20px 0;
  padding-bottom: 0;
}

td a {
  color: var(--primary-color);
  transition: color var(--transition-speed);
}

td a:hover {
  color: var(--primary-hover);
}

a {
  color: var(--primary-color) !important;
  text-decoration: none !important;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--primary-hover) !important;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
}

li {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-primary);
}

/* Table styling */
.table-responsive {
  /* border-radius: var(--border-radius); */
  /* background: white; */
  /* box-shadow: var(--card-shadow); */
  overflow: hidden;
  /* margin-bottom: 2rem; */
}

.table {
  margin-bottom: 0;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.table th {
  background-color: #f1f5f9;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.table td {
  padding: 1rem;
  color: var(--text-primary);
  vertical-align: middle;
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-speed);
}

.table tr:last-child td {
  border-bottom: none;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(241, 245, 249, 0.5);
}

.table tbody tr:hover {
  background-color: #f1f5f9;
}

/* Card styling */
.card {
  background: var(--card-bg);
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card:hover {
  /* transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); */
}

.card-body {
  padding: 1.75rem;
}

.card-header {
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 1.75rem;
}

.card-header h4 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.25rem;
}

/* Button styling */
.btn {
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-speed);
}

.btn-primary, a.btn.btn-primary,
.btn-primary:active, 
.btn-primary:focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn:hover, a.btn.btn-primary:hover,
.btn-primary:hover {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  color: white !important;
  /* transform: translateY(-1px); */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Form elements */
.form-control {
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.form-check .form-check-input {
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-link {
  color: var(--text-primary);
  background-color: white;
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed);
  padding: 0.5rem 0.75rem;
}

.page-link:hover {
  z-index: 2;
  color: var(--primary-color);
  background-color: #f1f5f9;
  border-color: var(--primary-color);
}

.page-item.active .page-link {
  z-index: 3;
  color: white !important;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Tabs */
.nav-tabs {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.nav-tabs .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-top-left-radius: var(--border-radius-sm);
  border-top-right-radius: var(--border-radius-sm);
  transition: all var(--transition-speed);
  margin-right: 0.25rem;
}

.nav-tabs .nav-link.active {
  color: var(--primary-color) !important;
  background-color: white;
  border-color: var(--border-color) var(--border-color) white !important;
  font-weight: 600;
}

.nav-tabs .nav-link:hover:not(.active) {
  border-color: #e5e7eb;
  background: #f8fafc;
}

/* Progress bar */
.progress {
  height: 8px;
  border-radius: 4px;
  background-color: #e2e8f0;
  margin-top: 0.5rem;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
}

.preview {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem;
}

.preview-image {
  position: relative;
  margin-bottom: 0.5rem;
  margin-right: 0.5rem;
  overflow: hidden;
}

.preview-image.removing {
  transform: scale(0);
  transition: transform 0.3s;
}

.removing {
  transform: scale(0) !important;
  transition: transform 0.3s;
}

.preview-image img {
  width: 180px;
  height: auto;
}

.preview-image:hover .preview-remove {
  opacity: 1;
}

.preview-image:hover .preview-info {
  /*bottom: 30px;*/
}

.preview-remove {
  opacity: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.22s;
}

.preview-info {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  height: 24px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  transition: bottom 0.22s;
}

.preview-info-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -7px;
  background: #42b983;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.22s;
}

.single {
  width: 300px;
  height: auto;
  padding: 10px;
}

.list {
  padding: 0;
}

#progress-wrp {
  border: 1px solid #0099cc;
  padding: 1px;
  position: relative;
  height: 30px;
  border-radius: 3px;
  margin: 10px;
  text-align: left;
  background: #fff;
  box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
}

#progress-wrp .progress-bar {
  height: 100%;
  border-radius: 3px;
  background-color: #f39ac7;
  width: 0;
  box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}

#progress-wrp .status {
  top: 3px;
  left: 50%;
  position: absolute;
  display: inline-block;
  color: #000000;
}

.bi {
  vertical-align: -0.125em;
  pointer-events: none;
  fill: currentColor;
}

.dropdown-toggle {
  outline: 0;
}

.btn-group .dropdown-toggle::after {
  content: "" !important;
  display: none !important;
}

.nav-flush .nav-link {
  border-radius: 0;
}

.nav-link {
  /*padding: 0.3rem !important;*/
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, 0.85);
  background-color: #d2f4ea;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
}

.btn-toggle[aria-expanded='true'] {
  color: rgba(0, 0, 0, 0.85);
}
.btn-toggle[aria-expanded='true']::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: 0.1875rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #d2f4ea;
}

.scrollarea {
  overflow-y: auto;
}

.fw-semibold {
  font-weight: 600;
}
.lh-tight {
  line-height: 1.25;
}

.form-switch.form-switch-md {
  margin-bottom: 1rem; /* JUST FOR STYLING PURPOSE */
}

.form-switch.form-switch-md .form-check-input {
  height: 1.5rem;
  width: calc(2rem + 0.75rem);
  border-radius: 3rem;
}

.moderation-icon {
  position: absolute;
  top: 10px;
  right: -8px;
  background: gold;
  padding: 5px;
  transform: rotate(24deg);
  font-size: 12px;
}

#lightgallery a {
  text-decoration: none;
  display: inline-flex;
}

#lightgallery a > img {
  transform: scale3d(1, 1, 1);
  transition: 0.3s;
}

#lightgallery a:hover > img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: 0.3s;
}

.bg-main {
  background-color: rgba(25, 25, 25, 1);
  color: #e7f4fc;
}

/* .first-block {
  padding: 50px 0;
} */

.main-nav {
  text-transform: uppercase;
  font-size: 15px;
  /*font-weight: 500;*/
  padding-right: 10px;
}

.primary-icons {
  font-size: 50px;
  color: #606160;
}

.feature h2 {
  margin-top: 15px;
}

#caption-field {
  margin-top: 10px;
}

.preview-content {
  min-height: 240px;
}

.update-div {
  margin-top: 10px;
}

.hero {
  padding-top: 100px;
  padding-bottom: 100px;
}

.feature-img {
  /*-webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);*/
  /*-moz-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);*/
  /*box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);*/
  /*border-radius: 1rem!important;*/
}

.featurette {
  padding-left: 100px;
  padding-right: 100px;
}

.lead {
  font-size: 1.5rem !important;
  font-weight: 400 !important;
}

h2.featurette-heading {
  font-size: 2.4rem;
}

.btn.btn-primary.add-photo {
  color: #78866b;
  font-size: 20px;
  font-weight: 500;
  background-color: #e7f4fc;
  border: 0;
}

.btn.btn-primary.add-photo:hover {
  font-size: 20px;
  font-weight: 500;
  color: #e7f4fc;
  background-color: #78866b;
}

li.nav-item a {
  color: #afaeae;
  font-size: 18px;
  font-weight: 500;
}

li.nav-item a.nav-link {
  color: #454745 !important;
  font-size: 14px !important;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.main-header .nav-item a.nav-link {
  font-size: 15px !important;
}

li.nav-item a.nav-link:hover {
  /* font-size: 16px; */
  /* font-weight: 600; */
  color: #000000 !important;
  /*background-color: #7ca9bb;*/
}

.feature-img {
  max-width: 440px;
}

/*label {*/
/*    display: block !important;*/
/*}*/

label:hover,
input[type='checkbox']:hover {
  cursor: pointer;
}

/* .row {
  margin-right: 0 !important;
} */



.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: transparent !important;
  /* background-color: #e5e5e5 !important; */
  /* color: #3d3d3d !important; */
  color: #070707 !important;
  /* border-radius: 12px; */
  /* font-weight: 600; */
}

.nav-pills .nav-link.active .primary-icons,
.nav-pills .show > .nav-link .primary-icons {
  /* color: #070707; */
}

li.nav-item a:hover .primary-icons, .primary-icons:hover {
/* color: #070707; */
}


.nav-pills .nav-link.active .primary-icons, li.nav-item a:hover .primary-icons, .nav-pills .show > .nav-link .primary-icons {
  /* color: #070707; */
}


li.nav-item a .primary-icons.plus {
  color: #09b165;
}

li.nav-item a:hover .primary-icons.plus {
  color: #32ea97;
}

.text-white {
  color: #EEE9DA !important;
}

.keyword-block {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition-duration: 0.3s;
  box-shadow: 0 8px 24px rgb(149 157 165 / 20%);
  border-radius: 0.5rem;
  align-items: center;
  -moz-justify-content: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #23444c;
  border: 2px solid #c4c8cb;
  padding: 15px;
  width: 335px;
  min-height: 115px;
  height: 100%;
}

.keyword-block a {
  color: #23444c;
  text-decoration: none;
}

.view-block {
  display: block;
  position: relative;
  overflow: hidden;
  /*cursor: pointer;*/
  transition-duration: 0.3s;
  box-shadow: 0 8px 24px rgb(149 157 165 / 20%);
  border-radius: 0.5rem;
  align-items: center;
  -moz-justify-content: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #23444c;
  border: 1px solid #c4c8cb;
  padding: 15px;
  text-decoration: none;
  /*max-width: 68vw;*/
  /*min-height: 125px;*/
  /*height: 100%;*/
  margin: 15px 0;
}

[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: button-bevel !important;
}

.keyword-block:hover {
  box-shadow: 0 18px 34px rgb(149 157 165 / 60%);
}

.keyword-block:hover > a {
  color: #7ca9bb;
}

/*.keyword-block a:hover {*/
/*    color: #7ca9bb;*/
/*}*/

.keyword-block .plashka {
  font-size: 16px;
  display: inline-flex;
  text-align: center;
  line-height: 12px;
  vertical-align: middle;
  font-weight: 600;
  /*padding: 10px;*/
}

.keyword-block .plashka:hover {
  color: #0a58ca;
}

.keyword-block .low {
  color: #7d4113;
}

.keyword-block .high {
  color: #959606;
}

.keyword-block .best {
  color: #327d13;
}

.keyword-block .icon {
  background: #7ca9bb;
}

.keyword-block .plashka span {
  font-size: 15px;
  margin-right: 5px;
}

.keyword-block .plashka:hover {
  /*background: #43636f;*/
}

.btn-primary-home {
  background: #18adde !important;
  color: #ffffff !important;
  border-color: #18adde !important;
}

.btn-primary-home:hover {
  background: #1597c2 !important;
  color: #ffffff !important;
  border-color: #1597c2 !important;
}

.btn, a.btn.btn-primary,
.btn-warning {
  background: #18adde !important;
  color: #ffffff !important;
  border-color: #18adde !important;
  font-weight: 500 !important;
  /*padding: 10px;*/
}

.btn:hover, a.btn.btn-primary:hover,
.btn-warning:hover {
  background: #1597c2 !important;
  color: #ffffff !important;
  border-color: #1597c2 !important;
}

.btn-secondary {
  background: #9d9d9d !important;
  color: #ffffff !important;
  border-color: #9d9d9d !important;
}

.btn-secondary:hover {
  background: #7a7a7a !important;
  color: #ffffff !important;
  border-color: #7a7a7a !important;
}

.container {
  /*max-width: 100% !important;*/
}

.progress-bar {
  background-color: #0baa6f !important;
}

.card-body {
  height: 100%;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

footer a {
  color: rgb(61 71 83) !important;
  text-decoration: none;
}

footer ul li a:hover {
  text-decoration: underline;
}

.lead {
  color: rgba(148, 163, 184, 1);
}

.card {
  color: #2b4350;
  background-color: #ffffff !important
}

.card-header h4 {
  font-weight: 500 !important;
  font-size: 2rem !important;
}

.action-remove-this-filter {
  display: none;
  opacity: 0.25;
  position: absolute;
  z-index: 1;
  top: 9px;
  right: 5px;
  padding: 0.25em;
  padding-left: 3px;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 3px;
  line-height: 1;
  text-align: center;
  border-radius: 100%;
  color: #fff;
  width: 20px;
  height: 20px;
}

.btn-check:checked + .btn-primary .action-remove-this-filter {
  display: block;
}

.btn-check:checked + .btn-primary {
  background-color: #e7f4fc !important;
  color: #000000 !important;
  border: 2px solid #18adde !important;
}

.btn-not-checked {
  background-color: #e7f4fc !important;
  color: #000000 !important;
  border: 2px solid #e7f4fc !important;
}

.btn-not-checked:hover {
  background-color: #e7f4fc !important;
  color: #000000 !important;
  border: 2px solid #e7f4fc !important;
}

.btn-check + .btn-primary {
  font-weight: bold;
  position: relative;
  background-color: #dfe1e3 !important;
  color: #636161 !important;
  /*opacity: .5 !important;*/
  cursor: cell;
  padding-right: 30px;
  border: 2px dashed #999999 !important;
}

.btn-primary:active:focus,
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  box-shadow: none !important;
}

.form-control {
  /*width: 350px !important;*/
  max-width: 100%;
}

.form-check .form-check-input {
  float: none !important;
}

.form-check-input:checked {
  background-color: #6096B4 !important;
  border-color: #6096B4 !important;
}

.table tr td {
  padding: 1.5rem 0.5rem;
  /* padding: .5rem .5rem; */
  border-bottom-width: 0;
}

.fixed-top-banner {
  position: fixed;
  top: 0;
  width: 100%;
  /* background: linear-gradient(90deg, rgb(228 112 162) 0%, rgb(86 153 233) 100%); */
  /* background: linear-gradient(90deg, #e3684c 0%, rgb(22, 17, 0) 100%); */
  background: #000000;
  color: #e7f4fc;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  z-index: 9999;
}

td a {
  text-decoration: none;
}

.mention-block {
  border-bottom: 1px solid;
  padding: 10px 0;
}

/*.mention-block tr:last-child td:first-child {*/
/*    border: 2px solid orange;*/
/*    border-bottom-left-radius: 10px;*/
/*}*/

/*.mention-block tr:last-child td:last-child {*/
/*    border: 2px solid green;*/
/*    border-bottom-right-radius: 10px;*/
/*}*/

/* header {
    margin-top: 45px;
} */

#show-all:hover {
  cursor: pointer;
}

.btn-lifetime {
  font-size: 20px !important;
  padding: 15px !important;
  background: linear-gradient(
    90deg,
    rgb(228 112 162) 0%,
    rgb(86 153 233) 100%
  ) !important;
  border: none !important;
}

.btn-lifetime:hover {
  background: linear-gradient(
    90deg,
    rgb(218 102 152) 0%,
    rgb(76 143 223) 100%
  ) !important;
}

.card-title a {
  color: #1c1b1b;
  text-decoration: none;
}

.card-title a:hover {
  text-decoration: underline;
}

.top-menu {
  align-items: center;
  margin-left: 120px;
}

.off50 {
  position: absolute;
    font-size: 10px;
    padding: 0.2rem 0.4rem;
    background: #c13a04;
    width: fit-content;
    border-radius: 25px;
    margin-left: 129px;
    margin-top: 38px;
    rotate: 15deg;
}
/* .off50 { */
  /* position: absolute; */
    /* font-size: 12px;
    padding: 0.1rem 0.4rem;
    background: #c13a04;
    width: fit-content;
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3px;
    margin-bottom: -5px; */
    /* rotate: 12deg; */
/* } */

.headline-custom {
  /* font-size: 3.4rem; */
  font-size: 3.7rem;
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 65px;
  max-width: 850px;
  word-break: break-word;
  line-height: 1.1;
}

@media only screen and (max-width: 1375px) {
  .headline-custom {
    font-size: 3.5rem;
  }
}

@media only screen and (max-width: 1200px) {
  .headline-custom {
    font-size: 3.2rem;
  }
}

@media (max-width: 992px) {
  .headline-custom {
    font-size: 3.0rem;
    line-height: 58px;
  }
}

@media only screen and (max-width: 768px) {
  .top-menu {
    margin-left: 0;
  }
  .off50 {
    margin-left: 352px;
  }
  .nav-pills li.nav-item a.nav-link, .nav-pills li.nav-item a.nav-link .primary-icons {
    color: #e4e5e4 !important;
  }
  .headline-custom {
    font-size: 2.8rem;
    line-height: 48px;
  }
}

@media only screen and (max-width: 720px) {


  header {
    /* margin-top: 70px; */
  }

  .fixed-top-banner {
    /*position: relative;*/
  }

  table tr,
  /* table tr td {
    display: block;
  } */
  table tr td {
    border: 0;
    text-align: center;
    padding: 0.1rem !important;
  }
  table tr {
    border-bottom: 1px solid #bebebe;
    padding-bottom: 20px;
  }
  /* table thead {
    display: none;
  } */
  .single {
    width: 100%;
  }
  .preview-image {
    margin: 0 auto;
  }
  .feature-img {
    max-width: 100%;
  }
  .first-block {
    /* padding: 10px 10px; */
  }
  .featurette {
    padding: 0;
  }
  /*#sidebar {*/
  /*    display: none;*/
  /*}*/
  .row {
    margin-right: calc(var(--bs-gutter-x) * 0) !important;
  }
  .view-block {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .off50 {
    margin-left: 210px;
  }
  .headline-custom {
    font-size: 2.4rem;
    line-height: 42px;
  }
  .table-responsive {
    max-width: 385px;
  }
}

@media only screen and (max-width: 375px) {
  .off50 {
    margin-left: 158px;
  }
  .headline-custom {
    font-size: 2.2rem; 
    line-height: 40px;
  }
  .table-responsive {
    max-width: 335px;
  }
}

@media only screen and (max-width: 320px) {
  .headline-custom {
    font-size: 1.8rem; 
    line-height: 35px;
  }
  .table-responsive {
    max-width: 280px;
  }
}

.main-flexible-block {
  width: 100%;
}

@media (min-width: 992px) {
  .main-flexible-block {
    width: calc(100% - 290px) !important;
  }
}

/*@media (min-width: 1440px) {*/
/*    .col-xl-9 {*/
/*        width: 80% !important;*/
/*    }*/
/*}*/

td {
  vertical-align: middle;
  /*padding: 1rem !important;*/
}

.dropdown-menu {
  min-width: 15rem !important;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 20px auto;
  padding: 20px;
  background: rgb(28 29 29);
  border-radius: 5px;
  width: auto;
  max-width: 1024px;
  position: relative;
  transition: all 5s ease-in-out;
  border: 1px solid #626262;
  max-height: -webkit-fill-available;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: -5px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #e7f4fc;
}

.popup-light {
  margin: 20px auto;
  padding: 20px;
  background: #e7f4fc;
  border-radius: 5px;
  width: fit-content;
  max-width: 100%;
  position: relative;
  transition: all 5s ease-in-out;
  border: 1px solid #626262;
  max-height: -webkit-fill-available;
}

.popup-light h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}

.popup-light .close {
  position: absolute;
  top: -5px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000000;
}

.popup .close:hover,
.popup-light .close:hover {
  color: #06d85f;
}
.popup .content,
.popup-light .content {
  max-height: fit-content;
  overflow: hidden;
}

hr {
  margin: 0.5rem 0 !important;
}

.btn-outline-success:hover {
  cursor: pointer;
}

.sidebar-scroll {
  position: sticky;
  max-height: 100vh;
  overflow-x: hidden;
  height: 100%;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
  overflow-y: auto;
}
.sidebar-scroll::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

@media only screen and (max-width: 1024px) {
  .popup,
  .popup-light {
    overflow-y: auto;
    max-height: -webkit-fill-available;
  }
}

@media only screen and (max-width: 425px) {
  .input-group > .form-select {
    width: 100% !important;
    margin-bottom: 10px;
  }

  .input-group {
    display: block !important;
  }
}
.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  margin: auto;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.nav-link.disabled {
  color: #6c757d !important;
}

.dropdown-menu {
  /* background-color: #212529 !important; */
}

.dropdown-item:focus, .dropdown-item:hover {
  background-color: #f6f9fd !important;
  /* color: #93BFCF !important; */
}

.select-drop {
  background: #f7f0f0;
  padding: 5px 15px;
  /*height: 150px;*/
  /*max-width: 100%;*/
  color: #3d3f54 !important;
}

.select-drop a {
  color: #3d3f54 !important;
}

.input-group .dropdown-item {
  background-color: #e9ecef !important;
}

.input-group .dropdown-item.active {
  background-color: transparent !important;
}

.input-group .dropdown-item:hover {
  background-color: #3d3f54 !important;
}

.input-group .dropdown-header {
  color: #fcfeff !important;
}

.input-group .dropdown-menu {
  height: 300px !important;
  overflow-y: auto !important;
  scrollbar-color: #007 #bada55 !important;
}

.input-group .dropdown {
  min-width: 290px;
}
/*!* Handle *!*/
/*::-webkit-scrollbar-thumb {*/
/*  background: #888 !important;*/
/*}*/

/*!* Handle on hover *!*/
/*::-webkit-scrollbar-thumb:hover {*/
/*  background: #555 !important;*/
/*}*/

.nav-tabs {
  border-bottom: 0 !important;
}

.post-form .tab-content {
  max-width: fit-content;
  margin: auto;
}

.highlight {
  background: blueviolet;
  color: #e7f4fc;
  border-radius: 10px;
  padding: 5px;
  /*padding-bottom: 12px;*/
}

.keyword-input {
  display: block;
  margin-bottom: 5px;
}

.view-btn {
  padding: 5px 15px; border-radius: 10px; border-top-left-radius: 0px; border-top-right-radius: 0px; background: #93BFCF; border: 1px solid #BDCDD6; border-top: 0px; width: fit-content; height: fit-content;
}

.view-btn:hover {
  background: #6096B4;
}

.a-block {
  color: #0D0A0A !important;
}

.a-block:hover {
  color: #7a7a7a !important;
}

.card-header {
  background: none !important;
  border-bottom: 0 !important;
}

.btn-primary-home {
  background: #18adde !important;
  color: #ffffff !important;
  border-color: #18adde !important;
}

.btn-primary-home:hover {
  background: #1597c2 !important;
  color: #ffffff !important;
  border-color: #1597c2 !important;
}

.first-block a {
  /* color: #ffffff !important; */
  color: #000000 !important;
}

.first-block a:hover {
  color: #656565 !important;
}

.first-block .btn-primary-home {
  /* color: #e7f4fc !important; */
  color: #ffffff !important;
  padding: 15px 30px !important;
  font-size: 18px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* border:4px solid #8dd6ee !important */
}

.first-block .btn-primary-home:hover {
  color: #ffffff !important;
}

/* .first-block a.dropdown-item {
  color: #166488 !important;
}

.first-block a.dropdown-item:hover {
  color: #469fc8 !important;
} */

/* --- Modern Dropdown Styles - Aligned with Nav --- */
.main-header .dropdown-menu {
  border: none; /* Remove default border */
  border-radius: 0.5rem; /* Softer corners */
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1); /* Modern shadow */
  padding: 0.5rem 0; /* Adjust vertical padding */
  margin-top: 0.5rem; /* Add space between toggle and menu */
  min-width: 200px; /* Slightly wider dropdown */
  background-color: #ffffff; /* Ensure white background */
}

.main-header .dropdown-item {
  padding: 0.6rem 1.25rem; /* Padding for items */
  font-weight: 400;        /* Same as nav-link */
  color: #495057;           /* Same color as nav-link */
  font-size: 0.95rem;       /* Slightly smaller or adjust as needed */
  background-color: transparent; /* No background */
  transition: color 0.2s ease; /* Only transition color */
}

.main-header .dropdown-item:hover,
.main-header .dropdown-item:focus {
  color: #0d6efd;           /* Same hover color as nav-link */
  background-color: transparent; /* No background change on hover */
}

.main-header .dropdown-item:active {
  background-color: transparent; /* No background change on active */
  color: #0b5ed7;           /* Slightly darker primary color for active state */
}

/* Adjust dropdown arrow position slightly if needed */
.main-header .dropdown-toggle::after {
  margin-left: 0.4em; /* Add a bit more space */
  vertical-align: 0.15em;
}

/* Ensure dropdown works well in mobile collapsed menu */
@media (max-width: 991.98px) {
  .main-header .dropdown-menu {
    box-shadow: none; /* Remove shadow in collapsed menu */
    border: 1px solid #eee; /* Add a subtle border */
    margin-top: 0.25rem;
    padding: 0.25rem 0; /* Reduce padding slightly */
  }
  .main-header .dropdown-item {
    padding: 0.5rem 1rem; /* Slightly less padding */
  }
  .main-header .nav-item.dropdown {
     margin-bottom: 0.5rem; /* Add spacing like other items in mobile */
  }
   .main-header .dropdown-toggle::after {
      /* Adjust positioning within the collapsed item if necessary */
   }
}
/* --- End Modern Dropdown Styles --- */

@media (min-width: 992px) {
  .first-block .navbar-expand-lg .navbar-nav .nav-link, .first-block .navbar-expand-lg .navbar-nav .header-btn {
      margin-right: 0.5rem;
      margin-left: 0.5rem;
  }
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: 0 0;
  border: 1px solid transparent;
  border-top-left-radius: 15px !important;
  border-top-right-radius: 15px !important;
  border-bottom-left-radius: 15px !important;
  border-bottom-right-radius: 15px !important;
}

.nav-tabs .nav-link.active {
  border: 1px solid #c5c5c5 !important;
  border-radius: 25px;
}

.nav-tabs .nav-link:hover {
  border: 1px solid #c5c5c5 !important;
  border-radius: 25px;
}

#header .nav-pills .nav-item:hover {
  background: #e5e5e5;
  border-radius: 12px;
}

.btn-second {
  background: #3a3b3d !important;
  color: #ffffff !important;
  border-color: #3a3b3d !important;
}

.btn-second:hover {
  background: #161617 !important;
  color: #ffffff !important;
  border-color: #161617 !important;
}

.form-floating > .form-control::placeholder {
  color: revert !important;
}

.form-floating > .form-control:not(:focus)::placeholder {
  color: transparent !important;
}




.create-block {
  border-radius: .3rem;
      box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
      border: 1px solid rgba(0, 0, 0, .125);
      color: #28c423;
      background-color: #ffffff;
      padding: 15px;
      display: flex;
      flex-flow: column;
      width: 450px; max-width: 100%;
}

@media (min-width: 1000px) {
  /* .main-row .col-xl-9 {
      flex: 0 0 auto;
      width: 74% !important;
  } */
  /* li {
    font-size: 15px;
  } */
   .main-row {
    width: 1000px;
   }
   .main-row .col-xl-10 {
    width: 72.333333% !important;
}
}

@media (min-width: 1200px) {
  /* .main-row .col-xl-9 {
      flex: 0 0 auto;
      width: 74% !important;
  } */
  /* li {
    font-size: 15px;
  } */
   .main-row {
    width: 1200px;
   }
   .main-row .col-xl-10 {
    width: 78.333333% !important;
}
}

@media (min-width: 1400px) {
  .main-row .col-xl-9 {
      flex: 0 0 auto;
      width: 74% !important;
  }
   .main-row {
    width: 1400px;
   }
   .main-row .col-xl-10 {
    width: 81.333333% !important;
}
/* li {
  font-size: 17px;
} */
}


.first-block .btn-primary-home::after, .first-block .btn-primary-home:after {
  content: "";
  position: absolute;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
  background: hsla(0, 0%, 100%, .4);
  border-radius: 100px;
  opacity: 0;
  width: 74px;
  height: 74px;
  z-index: 10;
  -webkit-animation: pulseblob 1.5s linear 1s infinite;
  animation: pulseblob 1.5s linear 1s infinite;
}

.first-block .btn-primary-home::before, .first-block .btn-primary-home:before {
  content: "";
  position: absolute;
  top: calc(50% - 37px);
  left: calc(50% - 37px);
  background: hsla(0, 0%, 100%, .4);
  border-radius: 100px;
  opacity: 0;
  width: 74px;
  height: 74px;
  z-index: 100;
}

.btn-lead-action {
  background: transparent !important;
  color: #1a7023 !important;
  border-color: #1a7023 !important;
  font-size: 13px !important;
  width: 100%;
  padding: 2px !important;
}

.btn-lead-action:hover {
  background: #379132 !important;
  color: #e7f4fc !important;
  border-color: #379132 !important;
}

.dropdown-projects .dropdown-toggle::after {
  display: none !important;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: transparent !important;
}

.login-google, .first-block a.login-google {
  padding: 10px 15px !important;
  border: 1px solid #a6a4a4 !important;
  color: #0e0d0d !important;
  /* text-decoration: none; */
  background: #ffffff !important;
  width: 100%;
}

.login-google:hover, .first-block a.login-google:hover {
  color: #0e0d0d !important;
  border: 1px solid #a6a4a4 !important;
  /*text-decoration: none;*/
  background: #f3f2f2 !important;
}

.or-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

  .refgrow-logo {
    font-size: 20px;
    font-family: 'Nerko One', cursive;
    font-weight: 800;
    display: flex;
    align-items: center;
    padding: 15px;
    /* background-color: #fff; или любой другой цвет фона */
  }

  .refgrow-logo img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
  }

  @media (min-width: 768px) {
    .sidebar {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .sidebar-content {
      flex: 1;
    }

    .refgrow-logo {
      margin-top: auto;
    }
  }

  @media (max-width: 767px) {
    .refgrow-logo {
      position: static;
      margin-top: 20px;
    }
  }

  .bg-light3 {
    background-color: #e0fff6 !important;
  }

  .dropdown-projects .dropdown-menu {
    inset: 6px auto auto -15.5px !important;
  }

  .nav-link {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .dropdown-projects .btn {
    background: #334155 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    padding: 0.5rem 1rem;
  }



/* Адаптивные таблицы */
@media only screen and (max-width: 768px) {
    .input-group>.form-control, .input-group>.form-floating, .input-group>.form-select {
    width: 100% !important;
  }
  /*.table-responsive {
     display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  max-width: 600px;
  box-shadow: inset 0 0 5px rgba(150, 150 ,150,0.35);
  margin: auto;
  } */

  /* .table {
    width: 100%;
    max-width: none;
  }

  .table td, .table th {
    white-space: nowrap;
  } */
}

/* Адаптивные графики */
/* .chart-container {
  position: relative;
  height: 50vh;
  width: 100%;
}
*/
@media only screen and (max-width: 768px) {

/*
  .chart-container {
    height: 70vh;
  }
} */

/* Общие стили для улучшения адаптивности */
/* img, svg {
  max-width: 100%;
  height: auto;
}
*/
.container {
  /* width: 100%; */
  padding-right: 1rem !important;
  padding-left: 1rem !important;
  /* margin-right: auto;
  margin-left: auto; */
}
.row {
  --bs-gutter-x: 0 !important;
}
/*
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  } */
}
/*
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media only screen and (max-width: 600px) {
  .chart-container {
    height: 300px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
} */

.why-use-block {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.why-use-block:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.how-it-works-step {
  position: relative;
  padding: 40px;
  background: #ffffff;
  border-radius: 24px;
  margin-bottom: 30px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.how-it-works-step:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* .step-number {
  position: absolute;
  top: -20px;
  left: 40px;
  background: #a2e8ff;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
} */

.section-title {
  font-size: calc(1.475rem + 1.5vw);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.feature-image {
  width: 100%;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-image:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .why-use-block, .how-it-works-step {
    padding: 30px;
  }
  
  .step-number {
    left: 30px;
  }
}

.feature-block {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

/* .feature-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(162, 232, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
} */

.feature-block:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.1); */
}

.feature-block img {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-block:hover img {
  /* transform: scale(1.02); */
}

.feature-block h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.feature-block p {
  color: #64748b;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .feature-block {
    padding: 20px;
    margin-bottom: 20px;
  } 
}

.pricing-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  width: 100%;
  margin: 0 auto;
}

.pricing-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.premium {
  border: 2px solid #18adde;
  position: relative;
}

.pricing-card.premium::before {
  content: 'POPULAR';
  position: absolute;
  top: 12px;
  right: -35px;
  background: #18adde;
  color: white;
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.pricing-body {
  padding: 20px;
}

.price-amount {
  font-size: 42px;
  font-weight: 800;
  color: #2b4350;
  text-align: center;
  margin-bottom: 5px;
}

.price-amount small {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
}

.price-period {
  text-align: center;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  color: #1e293b;
  font-size: 16px;
  align-items: baseline;
}

.feature-list li i {
  margin-right: 8px;
  font-size: 16px;
  min-width: 16px;
}

.feature-list li.included i {
  color: #18adde;
}

.feature-list li.not-included {
  color: #64748b;
}

.feature-list li.not-included i {
  color: #cbd5e1;
}

.pricing-footer {
  padding: 20px;
  text-align: center;
}

.pricing-btn {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
}

/* FAQ Accordion Styles */
.faq-accordion {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
  background: white;
  transition: all 0.3s ease;
}

.faq-accordion:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-header {
  padding: 20px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background: #f8fafc;
}

.faq-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}

.faq-header i {
  color: #64748b;
  transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 20px 20px;
  color: #64748b;
  line-height: 1.6;
}

.nav-tabs .nav-link {
  padding: 12px 24px;
  font-weight: 600;
  color: #64748b;
  border: 1px solid transparent;
  border-radius: 12px;
  margin: 0 5px;
}

.nav-tabs .nav-link.active {
  color: #18adde;
  background: white;
  border-color: #e5e7eb;
}

.nav-tabs .nav-link:hover:not(.active) {
  border-color: #e5e7eb;
  background: #f8fafc;
}

/* Add new styles for the pricing cards container */
.pricing-cards-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-cards-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* Ensure pricing cards fit properly in Bootstrap grid */
.row .pricing-card {
  max-width: 100%;
}

@media (min-width: 992px) {
  .row .col-lg-3 .pricing-card {
    max-width: 100%;
  }
}

/* Stripe Integration Form Styles */
.stripe-setup-form {
  margin-bottom: 20px;
}

.stripe-setup-form .input-group-text {
  background-color: #635bff;
  color: white;
  border-color: #635bff;
}

.stripe-setup-form input[type="password"]:focus,
.stripe-setup-form input[type="text"]:focus {
  border-color: #635bff;
  box-shadow: 0 0 0 0.2rem rgba(99, 91, 255, 0.25);
}

.stripe-webhook-setup {
  margin-top: 20px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.webhook-events h6 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.webhook-events ul {
  margin-bottom: 0;
}

.webhook-events li {
  margin-bottom: 8px;
  font-size: 14px;
}

.webhook-events code {
  background-color: #e9ecef;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}
