/* ! * baguetteBox.js * @author  feimosi * @version 1.10.0 * @url https://github.com/feimosi/baguetteBox.js */

#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0,0,0,.8);
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

#baguetteBox-overlay.visible {
  opacity: 1;
}

#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 8px rgba(0,0,0,.6);
  -moz-box-shadow: 0 0 8px rgba(0,0,0,.6);
  box-shadow: 0 0 8px rgba(0,0,0,.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0,0,0,.6);
  font-family: sans-serif;
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: left .4s ease,-webkit-transform .4s ease;
  transition: left .4s ease,-webkit-transform .4s ease;
  transition: left .4s ease,transform .4s ease;
  transition: left .4s ease,transform .4s ease,-webkit-transform .4s ease,-moz-transform .4s ease;
}

#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight .4s ease-out;
  animation: bounceFromRight .4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft .4s ease-out;
  animation: bounceFromLeft .4s ease-out;
}

@keyframes bounceFromRight {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
}

@keyframes bounceFromLeft {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
}

.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  -moz-border-radius: 15%;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50,50,50,.5);
  color: #ddd;
  font: 1.6em sans-serif;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
}

.baguetteBox-button:focus, .baguetteBox-button:hover {
  background-color: rgba(50,50,50,.9);
}

.baguetteBox-button#next-button {
  right: 2%;
}

.baguetteBox-button#previous-button {
  left: 2%;
}

.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}

.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1, .baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

.img-fluid {
  border-radius: 15px;
  display: block;
  /*margin-top: 32px;*/
  margin: auto;
  /*margin-bottom: 32px;*/
}

.modal-backdrop.show {
  opacity: 0;
}

.swiper-slide {
  border: none!important;
}

.swiper-container-g {
  /*background: none;*/
}

hr {
  background: #d8b880;
}

.col-md-6 {
  padding-left: 20px;
  padding-right: 20px;
}

div {
}

#backdrop {
  position: absolute;
  opacity: 5%;
  top: 0;
  bottom: 0;
  z-index: -1;
  right: 0;
  left: 0;
}

.img-fluid {
  border: 40px solid transparent;
  border-image: url("../../../assets/img/./border.png") 80 round!Important;
  /*padding: 10px;*/
  border-radius: 55px;
}

#menu:before {
  content: '';
  position: absolute;
  background-image: url(../../../assets/img/./SPRITES/1a1a1a.png);
  top: -40px;
  width: 100%;
  height: 40px;
  /*background-size: cover;*/
  background-position: center;
  /*left: 50%;*/
  margin: auto;
}

#menu {
  background: transparent;
}

#menu .img-fluid {
  border: none;
  border-radius: 2px;
  padding: 0;
}

.item-2 {
}

.accordion-collapse h6 {
  color: rgb(166,147,129);
}

#thisser .btn-group {
  background: rgba(28,21,21,0.42)!important;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 5px;
}

a:hover {
  color: #6562fc!important;
}

.chapz li {
  padding-bottom: 6px;
  font-size: 14px;
  font-family: 'Trajan Pro 3';
}

.anotations {
  width: 100%;
  /*display: block;*/
  height: 20%;
  /*overflow: auto;*/
  /*word-wrap: break-word;*/
  /*position: absolute;*/
  /*padding-bottom: 80px!important;*/
  font-size: 12px;
  /*padding-left: 40px!important;*/
  line-height: 20px;
  /*display: none;*/
  /*box-shadow: -2px -6px 20px 8px #1d1d1d4f;*/
  font-family: 'SF PRO TEXT';
  /*border-radius: 11px 11px 0 0;*/
  /*padding: 26px;*/
  z-index: 99;
  background: #353535;
  bottom: 0;
}

#textualis {
  word-break: break-word;
  overflow: auto;
  height: 100%;
  margin-bottom: 0;
}

#closer {
  display: block;
  position: absolute;
  opacity: 1;
  right: 10px;
  background-color: transparent;
  z-index: 9;
  top: 10px;
}

#dictionary {
  display: block;
  position: absolute;
  opacity: 1;
  right: 10px;
  background-color: transparent;
  z-index: 9;
  top: 10px;
}

#ianotation {
  display: block;
  position: absolute;
  opacity: 1;
  right: 10px;
  background-color: transparent;
  z-index: 9;
  top: 10px;
}

#locker {
  display: block;
  position: absolute;
  opacity: 1;
  right: 10px;
  background-color: transparent;
  z-index: 9;
  top: 10px;
}

a {
  color: var(--bs-cyan);
}

#menu:after {
  content: '';
  position: absolute;
  /*margin-left: 6px;*/
  /*margin-right: 6px;*/
  margin-right: 6px;
  right: 6px;
  left: 6px;
  bottom: 6px;
  /*padding-right: 6px;*/
  /*bottom: 0;*/
  width: 100%;
  background-image: url(../../../assets/img/./SPRITES/72.png);
  height: 29px;
  /*bottom: 6px;*/
  background-size: cover;
  background-position: center;
}

.intro {
  width: 100%;
  height: 100vh;
  background: #0E1726;
  margin: 0;
  padding: 0;
}

p:first-child:first-letter {
  /*font-size: 35px;*/
}

.text:first-letter {
  /*font-size: 46px;*/
}

.dropcap {
  display: inline-block;
}

#bookmarkz {
  font-family: SF Pro Text!important;
}

h1 {
  font-family: 'Trajan Pro 3';
  text-align: center;
}

.changer {
  height: 100vh;
  width: 100vw;
  page-break-before: always;
  opacity: 0;
}

#Chapa .nav:after {
  /*content: 'Эпизоды';*/
  /*display: block;*/
  /*text-align: center;*/
  /*margin: auto;*/
}

ul {
}

.modal-content {
  border: none;
  background: transparent!important;
}

button {
}

#dbutton {
  border: none!important;
}

.thumbzcont {
  width: 100%;
  background: transparent!important;
  height: 40px;
}

.thumbzcont .btn {
  border: none;
  border-radius: 5px!important;
  filter: grayscale(0.6);
  margin-right: 18px;
  opacity: 0.5;
  height: 40px!important;
  width: 40px!important;
  background-position: center!important;
}

.thumbzcont .btn:active {
  opacity: 1;
  border: none!important;
}

.thumbzcont .btn:focus {
  opacity: 1;
  border: none!important;
  box-shadow: none;
}

.frame:after {
  /*content: '%%%%%';*/
  /*display: block;*/
  /*width: 100%;*/
  /*height: 50px;*/
}

#nexts2 {
  display: none;
}

.charger {
  /*width: 50px;*/
  padding: 30px;
  /*height: 50px;*/
  border-radius: 16px;
  padding-bottom: 15px;
  padding-top: 15px;
  background: rgba(0,0,0,0.27);
  float: right;
}

span {
}

.icona {
  border-radius: 15px;
  background: #6c757d73;
  margin-left: 10px;
  margin-right: 20px;
  cursor: pointer;
  padding-left: 8px;
  padding-bottom: 1px;
  padding-top: 3px;
  font-size: 10px;
  padding-right: 8px;
}

.frame a {
}

.chaptertitle2 {
  user-select: none;
}

.chaptitle {
  user-select: none;
}

.holder {
  user-select: none;
}

#an0 {
}

.close {
  /*align-self: center;*/
  float: right;
  margin-bottom: 10px;
}

.close:focus {
  border: none;
  box-shadow: none;
}

.toast-body {
  max-height: 70vh;
  overflow: auto;
}

#ano a:hover {
  color: white!important;
  border: none!important;
  box-shadow: none!important;
}

#ano a:focus {
  border: none!important;
  box-shadow: none!important;
}

#ano a:focus-visible {
  border: none!important;
  box-shadow: none!important;
}

#ano li:focus-visible {
  border: none;
  box-shadow: none;
}

.navz.navz2 {
  top: initial;
  bottom: 0;
}

.tooltip-inner {
  background: #525252;
}

.tooltip-arrow::before {
  border-top-color: transparent!important;
  border-right-color: transparent!important;
  border-bottom-color: transparent!important;
  border-left-color: transparent!important;
}

.frame a {
  /*background: #2f2f2f8c;*/
  border-radius: 5px;
  padding-left: 3px;
  color: color: #a9966f;
  color: #a9966f;
  padding-right: 3px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.holder a {
  background: none;
  border-radius: 0;
}

.settingst {
  font-family: 'Trajan Pro 3';
  /*background: #222222;*/
}

.settingst .nav-link {
  background: #222222;
  border-radius: 3px;
}

.esc {
  border-bottom-color: #a9966f;
  color: rgba(90,72,66,0.55);
}

.img-fluid {
  transition: all 1s ease-in;
}

a {
  text-decoration: none;
}

.dots {
  margin: 0 auto;
  text-align: center!important;
  display: block;
}

.backer {
  position: absolute;
  /*z-index: -1;*/
  display: block;
}

#part0, #part1, #part2, #part3, #part4, #part5, #part6, #part7 {
  opacity: 0.1;
}

p {
  user-select: none;
}

#install_button #linkclient, #linkmedia #linkwiki .accordion-button::after {
  /*cursor: pointer!important;*/
}

#install_button, #linkclient, #linkmedia, #linkwiki {
  cursor: pointer!important;
}

#linkmedia .accordion-button::after {
  display: none;
}

#linkmedia .accordion-button::after {
  display: none;
}

#linkmedia .accordion-button::after {
  display: none;
}

#linkmedia .accordion-button::after {
  display: none;
}

#linkwiki .accordion-button::after {
  display: none;
}

#linkclient .accordion-button::after {
  display: none;
}

#install_button .accordion-button::after {
  display: none;
}

#linkmedia .accordion-button::after {
}

.thumbz {
  background-repeat: no-repeat!important;
  border-radius: 3px!Important;
}

