@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

/* Layout*/
main {
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: top;
  height: 100%;
  width: 100%;
  align-self: center;
}

main.home {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 20px;
  padding-top: 5px;
  min-height: 100vh;
  background: #F5F6F7;
  font-family: "Inter", sans-serif;
}

pre {
  white-space: pre-wrap;
}

label, p, h1, h2, h3, h5, h6 {
  color: #1D1D1F;
}

h2 {
  margin: 10px 0;
}

h3 {
  margin: 30px 0 8px;
}

h4 {
  color: #878a8d;
  font-weight: 400;
}

h4.black {
  color: black;
  font-weight: 700;
}

p {
  margin: 0;
  font-size: 14px;
}

label {
  font-size: 14px;
  font-weight: 400;
}

input {
  margin-top: 10px;
}

/* General components */
.forms-line-names {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 30px;
}

.forms-line-names input, .forms-line-names select, .forms-line-names label {
  margin: 5px 0;
}

.forms-line-names input[type=text3] {
  width: 92.5%;
}

.forms-line-checkboxes {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}

.button-block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.action-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form-headers {
  width: 100%;
}

.form-headers-remove button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border: none;
  padding: 0;
  background: transparent;
  margin: 21px 0 0 0;
}

.form-headers-type {
  width: 30%;
}

.form-headers.checkbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.form-headers.checkbox input[type=checkbox] {
  position: absolute;
}

.property-section, .index-section {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #fafafa;
  transition: all 0.3s ease;
  animation: slideIn 0.3s ease-out;
}
.property-section:hover, .index-section:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.optional-fields-section {
  margin-top: 20px;
}

.optional-fields-toggle {
  background: none;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #444544;
  width: 100%;
  text-align: left;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.optional-fields-toggle:hover {
  background-color: rgba(0, 141, 228, 0.08);
}
.optional-fields-toggle span {
  margin-right: 8px;
  transition: transform 0.2s ease;
  font-size: 12px;
}
.optional-fields-toggle span.arrow-down {
  transform: rotate(90deg);
}
.optional-fields-toggle span.arrow-right {
  transform: rotate(0deg);
}

.optional-fields-content {
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-top: 10px;
  animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}
.properties-block {
  display: flex;
  justify-content: space-between;
  background: #F5F6F7;
  align-items: center;
  padding: 0 10px;
  margin: 0 0 15px 0;
  border-radius: 8px;
  font-weight: 600;
}
.properties-block .name-input-header {
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  flex: 1;
  color: #1D1D1F;
}
.properties-block .name-input-header:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 10px;
}
.properties-block .name-input-header::placeholder {
  color: #b6b6b6;
  font-weight: 400;
  font-style: italic;
}

p.prop-text {
  margin: 10px 0 20px;
  color: #75808A;
  font-size: 16px;
  font-weight: 400;
}

.form-headers.checkbox-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-headers.checkbox-block label {
  margin: 0;
}

.forms-line {
  margin: 10px 0;
}

.forms-line.number-block {
  display: flex;
  width: 100%;
}

.forms-line.number-block input {
  width: 90%;
}

.forms-line.min, .forms-line.max {
  margin: 0;
  width: 100%;
}

.forms-line.min {
  margin-right: 10px;
}

.container-checkbox.second-checkbox {
  padding-left: 25px;
  font-size: 14px;
}

.container-checkbox.second-checkbox input {
  height: 8px;
}

.container-checkbox.second-checkbox .checkmark {
  top: 0;
  height: 15px;
  width: 15px;
}

.container-checkbox.second-checkbox .checkmark:after {
  left: 5px;
  top: 2px;
  width: 3px;
  height: 7px;
  border-width: 0 2px 2px 0;
}

.form-line {
  margin: 20px 0 30px;
  width: 100%;
}

.column-text {
  margin: 20px 0 40px 0;
  padding: 10px 40px 10px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 30px;
}

.column-text img {
  padding-right: 10px;
}

.column-text img.rotate-180 {
  transform: rotate(180deg);
  padding-left: 10px;
}

.column-text p {
  margin: 0;
  font-size: 15px;
}

.doc-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 0 0;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 10;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.doc-block .doc-name-input {
  background: transparent;
  border: none;
  font-size: 24px;
  font-weight: 700;
  padding: 5px;
  flex: 1;
  color: #1D1D1F;
}
.doc-block .doc-name-input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  padding: 5px 10px;
}
.doc-block .doc-name-input::placeholder {
  color: #b6b6b6;
  font-weight: 400;
  font-style: italic;
}

.doc-section {
  margin: 0 0 20px;
}

.doc-content {
  flex: 1;
}

.forms-line.min.index {
  max-width: 214px;
}

.forms-line.max.index {
  min-width: 220px;
}

.forms-line.max select {
  margin-top: 19px;
}

.forms-line.number-block.index {
  display: flex;
  align-items: center;
}

input[type=text],
input[type=text2],
input[type=text3],
input[type=text4] {
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: 12px;
  width: 95%;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
input[type=text]:focus,
input[type=text2]:focus,
input[type=text3]:focus,
input[type=text4]:focus {
  outline: none;
  border-color: #008de4;
}
input[type=text].error,
input[type=text2].error,
input[type=text3].error,
input[type=text4].error {
  border-color: #e85c4a;
}

input[type=text2],
input[type=text3],
input[type=text4] {
  margin: 5px 0;
}

input[type=text3].forms-line-names {
  width: 92.5%;
}

input[type=checkbox] {
  margin: 5px 0;
}

input[type=number] {
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: 12px;
  margin: 10px 0;
}
input[type=number]:focus {
  outline: none;
  border-color: #008de4;
}
input[type=number].error {
  border-color: red;
}

select {
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: 11px;
  width: 100%;
  background: #fff;
}

/* Buttons styles */
.button {
  border: none;
  background-color: #008de4;
  color: rgb(233, 233, 233);
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 2px;
  margin-bottom: 2px;
  font-weight: 600;
}
.button:hover {
  cursor: pointer;
}

.button.remove {
  background-color: transparent;
  padding: 3px 0;
}

.button2 {
  border: none;
  background-color: transparent;
  padding: 5px;
  border-radius: 5px;
  margin-top: 2px;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #008de4;
}
.button2:hover {
  cursor: pointer;
}

.button2 span {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  border-radius: 50%;
  background: #008de4;
  color: #fff;
  margin-right: 7px;
}

.button-primary {
  background-color: #008de4;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.button-import {
  border: none;
  background-color: #008de4;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.button-import:hover {
  cursor: pointer;
}

.button-import img {
  padding-right: 5px;
}

button.button.property {
  width: 100%;
  font-size: 15px;
  background: rgba(0, 141, 228, 0.08);
  color: #008de4;
  font-weight: 600;
  margin-bottom: 7px;
}

button.button.property span {
  color: #fff;
  background: #008de4;
  margin: 5px;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 21px;
  display: inline-flex;
}

button.button.remove-text {
  background: rgba(232, 92, 74, 0.1);
  color: rgb(232, 92, 74);
  font-size: 17px;
  font-weight: 600;
  width: 100%;
}

.container-checkbox {
  display: block;
  position: relative;
  padding-left: 14px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container-checkbox input {
  opacity: 0;
  cursor: pointer;
  height: 37px;
}

.container-checkbox .checkmark {
  position: absolute;
  top: 17px;
  left: 4px;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  background-color: #eee;
}

.container-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.container-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

.container-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.container-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 3px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-block {
  width: 75px;
}
.checkbox-block .container-checkbox {
  margin-bottom: 0;
}

.button-clear {
  border: none;
  background-color: #fff;
  border-radius: 5px;
  width: 80px;
  color: #2196F3;
  font-size: 14px;
  font-weight: 600;
}
.button-clear:hover {
  cursor: pointer;
}

span.clear {
  vertical-align: 1px;
  background: #2196F3;
  color: #fff;
  font-weight: 550;
  font-size: 11px;
  margin-right: 7px;
  border-radius: 50%;
  padding: 4px 6.5px;
}

.input-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.column-right .input-container {
  padding-top: 20px;
}

.remove-text-button {
  width: 100%;
  display: flex;
  justify-content: center;
}

.add-index {
  width: 100%;
  display: flex;
  justify-content: center;
}

.output-container {
  background-color: #fff;
  padding: 10px;
  border-radius: 30px;
  overflow-wrap: break-word;
}

.table {
  align-items: left;
  width: 100%;
}

.indent {
  padding-left: 20px;
}

.columns {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 90%;
  max-width: 1130px;
  margin: auto;
}

.column-left, .column-right {
  width: 100%;
  max-width: 540px;
}

.column-right {
  position: sticky;
  top: 10px;
  align-self: flex-start;
}

.column-left {
  margin-right: 4%;
}

.header {
  text-align: center;
  margin-top: 0px;
}

.logo-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.logo {
  margin-top: 40px;
}

.button-container {
  display: flex;
  align-items: center;
  width: 90%;
  padding-bottom: 30px;
  justify-content: space-between;
  margin: auto;
}

.note {
  color: red;
}

.footnotes {
  padding-bottom: 50px;
}

.textarea-whitespace {
  width: 95%;
  height: 208px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: 12px;
}

.textarea-description {
  width: 95%;
  height: 80px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  resize: vertical;
  margin-top: 10px;
}
.textarea-description:focus {
  outline: none;
  border-color: #008de4;
}
.textarea-description::placeholder {
  color: #b6b6b6;
  font-style: italic;
}

.textarea-no-whitespace {
  width: 95%;
  height: 100px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  padding: 12px;
}

.text-area-subtext {
  text-align: right;
}

.row {
  display: flex;
  align-items: center;
}

.input-column,
.select-column {
  display: flex;
  align-items: center;
}

.label-column {
  display: flex;
  align-items: center;
  padding-right: 10px;
}

.error-text {
  color: red;
  font-size: 14px;
}

.passed-text {
  color: #008de4;
}

.prompt-history {
  text-align: center;
}

.button-compact {
  border: none;
  background-color: #008de4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 2px;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.button-compact:hover {
  background-color: #006db1;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background-color: #f8f9fa;
  border-radius: 8px 8px 0 0;
}
.popup-header h3 {
  margin: 0;
  color: #444544;
  font-size: 18px;
}

.popup-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.popup-close:hover {
  background-color: #e9ecef;
}

.popup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
}

.popup-textarea {
  width: 100%;
  min-height: 300px;
  max-height: 400px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  line-height: 1.4;
  resize: vertical;
  background-color: #f8f9fa;
}
.popup-textarea:focus {
  outline: none;
  border-color: #008de4;
}

.popup-size {
  margin: 10px 0 0 0;
  font-size: 12px;
  color: #666;
  text-align: right;
}

.top-section_ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.logo_ai {
  width: 180px;
  height: 90px;
  margin-top: 20px;
}

.header_ai {
  text-align: center;
  margin: 20px 0 30px;
  font-size: 40px;
  font-weight: 700;
}

.container_ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 90%;
  max-width: 1130px;
  background: #fff;
  flex-grow: 1;
  border-radius: 30px;
  padding: 40px 0;
  align-self: center;
  margin-bottom: 30px;
}
.container_ai .content-container_ai {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1153px;
  background: #fff;
  flex-grow: 1;
  border-radius: 30px;
  justify-content: center;
}
.container_ai a.ai-link img {
  width: 20px;
  height: 13px;
  vertical-align: middle;
  margin-bottom: 3px;
}
.container_ai .input-container_ai {
  width: 100%;
  max-width: 660px;
}
.container_ai .input-container_ai input:focus {
  border: none;
}
.container_ai .input-container_ai input {
  margin: 0;
}
.container_ai .input-container_ai h2, .container_ai .input-container_ai p {
  text-align: center;
  margin-bottom: 8px;
}
.container_ai .input-container_ai p {
  margin-bottom: 20px;
  font-size: 15px;
}
.container_ai .input-button-container_ai {
  display: flex;
  width: 100%;
  border: 1px solid rgba(29, 29, 31, 0.1);
  padding: 4px;
  border-radius: 8px;
  margin-top: 10px;
}
.container_ai .flex-ai {
  display: flex;
}
.container_ai .loader_ai {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #008de4; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  margin-top: 35px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.container_ai .validation-container_ai {
  margin-top: 20px;
}
.container_ai .result-container_ai {
  width: 100%;
}
.container_ai .passed-text_ai {
  color: #008de4;
}
.container_ai .error-text_ai {
  color: red;
  text-align: center;
  margin: 10px;
  font-size: 14px;
}
.container_ai input {
  font-size: 16px;
  flex-grow: 2;
  border: none;
}
.container_ai input:focus {
  border: 1px solid #008de4;
  outline: none;
}
.container_ai button {
  padding: 5px 20px;
  font-size: 13px;
  font-weight: 600;
  height: 30px;
  background-color: #008de4;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.container_ai button:disabled {
  background-color: #808080;
  color: white;
}
.container_ai pre {
  margin-top: 20px;
  padding: 10px;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow-x: auto;
}

.padded-label {
  padding-left: 3px;
  font-size: 13px;
}

.history-padding {
  padding-bottom: 30px;
}

footer {
  text-align: center;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.icon-el {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  width: 25px;
  height: 25px;
  margin: 0 5px;
  background-position: center;
}

.logo_ai-footer {
  padding: 10px;
}

.icon-el.github {
  background-image: url(https://media.dash.org/wp-content/uploads/Octicons-mark-github.svg.png);
  padding-bottom: 20px;
}

@media only screen and (max-width: 900px) {
  .columns {
    flex-direction: column;
  }
  .column-left, .column-right {
    width: 100%;
  }
  .column-left {
    margin-left: 0;
  }
  .form-headers-type {
    width: 46%;
  }
  .forms-line-names input[type=text3] {
    width: 87.5%;
  }
}
@media only screen and (max-width: 834px) {
  body {
    padding: 5px;
  }
  .column-left, .column-right {
    max-width: 100%;
  }
  .column-left {
    margin-right: 0;
  }
  .columns {
    width: 100%;
  }
  .container_ai {
    width: 100%;
  }
}
@media only screen and (max-width: 705px) {
  form {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
  }
}
@media only screen and (max-width: 460px) {
  .forms-line-names input[type=text3] {
    width: 78%;
  }
  .form-headers-type {
    width: 70%;
  }
  .forms-line.number-block input {
    width: 83%;
  }
}
.nested-properties {
  margin-left: 20px;
  border-left: 2px solid #e0e0e0;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.nested-property {
  position: relative;
  margin-bottom: 15px;
}
.nested-property.nested-property-level-1 {
  margin-left: 0;
}
.nested-property.nested-property-level-2 {
  margin-left: 20px;
  opacity: 0.95;
}
.nested-property h5 {
  font-size: 14px;
  margin: 10px 0;
  color: #444544;
}

.nesting-limit-message {
  background-color: #f0f8ff;
  border: 1px solid #b3d9ff;
  border-radius: 4px;
  padding: 12px 16px;
  margin: 10px 0;
}
.nesting-limit-message p {
  margin: 0;
  color: #0066cc;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}

h3.header-with-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  margin-top: 16px;
}
h3.header-with-info span {
  flex: 0 0 auto;
}

.label-with-info {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.label-with-info span {
  flex: 0 0 auto;
}

.info-icon-container {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.info-icon-container.inline {
  display: inline-flex;
  margin-left: 4px;
}
.info-icon-container .info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #666666;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.info-icon-container .info-icon.small {
  width: 16px;
  height: 16px;
  font-size: 11px;
}
.info-icon-container .info-icon:hover {
  background-color: #e0e0e0;
  color: #333333;
}
.info-icon-container .info-icon:active {
  background-color: #d0d0d0;
  color: #000000;
}
.info-icon-container .info-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  width: 280px;
  padding: 12px;
  background-color: white !important;
  color: #333333 !important;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.info-icon-container .info-tooltip.visible {
  opacity: 1;
  visibility: visible;
}
.info-icon-container .info-tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #cccccc;
}
.info-icon-container .info-tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -1px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
}
.info-icon-container .info-tooltip p {
  margin: 0 0 8px 0;
  color: #333333 !important;
}
.info-icon-container .info-tooltip p:last-child {
  margin-bottom: 0;
}
