:root {
  --d3641f: #d3641f;
  --0a0a0a: #0a0a0a;
  --eeeeee: #eee;
  --ffffff: #fff;
  --828282: #828282;
  --d35200: #d35200;
  --font-family: "Lato", sans-serif;
  --second-family: "Font Awesome 5 Free", sans-serif;
  --third-family: "Inter", sans-serif;
}

body {
  margin: 0;
}

html {
  margin-top: 0 !important;
}

.df-floating .df-ui-controls {
  display: none;
}

.container {
  width: initial;
  max-width: initial;
  margin: initial;
}

#layout {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.layout-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  max-width: 1660px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.layout-header .logo {
  width: auto;
  height: 65px;
}
@media (max-width: 599px) {
  .layout-header .logo {
    height: 40px;
  }
}
.layout-header .logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#flipbookWrapper {
  flex: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#flipbookWrapper #flipbookContainer {
  flex-grow: 1;
  position: fixed;
  inset: 0;
}
#flipbookWrapper #flipbookContainer .df-ui-next {
  opacity: 1;
}
@media (max-width: 1199px) {
  #flipbookWrapper #flipbookContainer .df-ui-next {
    display: none !important;
  }
}
#flipbookWrapper #flipbookContainer .df-ui-next::before {
  content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.27307 3.31336C7.6523 2.91201 8.2847 2.89416 8.68616 3.27332L17.6862 11.7733C17.8861 11.9622 17.9996 12.2248 17.9996 12.4999C17.9996 12.7749 17.8861 13.0375 17.6862 13.2264L8.68616 21.7264C8.2847 22.1056 7.6523 22.0878 7.27307 21.6864C6.89392 21.2849 6.91176 20.6525 7.31311 20.2733L15.5436 12.4999L7.31311 4.72644C6.91176 4.34721 6.89392 3.71482 7.27307 3.31336Z" fill="%23828282" /></svg>');
}
#flipbookWrapper #flipbookContainer .df-ui-prev {
  opacity: 1;
}
@media (max-width: 1199px) {
  #flipbookWrapper #flipbookContainer .df-ui-prev {
    display: none !important;
  }
}
#flipbookWrapper #flipbookContainer .df-ui-prev::before {
  content: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.7269 3.31336C16.3477 2.91201 15.7153 2.89416 15.3138 3.27332L6.31384 11.7733C6.11393 11.9622 6.00036 12.2248 6.00036 12.4999C6.00036 12.7749 6.11393 13.0375 6.31384 13.2264L15.3138 21.7264C15.7153 22.1056 16.3477 22.0878 16.7269 21.6864C17.1061 21.2849 17.0882 20.6525 16.6869 20.2733L8.45642 12.4999L16.6869 4.72644C17.0882 4.34721 17.1061 3.71482 16.7269 3.31336Z" fill="%23828282" /></svg>');
}

#contentSidebar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 454px;
  max-width: 100%;
  height: 100%;
  background: #f1f2f1;
  padding: 60px 30px;
  box-sizing: border-box;
  overflow: auto;
  z-index: 1000;
}
#contentSidebar #contentSidebarClose {
  position: absolute;
  top: 36px;
  right: 35px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
@media (max-width: 599px) {
  #contentSidebar #contentSidebarClose {
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
  }
}
#contentSidebar h2 {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--0a0a0a);
  display: flex;
  align-items: center;
  gap: 10px;
}
#contentSidebar h2::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: var(--d35200);
}
#contentSidebar #contentSearch {
  margin-top: 30px;
  height: 42px;
  width: 100%;
  max-width: 305px;
  background: var(--ffffff);
  border: none;
  outline: none;
  border-bottom: 2px solid var(--0a0a0a);
  padding: 0 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--828282);
}
#contentSidebar #contentSearch::-moz-placeholder {
  opacity: 1;
  color: var(--828282);
}
#contentSidebar #contentSearch::placeholder {
  opacity: 1;
  color: var(--828282);
}
#contentSidebar .empty {
  margin-top: 30px;
}
#contentSidebar #contentList {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--0a0a0a);
}
#contentSidebar #contentList .content-item {
  display: flex;
  align-items: center;
  gap: 20px 10px;
  max-width: 290px;
}
#contentSidebar #contentList .content-item.content-group .content-title {
  max-width: calc(100% - 118px);
}
#contentSidebar #contentList .content-item .content-page {
  flex-shrink: 0;
  width: 45px;
}
#contentSidebar #contentList .content-item .content-divider {
  flex-shrink: 0;
  width: 30px;
  height: 1px;
  background: var(--d35200);
}
#contentSidebar #contentList .content-item .content-title {
  flex-grow: 1;
  cursor: pointer;
}
#contentSidebar #contentList .content-item .content-arrow {
  flex-shrink: 0;
  width: 13px;
  transform: rotate(180deg);
  cursor: pointer;
}
#contentSidebar #contentList .content-item .color-accent {
  color: #d3641f;
}
#contentSidebar #contentList .content-item:has(.content-sublist) {
  flex-wrap: wrap;
}
#contentSidebar #contentList .content-item .content-sublist {
  padding: 0;
  margin: 0;
  width: 100%;
  flex-direction: column;
  gap: 20px 10px;
}
#contentSidebar #contentList .content-sublist .content-divider {
  width: 69px;
}
#contentSidebar #contentList .content-sublist .content-sublist .content-divider {
  width: 124px;
}

#searchSidebar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 454px;
  max-width: 100%;
  height: 100%;
  background: #f1f2f1;
  padding: 60px 30px;
  box-sizing: border-box;
  overflow: auto;
  z-index: 1000;
}
#searchSidebar #searchSidebarClose {
  position: absolute;
  top: 36px;
  right: 35px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
@media (max-width: 599px) {
  #searchSidebar #searchSidebarClose {
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
  }
}
#searchSidebar h2 {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--0a0a0a);
  display: flex;
  align-items: center;
  gap: 10px;
}
#searchSidebar h2::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: var(--d35200);
}
#searchSidebar #searchSidebarInput {
  margin-top: 30px;
  height: 42px;
  width: 100%;
  max-width: 305px;
  background: var(--ffffff);
  border: none;
  outline: none;
  border-bottom: 2px solid var(--0a0a0a);
  padding: 0 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--828282);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#searchSidebar #searchSidebarInput::-moz-placeholder {
  opacity: 1;
  color: var(--828282);
}
#searchSidebar #searchSidebarInput::placeholder {
  opacity: 1;
  color: var(--828282);
}
#searchSidebar .search-results {
  margin-top: 30px;
  min-height: 180px;
  width: 100%;
  max-width: 305px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#searchSidebar .search-result-item {
  width: 100%;
  text-align: left;
  padding: 15px;
  border: none;
  outline: none;
  background: #ffffff;
  color: var(--0a0a0a);
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}
#searchSidebar .search-result-item:hover {
  background: #f7f7f7;
}
#searchSidebar .search-result-page {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}
#searchSidebar .search-result-snippet {
  display: block;
  color: var(--828282);
}
#searchSidebar .search-empty {
  margin: 0;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--828282);
}

#bookmarkSidebar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 454px;
  max-width: 100%;
  height: 100%;
  background: #f1f2f1;
  padding: 60px 30px;
  box-sizing: border-box;
  overflow: auto;
  z-index: 1000;
}
#bookmarkSidebar #bookmarkSidebarClose {
  position: absolute;
  top: 36px;
  right: 35px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
@media (max-width: 599px) {
  #bookmarkSidebar #bookmarkSidebarClose {
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
  }
}
#bookmarkSidebar h2 {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--0a0a0a);
  display: flex;
  align-items: center;
  gap: 10px;
}
#bookmarkSidebar h2::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: var(--d35200);
}
#bookmarkSidebar h3 {
  margin: 60px 0 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--0a0a0a);
  display: flex;
  align-items: center;
  gap: 10px;
}
#bookmarkSidebar h3::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: var(--d35200);
}
#bookmarkSidebar #bookmarkSidebarInput {
  margin-top: 30px;
  height: 42px;
  width: 100%;
  max-width: 305px;
  background: var(--ffffff);
  border: none;
  outline: none;
  border-bottom: 2px solid var(--0a0a0a);
  padding: 0 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--828282);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#bookmarkSidebar #bookmarkSidebarInput::-moz-placeholder {
  opacity: 1;
  color: var(--828282);
}
#bookmarkSidebar #bookmarkSidebarInput::placeholder {
  opacity: 1;
  color: var(--828282);
}
#bookmarkSidebar .bookmark_colors {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 305px;
}
@media (max-width: 599px) {
  #bookmarkSidebar .bookmark_colors {
    gap: 15px;
  }
}
#bookmarkSidebar .bookmark_colors .color_item {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
#bookmarkSidebar .bookmark_colors .color_item[data-color="#66D566"] {
  background: #66D566;
}
#bookmarkSidebar .bookmark_colors .color_item[data-color="#64D3ED"] {
  background: #64D3ED;
}
#bookmarkSidebar .bookmark_colors .color_item[data-color="#9D80D7"] {
  background: #9D80D7;
}
#bookmarkSidebar .bookmark_colors .color_item[data-color="#ED8383"] {
  background: #ED8383;
}
#bookmarkSidebar .bookmark_colors .color_item[data-color="#ED9933"] {
  background: #ED9933;
}
#bookmarkSidebar .bookmark_colors .color_item[data-color="#A6A19B"] {
  background: #A6A19B;
}
#bookmarkSidebar .bookmark_colors .color_item[data-color="#258CCF"] {
  background: #258CCF;
}
#bookmarkSidebar .bookmark_colors .color_item.active {
  outline: 2px solid var(--0a0a0a);
}
#bookmarkSidebar #addBookmark {
  margin-top: 20px;
  display: block;
  outline: none;
  border: 2px solid var(--d3641f);
  border-radius: 100px;
  width: 100%;
  max-width: 305px;
  height: 60px;
  padding: 0 12px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#bookmarkSidebar #addBookmark .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8c09e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--d35200);
}
#bookmarkSidebar #addBookmark .icon svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
#bookmarkSidebar #addBookmark .text {
  flex-grow: 1;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  color: var(--0a0a0a);
}
#bookmarkSidebar #removeAllBookmark {
  margin-top: 15px;
  display: block;
  outline: none;
  border: 2px solid var(--d3641f);
  border-radius: 100px;
  width: 100%;
  max-width: 305px;
  height: 60px;
  padding: 0 12px;
  background: var(--d35200);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#bookmarkSidebar #removeAllBookmark .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--d3641f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ffffff);
}
#bookmarkSidebar #removeAllBookmark .icon svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
#bookmarkSidebar #removeAllBookmark .text {
  flex-grow: 1;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ffffff);
}
#bookmarkSidebar .bookmark_list {
  margin-top: 15px;
  width: 100%;
  max-width: 305px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#bookmarkSidebar .bookmark_list .item {
  padding: 16px 16px 12px;
  display: flex;
  align-items: start;
  border-left: 4px solid var(--bd-color, --ffffff);
  gap: 10px;
  background: var(--ffffff);
  cursor: pointer;
}
#bookmarkSidebar .bookmark_list .item .icon {
  flex-shrink: 0;
  width: 24px;
  height: auto;
}
#bookmarkSidebar .bookmark_list .item .content {
  display: flex;
  flex-direction: column;
}
#bookmarkSidebar .bookmark_list .item .content .page {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--0a0a0a);
}
#bookmarkSidebar .bookmark_list .item .content .name {
  outline: none;
  border: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--828282);
}
#bookmarkSidebar .bookmark_list .item .content .controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#bookmarkSidebar .bookmark_list .item .content .controls button {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
#bookmarkSidebar .bookmark_list .item .content .controls button svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.df-ui-search .search-container {
  display: none !important;
}

.custom-ui-bar {
  box-sizing: border-box;
  width: 100%;
  max-width: 1440px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0 auto;
  background: var(--ffffff);
  padding: 20px 80px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 599px) {
  .custom-ui-bar {
    padding: 20px 20px 10px;
    gap: 10px;
  }
}
.custom-ui-bar .custom-ui-row-top {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-ui-bar .custom-ui-row-top .page-info {
  flex-shrink: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--828282);
}
@media (max-width: 599px) {
  .custom-ui-bar .custom-ui-row-top .page-info {
    font-size: 14px;
  }
}
.custom-ui-bar .custom-ui-row-top .page-range {
  flex-grow: 1;
  max-width: 1160px;
  height: 11px;
  border-radius: 999px;
  --range-fill-percent: 0%;
  background: linear-gradient(to right, var(--d3641f) 0%, var(--d3641f) var(--range-fill-percent), var(--eeeeee) var(--range-fill-percent), var(--eeeeee) 100%);
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  padding: 0;
}
.custom-ui-bar .custom-ui-row-top .page-range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 0;
  height: 0;
  border-radius: 50%;
  border: none;
  background: var(--d3641f);
  cursor: pointer;
}
.custom-ui-bar .custom-ui-row-top .page-range::-moz-range-thumb {
  width: 0;
  height: 0;
  border: none;
  background: transparent;
}
.custom-ui-bar .custom-ui-row-top .page-range::-moz-range-track {
  height: 8px;
  background: var(--eeeeee);
  border-radius: 999px;
  border: none;
}
.custom-ui-bar .custom-ui-row-top .page-range::-moz-range-progress {
  height: 8px;
  background: var(--d3641f);
  border-radius: 999px;
}
.custom-ui-bar .custom-ui-row-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-ui-bar .custom-ui-row-bottom .ui-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--828282);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  transition: 0.35s;
}
@media (max-width: 599px) {
  .custom-ui-bar .custom-ui-row-bottom .ui-btn {
    width: 40px;
    height: 40px;
  }
}
@media (hover: hover) {
  .custom-ui-bar .custom-ui-row-bottom .ui-btn:hover {
    background: #f8c09e;
    color: var(--d35200);
  }
}
.custom-ui-bar .custom-ui-row-bottom .ui-btn.ui-btn-active {
  background: #f8c09e;
  color: var(--d35200);
}
.custom-ui-bar .custom-ui-row-bottom .ui-btn svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 599px) {
  .custom-ui-bar .custom-ui-row-bottom .ui-btn svg {
    width: 20px;
    height: 20px;
  }
}

.df-sidemenu {
  transform: translateX(100%);
  transition: none;
  background-color: #F1F2F1;
  left: initial;
  right: -50px;
}
.df-sidemenu.df-sidemenu-visible {
  left: initial;
  right: 0;
}
.df-sidemenu .df-vrow {
  border-radius: 0;
  height: auto;
  aspect-ratio: 1920/1080;
}
.df-sidemenu .df-vrow > div {
  display: none;
}
.df-sidemenu .df-floating .df-thumb-container .df-vrow:hover, .df-sidemenu .df-vrow.df-selected {
  background-color: none;
  outline: 3px solid var(--d35200);
}