@font-face {
  font-family: 'Tintin';
  src: url('../fonts/TintinBold.woff2') format('woff2'),
      url('../fonts/TintinBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hey Comic';
  src: url('../fonts/HeyComic.woff2') format('woff2'),
      url('../fonts/HeyComic.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-ExtraBold.woff2') format('woff2'),
      url('../fonts/DIN2014-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-DemiBold.woff2') format('woff2'),
      url('../fonts/DIN2014-DemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-DemiBoldItalic.woff2') format('woff2'),
      url('../fonts/DIN2014-DemiBoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-BoldItalic.woff2') format('woff2'),
      url('../fonts/DIN2014-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-Bold.woff2') format('woff2'),
      url('../fonts/DIN2014-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-Italic.woff2') format('woff2'),
      url('../fonts/DIN2014-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-ExtraLight.woff2') format('woff2'),
      url('../fonts/DIN2014-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-ExtraLightItalic.woff2') format('woff2'),
      url('../fonts/DIN2014-ExtraLightItalic.woff') format('woff');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-ExtraBoldItalic.woff2') format('woff2'),
      url('../fonts/DIN2014-ExtraBoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-Light.woff2') format('woff2'),
      url('../fonts/DIN2014-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-LightItalic.woff2') format('woff2'),
      url('../fonts/DIN2014-LightItalic.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DIN 2014';
  src: url('../fonts/DIN2014-Regular.woff2') format('woff2'),
      url('../fonts/DIN2014-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


.font-tintin {
  font-family: 'Tintin' !important; 
}
.font-hey-commic{
  font-family: 'Hey Comic' !important; 
}
.font-din-2014{
  font-family: 'DIN 2014'!important; 
}
[x-cloak] { display: none; }
html, body {
    height: 100%;
    min-height:100vh;
    width: 100%;
    margin: 0;
    padding: 0;
  }
 
  .ce-block__content, .ce-toolbar__content { max-width:calc(100% - 40px) !important; } .cdx-block { max-width: 100% !important; }

  h2.ce-header{
    font-weight: 600;
    font-size: x-large;
  }
  h3.ce-header{
    font-weight: 400;
    font-size: x-large;
  }
  h4.ce-header{
    font-weight: 600;
    font-size: large;
  }
  h5.ce-header{
    font-weight: 500;
    font-size: large;
  }
  pre.code{
      background: #303030;
      color: #f1f1f1;
      padding: 10px 16px;
      border-radius: 2px;
      border-top: 4px solid #00aeef;
      -moz-box-shadow: inset 0 0 10px #000;
      box-shadow: inset 0 0 10px #000;
  }

 /* Panel style */
 .accordion .accordion-container .accordion-panel {
  width: 100%;
  color: #262626;

  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;

  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

/* Panel style when active */
.accordion .accordion-container.active .accordion-panel {
  opacity: 1;
  height: auto;
  max-height: 500px;

  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;

  
}
.accordion .accordion-container.active{
  /*background-color:#312e81;*/
  background-color:#374151;
}
.accordion .accordion-container.active > .accordion-btn{
  /*background-color:#4F46E5;*/
  background-color:#4B5563;
}
.accordion .accordion-container.active > .accordion-btn > i{
  transition: all 0.15s ease-in-out;
}

#sidebar{
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;    
transition: all 0.5s ease-in-out;
}

#hero{
  background-color: #f4e7d7;
}
#hill-shape-gradient {
  --color-stop: #f4bf4f;
  --color-bot: #d47725;
}
#hill{
  stroke: none;
  fill: url(#hill-shape-gradient) #fff;
  background: rgb(212,119,37);
  background: -moz-linear-gradient(3deg, rgba(212,119,37,1) 0%, rgba(247,172,66,1) 49%, rgba(244,191,79,1) 100%);
  background: -webkit-linear-gradient(3deg, rgba(212,119,37,1) 0%, rgba(247,172,66,1) 49%, rgba(244,191,79,1) 100%);
  background: linear-gradient(3deg, rgba(212,119,37,1) 0%, rgba(247,172,66,1) 49%, rgba(244,191,79,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d47725",endColorstr="#f4bf4f",GradientType=1);
}

.animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

.dialog-wrapper{
  display: none;
}

.transition-public-page {
  animation: fadeInAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
      /* -webkit-transform: translateX(100%); */
      /* overflow-x: hidden; */
  }
  100% {
      opacity: 1;
      /* overflow-x: hidden; */
   }
}

.bg-soft-danger {
  background-color: #f4433521;
}

.bg-yellow-light {
  background-color: rgb(241, 200, 85);
}

.bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(254,243,199,var(--tw-bg-opacity));
}

.bg-yellow-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(253,230,138,var(--tw-bg-opacity));
}

.bg-cream-light {
  --tw-bg-opacity: 1;
  background-color: rgba(255,251,235,var(--tw-bg-opacity));
}


button:focus {
  outline: none;
}


.json-data {
  font-family: "Courier New", monospace;
  background-color: #f4f4f4;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.json-display-container {
  overflow-x: auto; /* Enable horizontal scrolling when needed */
  max-width: 100%; /* Limit the maximum width to the container's width */
  border-radius: 5px;
}

/* Style for the JSON data */
pre {
  white-space: pre-wrap; /* Allow wrapping within the <pre> element */
  font-family: "Courier New", monospace;
}

.ring-cyan-300 {
  --tw-ring-color: rgb(103 232 249) !important;
}

.ring-cyan-800 {
  --tw-ring-color: rgb(21 94 117) !important;
}

.bg-cyan-600 {
  background-color: rgb(6 182 212) !important;
}

.bg-cyan-700 {
  background-color: rgb(14 116 144) !important;
}

.bg-cyan-800:hover {
  background-color: rgb(21 94 117) !important;
}

.custom-simple-notify-setting {
}

.bg-yellow {
  background-color: #F8DE22 !important;
}

.custom-hanging-indent {
  text-indent: -21px;
  margin-left: 18px;
}

.tintin-input {
  margin-bottom: 20px;
  margin-top: 5px;
  background-color: floralwhite;
}
.tintin-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #9ca3af;
  padding: 2px;
}
.tintin-label {
  font-family: "Tintin", sans-serif;
}

.avatar {
  font-size: 1rem;
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: .375rem;
  background-color: #adb5bd;
  align-items: center;
  justify-content: center
}

.thumbnail-zoom:hover {
  position: relative;
  top: 0px;
  left: 0px;
  width: 200px;
  height: auto;
  z-index: 999;
  transition: width 0.15s;
  transition-timing-function: ease;
}

/****** CODE ******/

.file-upload {
  display: block;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.file-upload .file-select {
  display: block;
  border: 2px solid #dce4ec;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}

.file-upload .file-select .file-select-button {
  background: #dce4ec;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}

.file-upload .file-select .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}

.file-upload .file-select:hover {
  border-color: #34495e;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.file-upload .file-select:hover .file-select-button {
  background: #34495e;
  color: #FFFFFF;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.file-upload.active .file-select {
  border-color: #3fa46a;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.file-upload.active .file-select .file-select-button {
  background: #3fa46a;
  color: #FFFFFF;
  transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
}

.file-upload .file-select input[type=file] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}

.file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #dce4ec;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin-top: 5px;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}

.file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}

.file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}

.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}


.text-cyan {
  color: rgb(6 182 212) !important;
}

.bg-purple {
  background-color: rgb(147 51 234) !important;
}

.bg-red-700 {
  background-color: rgb(200 30 30) !important;
}

.text-purple {
  color: rgb(147 51 234) !important;
}

.badge-light-blue {
  color: #0174BE !important;
  background-color: #A0E9FF !important;
}

.badge-cyan {
  color: #f4f4f4 !important;
  background-color: rgb(6 182 212) !important;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.dataTable-top {
  display: flex;
  align-items: flex-end !important;
}

.dataTable-search {
  margin-left: auto !important;
}

.select2-results__options li {
  font-size: 0.85rem !important;
}

.iti-mobile .iti--container {
  top: 70% !important;
}


.loader {
  width: 18px;
  height: 18px;
  border: 2px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  }

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


  /* Root element */
.json-document {
  padding: 1em 2em;
}

/* Syntax highlighting for JSON objects */
ul.json-dict, ol.json-array {
  list-style-type: none;
  margin: 0 0 0 1px;
  border-left: 1px dotted #ccc;
  padding-left: 2em;
}
.json-string {
  color: #0B7500;
}
.json-literal {
  color: #1A01CC;
  font-weight: bold;
}

/* Toggle button */
a.json-toggle {
  position: relative;
  color: inherit;
  text-decoration: none;
}
a.json-toggle:focus {
  outline: none;
}
a.json-toggle:before {
  font-size: 1.1em;
  color: #c0c0c0;
  content: "\25BC"; /* down arrow */
  position: absolute;
  display: inline-block;
  width: 1em;
  text-align: center;
  line-height: 1em;
  left: -1.2em;
}
a.json-toggle:hover:before {
  color: #aaa;
}
a.json-toggle.collapsed:before {
  /* Use rotated down arrow, prevents right arrow appearing smaller than down arrow in some browsers */
  transform: rotate(-90deg);
}

/* Collapsable placeholder links */
a.json-placeholder {
  color: #aaa;
  padding: 0 1em;
  text-decoration: none;
}
a.json-placeholder:hover {
  text-decoration: underline;
}

.button {
  min-width: 300px;
  min-height: 60px;
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: #fca333;
  background: linear-gradient(90deg, #fb8c00 0%, #fc9d26 100%);
  border: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px;
}

.button::before {
  content: '';
  border-radius: 0.5rem;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.button:hover,
.button:focus {
  color: #fff;
  transform: translateY(-6px);
}

.button:hover::before,
.button:focus::before {
  opacity: 1;
}

.button::after {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 6px solid #fb8c00;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.button:hover::after,
.button:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }

  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.hsmllr {
  font-size: 1.15rem !important;
}

.sidebar-admin li.active>a:not([data-toggle=collapse]) {
  background-image: linear-gradient(195deg, #ED9F2F 0%, #ED9F2F 100%) !important ;
}
.sidebar-admin .nav-link i {
  font-size: 1rem !important;
}

.note-editor.note-airframe.fullscreen,.note-editor.note-frame.fullscreen {
  background-color: #f5f5f5;
}

.me-0\.1 {
  margin-right: 0.1rem !important;
}