@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
.line {
  fill: none;
  stroke: #340088;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

#menu.toggled ~ #toggle-navbar .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

#menu.toggled ~ #toggle-navbar .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

#menu.toggled ~ #toggle-navbar .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.highlight {
  animation: highlightAnimation 3s forwards;
}

@keyframes highlightAnimation {
  0% {
    background-color: yellow;
  }
  100% {
    background-color: transparent;
  }
}
/***** MODAL DIALOG ****/
.close-button {
  --tw-translate-y: -50%;
  --tw-translate-x: 50%;
  --tw-border-opacity: 1;
  --tw-bg-opacity: 1;
  background-color: rgb(253 247 247/var(--tw-bg-opacity));
  border-color: rgb(82 15 15/var(--tw-border-opacity));
  border-radius: 9999px;
  border-width: 1px;
  cursor: pointer;
  padding: 4px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

#verificationModal {
  /* Underlay covers entire screen. */
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  /* Flexbox centers the .modal-content vertically and horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Animate when opening */
  animation-name: fadeIn;
  animation-duration: 150ms;
  animation-timing-function: ease;
}

#verificationModal > .modal-underlay {
  /* underlay takes up the entire viewport. This is only
  required if you want to click to dismiss the popup */
  position: absolute;
  z-index: -1;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

#verificationModal > .modal-content {
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
  /* Position visible dialog near the top of the window */
  margin-top: 4vh;
  /* Sizing for visible dialog */
  width: 100%;
  max-width: 600px;
  /* Display properties for visible dialog*/
  border: solid 1px #999;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  padding: 20px;
  /* Animate when opening */
  animation-name: zoomIn;
  animation-duration: 150ms;
  animation-timing-function: ease;
}

#verificationModal.closing {
  /* Animate when closing */
  animation-name: fadeOut;
  animation-duration: 150ms;
  animation-timing-function: ease;
}

#verificationModal.closing > .modal-content {
  /* Animate when closing */
  animation-name: zoomOut;
  animation-duration: 150ms;
  animation-timing-function: ease;
}

.modal {
  /* Underlay covers entire screen. */
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  /* Flexbox centers the .modal-content vertically and horizontally */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Animate when opening */
  animation-name: fadeIn;
  animation-duration: 150ms;
  animation-timing-function: ease;
}

.modal.hidden {
  display: none;
}

.modal > .modal-underlay {
  /* underlay takes up the entire viewport. This is only
  required if you want to click to dismiss the popup */
  position: absolute;
  z-index: -1;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.modal > .modal-content {
  /* Position visible dialog near the top of the window */
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
  margin-top: 4vh;
  min-width: 600px;
  /* Display properties for visible dialog*/
  border: solid 1px #999;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  padding: 20px;
  /* Animate when opening */
  animation-name: zoomIn;
  animation-duration: 150ms;
  animation-timing-function: ease;
}

/* Pre mobilné zariadenia */
@media screen and (max-width: 640px) {
  .modal > .modal-content {
    min-width: 300px;
    /* Nastavená minimálna šírka pre malé obrazovky */
  }
}
.modal.closing {
  /* Animate when closing */
  animation-name: fadeOut;
  animation-duration: 150ms;
  animation-timing-function: ease;
}

.modal.closing > .modal-content {
  /* Animate when closing */
  animation-name: zoomOut;
  animation-duration: 150ms;
  animation-timing-function: ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
#pdfFrame {
  width: 100%;
  height: 400px;
}

.bank-offer {
  width: 100%;
}

.productTable {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex: auto;
}

ul {
  text-align: left;
}

.errorTr {
  opacity: 0.6;
}

.errorTd .ico {
  pointer-events: all;
  cursor: help;
  font-weight: 600;
  /* potrebné pre niektoré ikony */
  font-size: 20px;
  opacity: 0.9;
  padding-right: 8px;
  color: red;
}

.infoTd .ico {
  pointer-events: all;
  cursor: help;
  font-weight: 600;
  /* potrebné pre niektoré ikony */
  font-size: 20px;
  opacity: 0.9;
  padding-right: 8px;
  color: orange;
}

.selectedTr td {
  font-weight: 700;
}

.selectedTd .ico {
  font-weight: 700;
  /* potrebné pre niektoré ikony */
  font-size: 24px;
  color: green;
  opacity: 0.9;
  padding-right: 4px;
  display: inline-block !important;
}

.tico .ico {
  display: none;
}

.btnClear {
  background-color: transparent;
  color: rgb(52, 0, 136);
  text-underline-offset: 2px;
  text-decoration-style: dotted;
  text-decoration-line: underline;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.btnClear:hover {
  background-color: rgb(237, 229, 244);
}

@media only screen and (max-width: 1024px) {
  .selectedTd .ico {
    font-size: 20px;
  }
  .errorTd .ico, .infoTd .ico {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .selectedTd .ico {
    font-size: 16px;
  }
  .errorTd .ico, .infoTd .ico {
    font-size: 14px;
  }
}
@media only screen and (max-width: 340px) {
  .selectedTd .ico {
    font-size: 16px;
    padding-right: 3px;
  }
  .errorTd .ico, .infoTd .ico {
    font-size: 14px;
    padding-right: 3px;
  }
}
.headerDiv {
  width: 190px;
}
.headerDiv .logoUrl {
  margin-bottom: 2px;
  width: 190px;
  height: 50px;
  margin-left: 2px;
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  justify-items: center;
  align-content: center;
}
.headerDiv .logoUrl img {
  max-width: 150px;
  max-height: 40px;
}
.headerDiv .terms {
  padding-top: 12px;
}

input[type=radio], input[type=checkbox] {
  position: relative;
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(255 249 246/var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(43 79 93/var(--tw-bg-opacity));
  padding: 0px;
  outline-style: solid;
  outline-offset: 0px;
  outline-color: transparent;
}
input[type=radio]:focus, input[type=checkbox]:focus {
  outline-color: #ffd7c8;
}
input[type=radio]:checked, input[type=checkbox]:checked {
  --tw-bg-opacity: 1;
  background-color: rgb(255 249 246/var(--tw-bg-opacity));
}
input[type=radio]:checked::after, input[type=checkbox]:checked::after {
  content: "";
  background-image: url("/img/checkbox.svg");
}
input[type=radio]:checked::after, input[type=checkbox]:checked::after {
  position: absolute;
}
input[type=radio]:checked::after, input[type=checkbox]:checked::after {
  right: -1px;
}
input[type=radio]:checked::after, input[type=checkbox]:checked::after {
  top: -2px;
}
input[type=radio]:checked::after, input[type=checkbox]:checked::after {
  height: 24px;
}
input[type=radio]:checked::after, input[type=checkbox]:checked::after {
  width: 24px;
}
input[type=radio]:checked:disabled, input[type=checkbox]:checked:disabled {
  --tw-border-opacity: 1;
  border-color: rgb(216 211 216/var(--tw-border-opacity));
}
input[type=radio]:checked:disabled, input[type=checkbox]:checked:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(216 211 216/var(--tw-bg-opacity));
}

.purpose-wrapper label:has(input[type=radio]:checked),
.radio-wrapper label:has(input[type=radio]:checked),
label:has(> input[type=radio]:checked) {
  --tw-bg-opacity: 1;
  background-color: rgb(255 249 246/var(--tw-bg-opacity));
  --tw-shadow: 0px 6px 13px 0px rgba(255, 128, 0, 0.38);
  --tw-shadow-colored: 0px 6px 13px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
.purpose-wrapper label:has(input[type=radio]:checked) span,
.radio-wrapper label:has(input[type=radio]:checked) span,
label:has(> input[type=radio]:checked) span {
  --tw-text-opacity: 1;
  color: rgb(43 79 93/var(--tw-text-opacity));
}

.purpose-wrapper label {
  display: flex;
  height: 100%;
  width: 100%;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  background-color: rgb(255 249 246/var(--tw-bg-opacity));
  --tw-bg-opacity: 0.15;
  padding: 16px;
  padding-right: 24px;
}
.purpose-wrapper label span {
  margin-left: auto;
  margin-right: auto;
}
.purpose-wrapper label span {
  --tw-text-opacity: 1;
  color: rgb(255 249 246/var(--tw-text-opacity));
}

span.wpcf7-list-item {
  margin: 0px;
}

.purpose-wrapper span#purpose {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .purpose-wrapper span#purpose {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .purpose-wrapper span#purpose {
    gap: 32px;
  }
}
.radio-wrapper label {
  display: flex;
  height: 100%;
  width: 100%;
  cursor: pointer;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  background-color: rgb(255 249 246/var(--tw-bg-opacity));
  --tw-bg-opacity: 0.15;
  padding: 16px;
  --tw-text-opacity: 1;
  color: rgb(255 249 246/var(--tw-text-opacity));
}

.radio-wrapper .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

input[type=number] {
  position: relative;
  height: 42px;
  width: 100%;
  border-radius: 6px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(216 211 216/var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(43 79 93/var(--tw-bg-opacity));
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 20px;
  padding-right: 0px;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
input[type=number]::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
input[type=number]::placeholder {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
input[type=number]:disabled {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.years-input::before {
  content: "|";
  position: absolute;
  right: 78px;
  top: 0px;
  z-index: 20;
  height: 42px;
  width: 6px;
  --tw-translate-y: 25%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-text-opacity: 1;
  color: rgb(216 211 216/var(--tw-text-opacity));
}

.years-input::after {
  content: "rokov";
  position: absolute;
  right: 55px;
  top: 0px;
  height: 42px;
  width: 10px;
  --tw-translate-y: 25%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.sum-input::before {
  content: "|";
  position: absolute;
  right: 43px;
  top: 0px;
  z-index: 20;
  height: 42px;
  width: 6px;
  --tw-translate-y: 25%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-text-opacity: 1;
  color: rgb(216 211 216/var(--tw-text-opacity));
}

.sum-input::after {
  content: "€";
  position: absolute;
  right: 20px;
  top: 0px;
  height: 42px;
  width: 10px;
  --tw-translate-y: 25%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.percent-input::before {
  content: "|";
  position: absolute;
  right: 43px;
  top: 0px;
  z-index: 20;
  height: 42px;
  width: 6px;
  --tw-translate-y: 25%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-text-opacity: 1;
  color: rgb(216 211 216/var(--tw-text-opacity));
}

.percent-input::after {
  content: "%";
  position: absolute;
  right: 20px;
  top: 0px;
  height: 42px;
  width: 10px;
  --tw-translate-y: 25%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.percent-input input, .sum-input input, .years-input input {
  padding-right: 100px;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  position: relative;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  height: 2px;
  padding: 0;
  margin: 0;
  border: none !important;
  cursor: pointer;
  background: linear-gradient(to right, #ff8000 0%, #ff8000 60%, rgba(255, 128, 0, 0.3019607843) 60%, rgba(255, 128, 0, 0.3019607843) 100%);
  border-radius: 2px;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  height: 32px;
  width: 32px;
  border-radius: 32px;
  background-image: url("/img/range-thumb.svg");
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=range]::-ms-thumb {
  height: 32px;
  width: 32px;
  border-radius: 32px;
  background-image: url("/img/range-thumb.svg");
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  height: 32px;
  width: 32px;
  border-radius: 32px;
  background-image: url("/img/range-thumb.svg");
  cursor: pointer;
}

input[type=text],
input[type=password],
input[type=date],
input[type=tel],
input[type=email],
textarea {
  height: 42px;
  width: 100%;
  border-radius: 6px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(216 211 216/var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(43 79 93/var(--tw-bg-opacity));
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 20px;
  padding-right: 8px;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=date]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
textarea::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=date]:disabled,
input[type=tel]:disabled,
input[type=email]:disabled,
textarea:disabled {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

input:disabled {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

input:invalid {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68/var(--tw-border-opacity));
  box-shadow: 0 0 3px 1px rgb(239, 68, 68);
}

input.filename {
  pointer-events: none;
}

.select {
  position: relative;
  width: 100%;
}
.select select {
  background-image: url("data:image/svg+xml;utf8,<svg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M0.363702 0.86361C0.715174 0.512138 1.28502 0.512138 1.63649 0.86361L7.0001 6.22722L12.3637 0.86361C12.7152 0.512138 13.285 0.512138 13.6365 0.86361C13.988 1.21508 13.988 1.78493 13.6365 2.1364L7.63649 8.1364C7.46771 8.30519 7.23879 8.40001 7.0001 8.40001C6.7614 8.40001 6.53248 8.30519 6.3637 8.1364L0.363702 2.1364C0.0122296 1.78493 0.0122297 1.21508 0.363702 0.86361Z' fill='rgb(196, 196, 196)'/></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 18px);
  background-position-y: 16px;
}
.select select {
  position: relative;
}
.select select {
  height: 42px;
}
.select select {
  width: 100%;
}
.select select {
  cursor: pointer;
}
.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select select {
  border-radius: 6px;
}
.select select {
  border-width: 1px;
}
.select select {
  --tw-border-opacity: 1;
  border-color: rgb(216 211 216/var(--tw-border-opacity));
}
.select select {
  --tw-bg-opacity: 1;
  background-color: rgb(43 79 93/var(--tw-bg-opacity));
}
.select select {
  padding-left: 20px;
  padding-right: 20px;
}
.select select {
  font-weight: 500;
}
.select select {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
.select select::-moz-placeholder {
  font-weight: 500;
}
.select select::placeholder {
  font-weight: 500;
}
.select select::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(216 211 216/var(--tw-text-opacity));
}
.select select::placeholder {
  --tw-text-opacity: 1;
  color: rgb(216 211 216/var(--tw-text-opacity));
}
.select select:disabled {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select select:disabled {
  font-weight: 500;
}
.select select:disabled {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
.select select:disabled {
  opacity: 1;
}
.select select:disabled {
  -webkit-text-fill-color: rgb(144, 144, 144);
}

input[type=submit] {
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-wrap: wrap;
  border-radius: 6px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 249 246/var(--tw-bg-opacity));
  padding-left: 28px;
  padding-right: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-weight: 500;
  line-height: 125%;
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity));
  transition-duration: 500ms;
}

@media (min-width: 768px) {
  input[type=submit] {
    width: -moz-fit-content;
    width: fit-content;
  }
}
input[type=submit]:hover {
  background-color: rgba(255, 249, 246, 0.9);
}
input[type=submit]:hover {
  --tw-shadow: 0px 6px 13px 0px rgba(255, 128, 0, 0.38);
  --tw-shadow-colored: 0px 6px 13px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

/* Chrome, Safari, Edge, Opera */
input#code::-webkit-outer-spin-button,
input#code::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=date]::-webkit-inner-spin-button {
  display: none;
}

/* Firefox */
input#code {
  -moz-appearance: textfield;
}

input.formerror {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68/var(--tw-border-opacity));
  box-shadow: 0 0 3px 1px rgb(239, 68, 68);
}

.immutable {
  opacity: 0.8;
  pointer-events: none;
}

.dropdown {
  border: 1px solid transparent;
  background: linear-gradient(to bottom, white, white) padding-box, linear-gradient(to bottom, #d87a5f, rgba(255, 255, 255, 0)) border-box;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
  --tw-shadow: 0px 4px 39px 0px rgba(29, 0, 75, 0.11);
  --tw-shadow-colored: 0px 4px 39px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  margin-top: 2px;
  max-height: 220px;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
  outline: transparent;
}

.dropdown_item {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247/var(--tw-border-opacity));
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  padding: 5px 5px;
  border-bottom: 1px solid;
  width: 100%;
}
.dropdown_item .item_text1 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
.dropdown_item .item_text1 span {
  padding-right: 5px;
}
.dropdown_item .item_text2 {
  font-size: 13px;
}
.dropdown_item .item_text2 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
.dropdown_item .item_text2 span {
  padding-right: 5px;
}

.dropdown .dropdown_item.selected,
.dropdown .dropdown_item:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
}

input.error-input {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242/var(--tw-bg-opacity));
}

select.error-input {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242/var(--tw-bg-opacity));
}

.errortext {
  --tw-text-opacity: 1;
  color: rgb(220 38 38/var(--tw-text-opacity));
}

.ml-8 {
  margin-left: 8px;
}

.df-helpico {
  background-image: url("/img/help_icon.png");
  background-size: 20px;
  background-repeat: no-repeat;
  display: inline-grid;
  vertical-align: sub;
  margin-right: 6px;
  height: 20px;
  width: 20px;
  min-width: 20px;
  cursor: pointer;
}

html {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

iframe {
  width: 1px;
  min-width: 100%;
}

.logo img {
  max-height: 60px;
  height: 60px;
  width: auto;
  display: block;
}

.mainBoy {
  background: linear-gradient(108.7deg, #FDFAFF 0%, #EDE5F4 100%), linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 42.54%);
}

.hypoTitle {
  --tw-text-opacity: 1;
  color: rgb(255 249 246/var(--tw-text-opacity));
  width: 137px;
  height: 24px;
  padding: 4px 14px 4px 14px;
  border-radius: 36px;
  gap: 10px;
  background: #FFE6CC;
  font-family: Objektiv Mk3;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.01em;
  text-align: left;
}

.hypoText {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
  font-family: Objektiv Mk3;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
}

.btn-link {
  cursor: pointer;
  font-weight: 700;
  font-style: italic;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
.btn-link:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 56 67/var(--tw-bg-opacity));
}

.btn-pad {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-top: 16px;
}

.div-input {
  height: 8px;
  min-width: 40px;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247/var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
  padding: 16px;
  font-size: 14px;
  line-height: 160%;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.div-info {
  margin-top: 16px;
  margin-bottom: 16px;
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: justify;
  font-size: 14px;
  line-height: 160%;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.btn-wrapper {
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.text-wrapper {
  margin: 16px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 16px;
  margin-bottom: 16px;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(43 79 93/var(--tw-bg-opacity));
  padding: 14px;
}

@media (min-width: 768px) {
  .text-wrapper {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.msisdn-wrapper {
  margin: auto;
  margin-top: 16px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.s-ml11 {
  font-size: 16px;
  line-height: 160%;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.s-ml11 .text-wrapper {
  position: relative;
  display: inline-block;
  padding: 16px;
  text-align: justify;
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}

.s-ml11 .s-line {
  position: absolute;
  left: 0px;
  height: 100%;
  width: 50%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
  opacity: 0;
}

.s-ml11 .s-line1 {
  top: 0px;
  left: 0px;
}

.s-ml11 .letter {
  display: inline-block;
}

.s-ml11 .word {
  text-wrap: nowrap;
}

/*! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: "";
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/
button,
[role=button] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

* {
  font-family: "Source Sans Pro";
  font-weight: 500;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

input:not([type=range], [type=radio], [type=checkbox]):focus,
textarea:focus,
select:focus,
a:focus {
  outline: none;
}

svg * {
  transition-property: none;
}

html {
  scroll-padding: 120px;
  scroll-behavior: smooth;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
h1, .h1 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
  line-height: 125%;
}

@media (min-width: 768px) {
  h1, .h1 {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 32px;
  }
}
h2, .h2 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}

@media (min-width: 768px) {
  h2, .h2 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  h2, .h2 {
    font-size: 30px;
  }
}
h3, .h3 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 125%;
}

@media (min-width: 768px) {
  h3, .h3 {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  h3, .h3 {
    font-size: 28px;
  }
}
h4, .h4 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 125%;
}

@media (min-width: 768px) {
  h4, .h4 {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  h4, .h4 {
    font-size: 24px;
  }
}
h5, .h5 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 125%;
}

@media (min-width: 768px) {
  h5, .h5 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  h5, .h5 {
    font-size: 22px;
  }
}
h6, .h6 {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 125%;
}

@media (min-width: 768px) {
  h6, .h6 {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  h6, .h6 {
    font-size: 20px;
  }
}
p {
  font-size: 12px;
  line-height: 125%;
}

@media (min-width: 768px) {
  p {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  p {
    font-size: 14px;
  }
}
li {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 125%;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

@media (min-width: 768px) {
  li {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  li {
    font-size: 14px;
  }
}
.nav-link.basic {
  position: relative;
  font-size: 18px;
  line-height: 125%;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.nav-link.basic:hover {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

@media (min-width: 1280px) {
  .nav-link.basic {
    font-size: 15px;
  }
}
.nav-link.basic:hover {
  --tw-translate-y: -2px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.nav-link.basic:hover {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.btn {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 9999px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 500;
  line-height: 125%;
}

@media not all and (min-width: 640px) {
  .btn {
    font-size: 12px;
    line-height: 160%;
  }
}
@media (min-width: 768px) {
  .btn {
    width: -moz-fit-content;
    width: fit-content;
    text-wrap: nowrap;
  }
}
.btn {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 0 0 transparent;
}
.btn.primary {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247/var(--tw-bg-opacity));
}
.btn.primary {
  --tw-text-opacity: 1;
  color: rgb(31 56 67/var(--tw-text-opacity));
}
.btn.primary:hover {
  animation: 0.2s forwards;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 5px -5px;
  transform: translateY(-5px);
}
.btn.secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 247/var(--tw-bg-opacity));
}
.btn.secondary {
  --tw-text-opacity: 1;
  color: rgb(31 56 67/var(--tw-text-opacity));
}
.btn.secondary:hover {
  animation: 0.2s forwards;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 5px -5px;
  transform: translateY(-5px);
}
.btn.secondary.icon {
  padding-top: 16px;
  padding-bottom: 16px;
}
.btn.secondary.icon {
  padding-left: 36px;
}
.btn.secondary.icon {
  padding-right: 24px;
}
.btn.secondary.icon svg {
  fill: #f3f4f7;
}
.btn.orange {
  display: flex;
}
.btn.orange {
  align-items: center;
}
.btn.orange {
  justify-content: center;
}
.btn.orange {
  gap: 6px;
}
.btn.orange {
  --tw-bg-opacity: 1;
  background-color: rgb(216 122 95/var(--tw-bg-opacity));
}
.btn.orange {
  --tw-text-opacity: 1;
  color: rgb(31 56 67/var(--tw-text-opacity));
}
.btn.orange:hover {
  animation: 0.2s forwards;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 5px -5px;
  transform: translateY(-5px);
}
.btn.orange:disabled {
  cursor: pointer;
}
.btn.orange:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(216 211 216/var(--tw-bg-opacity));
}
.btn.orange:disabled {
  --tw-shadow-color: #2B4F5D;
  --tw-shadow: var(--tw-shadow-colored);
}
.btn.orange.icon {
  padding-top: 16px;
  padding-bottom: 16px;
}
.btn.orange.icon {
  padding-left: 36px;
}
.btn.orange.icon {
  padding-right: 24px;
}
.btn.orange.icon svg {
  fill: #fff;
}
.btn.clear {
  background-color: transparent;
}
.btn.clear {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
.btn.clear:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
}
.btn.clear.active {
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
}
.btn.clear.icon svg {
  fill: #f3f4f7;
}

.border-gradient {
  border: 1px solid transparent;
  background: linear-gradient(to bottom, white, white) padding-box, linear-gradient(to bottom, #d87a5f, rgba(255, 255, 255, 0)) border-box;
}

.gradient-calculator {
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 25.35%), linear-gradient(109deg, #FDFAFF 0%, #EDE5F4 100%);
}

.cf-grid {
  margin-bottom: 32px;
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .cf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.prevent-select {
  -webkit-user-select: none;
  /* Safari */
  /* IE 10 and IE 11 */
  -moz-user-select: none;
  user-select: none;
  /* Standard syntax */
}

.social-link svg {
  fill: #fff;
}

.social-link svg:hover {
  fill: #1f3843;
}

#menu.toggled {
  left: 0px;
  opacity: 1;
}

#menu {
  position: fixed;
  left: 100%;
  top: 0px;
  z-index: -10;
  display: flex;
  height: 100vh;
  width: 100vw;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
}

@media (min-width: 1280px) {
  #menu {
    position: relative;
    left: auto;
    top: auto;
    z-index: auto;
    height: auto;
    width: auto;
    flex-direction: row;
    background-color: transparent;
  }
}
button[collapsible]:hover:not(.active) {
  border-radius: 6px;
}
button[collapsible]:hover:not(.active) {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
}
button[collapsible]:hover:not(.active) {
  --tw-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.10), 0px 4px 10px 0px rgba(0, 0, 0, 0.04);
  --tw-shadow-colored: 0px 4px 34px 0px var(--tw-shadow-color), 0px 4px 10px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
button[collapsible] svg {
  fill: #fff;
}

.tab .answer {
  max-height: 0;
}

.tab button.active span {
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.description {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 40;
  max-height: 0px;
  width: 200px;
  overflow: hidden;
  border-radius: 6px;
  --tw-bg-opacity: 1;
  background-color: rgb(43 79 93/var(--tw-bg-opacity));
  opacity: 0;
  --tw-shadow: 0px 1px 32px 0px rgba(0, 0, 0, 0.06);
  --tw-shadow-colored: 0px 1px 32px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

@media not all and (min-width: 768px) {
  .description {
    --tw-translate-x: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
@media (min-width: 768px) {
  .description {
    top: 0px;
  }
}
h1 span, h4 span {
  font-weight: 700;
  line-height: 125%;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

p a[href="/ochrana-sukromia/"] {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
}
p a[href="/ochrana-sukromia/"]:hover {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
p a[href="/ochrana-sukromia/"]:hover {
  text-decoration-color: inherit;
}

.bank-offer {
  position: relative;
  z-index: 10;
  margin: 32px;
  border-radius: 6px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(216 211 216/var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(43 79 93/var(--tw-bg-opacity));
  padding: 32px;
  --tw-shadow: 0px 4px 39px 0px rgba(29, 0, 75, 0.11);
  --tw-shadow-colored: 0px 4px 39px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}
.bank-offer.selected {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247/var(--tw-border-opacity));
}
.bank-offer.selected::after {
  content: "Vybraná ponuka";
}
.bank-offer.selected::after {
  position: absolute;
}
.bank-offer.selected::after {
  top: 0px;
}
.bank-offer.selected::after {
  left: 32px;
}
.bank-offer.selected::after {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.bank-offer.selected::after {
  border-radius: 36px;
}
.bank-offer.selected::after {
  --tw-bg-opacity: 1;
  background-color: rgb(31 56 67/var(--tw-bg-opacity));
}
.bank-offer.selected::after {
  padding-left: 14px;
  padding-right: 14px;
}
.bank-offer.selected::after {
  padding-top: 4px;
  padding-bottom: 4px;
}
.bank-offer.selected::after {
  font-size: 14px;
  line-height: 160%;
}
.bank-offer.selected::after {
  line-height: 115%;
}
.bank-offer.selected::after {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
.bank-offer.selected table {
  pointer-events: none;
}

#the-content p, #the-content li {
  text-align: justify;
}
#the-content p, #the-content li {
  font-weight: 500;
}
#the-content strong {
  word-break: break-all;
}
#the-content h1 {
  margin-top: 12px;
  margin-bottom: 12px;
}
#the-content h1 {
  font-size: 22px;
}
#the-content h1 {
  font-weight: 700;
}
#the-content h1 {
  line-height: 125%;
}
@media (min-width: 768px) {
  #the-content h1 {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  #the-content h1 {
    font-size: 28px;
  }
}
#the-content h1 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
#the-content h2 {
  margin-top: 8px;
  margin-bottom: 8px;
}
#the-content h2 {
  font-size: 20px;
}
#the-content h2 {
  font-weight: 700;
}
#the-content h2 {
  line-height: 125%;
}
@media (min-width: 768px) {
  #the-content h2 {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  #the-content h2 {
    font-size: 24px;
  }
}
#the-content h2 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
#the-content h3 {
  margin-top: 8px;
  margin-bottom: 8px;
}
#the-content h3 {
  font-size: 20px;
}
#the-content h3 {
  font-weight: 700;
}
#the-content h3 {
  line-height: 125%;
}
@media (min-width: 768px) {
  #the-content h3 {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  #the-content h3 {
    font-size: 24px;
  }
}
#the-content h3 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
#the-content h4 {
  margin-top: 8px;
  margin-bottom: 8px;
}
#the-content h4 {
  font-size: 18px;
}
#the-content h4 {
  font-weight: 700;
}
#the-content h4 {
  line-height: 125%;
}
@media (min-width: 768px) {
  #the-content h4 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  #the-content h4 {
    font-size: 22px;
  }
}
#the-content h4 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}
#the-content h5 {
  margin-top: 8px;
  margin-bottom: 8px;
}
#the-content h5 {
  font-size: 16px;
}
#the-content h5 {
  font-weight: 700;
}
#the-content h5 {
  line-height: 125%;
}
@media (min-width: 768px) {
  #the-content h5 {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  #the-content h5 {
    font-size: 20px;
  }
}
#the-content h5 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

li {
  list-style-type: circle;
  list-style-position: inside;
}

p a {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

p a:hover {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

table tr {
  display: table-cell;
}

table tr td, table tr th {
  display: flex;
  justify-content: center;
  /* Horizontálne zarovnanie */
  align-items: center;
}

td {
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
  height: calc(1em + 26px);
  line-height: 1em;
}

th {
  border-right-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(216 211 216/var(--tw-border-opacity));
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
  height: calc(1em + 26px);
  line-height: 1em;
}

@media not all and (min-width: 1280px) {
  table {
    font-size: 12px;
    line-height: 160%;
  }
}
@media not all and (min-width: 768px) {
  table {
    font-size: 10px;
  }
}
@media not all and (min-width: 480px) {
  table {
    font-size: 8px;
  }
}
tr th:first-of-type, tr td:first-of-type {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(216 211 216/var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
}

tr th:nth-of-type(3), tr td:nth-of-type(3) {
  border-top-width: 1px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-top-color: rgb(243 244 247/var(--tw-border-opacity));
  border-bottom-color: rgb(243 244 247/var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
}

.scrollError {
  --tw-translate-y: -102%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

tr.bold td {
  font-weight: 700;
}

@media only screen and (max-width: 480px) {
  .bank-offer {
    margin: 20px;
    padding: 20px;
  }
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 100%) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 880px) {
  .container {
    max-width: 880px;
  }
}
@media (min-width: 1140px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1264px) {
  .container {
    max-width: 1264px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.left-1\/2 {
  left: 50%;
}

.right-0 {
  right: 0px;
}

.right-5 {
  right: 5px;
}

.top-0 {
  top: 0px;
}

.top-1\/2 {
  top: 50%;
}

.top-5 {
  top: 5px;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.col-auto {
  grid-column: auto;
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.m-0 {
  margin: 0px;
}

.m-10 {
  margin: 10px;
}

.m-16 {
  margin: 16px;
}

.m-20 {
  margin: 20px;
}

.m-auto {
  margin: auto;
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.mx-8 {
  margin-left: 8px;
  margin-right: 8px;
}

.my-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 1px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-18 {
  margin-bottom: 18px;
}

.mb-2 {
  margin-bottom: 2px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-28 {
  margin-bottom: 28px;
}

.mb-3 {
  margin-bottom: 3px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-8 {
  margin-bottom: 8px;
}

.me-0 {
  margin-inline-end: 0px;
}

.me-2 {
  margin-inline-end: 2px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-2 {
  margin-right: 2px;
}

.mr-50 {
  margin-right: 50px;
}

.ms-auto {
  margin-inline-start: auto;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-128 {
  margin-top: 128px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-36 {
  margin-top: 36px;
}

.mt-56 {
  margin-top: 56px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-1 {
  height: 1px;
}

.h-100 {
  height: 100px;
}

.h-16 {
  height: 16px;
}

.h-26 {
  height: 26px;
}

.h-60 {
  height: 60px;
}

.h-\[40px\] {
  height: 40px;
}

.h-\[56px\] {
  height: 56px;
}

.h-\[893px\] {
  height: 893px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.h-max {
  height: -moz-max-content;
  height: max-content;
}

.h-screen {
  height: 100vh;
}

.max-h-\[114px\] {
  max-height: 114px;
}

.min-h-\[590px\] {
  min-height: 590px;
}

.\!w-full {
  width: 100% !important;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-1\/5 {
  width: 20%;
}

.w-100 {
  width: 100px;
}

.w-120 {
  width: 120px;
}

.w-16 {
  width: 16px;
}

.w-32 {
  width: 32px;
}

.w-4\/5 {
  width: 80%;
}

.w-\[10\%\] {
  width: 10%;
}

.w-\[30\%\] {
  width: 30%;
}

.w-\[60\%\] {
  width: 60%;
}

.w-\[893px\] {
  width: 893px;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.w-max {
  width: -moz-max-content;
  width: max-content;
}

.w-screen {
  width: 100vw;
}

.min-w-\[480px\] {
  min-width: 480px;
}

.max-w-\[1000px\] {
  max-width: 1000px;
}

.max-w-\[140px\] {
  max-width: 140px;
}

.max-w-\[640px\] {
  max-width: 640px;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.grow {
  flex-grow: 1;
}

.grow-0 {
  flex-grow: 0;
}

.basis-1\/12 {
  flex-basis: 8.333333%;
}

.basis-11\/12 {
  flex-basis: 91.666667%;
}

.basis-3\/12 {
  flex-basis: 25%;
}

.basis-8\/12 {
  flex-basis: 66.666667%;
}

.table-auto {
  table-layout: auto;
}

.table-fixed {
  table-layout: fixed;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-\[-60\%\] {
  --tw-translate-x: -60%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.content-center {
  align-content: center;
}

.content-start {
  align-content: flex-start;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-items-start {
  justify-items: start;
}

.justify-items-end {
  justify-items: end;
}

.gap-10 {
  gap: 10px;
}

.gap-16 {
  gap: 16px;
}

.gap-2 {
  gap: 2px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-4 {
  gap: 4px;
}

.gap-40 {
  gap: 40px;
}

.gap-8 {
  gap: 8px;
}

.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(12px * (1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(12px * var(--tw-space-y-reverse));
}

.self-end {
  align-self: flex-end;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.text-nowrap {
  text-wrap: nowrap;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-6 {
  border-radius: 6px;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-l {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-r {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.rounded-tl-3xl {
  border-top-left-radius: 1.5rem;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-solid {
  border-style: solid;
}

.border-blue-300 {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253/var(--tw-border-opacity));
}

.border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246/var(--tw-border-opacity));
}

.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55/var(--tw-border-opacity));
}

.border-neutral-200 {
  --tw-border-opacity: 1;
  border-color: rgb(216 211 216/var(--tw-border-opacity));
}

.border-neutral-300 {
  --tw-border-opacity: 1;
  border-color: rgb(216 211 216/var(--tw-border-opacity));
}

.border-neutral-500 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 247/var(--tw-border-opacity));
}

.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165/var(--tw-border-opacity));
}

.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68/var(--tw-border-opacity));
}

.bg-\[\#140034\] {
  --tw-bg-opacity: 1;
  background-color: rgb(20 0 52/var(--tw-bg-opacity));
}

.bg-\[\#f6f0fa1a\] {
  background-color: rgba(246, 240, 250, 0.1019607843);
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246/var(--tw-bg-opacity));
}

.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219/var(--tw-bg-opacity));
}

.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55/var(--tw-bg-opacity));
}

.bg-neutral-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
}

.bg-primary-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(57 103 123/var(--tw-bg-opacity));
}

.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226/var(--tw-bg-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255/var(--tw-bg-opacity));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-primary-600 {
  --tw-gradient-from: #f3f4f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(243 244 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-gray-800 {
  --tw-gradient-to: #1f2937 var(--tw-gradient-to-position);
}

.fill-current {
  fill: currentColor;
}

.object-scale-down {
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.object-center {
  -o-object-position: center;
  object-position: center;
}

.p-0 {
  padding: 0px;
}

.p-10 {
  padding: 10px;
}

.p-12 {
  padding: 12px;
}

.p-14 {
  padding: 14px;
}

.p-16 {
  padding: 16px;
}

.p-2 {
  padding: 2px;
}

.p-24 {
  padding: 24px;
}

.p-4 {
  padding: 4px;
}

.p-6 {
  padding: 6px;
}

.p-8 {
  padding: 8px;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-1 {
  padding-left: 1px;
  padding-right: 1px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.px-14 {
  padding-left: 14px;
  padding-right: 14px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.px-18 {
  padding-left: 18px;
  padding-right: 18px;
}

.px-22 {
  padding-left: 22px;
  padding-right: 22px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.px-3 {
  padding-left: 3px;
  padding-right: 3px;
}

.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.px-4 {
  padding-left: 4px;
  padding-right: 4px;
}

.px-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.py-1 {
  padding-top: 1px;
  padding-bottom: 1px;
}

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-2 {
  padding-top: 2px;
  padding-bottom: 2px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-3 {
  padding-top: 3px;
  padding-bottom: 3px;
}

.py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-6 {
  padding-top: 6px;
  padding-bottom: 6px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-2 {
  padding-bottom: 2px;
}

.pb-26 {
  padding-bottom: 26px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-56 {
  padding-bottom: 56px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pe-0 {
  padding-inline-end: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-16 {
  padding-left: 16px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-4 {
  padding-left: 4px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-16 {
  padding-right: 16px;
}

.pr-2 {
  padding-right: 2px;
}

.pr-24 {
  padding-right: 24px;
}

.pr-32 {
  padding-right: 32px;
}

.pr-40 {
  padding-right: 40px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-1 {
  padding-top: 1px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-14 {
  padding-top: 14px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-2 {
  padding-top: 2px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 3px;
}

.pt-36 {
  padding-top: 36px;
}

.pt-4 {
  padding-top: 4px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-\[90px\] {
  padding-top: 90px;
}

.text-left {
  text-align: left;
}

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

.align-middle {
  vertical-align: middle;
}

.text-10 {
  font-size: 10px;
}

.text-12 {
  font-size: 12px;
}

.text-14 {
  font-size: 14px;
}

.text-20 {
  font-size: 20px;
}

.text-32 {
  font-size: 32px;
}

.text-9 {
  font-size: 9px;
}

.text-base {
  font-size: 16px;
  line-height: 160%;
}

.text-lg {
  font-size: 18px;
  line-height: 160%;
}

.text-sm {
  font-size: 14px;
  line-height: 160%;
}

.text-xl {
  font-size: 20px;
  line-height: 160%;
}

.text-xs {
  font-size: 12px;
  line-height: 160%;
}

.font-bold {
  font-weight: 700;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.leading-125 {
  line-height: 125%;
}

.leading-130 {
  line-height: 130%;
}

.leading-160 {
  line-height: 160%;
}

.leading-loose {
  line-height: 2;
}

.leading-none {
  line-height: 1;
}

.leading-normal {
  line-height: 1.5;
}

.tracking-normal {
  letter-spacing: 0em;
}

.text-\[\#cccccc\] {
  --tw-text-opacity: 1;
  color: rgb(204 204 204/var(--tw-text-opacity));
}

.text-error-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68/var(--tw-text-opacity));
}

.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgb(243 244 246/var(--tw-text-opacity));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175/var(--tw-text-opacity));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99/var(--tw-text-opacity));
}

.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55/var(--tw-text-opacity));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39/var(--tw-text-opacity));
}

.text-neutral-400 {
  --tw-text-opacity: 1;
  color: rgb(216 211 216/var(--tw-text-opacity));
}

.text-neutral-600 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.text-neutral-700 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.text-neutral-800 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.text-neutral-900 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.text-primary-400 {
  --tw-text-opacity: 1;
  color: rgb(216 211 216/var(--tw-text-opacity));
}

.text-primary-600 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.text-primary-700 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.text-primary-800 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.text-primary-900 {
  --tw-text-opacity: 1;
  color: rgb(243 244 247/var(--tw-text-opacity));
}

.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68/var(--tw-text-opacity));
}

.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38/var(--tw-text-opacity));
}

.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28/var(--tw-text-opacity));
}

.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27/var(--tw-text-opacity));
}

.text-secondary-900 {
  --tw-text-opacity: 1;
  color: rgb(255 249 246/var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.underline {
  text-decoration-line: underline;
}

.no-underline {
  text-decoration-line: none;
}

.decoration-dotted {
  text-decoration-style: dotted;
}

.decoration-2 {
  text-decoration-thickness: 2px;
}

.underline-offset-2 {
  text-underline-offset: 2px;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.shadow-circle {
  --tw-shadow: 0px 0px 250px 0px #340088 inset;
  --tw-shadow-colored: inset 0px 0px 250px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.shadow-elevation-2 {
  --tw-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.10), 0px 4px 10px 0px rgba(0, 0, 0, 0.04);
  --tw-shadow-colored: 0px 4px 34px 0px var(--tw-shadow-color), 0px 4px 10px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.shadow-header {
  --tw-shadow: 0px 4px 33px 0px #F6F1FB;
  --tw-shadow-colored: 0px 4px 33px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.shadow-sticky-box {
  --tw-shadow: 0px 4px 39px 0px rgba(29, 0, 75, 0.11);
  --tw-shadow-colored: 0px 4px 39px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.outline {
  outline-style: solid;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-0 {
  transition-duration: 0s;
}

.duration-200 {
  transition-duration: 200ms;
}

body {
  width: 100vw;
  text-align: center;
  font-family: source-sans;
  font-weight: 500;
  background-color: #1f3843;
}

section {
  margin: auto;
  display: block;
  text-align: left;
}

.htmx-indicator {
  display: none;
}

.modal.htmx-indicator {
  display: none;
}

.htmx-request .htmx-indicator {
  display: block;
  opacity: 1;
}

.htmx-request.htmx-indicator {
  display: block;
  opacity: 1;
}

.df-helpico {
  background-image: url("/PLR-3dBtiwo5Wt7o/help_icon_pleroma.png");
}

input[type=radio]:checked, input[type=checkbox]:checked {
  --tw-bg-opacity: 1;
  background-color: rgb(43 79 93/var(--tw-bg-opacity));
}

.hover\:border-blue-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253/var(--tw-border-opacity));
}

.hover\:border-blue-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246/var(--tw-border-opacity));
}

.hover\:border-red-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165/var(--tw-border-opacity));
}

.hover\:border-red-500:hover {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68/var(--tw-border-opacity));
}

.hover\:bg-gray-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175/var(--tw-bg-opacity));
}

.hover\:bg-gray-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55/var(--tw-bg-opacity));
}

.hover\:text-\[\#666666\]:hover {
  --tw-text-opacity: 1;
  color: rgb(102 102 102/var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255/var(--tw-text-opacity));
}

.hover\:no-underline:hover {
  text-decoration-line: none;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.disabled\:bg-gray-200:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235/var(--tw-bg-opacity));
}

@media not all and (min-width: 768px) {
  .max-md\:order-2 {
    order: 2;
  }
  .max-md\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .max-md\:mb-24 {
    margin-bottom: 24px;
  }
}
@media (min-width: 480px) {
  .xs\:mt-0 {
    margin-top: 0px;
  }
  .xs\:block {
    display: block;
  }
  .xs\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .xs\:flex-row {
    flex-direction: row;
  }
  .xs\:flex-col {
    flex-direction: column;
  }
  .xs\:justify-between {
    justify-content: space-between;
  }
  .xs\:gap-0 {
    gap: 0px;
  }
  .xs\:text-center {
    text-align: center;
  }
  .xs\:text-sm {
    font-size: 14px;
    line-height: 160%;
  }
}
@media (min-width: 640px) {
  .sm\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .sm\:inline {
    display: inline;
  }
  .sm\:h-60 {
    height: 60px;
  }
  .sm\:w-60 {
    width: 60px;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:pb-5 {
    padding-bottom: 5px;
  }
}
@media (min-width: 768px) {
  .md\:fixed {
    position: fixed;
  }
  .md\:relative {
    position: relative;
  }
  .md\:left-0 {
    left: 0px;
  }
  .md\:top-56 {
    top: 56px;
  }
  .md\:col-span-2 {
    grid-column: span 2/span 2;
  }
  .md\:m-0 {
    margin: 0px;
  }
  .md\:m-24 {
    margin: 24px;
  }
  .md\:mb-0 {
    margin-bottom: 0px;
  }
  .md\:mt-10 {
    margin-top: 10px;
  }
  .md\:mt-40 {
    margin-top: 40px;
  }
  .md\:block {
    display: block;
  }
  .md\:inline-block {
    display: inline-block;
  }
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:h-auto {
    height: auto;
  }
  .md\:w-2\/5 {
    width: 40%;
  }
  .md\:w-200 {
    width: 200px;
  }
  .md\:w-3\/5 {
    width: 60%;
  }
  .md\:w-48 {
    width: 48px;
  }
  .md\:w-full {
    width: 100%;
  }
  .md\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:flex-col {
    flex-direction: column;
  }
  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }
  .md\:content-start {
    align-content: flex-start;
  }
  .md\:border-t-2 {
    border-top-width: 2px;
  }
  .md\:p-14 {
    padding: 14px;
  }
  .md\:px-24 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .md\:px-40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .md\:py-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .md\:py-8 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .md\:pb-128 {
    padding-bottom: 128px;
  }
  .md\:pt-10 {
    padding-top: 10px;
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-14 {
    font-size: 14px;
  }
  .md\:text-base {
    font-size: 16px;
    line-height: 160%;
  }
  .md\:text-xs {
    font-size: 12px;
    line-height: 160%;
  }
  .md\:text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235/var(--tw-text-opacity));
  }
}
@media (min-width: 1024px) {
  .lg\:col-span-10 {
    grid-column: span 10/span 10;
  }
  .lg\:col-start-2 {
    grid-column-start: 2;
  }
  .lg\:mb-0 {
    margin-bottom: 0px;
  }
  .lg\:mb-15 {
    margin-bottom: 15px;
  }
  .lg\:mr-0 {
    margin-right: 0px;
  }
  .lg\:inline-block {
    display: inline-block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:h-12 {
    height: 12px;
  }
  .lg\:h-80 {
    height: 80px;
  }
  .lg\:w-1\/5 {
    width: 20%;
  }
  .lg\:w-16 {
    width: 16px;
  }
  .lg\:w-2\/5 {
    width: 40%;
  }
  .lg\:w-80 {
    width: 80px;
  }
  .lg\:cursor-pointer {
    cursor: pointer;
  }
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:flex-col {
    flex-direction: column;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:justify-between {
    justify-content: space-between;
  }
  .lg\:justify-items-center {
    justify-items: center;
  }
  .lg\:border-0 {
    border-width: 0px;
  }
  .lg\:border-solid {
    border-style: solid;
  }
  .lg\:p-0 {
    padding: 0px;
  }
  .lg\:p-20 {
    padding: 20px;
  }
  .lg\:px-32 {
    padding-left: 32px;
    padding-right: 32px;
  }
  .lg\:py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .lg\:pb-15 {
    padding-bottom: 15px;
  }
  .lg\:text-center {
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .xl\:hidden {
    display: none;
  }
  .xl\:flex-row {
    flex-direction: row;
  }
  .xl\:gap-64 {
    gap: 64px;
  }
  .xl\:pt-50 {
    padding-top: 50px;
  }
  .xl\:text-sm {
    font-size: 14px;
    line-height: 160%;
  }
}

/*# sourceMappingURL=main-fe.css.map */
