.hidden {
  display: none;
}

header .navbar .navbar-brand .logo {
  width: 80px;
}

@media (max-width: 991px) {
  header .navbar-brand .logo {
    width: 80px !important;
  }
}

@media only screen and (max-width: 768px) {
  .hidden-xs {
    display: none !important;
  }
}

.dropdown_full .dropdown-menu .dropdown_menu_nav {
  justify-content: center;
}

.dropdown_full .dropdown-menu .dropdown_menu_nav .item_colume {
  width: calc(100% / 3) !important;
}

.pt_banner_inner {
  padding-top: 6rem;
}

.header_content {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #165df5;
  padding: 5rem 2rem;
  color: #ffffff;
}

.header_content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg-cubic.svg);
  opacity: 0.12;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 16% 20%;
  z-index: 0;
  pointer-events: none;
}

.header_content .breadcrumb .breadcrumb-item a,
.header_content .breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff;
}

.contact_six .scoail__media a:hover {
  background-color: #165df5;
}

section .vertical_menu {
  border-radius: 12px;
  background-color: #001638;
  width: 100%;
  display: grid;
  /* align-items: center; */
  position: relative;
  overflow: auto;
  color: #ffffff;
  padding: 3rem;
}

section .vertical_menu ul {
  list-style: none;
  padding: 0;
}

section .vertical_menu ul li a {
  color: #ffffff;
}

section .vertical_menu ul li a.active {
  color: #007aff;
}

section .vertical_menu ul li a:hover {
  color: #ffffff;
  padding-left: 0.3rem;
}

section .vertical_menu label {
  font-size: 10px;
  color: #6c7a87;
  text-transform: uppercase;
}

.help-tooltip {
  position: absolute;
  color: #17e79b;
  background-color: rgba(23, 231, 155, 0.1);
  padding: 4px 8px;
  border-radius: 100%;
  font-size: 10px;
  cursor: help;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 5px;
}

.help-tooltip::before,
.help-tooltip::after {
  position: absolute;
  opacity: 0;
  display: none;
  transition: all ease 0.3s;
}

.help-tooltip::before {
  content: "";
  border-width: 10px 8px 0 8px;
  border-style: solid;
  border-color: rgba(23, 231, 155, 0.5) transparent transparent transparent;
  top: -20px;
  margin-left: -8px;
}

.help-tooltip::after {
  content: attr(data-tooltip);
  color: #333333;
  background-color: rgba(23, 231, 155, 0.7);
  top: -20px;
  transform: translateY(-100%);
  font-size: 14px;
  margin-left: -150px;
  width: 300px;
  border-radius: 10px;
  padding: 14px;
}

.help-tooltip:hover::before,
.help-tooltip:hover::after {
  opacity: 1;
  left: 50%;
  display: block;
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  .help-tooltip {
    display: none;
  }
}

.tabset>input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.tabset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),
.tabset>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),
.tabset>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),
.tabset>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5),
.tabset>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6) {
  display: block;
}

.tabset>label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}

.tabset>label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: #8d8d8d;
}

input:focus-visible+label {
  outline: 2px solid rgba(0, 102, 204, 1);
  border-radius: 3px;
}

.tabset>label:hover,
.tabset>input:focus+label,
.tabset>input:checked+label {
  color: #06c;
}

.tabset>label:hover::after,
.tabset>input:focus+label::after,
.tabset>input:checked+label::after {
  background: #06c;
}

.tabset>input:checked+label {
  border-color: #ccc;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
}

.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}

.hljs-copy {
  float: right;
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 15px;
}

pre.error {
  border: 2px solid red;
}

pre.error:before {
  content: "This block has invalid value.";
  background: #f00;
  color: #fff;
  display: block;
}

/* 
pre {
  background-color: #333333;
  padding: 20px;
  border-radius: 15px;
}

ul {
  padding: 0px;
  margin: 0px;
}
ul ul, ul li {
  padding: 0px;
  margin: 0px;
  min-width: 200px;
}
ul.jsonView {
  font-family: monospace;
  border: 1px solid black;
  display: inline-block;
}

ul.jsonView .json-key {
  color: #0cb50c;
}

ul.jsonView .json-string {
  color: #f00;
}

ul.jsonView .json-number {
  color: #00f;
}
*/

ul.jsonView {
  margin-top: 1rem;
}

ul.jsonView li::marker {
  display: none;
  content: "";
}

ul.jsonView a {
  display: inline-block;
}

ul.jsonView a span {
  float: left;
  margin-right: 5px;
}

ul.jsonView .json-key:after {
  content: ":";
}

ul.jsonView .json-string:before,
ul.jsonView .json-string:after {
  content: '"';
}

ul.jsonView ul.json-array li,
ul.jsonView ul.json-object li {
  list-style: none;
  margin: 5px 25px;
}

ul.jsonView ul.json-array:before,
ul.jsonView ul.json-object:before {
  content: "[";
}

ul.jsonView ul.json-array:after,
ul.jsonView ul.json-object:after {
  content: "]";
}

ul.jsonView ul.is-object:before {
  content: "{";
}

ul.jsonView ul.is-object:after {
  content: "}";
}

ul.jsonView .json-collapsible span.expander:before {
  content: "+";
  display: inline-block;
  float: left;
  margin-right: 3px;
  cursor: pointer;
}

ul.jsonView .json-collapsible.collapsed {
  display: block;
}

ul.jsonView .json-collapsible.collapsed .is-object li {
  display: none;
}

ul.jsonView .json-collapsible.collapsed .is-object:before {
  content: "{..." !important;
}

ul.jsonView .json-collapsible.collapsed .json-array li {
  display: none;
}

ul.jsonView .json-collapsible.collapsed .json-array:before {
  content: "[..." !important;
}

.initials-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff;
  border: 2px solid #F0EFF5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  text-transform: capitalize;
}

#comment .item-comment {
  margin-top: 10px;
  margin-left: 20px;
  border: 2px solid #f0eff5;
  border-radius: 10px !important;
  padding: 0 10px 10px 10px;
}

#comment .item-comment p {
  margin-bottom: .5rem;
}

#comment .media {
  gap: 8px;
  align-items: center;
  justify-content: center;
}

#comment .media img {
  max-height: 40px;
  border: 2px solid #f0eff5;
  border-radius: 50%;
}

#comment .comment-container {
  position: relative;
}

#comment .comment-container:first-of-type>.comment-line:first-of-type {
  top: -15%;
}

#comment .comment-line {
  position: absolute;
  top: -150%;
  bottom: 50%;
  left: -20px;
  width: 20px;
  border-left: 2px solid #F0EFF5;
  border-bottom: 2px solid #F0EFF5;
  border-bottom-left-radius: 20px;
}

:root {
  --columns: 1fr;
  --gap: 1.5rem;
}

@media (min-width: 20em) {
  :root {
    --columns: 1fr 1fr;
    --gap: 1rem;
  }
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

[class^="btns_cnt"] {
  display: grid;
  grid-gap: var(--gap);
  grid-template-columns: var(--columns);
  justify-content: center;
  max-width: 330px;
  margin: 0 auto;
  padding: 1rem 0;
}

[class^="dwnld_lnk"] {
  background-color: #000;
  border-radius: 4px;
  box-shadow: 0 .25em .25em rgba(0, 0, 0, .3);
  transition: all 0.3s ease-out;
  display: block;
  margin: 0 auto;
  text-decoration: none;
}

[class^="dwnld_lnk"]:hover,
[class^="dwnld_lnk"]:focus {
  transform: scale(1.1);
  box-shadow: 0 .35em .35em rgba(0, 0, 0, .4);
}

[class^="dwnld_img"] {
  display: block;
  margin: 0 auto;
  width: 135px;
  height: 40px;
}

:root[class^="os_"] .btns_cnt-downloads {
  --columns: 1fr;
  --gap: 1rem;
}

.os_Android .dwnld_lnk-apple,
.os_iOS .dwnld_lnk-android {
  display: none;
}

[class^="fake_btn"] {
  font: inherit;
  color: #503660;
  background-color: #fff;
  min-width: 98px;
  border: 2px solid hsl(269, 19%, 30%);
  padding: .5rem 1rem .25rem;
  border-radius: 4px;
  transition: all 0.3s ease-out;
  display: block;
  margin: 0 auto;
  text-decoration: none;
  box-shadow: 0 .25em .25em rgba(0, 0, 0, .3);
}

[class^="fake_btn"]:hover,
[class^="fake_btn"]:focus {
  color: #418cec;
  border-color: #418cec;
  box-shadow: 0 .5em .5em rgba(0, 0, 0, .4);
}

.os_iOS .fake_btn-os_iOS,
.os_Android .fake_btn-os_Android {
  background-color: lightgreen;
}

.download-buttons {
  display: flex;
  justify-content: start;
  gap: 10px;
}

.download-buttons a {
  margin: 0 !important;
  padding: 0 !important;
}