@font-face {
  font-family: Ubuntu-Regular;
  src: url(../css/ubuntu/Ubuntu-Regular.ttf);
}
@font-face {
  font-family: Ubuntu-Medium;
  src: url(../css/ubuntu/Ubuntu-Medium.ttf);
}
@font-face {
  font-family: Ubuntu-bold;
  src: url(../css/ubuntu/Ubuntu-bold);
}
@font-face {
  font-family: Ubuntu-Italic;
  src: url(../css/ubuntu/Ubuntu-Italic.ttf);
}
@font-face {
  font-family: Ubuntu-Light;
  src: url(../css/ubuntu/Ubuntu-Light.ttf);
}
div.modal-news {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(40, 44, 52, 0.74);
  transition: 1s ease-in;
  font-family: Ubuntu-Regular;
  color: #282C34;
  
}
div.modal-news.show-news{
  animation: scale-in-ver-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
div.modal-news.close-news{
  animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}
@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}
@-webkit-keyframes scale-in-ver-center {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes scale-in-ver-center {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
div.modal-news .modal-container {
  max-height: 90vh;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 30px 0 rgba(40, 44, 52, 0.25);
}
@media (max-width: 600px) {
  div.modal-news .modal-container {
    width: 90%;
  }
}
div.modal-news .modal-container-header {
  padding: 0px 32px;
  border-bottom: 1px solid #F3F0E7;
  display: flex;
  align-items: center;
  justify-content: center;
}
div.modal-news .modal-container-header .modal-container-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-weight: 700;
  font-size: 1.125;
}
div.modal-news .modal-container-header .modal-container-title svg {
  width: 32px;
  height: 32px;
  color: #FF914D;
}
div.modal-news .modal-container-header .modal-container-title img {
  width: 60px;
}
div.modal-news .modal-container-header .icon-button {
  padding: 0;
  border: 0;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
  left: 12em;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.15s ease;
}
div.modal-news .modal-container-header .icon-button svg {
  width: 24px;
  height: 24px;
}
div.modal-news .modal-container-header .icon-button:hover, div.modal-news .modal-container-header .icon-button:focus {
  background-color: #CACACA;
}

section.modal-container-body {
  padding: 24px 32px 51px;
  overflow-y: auto;
}
section.modal-container-body.rtf h1,
section.modal-container-body.rtf h2,
section.modal-container-body.rtf h3,
section.modal-container-body.rtf h4,
section.modal-container-body.rtf h5,
section.modal-container-body.rtf h6 {
  font-weight: 700;
}
section.modal-container-body.rtf h1 {
  font-size: 1.5rem;
  line-height: 1.125;
}
section.modal-container-body.rtf h2 {
  font-size: 1.25rem;
  line-height: 1.25;
}
section.modal-container-body.rtf h3 {
  font-size: 1rem;
  line-height: 1.5;
}
section.modal-container-body.rtf > * + * {
  margin-top: 1em;
}
section.modal-container-body.rtf > * + :is(h1, h2, h3) {
  margin-top: 2em;
}
section.modal-container-body.rtf > :is(h1, h2, h3) + * {
  margin-top: 0.75em;
}
section.modal-container-body.rtf ul,
section.modal-container-body.rtf ol {
  margin-left: 20px;
  list-style-position: inside;
}
section.modal-container-body.rtf ol {
  list-style: numeric;
}
section.modal-container-body.rtf ol li i:hover {
  color: #FF914D;
}
section.modal-container-body.rtf ul {
  list-style: disc;
}
section.modal-container-body.rtf p {
  text-align: justify;
}

footer.modal-container-footer {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
}
footer.modal-container-footer:after {
  content: "";
  display: block;
  position: absolute;
  top: -51px;
  left: 24px;
  right: 24px;
  height: 50px;
  flex-shrink: 0;
  pointer-events: none;
}
footer.modal-container-footer code {
  font-family: monospace !important;
  background-color: #CACACA;
  font-size: 10px;
}
footer.modal-container-footer .button {
  padding: 12px 20px;
  border-radius: 8px;
  background-color: transparent;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s ease;
  position: relative;
  z-index: 0;
}
footer.modal-container-footer .button.is-ghost:hover, footer.modal-container-footer .button.is-ghost:focus {
  background-color: #CACACA;
}
footer.modal-container-footer .button.is-primary {
  background-color: #FF914D;
  color: #FFFFFF;
}
footer.modal-container-footer .button.is-primary:hover, footer.modal-container-footer .button.is-primary:focus {
  background-color: #38B6FF;
  transition: 0.5s ease-out;
}

div.modal-news button,
div.modal-news input,
div.modal-news select,
div.modal-news textarea {
  font: inherit;
}
div.modal-news a {
  color: inherit;
}

div.modal-news ::-webkit-scrollbar {
  background-color: transparent;
  width: 12px;
}
div.modal-news ::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background-color: #F3F0E7;
  
}

ol li details {
  display: inline-block;
}
ol li details summary {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
ol li details summary .details-modal-overlay {
  transition: opacity 0.2s ease-out;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.8);
  position: fixed;
  opacity: 0;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1;
}
ol li details[open] div.info-show {
  animation: scale 0.25s ease;
  visibility: visible;
}
ol li details[open] summary .details-modal-overlay {
  pointer-events: all;
  opacity: 0.5;
  transition: 0.5s ease-in;
  visibility: visible;
}
ol li details div.info-show {
  position: relative;
  z-index: 2;
  bottom: 0.5rem;
  left: -20em;
  display: block;
}
ol li details div.info-show div.pop {
  background-color: #F3F0E7;
  box-shadow: 0 5px 10px rgba(40, 44, 52, 0.15);
  padding: 1.25rem;
  border-radius: 8px;
  width: 25em;
  left:12em;
  position: absolute;
  max-height: calc(100vh - 100px);
  max-width: calc(100vw - 2rem);
  bottom: calc(100% + 1rem);
  overflow: auto;
  transform-origin: 100% 100%;
  color: #282C34;
}
ol li details div.info-show div.pop::-webkit-scrollbar {
  width: 5px !important;
  background-color: #CACACA !important;
}
ol li details div.info-show div.pop::-webkit-scrollbar-thumb {
  width: 2.5px;
  border-radius: 99em;
  background-color: #282C34 !important;
  
}
ol li details div.info-show div.pop > * + * {
  margin-top: 0.75em;
}
ol li details div.info-show div.pop p > code {
  font-size: 1rem;
  font-family: monospace;
}
ol li details div.info-show div.pop img {
  width: 25em;
}
ol li details div.info-show div.pop pre {
  white-space: pre-line;
  border: 1px solid #CACACA;
  border-radius: 6px;
  font-family: monospace;
  padding: 0.75em;
  font-size: 0.875rem;
  color: #282C34;
}
ol li details div.info-show div.pop pre code img {
  width: 22em;
}
ol li details div.info-show div.pop .details-modal-close {
  align-items: center;
  color: #111827;
  display: flex;
  height: 4.5em;
  justify-content: center;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.5em;
}
ol li details div.info-show div.pop .details-modal-close .close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  height: 16px;
  text-decoration: none;
  width: 16px;
}
ol li details div.info-show div.pop .details-modal-close .close svg {
  width: 16px;
}
@keyframes scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=modal.css.map */