::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color-neutral-300);
  opacity: 1; /* Firefox */
  font-variation-settings: "wght" 300, "dots" 3;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color-neutral-300);
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--color-neutral-300);
}

mark {
  background-color: unset;
  font-variation-settings: var(--font-var-seting-bold);
}

#search-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  margin: 0 auto;
}

#search-container > img {
  width: 300px;
  max-width: 90%;
  margin: 10% auto 0 auto;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

input {
  border: none;
  border-radius: 8px;
  outline: none;
  height: 48px;
  padding: 0 12px;
  width: auto;
}

#search {
  margin: 0 auto auto auto;
  display: flex;
  flex-direction: column;
  max-width: 90%;
  width: 500px;
  border: 1px solid var(--color-neutral-200);
  border-radius: 8px;
  transition: all 0.5s ease-in-out;
  z-index: 20000;
  background: #fff;
}

#search:focus-within {
  border: 1px solid transparent;
  box-shadow: 0px 0px 6px rgba(0, 67, 105, 0.4);
}

#search #search-ico {
  width: 32px;
  height: 48px;
  margin-bottom: -48px;
  padding-right: 12px;
}

#search svg {
  width: 26px;
  height: 48px;
  margin-bottom: -48px;
  margin-right: 12px;
}

#search-box {
  height: 48px;
}

#search-box.loading {
  background-image: url('data:image/svg+xml,<svg version="1.1" id="L9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 100 100" enable-background="new 0 0 0 0" xml:space="preserve"> <path fill="%2370c542" d="M100,50c0-27.6-22.4-50-50-50S0,22.4,0,50 M8.5,50C8.5,27.2,27,8.5,50,8.5S91.5,27.2,91.5,50" > <animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="1s" from="0 50 50" to="360 50 50" repeatCount="indefinite" /> </path></svg>') !important;
}

/* width */
#srchResult::-webkit-scrollbar {
  width: 4px !important;
}

/* Track */
#srchResult::-webkit-scrollbar-track {
  background: transparent !important;
}

/* Handle */
#srchResult::-webkit-scrollbar-thumb {
  background: #888 !important;
  border-radius: 12px !important;
}

/* Handle on hover */
#srchResult::-webkit-scrollbar-thumb:hover {
  background: #555 !important;
}

#srchResult {
  position: relative;
  overflow-y: auto;
  max-height: 40vh;
  right: 0;
  left: 0;
  border-radius: 0 0 8px 8px;
}

.searchResult {
  display: grid;
  grid-template-columns: 3px 32px 1fr max-content;
  column-gap: 15px;
  padding: 10px;
  padding-right: 0;
  width: 100%;
  color: inherit;
}

.searchResult .updateDate {
  display: flex;
  line-height: 1;
  align-self: center;
  background: #ffb400;
  grid-row: 1/2;
  grid-column: 6/7;
  width: fit-content;
  height: fit-content;
  margin: 0;
  padding: 3px;
  padding-top: 5px;
  border-radius: 5px;
  color: #1d1d1d;
  font-variation-settings: var(--font-var-seting-600);
  font-size: 12px !important;
}

.searchResult .updateDate img {
  height: 11px;
  width: 19px;
  padding: 0;
  padding-right: 6px;
  padding-left: 2px;
  margin-top: -4px;
}

.searchResult:hover div {
  width: 3px;
  background-color: var(--blue);
  border-radius: 10px;
  grid-row: 1/3;
}

.noResult {
  display: flex;
  padding: 0 12px;
  gap: 10px;
}

@media (hover: hover) {
  .searchResult:hover {
    background-color: #f3f5f9;
    cursor: pointer;
  }
}

#srchResult > div:first-of-type {
  border: none;
}

#search:focus-within > .line {
  margin: 0;
  border: 1.5px solid #f3f3f3;
}

.line {
  border-top: 1px solid #f3f3f3;
  margin: 0 20px;
}

#search.noChild .line {
  border: none;
}

.searchResult p {
  margin: 0;
  grid-column: 3/4;
  font-size: var(--small-font) !important;
}

.searchResult p:first-of-type {
  font-feature-settings: "ss01";
}

.searchResult img {
  grid-column: 2/3;
  grid-row: 1/-1;
  width: 44px;
  align-self: center;
  justify-self: center;
  padding: 3px;
}

.process-info {
  color: var(--color-neutral-500);
}

.tree-title {
  grid-row: 1/2;
  align-self: center;
}

#shortcut-section {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0px;
  width: 90%;
  margin-bottom: 45px;
  height: fit-content;
}

#shortcut {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: fit-content;
  width: max-content;
  row-gap: 50px;
  column-gap: 20px;
  margin: auto;
  width: 1300px;
}

#shortcut a {
  width: 100%;
}

@media (max-width: 1100px) {
  #shortcut {
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 10px;
  }

  #shortcut a {
    width: 100%;
  }

  #shortcut > a > img {
    height: 90px !important;
    width: auto;
    margin-top: auto !important;
    margin-bottom: 2px;
  }
}

body {
  display: grid;
}

#manual-shortcut {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 20px;
  white-space: nowrap;
  width: 310px;
  height: 100px;
  border-radius: 8px;
  justify-self: center;
  color: #fff;
  background: radial-gradient(
    50.32% 156% at 80.65% 46%,
    #74b0ff 0%,
    #1a73e8 100%
  );
  padding-right: 20px;
}

#catalog-shortcut {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 20px;
  white-space: nowrap;
  width: 310px;
  height: 100px;
  border-radius: 8px;
  justify-self: center;
  color: #fff;
  background: radial-gradient(
    50.32% 156% at 80.65% 46%,
    rgb(22, 207, 146) 0%,
    rgb(4, 159, 108) 100%
  );
  padding-right: 20px;
}

#compare-shortcut {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 20px;
  white-space: nowrap;
  width: 310px;
  height: 100px;
  border-radius: 8px;
  justify-self: center;
  color: #fff;
  background: radial-gradient(
    50.32% 156% at 80.65% 46%,
    rgb(131, 176, 226) 0%,
    #6186b6 100%
  );
}

#quick-access {
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 20px;
  white-space: nowrap;
  width: 310px;
  height: 100px;
  border-radius: 8px;
  justify-self: center;
  color: #fff;
  background: radial-gradient(
    50.32% 156% at 80.65% 46%,
    rgb(255, 145, 0) 0%,
    #ff5e00 100%
  );
}

#compare-shortcut img {
  margin-right: 0;
}

#shortcut > a > img {
  margin-top: -35px;
  height: 130px;
  transition: all 0.3s ease;
}

#manual-title {
  width: max-content;
  width: 100%;
  padding-left: 20px;
  text-align: left;
  align-self: center;
  margin: 0;
}

#manual-title span,
#manual-title span img {
  height: 30px;
  margin-bottom: -15px;
}

#shortcut .mob-click {
  display: none;
}

#shortcut .mob-click-s {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  #shortcut > a:hover > img {
    margin-top: -45px;
  }
}

@media (max-width: 550px) {
  #shortcut {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  #compare-shortcut {
    grid-column: unset;
    background: #6186b6;
  }

  #manual-title {
    padding-left: 0px;
  }

  #shortcut a {
    height: auto;
    width: 100%;
    display: flex;
    padding: 10px 10px;
  }

  #catalog-shortcut {
    background: rgb(4, 159, 108);
  }

  #shortcut-section {
    width: 95%;
  }

  #manual-shortcut {
    background: #1a73e8;
  }

  #quick-access {
    background: #ff5e00;
  }

  #shortcut a > img {
    display: none;
  }

  #shortcut .mob-click-s {
    display: block;
  }

  #shortcut .mob-click-s img {
    margin-bottom: 0 !important;
  }

  #shortcut a > div span:last-of-type {
    display: none;
  }

  #shortcut a > div {
    width: 100%;
  }

  #shortcut a > div p {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    height: 30px;
  }

  #shortcut a > div p br {
    display: none;
  }
}

@media (max-width: 375px) {
  #shortcut > a img {
    display: none;
  }
}

@media (max-width: 295px) {
  #shortcut {
    grid-template-columns: 1fr;
  }
  #shortcut > a .mob-click-s img {
    display: block;
  }
}

@media (max-width: 180px) {
  #shortcut > a .mob-click-s img {
    display: none;
  }
}

header {
  z-index: 30000;
}

#login-nav {
  display: flex;
  position: relative;
  top: 10px;
  right: auto;
  margin-left: 10px;
  margin-right: auto;
  width: fit-content;
  height: 46px;
  border: 1px solid transparent;
  z-index: 100;
}

#login-nav > a {
  display: flex;
  color: #fff;
  background: #1a73e8;
  border: 1px solid #1a73e8;
  border-radius: 8px;
  padding: 0;
  transition: all 0.3s ease;
  width: fit-content;
  align-items: center;
  cursor: pointer;
  height: 44px;
}

#login-nav > a.loged-in {
  color: #555;
  border: 1px solid transparent;
  background: #fff;
}

#user-info {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 44px;
  width: 250px;
  left: 0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f1f1;
  align-items: center;
}

#user-info a {
  display: flex;
  column-gap: 10px;
  width: 100%;
  align-items: center;
  color: #555;
  padding: 10px;
  font-size: var(--font-size-base) !important;
}

#user-info a:last-of-type {
  padding-bottom: 15px;
}

#user-info a span {
  font-size: var(--font-size-base) !important;
}

#user-info #username {
  display: flex;
  font-size: var(--font-size-base);
  column-gap: 10px;
  width: 100%;
  height: 58px;
  align-items: center;
  color: #555;
  padding: 10px;
}

#divider {
  border-bottom: 1px solid #f1f1f1;
  height: 1px;
  width: 100%;
}

#login-nav.show-login #user-info {
  display: flex;
}

@media (hover: hover) and (pointer: fine) {
  #login-nav:hover > a {
    background: #fff;
    color: #555;
    border: 1px solid transparent;
  }

  #login-nav:hover {
    overflow: unset;
    height: fit-content;
    border: 1px solid transparent;
    border-radius: 8px;
  }

  #user-info a:hover {
    background-color: #f1f1f1;
  }
}

@media (max-width: 640px) {
  header a {
    font-size: 13px;
    height: 40px;
  }

  #search-container > img {
    margin-top: 70px;
  }
}

#login-nav.disabled-link {
  pointer-events: none;
  border: none !important;
  color: #888 !important;
  background-color: #d5d5d5;
}

.circular-loader {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.loader-path {
  stroke-dasharray: 150, 200;
  stroke-dashoffset: -10;
  -webkit-animation: dash 1.5s ease-in-out infinite,
    color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@-webkit-keyframes color {
  0% {
    stroke: #70c542;
  }
  40% {
    stroke: #70c542;
  }
  66% {
    stroke: #70c542;
  }
  80%,
  90% {
    stroke: #70c542;
  }
}
@keyframes color {
  0% {
    stroke: #70c542;
  }
  40% {
    stroke: #70c542;
  }
  66% {
    stroke: #70c542;
  }
  80%,
  90% {
    stroke: #70c542;
  }
}

#internet {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-height: fit-content;
  text-align: center;
  top: 10px;
  background: rgb(255, 136, 0);
  padding: 10px;
  border-radius: 6px;
  color: #fff;
  margin: 0 auto;
  max-width: 95%;
  width: 500px;
  z-index: 1000;
  opacity: 0;
}

#logo-canvas {
  position: initial;
  display: flex;
  margin: auto auto 0 auto;
  max-width: 250px !important;
  height: auto !important;
}

#main-logo {
  height: 355px;
}

#logo-container {
  position: relative;
  padding-top: 200px;
  height: auto !important;
  left: 0;
  right: 0;
  width: auto !important;
}

#dom_overlay_container {
  height: 0 !important;
  width: 0 !important;
}

@media (max-width: 440px) {
  #logo-canvas {
    max-width: 60% !important;
    height: fit-content !important;
    margin-top: 0;
  }

  #logo-container {
    padding-top: calc(20vw + 30px);
    width: auto !important;
    height: fit-content !important;
    left: 0;
    right: 0;
  }

  #main-logo {
    height: auto;
    padding-bottom: 15px;
    /* margin-bottom: 80px */
  }
}

footer {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: #f0f0f0;
  padding: 5px 0;
}

footer * {
  color: #103a68;
  font-size: 13px !important;
}

footer p {
  text-align: center;
  font-size: 13px !important;
  width: 95%;
  margin: auto;
}

@media (max-width: 475px) {
  footer *,
  footer p {
    font-size: 10px !important;
  }

  #shortcut-section {
    margin-bottom: 35px;
  }
}

@media (max-width: 365px) {
  #shortcut-section {
    margin-bottom: 52px;
  }
}

@media (max-width: 195px) {
  footer {
    display: none;
  }
  #shortcut-section {
    margin-bottom: 10px;
  }
}