/* src/styles.scss */
.toast-container {
  display: flex;
  position: relative;
  width: fit-content;
  min-width: 350px;
  min-height: 82px;
  z-index: 3000;
  box-shadow: 0px 4px 16px 0px rgba(83, 46, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  margin-bottom: 12px;
  zoom: 0.8;
}
.toast-container .toast-type-indicator {
  width: 9px;
  min-width: 9px;
  height: inherit;
  background-color: #333;
  position: sticky;
  z-index: 2;
}
.toast-container .toast-body {
  display: flex;
  align-items: center;
  flex: 1 0 0;
  padding: 16px 33px;
  gap: 24px;
  position: relative;
}
.toast-container .toast-body .toast-bg-img {
  position: absolute;
  width: 491px;
  height: 82px;
  left: 0;
  bottom: 0;
}
.toast-container .toast-body .toast-message {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px 0 0;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0;
  color: rgb(74, 74, 74);
  border-right: 0.094rem solid #333;
  height: 100%;
  position: sticky;
  z-index: 2;
  flex: 1 0 0;
}
.toast-container .toast-body .toast-message .text {
  overflow-wrap: break-word;
  white-space: normal;
  max-width: calc(100vw - 125px);
}
.toast-container .toast-body .close-toast-button {
  transition: opacity 200ms ease;
  position: sticky;
  z-index: 3;
  min-width: 16px;
}
.toast-container .toast-body .close-toast-button:hover {
  opacity: 0.7;
}
.toast-container.success {
  background-color: rgb(240, 255, 247);
}
.toast-container.success .toast-type-indicator {
  background-color: rgb(58, 194, 121);
}
.toast-container.success .toast-body .toast-bg-img {
  background: url("./media/success-toast-bg-IKMNCMSI.svg");
}
.toast-container.success .toast-body .toast-message {
  border-color: rgb(58, 194, 121);
}
.toast-container.success .toast-body .toast-message .toast-type-icon {
  min-width: 30px;
  height: 30px;
  background: url("./media/success-toast-icon-XBSUYLQW.svg");
}
.toast-container.success .toast-body .close-toast-button svg path {
  stroke: rgb(58, 194, 121);
}
.toast-container.error {
  background-color: rgb(255, 239, 238);
}
.toast-container.error .toast-type-indicator {
  background-color: rgb(194, 30, 17);
}
.toast-container.error .toast-body .toast-bg-img {
  background: url("./media/error-toast-bg-65XRMPEK.svg");
}
.toast-container.error .toast-body .toast-message {
  border-color: rgb(194, 30, 17);
}
.toast-container.error .toast-body .toast-message .toast-type-icon {
  min-width: 30px;
  height: 30px;
  background: url("./media/error-toast-icon-BXX2JG6I.svg");
}
.toast-container.error .toast-body .close-toast-button svg path {
  stroke: rgb(194, 30, 17);
}
.toast-container.warning {
  background-color: rgb(255, 248, 236);
}
.toast-container.warning .toast-type-indicator {
  background-color: rgb(222, 165, 61);
}
.toast-container.warning .toast-body .toast-bg-img {
  background: url("./media/warning-toast-bg-VKUX2HIJ.svg");
}
.toast-container.warning .toast-body .toast-message {
  border-color: rgb(222, 165, 61);
}
.toast-container.warning .toast-body .toast-message .toast-type-icon {
  min-width: 30px;
  height: 30px;
  background: url("./media/warning-toast-icon-NEEYEH6C.svg");
}
.toast-container.warning .toast-body .close-toast-button svg path {
  stroke: rgb(222, 165, 61);
}
app-toaster {
  position: fixed;
  display: flex;
  flex-direction: column-reverse;
  z-index: 3000;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  will-change: opacity;
  backface-visibility: hidden;
}
app-toaster:has(.top-right) {
  top: 20px;
  right: 20px;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
app-toaster:has(.top-left) {
  top: 20px;
  left: 20px;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
app-toaster:has(.bottom-right) {
  bottom: 20px;
  right: 20px;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
app-toaster:has(.bottom-left) {
  bottom: 20px;
  left: 20px;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
app-toaster:has(.bottom-middle) {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}
@media (max-width: 768px) {
  .toast-container .toast-body {
    padding: 12px 24px;
    gap: 18px;
  }
  .toast-container .toast-body .toast-message {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .toast-container .toast-body .toast-message {
    font-size: 16px;
  }
}
:root {
  --main-50: #FFF6E0;
  --main-100: #FEF1CF;
  --main-150: #FFECBF;
  --main-200: #FFE6AE;
  --main-250: #EDC17F;
  --main-300: #DA9C50;
  --main-400: #BA7A2C;
  --main-500: #99601A;
  --main-600: #532E00;
  --main-700: #351F04;
  --main-800: #261604;
  --main-900: #190E01;
}
.bg-main-50 {
  background-color: #FFF6E0;
}
.bg-main-100 {
  background-color: #FEF1CF;
}
.bg-main-150 {
  background-color: #FFECBF;
}
.bg-main-200 {
  background-color: #FFE6AE;
}
.bg-main-250 {
  background-color: #EDC17F;
}
.bg-main-300 {
  background-color: #DA9C50;
}
.bg-main-400 {
  background-color: #BA7A2C;
}
.bg-main-500 {
  background-color: #99601A;
}
.bg-main-600 {
  background-color: #532E00;
}
.bg-main-700 {
  background-color: #351F04;
}
.bg-main-800 {
  background-color: #261604;
}
.bg-main-900 {
  background-color: #190E01;
}
.text-main-50 {
  color: #FFF6E0;
}
.text-main-100 {
  color: #FEF1CF;
}
.text-main-150 {
  color: #FFECBF;
}
.text-main-200 {
  color: #FFE6AE;
}
.text-main-250 {
  color: #EDC17F;
}
.text-main-300 {
  color: #DA9C50;
}
.text-main-400 {
  color: #BA7A2C;
}
.text-main-500 {
  color: #99601A;
}
.text-main-600 {
  color: #532E00;
}
.text-main-700 {
  color: #351F04;
}
.text-main-800 {
  color: #261604;
}
.text-main-900 {
  color: #190E01;
}
*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
::before,
::after {
  --tw-content: "";
}
html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: Lato, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  line-height: inherit;
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp,
pre {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}
button,
[role=button] {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden]:where(:not([hidden=until-found])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.left-0 {
  left: 0px;
}
.right-10 {
  right: 2.5rem;
}
.right-\[0\] {
  right: 0;
}
.top-0 {
  top: 0px;
}
.top-\[2px\] {
  top: 2px;
}
.top-\[35px\] {
  top: 35px;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.m-auto {
  margin: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-\[20px\] {
  margin-bottom: 20px;
}
.mb-\[25px\] {
  margin-bottom: 25px;
}
.mb-\[40px\] {
  margin-bottom: 40px;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-\[25px\] {
  margin-left: 25px;
}
.ml-\[30px\] {
  margin-left: 30px;
}
.ml-\[8px\] {
  margin-left: 8px;
}
.ml-auto {
  margin-left: auto;
}
.mr-1\.5 {
  margin-right: 0.375rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-2\.5 {
  margin-right: 0.625rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mr-\[25px\] {
  margin-right: 25px;
}
.mr-\[4px\] {
  margin-right: 4px;
}
.mr-\[8px\] {
  margin-right: 8px;
}
.mr-\[90px\] {
  margin-right: 90px;
}
.mr-auto {
  margin-right: auto;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[30px\] {
  margin-top: 30px;
}
.mt-\[40px\] {
  margin-top: 40px;
}
.mt-\[57px\] {
  margin-top: 57px;
}
.mt-\[60px\] {
  margin-top: 60px;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.\!contents {
  display: contents !important;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-\[100\%\] {
  height: 100%;
}
.h-\[20px\] {
  height: 20px;
}
.h-\[22px\] {
  height: 22px;
}
.h-\[30px\] {
  height: 30px;
}
.h-\[34px\] {
  height: 34px;
}
.h-fit {
  height: fit-content;
}
.h-full {
  height: 100%;
}
.max-h-\[85vh\] {
  max-height: 85vh;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-\[20px\] {
  width: 20px;
}
.w-\[22px\] {
  width: 22px;
}
.w-\[34px\] {
  width: 34px;
}
.w-\[44\%\] {
  width: 44%;
}
.w-\[46\.5\%\] {
  width: 46.5%;
}
.w-\[57\%\] {
  width: 57%;
}
.w-\[95\%\] {
  width: 95%;
}
.w-fit {
  width: fit-content;
}
.w-full {
  width: 100%;
}
.max-w-\[70\%\] {
  max-width: 70%;
}
.max-w-\[90vw\] {
  max-width: 90vw;
}
.max-w-fit {
  max-width: fit-content;
}
.grow {
  flex-grow: 1;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-move {
  cursor: move;
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-evenly {
  justify-content: space-evenly;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-\[10px\] {
  gap: 10px;
}
.gap-\[16px\] {
  gap: 16px;
}
.gap-\[20px\] {
  gap: 20px;
}
.gap-\[21px\] {
  gap: 21px;
}
.gap-\[24px\] {
  gap: 24px;
}
.gap-\[25px\] {
  gap: 25px;
}
.gap-\[30px\] {
  gap: 30px;
}
.gap-\[32px\] {
  gap: 32px;
}
.gap-\[34px\] {
  gap: 34px;
}
.gap-\[40px\] {
  gap: 40px;
}
.gap-\[56px\] {
  gap: 56px;
}
.gap-\[6px\] {
  gap: 6px;
}
.gap-\[8px\] {
  gap: 8px;
}
.overflow-hidden {
  overflow: hidden;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.break-all {
  word-break: break-all;
}
.rounded-full {
  border-radius: 9999px;
}
.border {
  border-width: 1px;
}
.object-cover {
  object-fit: cover;
}
.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-8 {
  padding: 2rem;
}
.p-\[20px\] {
  padding: 20px;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-\[40px\] {
  padding-left: 40px;
  padding-right: 40px;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-\[120px\] {
  padding-top: 120px;
}
.pt-\[2px\] {
  padding-top: 2px;
}
.pt-\[40px\] {
  padding-top: 40px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-semibold {
  font-weight: 600;
}
.italic {
  font-style: italic;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.opacity-0 {
  opacity: 0;
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.sepia {
  --tw-sepia: sepia(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke,
    opacity,
    box-shadow,
    transform,
    filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .content-height_wrap:not(.main-contetnt-wrapper) {
    zoom: 0.8;
  }
  .content-height_wrap:not(.main_banner) {
    zoom: 0.8;
  }
}
.content-height_wrap:has(.main-contetnt-wrapper) {
  zoom: 1;
}
.content-height_wrap:has(.poem-banner) {
  zoom: 1;
}
.content-height_wrap:has(.main_banner) {
  zoom: 1;
}
@media (min-width: 768px) {
  app-main-player {
    zoom: 0.8;
  }
  app-footer {
    zoom: 0.8;
  }
  #sidebar {
    zoom: 0.8;
  }
}
@font-face {
  font-family: "Gentium Book Plus";
  src: url(/assets/fonts/Gentium_Book_Plus/GentiumBookPlus-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url(/assets/fonts/Lato/Lato-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url(/assets/fonts/Lato/Lato-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url(/assets/fonts/Lato/Lato-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url(/assets/fonts/Lato/Lato-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
html,
body,
* {
  font-family: "Lato", sans-serif;
}
.bgd {
  background-color: var(--grey-back);
  color: var(--main-text);
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
.comment-form .editor-toolbar button {
  font-family: Lato, sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 20px;
  color: var(--font-color1);
}
.comment-form .editor-toolbar button.itc {
  font-style: italic;
}
.comment-form .editor-toolbar button.und {
  text-decoration: underline;
}
.playControls {
  position: fixed;
  bottom: 0;
  visibility: hidden;
  width: 100%;
  perspective: 900;
  perspective-origin: 80% 100%;
}
select {
  color: black;
  border-radius: 5px;
}
breadcrumb {
  position: relative;
  display: block;
  width: fit-content;
  align-self: start;
}
.header {
  width: 100%;
}
.center_logo {
  display: none;
  background: var(--om_main);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 94px;
  height: 84px;
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 0);
  top: -3px;
}
.g-z-index-control-bar {
  z-index: 1001;
}
.playControls__wrapper {
  padding-bottom: 10px;
  visibility: visible;
  position: relative;
  height: 100%;
}
.playControls.m-visible .playControls__inner {
  transform: translateY(0);
}
.nav_playr.mobile_v {
  display: none;
}
.playControls__elements {
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0 19px 0;
}
.playControls__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: -1px;
}
.no_wrap {
  white-space: nowrap;
}
.pl_center_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 59.67%;
}
.playControls__inner {
  background: var(--pl-back-gradient);
  height: 117px;
  visibility: visible;
  transition: transform 0.2s ease-out;
  transform: translateY(100%);
}
.l-container {
  width: 1240px;
  margin: 0 auto;
}
.l-container.l-fullwidth {
  width: 1240px;
  padding: 0;
}
.volume,
.volume__iconWrapper {
  position: relative;
}
.volume__iconWrapper {
  display: flex;
}
.volume__iconWrapper button {
  margin-right: 20px;
}
.range_i {
  position: relative;
  transform: rotate(-90deg);
  left: -50px;
  top: 65px;
  opacity: 0;
  z-index: 4;
  cursor: pointer;
}
li.spd {
  font-family: IBM Plex Sans Hebrew;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--text-color);
}
li.spd:hover {
  color: var(--text-color23);
}
li.spd.selected {
  color: var(--text-color23);
}
.speed-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px;
  justify-content: space-evenly;
  list-style: none;
  height: 100%;
}
.volume__button {
  display: block;
  border: 0;
  background: url("./media/vol-XSBFOWBE.svg") no-repeat 0;
  outline: 0;
}
.volume__button.muted {
  background: url("./media/novol-IIFZZTDQ.svg") no-repeat 0;
}
.volume__button.speed {
  color: #fff;
  background: none;
  font-family: IBM Plex Sans Hebrew;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0;
}
.style_dialog {
  position: fixed;
  top: 0;
  width: 450px;
  height: 491px;
  border-radius: 20px;
  padding: 38px 55px 10px 55px;
}
.style_dialog .gold_ {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: rgb(222, 165, 61);
  margin-bottom: 6px;
}
.style_dialog input.st_inp {
  width: 344px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgb(224, 155, 57);
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--font-color1);
  padding: 0 25px;
}
.style_dialog input.st_inp:focus-visible {
  outline: 1px solid rgb(224, 155, 57);
}
.style_dialog.hght {
  height: 300px;
}
.style_dialog input.item_ {
  appearance: none;
  min-width: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  margin-right: 22px;
  cursor: pointer;
  margin-bottom: 0;
  margin-top: 5px;
}
.style_dialog input.item_.mt0 {
  margin-top: 0;
}
.style_dialog .button_brd {
  width: 100%;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgb(222, 165, 61);
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: var(--font-color1);
}
.style_dialog .checked {
  background: var(--check);
  background-size: 20px 20px;
  background-position: center;
}
.style_dialog .stzd {
  margin-bottom: 10px;
}
.h_fixed {
  height: 208px;
  overflow-x: auto;
  margin: 25px 0 20px 0;
}
.pr_20 {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--font-color1);
}
.cl_bun {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 21px;
  letter-spacing: 0;
  color: #fff;
  position: relative;
}
.cl_bun:after {
  content: "";
  position: absolute;
  top: 0;
  right: -28px;
  display: block;
  width: 20.5px;
  height: 20.5px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-image: url("./media/closee-VLLF72XA.svg");
}
.list__button {
  display: block;
  border: 0;
  background: url("./media/llist-LLBTHYM6.svg") no-repeat 0;
  outline: 0;
  width: 24px;
  height: 46px;
}
.like__button {
  display: block;
  border: 0;
  background: url("./media/like-H3W76QZS.svg") no-repeat 0;
  outline: 0;
  width: 24px;
  height: 46px;
}
.volume .volume__sliderWrapper {
  height: 152px;
  overflow: visible;
  overflow: initial;
  border: none;
}
.volume .volume__sliderBackground,
.volume .volume__sliderHandle,
.volume .volume__sliderProgress {
  opacity: 1;
}
.volume__sliderWrapper:after {
  bottom: -8px;
  left: 9px;
  border-color: transparent transparent #f2f2f2 #f2f2f2;
  border-style: solid;
  border-width: 4px;
}
.volume__sliderBackground,
.volume__sliderHandle,
.volume__sliderProgress {
  opacity: 0;
  transition: opacity 0.1s linear;
  transition-delay: 0.1s;
}
.volume__sliderHandle {
  position: absolute;
  display: block;
  border-radius: 100%;
  border: 1px solid #9c9595;
  background: #f50;
  top: 0;
  z-index: 3;
  width: 8px;
  height: 8px;
  margin-left: -2.5px;
}
.volume__sliderProgress {
  bottom: 13px;
  position: absolute;
  width: 4px;
  margin-left: 18px;
  height: calc(100% - 30px);
  z-index: 2;
}
.volume__sliderProgress_bbc {
  background: #bdb6b6;
  bottom: 13px;
  position: absolute;
  width: 2px;
  margin-left: 14px;
  height: calc(100% - 30px);
  z-index: 1;
}
.volume__sliderProgress {
  background: #f50;
  width: 2px;
  margin-left: 14px;
}
.volume:hover .volume__sliderWrapper:not(.list) {
  visibility: visible;
  transition: all 0.4s;
}
.spec_onee {
  display: flex;
  height: 50px;
}
.volume__sliderWrapper {
  position: absolute;
  left: -9px;
  bottom: 50px;
  z-index: 1;
  width: 40px;
  height: 0;
  transition: height 0.1s;
  transform: translateZ(0);
  overflow: hidden;
  outline: 0;
  cursor: pointer;
  visibility: hidden;
  transition: all 0.4s;
}
.volume__sliderWrapper.list {
  display: none;
}
.volume .volume__sliderWrapper {
  height: 217px;
  width: 73px;
  border-radius: 10px;
}
.volume .volume__sliderWrapper.list {
  height: fit-content;
  min-height: 108px;
  overflow-y: visible;
}
.volume .volume__sliderWrapper.list ul {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 477px;
}
.volume__sliderWrapper.list {
  position: absolute;
  left: -507px;
  bottom: 72px;
  width: 570px;
  height: 0;
  transition: height 0.1s;
  transform: translateZ(0);
  overflow: visible;
  outline: 0;
  cursor: unset;
  display: block;
  visibility: hidden;
  z-index: 9999;
  border-radius: 20px;
}
.volume__sliderWrapper.list.show_list {
  display: block;
  visibility: visible;
}
.volume__sliderWrapper {
  left: -17px;
  width: 30px;
  bottom: 72px;
  background-color: #fff;
  box-shadow: 0 4px 25px rgba(0, 57, 100, 0.2);
}
.volume__sliderWrapper.vol_m:before {
  border-left: 7px solid #000;
  border-bottom: 7px solid #000;
  border-right: 7px solid transparent;
  border-top: 7px solid transparent;
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  box-sizing: border-box;
  transform-origin: 0 0;
  transform: rotate(-45deg);
  cursor: pointer;
  z-index: 111;
  bottom: -33px;
  right: 25px;
  border-color: transparent transparent #fff #fff;
  border-style: solid;
  border-width: 19px;
  box-shadow: -3px 3px 4px rgba(0, 0, 0, 0.1);
}
input:focus::placeholder {
  color: transparent !important;
}
.skipControl__previous {
  background-image: url("./media/ffwd-3JVMWRHE.svg");
}
.skipControl__previous.skipth {
  display: none;
  background-image: var(--30sback);
  background-size: contain;
  width: 48px;
  height: 22px;
  margin: 0;
}
.skipControl__next {
  background-image: url("./media/ffwd-3JVMWRHE.svg");
  transform: rotate(180deg);
}
.skipControl__next.skipth {
  display: none;
  background-image: var(--30sforw);
  background-size: contain;
  width: 48px;
  height: 22px;
  margin: 0;
}
.shuffleControl:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  transition: opacity 0.2s;
  background-image: url("./media/shuffleon-PZSJTYKC.svg");
  opacity: 0;
}
.repeatControl.no-repeat {
  background: url("./media/repeat-7NY66B3K.svg");
}
.repeatControl.repeat-all {
  background-image: url("./media/repeatal-B4MTNZNC.svg");
}
.repeatControl.repeat-one {
  background-image: url("./media/repeaton-MB4NVIAV.svg");
}
.middle_stripe {
  max-width: 1270px;
  padding: 0 15px;
  margin: auto;
}
.carn_b_:not(.rotate) {
  margin-top: -60px;
}
.mar_md {
  margin-top: -80px;
}
.carn_b_.rotate {
  transform: rotate(180deg);
}
.ent_choose_blc {
  display: none;
}
.sel_btn {
  display: flex;
  align-items: center;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 0;
  color: var(--font-color1);
  height: 36px;
  width: 100%;
  padding-left: 34px;
}
.sel_btn.selected_b {
  background-color: var(--selection);
}
.sel_btn:hover {
  background-color: var(--selection);
}
.ent-mob_switch {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  background: rgb(254, 255, 255);
  min-width: 335px;
  right: 50%;
  min-height: 143px;
  transform: translate(50%, -50%);
  border-radius: 10px;
  padding: 27px 0 17px 0;
}
.ent-mob_switch .x_bt {
  right: 10px;
  top: 10px;
}
.thm_ .sel_btn {
  padding-left: 5px;
}
.thm_ .sel_btn.lt_set::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  width: 24px;
  height: 24px;
  background-image: url("./media/light_blue-7DJLU2PN.svg");
  margin: 0 14px;
}
.thm_ .sel_btn.bl_set::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  width: 24px;
  height: 24px;
  background-image: url("./media/bw_blue-W7PTNER7.svg");
  margin: 0 14px;
}
.thm_ .sel_btn.dk_set::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  width: 24px;
  height: 24px;
  background-image: url("./media/dark_blue-D5NASI3L.svg");
  margin: 0 14px;
}
.carn_b.rotate {
  transform: rotate(180deg);
}
.dec_head-title_ {
  font-family: "Gentium Book Plus", serif;
  font-weight: 500 !important;
  font-size: 50px !important;
  line-height: 42px !important;
  text-align: center;
  color: var(--font-color1);
  word-break: break-word;
  padding: 14px 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
h1.dec_head-title {
  font-family: "Gentium Book Plus", serif;
  font-weight: 500 !important;
  font-size: 55px !important;
  line-height: 36px !important;
  text-align: center;
  color: var(--font-color1);
  padding: 14px 0 !important;
}
.lt_wrap {
  max-width: 100% !important;
  overflow: hidden;
}
.dec_head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dec_head._background {
  background: url("./media/shine_r_-2Z4ZY7JS.svg");
  background-position: top;
  background-repeat: no-repeat;
  height: 400px;
  display: flex;
  justify-content: center;
  margin-top: -180px;
  background-size: 702px;
}
.img_description {
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
  text-underline-position: from-font;
  color: #fff;
}
.quotes_ {
  position: absolute;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}
.block_quote {
  position: relative;
  width: 100%;
  border: 1px solid rgb(186, 141, 86);
  padding: 50px 80px;
  margin: 50px 0;
}
.close_list {
  background: var(--x_a);
  width: 20px;
  height: 20px;
  right: 27px;
  top: 39px;
  background-size: cover;
}
.tags {
  font-family: Lato, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  text-decoration-style: solid;
  text-underline-position: from-font;
  color: #fff;
  margin-top: 30px;
}
.cursor-move {
  background: var(--cursor-move);
  width: 11px;
  height: 16px;
  background-size: cover;
}
.cursor-move.list__ {
  opacity: 0;
  margin: 0 13px 0 14px;
}
.html_wrap::first-letter {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 90px;
  line-height: 30px;
  text-align: justify;
  color: rgb(222, 165, 61);
}
.copy_ {
  background: var(--copy_);
  height: 20px;
  width: 20px;
}
.shr_ {
  background: var(--shr_);
  height: 20px;
  width: 21px;
}
.add_ {
  background: var(--add_);
  height: 20px;
  width: 17px;
}
.srch_ {
  background: var(--srch_);
  height: 20px;
  width: 21px;
}
.hor_bottom {
  border-bottom: 1px solid var(--border);
}
.hor_bottom .vert_right,
.hor_bottom .vert_left {
  padding-bottom: 7px;
}
.hor_top .vert_right,
.hor_top .vert_left {
  padding-top: 7px;
}
.vert_right {
  padding-left: 6px;
  margin-right: -15px;
}
.vert_left {
  border-left: 1px solid var(--border);
  padding-left: 10px;
  margin-right: 10px;
}
.app_block {
  background-size: contain;
  background-repeat: no-repeat;
}
.arrows_cont {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
}
.arr_w {
  width: 40px;
  height: 40px;
  background: url("./media/arr_rd-B5KM72U4.svg");
  margin-left: 20px;
  cursor: pointer;
}
.arr_w.trsf {
  transform: rotate(180deg);
}
.wrapper_line {
  max-width: 930px;
  width: 100%;
  padding: 0px 0 165px 0;
  margin: 0 auto;
}
.repeatControl:after,
.repeatControl:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
button:focus-visible {
  outline: none;
}
.repeatControl,
.repeatControl:after,
.repeatControl:before {
  background-repeat: no-repeat;
  background-position: 50%;
  cursor: pointer;
}
.repeatControl {
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
  width: 100%;
}
.three_items {
  display: flex;
  align-items: center;
  justify-content: center;
}
.three_items .frame_t {
  position: absolute;
  z-index: 11;
  width: 330px;
  height: 297px;
  background: url("./media/rectangle-XTYLAYBM.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: auto;
}
.quick-links .link-icons.tr_ {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 350px;
  margin-top: 108px;
}
.tr_cont {
  position: absolute;
  z-index: 12;
  width: 300px;
  margin-bottom: -24px;
}
.button_sm_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 246px;
  height: 54px;
  background: url("./media/button_sm-IJQCCKAI.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: auto;
}
.button_sm_wrap span {
  font-family: Lato, sans-serif;
  font-size: 17.52px;
  font-weight: 400;
  line-height: 17.52px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgb(244, 212, 162);
}
.lbl_c {
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgb(255, 226, 189);
  max-width: 56%;
  margin: 0 auto 10px auto;
}
.lbl_t {
  font-family: Lato, sans-serif;
  font-size: 17.52px;
  font-weight: 400;
  line-height: 17.52px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  max-width: 69%;
  margin: 0 auto 12px auto;
}
.offer-block_block-wrap.nxt_ {
  padding: 115px 0;
  background-image:
    url("./media/mountains-LFEUFH3I.avif"),
    linear-gradient(
      360deg,
      #09507e 100%,
      #09507e 100%);
  background-size: cover;
  background-position: center;
}
.offer-block_block-wrap.nxt_ .m_btn.mid {
  margin-top: 0;
}
.def-block_block-wrap.nxt_ {
  padding: 100px 0 10px 0;
  background-image:
    url("./media/meadow-E2FQFNU3.avif"),
    linear-gradient(
      360deg,
      #09507e 100%,
      #09507e 100%);
  background-size: cover;
  min-height: unset;
  background-position: center;
}
.shuffleControl:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  transition: opacity 0.2s;
  background-image: url("./media/noshuffling-JZOZP4GI.svg");
}
.shuffleControl.m-shuffling:before {
  opacity: 0;
}
.shuffleControl.m-shuffling:after {
  opacity: 1;
}
.shuffleControl {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  outline: none;
  background: transparent;
}
.skipControl {
  background-repeat: no-repeat;
  padding: 0;
}
.playControls__control.playControls__repeat {
  margin-left: 0;
}
.playControls__control,
.playControls__control:not(:first-child) {
  margin-left: 32.5px;
}
.playControls__control.playControl,
.playControls__control:not(:first-child).playControl {
  margin-left: 25.5px;
  margin-right: -7px;
}
.mb_ver {
  display: none;
}
.sp_width {
  min-width: 70%;
  max-width: 70%;
}
.playControls__timeline {
  width: 100%;
}
.playbackTimeline.has-sound {
  visibility: visible;
}
.playbackTimeline__duration,
.playbackTimeline__timePassed {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.4;
  color: var(--pl_line);
}
.secnd_block-wrap {
  padding: 100px 0;
  background-image: url("./media/second_background-5V3R4FO3.avif");
  background-size: cover;
  background-position: center;
}
.secnd_block-wrap .row_btns {
  display: none;
}
.bcm_img {
  object-fit: cover;
  border: 3px solid #CBAB89;
}
.frame_w {
  position: relative;
  left: 14px;
  z-index: 1;
}
.frame_w.mirr {
  right: 14px;
  left: unset;
  transform: rotateY(180deg);
}
.def-block_block-wrap {
  padding: 100px 0 10px 0;
  background-image:
    url("./media/clouds-FZB63SUC.avif"),
    linear-gradient(
      360deg,
      #09507e 100%,
      #09507e 100%);
  background-size: cover;
  min-height: unset;
  background-position: center;
}
.grad_up {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 461px;
  background:
    linear-gradient(
      to top,
      rgba(11, 87, 138, 0.8),
      rgba(11, 87, 138, 0));
  z-index: 0;
}
.grad_down {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 611px;
  background:
    linear-gradient(
      to bottom,
      rgb(11, 87, 138),
      rgba(11, 87, 138, 0));
  z-index: 0;
}
.grad_ {
  position: absolute;
  left: 0;
  width: 250px;
  height: 100%;
  background:
    linear-gradient(
      to right,
      rgb(11, 87, 138),
      rgba(11, 87, 138, 0));
  z-index: 0;
}
.grad_.sd {
  background:
    linear-gradient(
      to left,
      rgb(11, 87, 138),
      rgba(11, 87, 138, 0));
  right: 0;
  left: unset;
}
.row_btns {
  max-width: 1240px;
  width: 100%;
  justify-content: space-between;
  margin: 3% auto 0 auto;
  padding: 0 20px;
}
.row_btns.bottom_t {
  justify-content: space-evenly;
  max-width: 1080px;
}
.quick-links .link-icons .link-item.decoration {
  cursor: unset;
}
.round {
  width: 150px;
  height: 150px;
  background: url("./media/round-7B27EQGC.webp");
  background-size: cover;
}
.bot_b-wrap {
  height: 380px;
  width: 100%;
  background-color: #09507e;
}
.m_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m_btn.tp_wide {
  background: url("./media/btn_lg-U5Z4OYUC.avif");
  width: 300px;
  height: 92px;
  background-size: cover;
  margin: auto;
}
.m_btn.wide {
  width: 1400px;
  margin-bottom: 70px;
  height: 92px;
  background: url("./media/btn_glow-NWGVL62U.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
}
.m_btn.wide span {
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.m_btn.mid {
  width: 100%;
  margin-bottom: 90px;
  margin-top: 100px;
  background: url("./media/temp-A2TOSX2W.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
  width: 663px;
  height: 88px;
}
.m_btn.mid span {
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFE2BD;
}
.m_btn.light_ {
  width: 210px;
  height: 104px;
  background: url("./media/btn_sm-LWI4ZZZ6.webp");
  margin-bottom: 25px;
  background-size: cover;
}
.m_btn.light_.t_narrow {
  width: 180px;
  height: 89px;
}
.m_btn.light_.t_wide {
  width: 260px;
  height: 128px;
}
.m_btn.light_ span {
  margin-top: 10px;
}
.m_btn span {
  position: absolute;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
.m_btn h1 {
  position: absolute;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}
.playbackTimeline__timePassed {
  align-items: center;
  justify-content: right;
  display: flex;
}
.l_item_nm {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--font-color1);
  margin-right: auto;
}
.tm_rt {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--font-color1);
  width: 70px;
  display: flex;
  justify-content: center;
}
.show_dots {
  display: none;
}
.app-additional-mobile-menu {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 51;
}
app-header {
  position: fixed;
  width: 100%;
  z-index: 1008;
  left: 0;
}
@media (min-width: 768px) {
  app-header {
    zoom: 0.8;
  }
}
.header_stunt {
  height: 80px;
}
.play_list {
  position: relative;
  list-style-type: decimal;
  cursor: pointer;
  height: 48px;
  padding-right: 27px;
}
.play_list.borders_ {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.play_list.borders_:hover {
  background-color: var(--selection);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all 0.3s;
}
.play_list:hover {
  background-color: var(--selection);
  border-radius: 3px;
  transition: all 0.3s;
}
.play_list:hover .show_time {
  display: none;
}
.play_list:hover .show_dots {
  display: flex;
}
.play_list:hover .list__ {
  opacity: 1;
}
.spect_ {
  margin-right: 25px;
}
.form-control {
  width: 100%;
}
.form-control input {
  border: 1px solid;
  border-radius: 7px;
  margin-bottom: 12px;
  padding: 5px 15px;
  width: 100%;
}
.image.image-style-align-center {
  margin-left: auto;
  margin-right: auto;
}
ol,
menu {
  list-style: auto;
}
ul {
  list-style: 13px;
}
.image:not(.image-style-align-right, .image-style-align-left, .image-style-side) {
  margin: 35px auto 35px auto;
  width: fit-content;
}
.image {
  border-radius: 30px;
  overflow: hidden;
  max-width: 100%;
}
.image-style-side {
  float: right;
}
app-login,
app-forgot,
app-registration {
  width: 100%;
}
.reg_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 90px auto;
  padding: 20px;
  border: 1px solid gray;
  border-radius: 10px;
  background-image:
    linear-gradient(
      360deg,
      #f2ead4 4.3%,
      #d6c28d);
  width: fit-content;
}
.playbackTimeline__progressBar {
  height: 3px;
  background-color: var(--line_back);
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
.playbackTimeline__progressBackground {
  height: 3px;
  background-color: var(--pl_line);
  width: 100%;
  border-radius: 10px;
}
.playbackTimeline__progressBackground,
.playbackTimeline__progressBar,
.playbackTimeline__progressHandle {
  position: absolute;
}
.g-recaptcha {
  margin: auto;
}
.g-recaptcha iframe {
  border-radius: 0;
}
iframe {
  border-radius: 20px;
}
.lot_div {
  background: url("./media/lotus_divider-EY2ZO5UU.svg");
  background-repeat: no-repeat;
  background-position: center;
  max-width: 100%;
  height: 29px;
  margin: 65px 0 40px 0;
  background-size: contain;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
  margin-top: 66px;
}
.buttons a div.button_cont-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--button_);
  padding: 10px;
  border-radius: 5px;
  margin-right: 30px;
  text-align: center;
  width: 290px;
  height: 50px;
  transition: all 0.2s;
  background-size: contain;
  margin-bottom: 15px;
  background-repeat: no-repeat;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: var(--font-color1);
}
.buttons a div.button_cont-wrap:hover {
  background: var(--button_figure);
  transition: all 0.2s;
  background-size: contain;
  background-repeat: no-repeat;
  color: rgb(255, 255, 255);
}
.text-content-wrapper.active-theme .html_wrap {
  color: var(--border);
}
.html_wrap {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  text-align: justify;
  color: var(--font-color1);
  margin-top: 40px;
}
.html_wrap p {
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  border: none !important;
  box-sizing: content-box !important;
}
.html_wrap p[style*=--tw-] {
  all: revert !important;
  display: block !important;
  margin: 0 0 20px 0 !important;
  padding: 0 !important;
  border: none !important;
  box-sizing: content-box !important;
}
.html_wrap p:last-child {
  margin-bottom: 0 !important;
}
.html_wrap ul {
  list-style: unset;
  margin: 20px 0 20px 40px;
}
.html_wrap ol {
  margin: 20px 0 20px 40px;
}
.html_wrap .library-context {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: var(--font-color1);
}
.html_wrap blockquote {
  margin: 50px 0;
  padding: 85px 20px 70px 20px;
  position: relative;
  text-align: center;
  font-style: italic;
  overflow: hidden;
}
.html_wrap blockquote::before {
  content: "";
  background-image: var(--blockquote-before);
  width: 100%;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 10px;
  display: flex;
}
.html_wrap blockquote::after {
  content: "";
  background-image: var(--blockquote-after);
  width: 100%;
  height: 5px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 20px;
  display: flex;
}
.html_wrap blockquote p {
  font-family: Lato, sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 28px;
  line-height: 36px;
  color: #99601A;
}
.html_wrap h1,
.html_wrap h2,
.html_wrap h3,
.html_wrap h4,
.html_wrap h5,
.html_wrap h6 {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 46px;
  margin: 20px 0;
}
.html_wrap h1 {
  text-align: left !important;
}
.html_wrap h2 {
  text-align: left;
}
.html_wrap figcaption {
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
  text-underline-position: from-font;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}
.html_wrap a.mention {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  text-align: justify;
  color: rgb(42, 124, 187);
}
.html_wrap a.mention:visited {
  color: rgb(105, 77, 164);
}
.library-context {
  position: absolute;
  z-index: 9;
  padding: 12px;
  width: 325px;
  height: 93px;
  border-radius: 20px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 4px 25px 0px var(--shadow);
  cursor: pointer;
}
.library-context div > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  line-clamp: 12;
  -webkit-box-orient: vertical;
}
.library-context.contents_ {
  top: 37px;
  right: 20px;
  height: auto;
  text-align: left;
  width: 500px;
  padding: 28px 0 20px 0;
}
.library-context.link_context {
  height: auto;
  width: 391px;
  padding: 30px;
}
.library-context .redirect-button {
  display: block;
  line-height: 20px;
  text-decoration: underline;
  margin: 25px 0 0 auto;
}
.content-context {
  position: absolute;
  z-index: 9;
  padding: 12px;
  width: 325px;
  height: 93px;
  border-radius: 20px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 4px 25px 0px var(--shadow);
  cursor: pointer;
}
.content-context div > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  line-clamp: 12;
  -webkit-box-orient: vertical;
}
.content-context.contents_ {
  top: 37px;
  right: 20px;
  height: auto;
  text-align: left;
  width: 468px;
  padding: 28px 0 20px 0;
}
.content-context .redirect-button {
  display: block;
  line-height: 20px;
  text-decoration: underline;
  margin: 25px 0 0 auto;
}
.library-content-context {
  position: absolute;
  z-index: 9;
  padding: 12px;
  width: 325px;
  height: 93px;
  border-radius: 20px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 4px 25px 0px var(--shadow);
  cursor: pointer;
}
.library-content-context div > p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  line-clamp: 12;
  -webkit-box-orient: vertical;
}
.library-content-context.contents_ {
  top: 37px;
  right: 20px;
  height: auto;
  text-align: left;
  width: 468px;
  padding: 28px 0 20px 0;
}
.library-content-context .redirect-button {
  display: block;
  line-height: 20px;
  text-decoration: underline;
  margin: 25px 0 0 auto;
}
.library-context.contents_::before {
  content: "";
  position: absolute;
  background-image: url("./media/triangle-F2CHHFL2.svg");
  top: 0px;
  left: 78%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 18px;
}
.content-context.contents_::before {
  content: "";
  position: absolute;
  background-image: url("./media/triangle-F2CHHFL2.svg");
  top: 0px;
  left: 78%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 18px;
}
.library-content-context.contents_::before {
  content: "";
  position: absolute;
  background-image: url("./media/triangle-F2CHHFL2.svg");
  top: 0px;
  left: 78%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 18px;
}
.library-context::before {
  content: "";
  position: absolute;
  background-image: url("./media/triangle-F2CHHFL2.svg");
  top: 0px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 18px;
}
.library-context a,
.library-context.link_strt a {
  display: block;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: var(--font-color1);
  width: 50%;
  padding: 5px 0 5px 10px;
}
.image-style-align-left {
  float: left;
  margin-right: 20px;
}
.image-style-align-right {
  float: right;
  margin-left: 20px;
}
.ic_rud {
  width: 107px;
  height: 107px;
  background: url("./media/round-7B27EQGC.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 15px;
  margin-bottom: -35px;
}
.ic_rud.wide__ {
  width: 115px;
  height: 115px;
}
.itm_a_wrap {
  margin-top: 60px;
}
.frame_s {
  max-width: unset;
  width: 210px;
  height: 73px;
  z-index: 1;
}
.frame_s.frame_top {
  background: url("./media/frame_top-7RQEEO7F.webp");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -35px;
}
.frame_s.frame_bottom {
  margin-bottom: -12px;
  background: url("./media/frame_bottom-VOU2OEUL.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.quick-links .link-icons .link-item.visible_item {
  display: none;
}
.bottom_ln .frame_bottom {
  display: none;
}
.quick-links .link-icons.complex {
  justify-content: space-between;
  align-items: unset;
  margin-bottom: -315px;
  margin-top: 118px;
}
.quick-links .link-icons.complex.bottom_ln {
  max-width: 825px;
  justify-content: space-evenly;
  margin-bottom: 100px;
}
.quick-links .link-icons.complex.bottom_ln .ic_rud {
  position: absolute;
  top: -60px;
  z-index: 1;
  margin: 0;
}
.quick-links .link-icons.complex.bottom_ln .link-item.col {
  min-height: 283px;
  border-radius: 10px;
  justify-content: unset;
}
.quick-links .link-icons.complex.bottom_ln .link-item.col span.txt_ {
  margin-top: 35px;
}
.quick-links .link-icons.complex .link-item {
  width: 178px;
  max-width: unset;
  justify-content: space-between;
  background-image:
    url("./media/back_card-BBQ25UB7.webp"),
    linear-gradient(
      360deg,
      #F2EAD4 4.3%,
      #D6C28D 100%);
  background-size: contain;
  background-position: center;
}
.quick-links .link-icons.complex .link-item span {
  margin-top: unset;
  max-width: 90%;
}
.quick-links .link-icons.complex .link-item span.txt_ {
  color: rgb(9, 80, 126);
  margin-bottom: 8px;
  margin-top: -12px;
}
.quick-links .link-icons.complex .link-item span.t_cont {
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgb(4, 31, 61);
  max-width: 70%;
}
body {
  background: var(--main-background-color);
}
body:has(.main-contetnt-wrapper) {
  background: #fff6e0;
}
body:has(.fullscreen-book-dialog-active) {
  overflow: hidden !important;
}
body:has(.daily-sidebar-is-open) {
  overflow: hidden !important;
}
body:has(.desktop-burger-menu) {
  overflow: hidden !important;
}
body:has(.header-backdrop) {
  overflow: hidden !important;
}
body:has(dialog.stylized_[open]) {
  overflow: hidden !important;
}
body:has(dialog.detail-modal[open]) {
  overflow: hidden !important;
}
body:has(dialog.stylized_wide[open]) {
  overflow: hidden !important;
}
body:has(dialog.ad-dialog:not(.ad-dialog-hidden)) {
  overflow: hidden !important;
}
body:has(.chronological-section) app-header {
  display: none !important;
}
body:has(.chronological-section) app-footer {
  display: none !important;
}
body:has(.chronological-section)::before {
  display: none !important;
}
body:has(.fullscreen-photo-view) {
  overflow: hidden !important;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #FFE6AE;
}
body::-webkit-scrollbar-thumb {
  background: #BA7A2C;
  border-radius: 5px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--text-color);
}
body::-webkit-scrollbar:horizontal {
  height: 6px;
}
body::-webkit-scrollbar-thumb:horizontal {
  border-radius: 5px;
}
.mw-heading strong {
  font-weight: normal;
}
.bord_w {
  position: absolute;
  width: 1px;
  height: 100%;
  left: 5px;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      #CBAB89 0%,
      #7F6F51 48.4%,
      #CBAB89 100%);
}
.bord_w.bord_r {
  left: unset;
  right: 5px;
}
.offer-block_block-wrap {
  padding: 115px 0;
  background-image:
    url("./media/universe-2VHFJFDX.avif"),
    linear-gradient(
      360deg,
      #09507e 100%,
      #09507e 100%);
  background-size: cover;
  background-position: center;
}
li.current {
  background-color: var(--selection);
}
.playbackTimeline__progressHandle {
  border: 1px solid #f50;
  background-color: #f50;
  margin-top: -4px;
}
.playbackTimeline__duration {
  align-items: center;
  justify-content: left;
  display: flex;
  cursor: pointer;
}
.playbackTimeline__progressHandle {
  border: none;
  border-radius: 2px;
  height: 11px;
  width: 4px;
  background-color: var(--line_handle);
  box-sizing: border-box;
  margin-top: -4px;
  margin-left: -4px;
  opacity: 0;
  transition: opacity 0.15s;
}
.playbackTimeline__progressHandle::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 3px;
  background-color: var(--before_handle);
  top: 4px;
  left: -2px;
}
.playbackTimeline__progressHandle::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 3px;
  background-color: var(--before_handle);
  top: 4px;
  right: -2px;
}
.nav_playr {
  margin-left: 30px;
}
.cust_wd {
  width: 22.2%;
}
.pl_title {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #fff;
}
.pl_title.auth_sm {
  font-size: 17px;
  line-height: 20px;
}
.dt_w {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 13px;
  color: var(--text-color);
}
.cal_wrp {
  display: none;
}
.cal_wrp svg {
  width: 18px;
  height: 19px;
}
.playbackTimeline__progressWrapper:hover .playbackTimeline__progressHandle {
  opacity: 1;
}
.playbackTimeline__progressWrapper {
  position: relative;
  flex-grow: 1;
  padding: 10px 0;
  margin: 0 8px 0;
  cursor: pointer;
}
.playbackTimeline__timePassed {
  text-align: right;
}
.playbackTimeline {
  display: flex;
  font-size: 12px;
}
.ul-list {
  position: relative;
  margin-top: 77px;
  border-top: 1px solid var(--text-color);
}
.hvr {
  padding: 10px 0;
}
.form_error {
  color: red;
  margin-top: -21px;
}
.hvr:hover .on_hover {
  display: flex;
  position: fixed;
  flex-direction: column;
  height: fit-content;
  min-height: 106px;
  margin-top: 10px;
  right: 75px;
  border: 1px solid var(--st_back);
  border-radius: 15px;
  border-top-right-radius: 0;
  background-color: #fff !important;
  z-index: 10000;
  width: 214px;
}
.spinn_ {
  display: none;
}
.html_wrap a {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  text-align: justify;
  color: rgb(42, 124, 187);
}
.html_wrap a:visited {
  color: rgb(105, 77, 164);
}
.html_wrap a:hover {
  color: rgb(105, 77, 164);
}
.html_wrap a:visited span {
  color: rgb(105, 77, 164);
}
.on_hover {
  display: none;
}
.nav_contner {
  height: 58px;
  align-items: center;
  margin-bottom: 5px;
  transform: scale(1);
}
.playControls__control {
  width: 19.5px;
  height: 19.5px;
}
.playControls__control.playControl {
  width: 58px;
  height: 58px;
}
.playControls__control.playControls__repeat {
  width: 24.5px;
  height: 22.5px;
}
.playControls__control.playControls__shuffle {
  width: 26px;
  height: 20.5px;
}
app-goback {
  position: relative;
  z-index: 108;
  color: white;
}
.card-wrap {
  border: 1px solid gray;
  border-radius: 5px;
  margin-top: 10px;
  background-image:
    linear-gradient(
      360deg,
      #f2ead4 4.3%,
      #d6c28d);
  cursor: pointer;
}
.btn-light {
  display: block;
  border: 1px solid;
  border-radius: 3px;
  background-color: #d0e4f5;
  padding: 3px;
  margin: 20px 20px 0 0;
}
.btn-light.rounded-tl-full {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  width: 33px;
  height: 38px;
  border: none;
  margin: 20px 12px 0 0;
}
button.search-button {
  color: #e5e7eb;
  border: 1px solid rgba(16, 182, 23, 0.9098039216);
  background: rgba(47, 37, 144, 0.5);
  margin: 20px 15px 0 15px;
  border-radius: 999px;
  transition: 0.5s;
}
button.search-button.cs {
  margin-top: 0;
}
button.search-button:hover {
  background: #0d0d0d;
  color: #f7f7f7;
  transition: 0.5s;
}
button:disabled {
  opacity: 0.5;
}
.venzs_ {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.img_row.rotate::before {
  content: "";
  background-image: var(--ar);
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  width: 10px;
  height: 6px;
  margin-right: 6px;
  transform: rotate(180deg);
}
.img_row::before {
  content: "";
  background-image: var(--ar);
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  width: 10px;
  height: 6px;
  margin-right: 6px;
}
.theme_choose {
  position: relative;
  cursor: pointer;
}
.them_cn {
  cursor: pointer;
  width: 38px;
  height: 38px;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.them_cn.Light {
  background: var(--circl_lang), var(--circl_lt);
}
.them_cn.lightBlue {
  background: var(--circl_lang), var(--circl_md);
}
.them_cn.Dark {
  background: var(--circl_lang), var(--circl_dk);
}
.theme_choose:hover .lan_switch {
  opacity: 1;
  z-index: 1;
  transition: 0s;
}
.lan_wrap {
  position: relative;
}
.lan_wrap .lan_switch {
  right: 8px;
}
.lan_wrap:hover .lan_switch {
  opacity: 1;
  z-index: 1;
  transition: 0s;
}
.lan_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--lan_btn);
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  width: 84px;
  height: 38px;
  font-weight: bold;
}
.lan_btn p {
  color: var(--menu_font);
  font-weight: 500;
}
.lan_switch {
  opacity: 0;
  z-index: -1;
  transition: 0.5s;
  right: -15px;
  position: absolute;
  top: 23px;
  border: 2px solid transparent;
  background:
    linear-gradient(
      to right,
      var(--d_back),
      var(--d_back)),
    linear-gradient(
      to right,
      #ffe3a4,
      #fffaf2);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  border-radius: 15px;
  width: 149px;
  padding: 8px 0 4px 0;
  margin-top: 30px;
}
.lan_switch button {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 42px;
  letter-spacing: -0.3px;
  width: 100%;
  height: 40px;
  background-repeat: no-repeat !important;
  background-position-y: center !important;
  background-position-x: 12%;
  text-align: left;
  padding-left: 50px;
  color: var(--menu_font);
  transition: 0.2s;
}
.lan_switch button.selected_b {
  background-color: rgb(255, 227, 164);
  color: rgb(137, 87, 10);
}
.lan_switch button.Light {
  background-image: url("./media/light_blue-7DJLU2PN.svg");
}
.lan_switch button.Light:hover {
  background-color: rgb(255, 227, 164);
  color: rgb(137, 87, 10);
  transition: 0.2s;
}
.lan_switch button.lightBlue {
  background-image: url("./media/bw_blue-W7PTNER7.svg");
}
.lan_switch button.lightBlue:hover {
  background-color: rgb(255, 227, 164);
  color: rgb(137, 87, 10);
  transition: 0.2s;
}
.lan_switch button.def-selection:hover {
  background-color: rgb(255, 227, 164);
  color: rgb(137, 87, 10);
  transition: 0.2s;
}
.lan_switch button.Dark {
  background-image: url("./media/dark_blue-D5NASI3L.svg");
  margin-bottom: 4px;
}
.lan_switch button.Dark:hover {
  background-color: rgb(255, 227, 164);
  color: rgb(137, 87, 10);
  transition: 0.2s;
}
.lan_switch::before {
  content: "";
  background-image: var(--tri_);
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  width: 49px;
  height: 17px;
  position: absolute;
  right: 7px;
  top: -12px;
}
.rh_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 206px;
}
.close_butn {
  cursor: pointer;
  background: var(--close_butn);
  width: 24px;
  height: 24px;
  background-size: cover;
  background-repeat: no-repeat;
}
.close_btn {
  top: 27px;
  cursor: pointer;
  right: 158px;
}
.img_sb {
  position: absolute;
  background: url("./media/gloom-SFXUCJMW.avif");
  top: 80px;
  width: 1042px;
  height: 566px;
  z-index: 1;
}
.img_fb {
  position: absolute;
  z-index: 2;
  top: 80px;
  background: url("./media/castle-3UT4GJSD.avif");
  width: 1042px;
  height: 566px;
}
.img_mnb {
  position: absolute;
  z-index: 3;
  background: url("./media/monk1-FQQ6JXGI.avif");
  background-size: cover;
  width: 541px;
  height: 598px;
  left: 0;
  bottom: 0;
  max-height: 90vh;
}
.buttons_wrap {
  position: relative;
  bottom: 3%;
  z-index: 4;
}
.top_block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 1000px;
  background-image: url("./media/mount_-2PWLOLL7.avif");
  background-size: cover;
  background-position: center;
  margin-top: -95px;
  contain: layout paint;
  backface-visibility: hidden;
}
@media (max-width: 768px) {
  .top_block {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    background-attachment: scroll;
    contain: strict;
  }
}
@media (max-width: 1008px) {
  .mar_md {
    margin-top: -70px;
  }
  .html_wrap::first-letter {
    font-size: 70px;
    line-height: 26px;
  }
  .html_wrap h1,
  .html_wrap h2,
  .html_wrap h3,
  .html_wrap h4,
  .html_wrap h5,
  .html_wrap h6 {
    font-size: 28px;
    line-height: 34px;
    margin: 17px 0;
  }
}
@media (max-width: 768px) {
  .carn_b_:not(.rotate) {
    margin-top: -12px;
  }
  .icons_w.in-favourites .star_w.favr_ {
    width: 14px;
    height: 14px;
  }
  .icons_w.in-favourites .star_w.favr_ svg.emty_f {
    width: 14px !important;
    height: 14px !important;
  }
  .itm_a_wrap {
    margin-top: 25px;
  }
  label.pr_20 {
    font-size: 18px;
    line-height: 20px;
  }
  .style_dialog input.item_ {
    margin-top: 2px;
  }
  .mar_md {
    margin-top: -35px;
  }
  .image {
    border-radius: 15px;
  }
  .scroll_top {
    right: 7% !important;
    background-size: cover !important;
  }
  .top_block::before {
    background-image: url("./media/mount_-2PWLOLL7.avif");
  }
  .html_wrap blockquote::before {
    background-size: contain !important;
  }
  .wrapper_line > div:not(.dec_head) {
    max-width: 100% !important;
  }
  .similar-content-section {
    position: relative;
  }
  .arrows_cont {
    display: flex;
  }
  .html_wrap blockquote::after {
    content: "";
    background-image: var(--blockquote-after_md);
    width: 100%;
    height: 1px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 20px;
    display: flex;
    background-size: cover;
  }
  .lot_div {
    max-width: unset !important;
    width: 125%;
    margin: 45px -12.5% 50px -12.5% !important;
  }
  .similar-item-image {
    width: 280px !important;
    height: 193px !important;
    border-radius: 15px !important;
  }
  .similar-item-title {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  .similar-item-content {
    padding: 20px 0 0 0 !important;
    width: 280px !important;
  }
  .similar-content-title {
    font-size: 28px !important;
  }
  .similar-items {
    margin: 30px -30px 20px 0 !important;
    display: flex !important;
    flex-wrap: unset !important;
    overflow: auto !important;
  }
  .social {
    margin: 50px 0 !important;
  }
  .similar-content-section {
    margin: 10px 0 !important;
  }
  .wrapper_line span.text-color_ {
    font-size: 21px !important;
    line-height: 21px !important;
    margin: 35px 0 35px auto !important;
  }
  .content_wrap_ .social_par {
    font-size: 21px !important;
    line-height: 21px !important;
  }
  .buttons {
    margin-top: 30px !important;
  }
  .content_ {
    margin: 0 15px 15px 0 !important;
  }
  .content_._telegram {
    width: 26px !important;
    height: 22px !important;
  }
  .content_._instagram {
    width: 22px !important;
    height: 22px !important;
  }
  .content_._phone {
    width: 25px !important;
    height: 17px !important;
  }
  .content_._email {
    width: 22px !important;
    height: 21px !important;
  }
  .tag_item {
    margin-right: 15px !important;
    margin-bottom: 15px !important;
  }
  .html_wrap blockquote {
    padding: 50px 0 35px 0 !important;
  }
  .buttons a div.button_cont-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--button_);
    padding: 10px;
    border-radius: 5px;
    margin-right: 30px;
    text-align: center;
    width: 290px;
    height: 50px;
    transition: all 0.2s;
    background-size: contain;
    margin-bottom: 15px;
    background-repeat: no-repeat;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .mar_md {
    justify-content: unset;
    margin-top: -40px;
  }
  .html_wrap blockquote {
    margin: 30px 0 !important;
  }
  .scroll_top {
    width: 50px !important;
    height: 50px !important;
  }
}
@media (max-width: 500px) {
  .scroll_top {
    bottom: 120px !important;
  }
  .html_wrap h1,
  .html_wrap h2,
  .html_wrap h3,
  .html_wrap h4,
  .html_wrap h5,
  .html_wrap h6 {
    font-size: 24px !important;
    line-height: 30px !important;
    margin: 15px 0;
  }
  .html_wrap::first-letter {
    font-size: 50px;
  }
  .buttons a div.button_cont-wrap {
    width: 255px !important;
    height: 46px !important;
  }
  .similar-items {
    margin: 30px -30px 12px 0 !important;
  }
  .wrapper_line span.text-color_ {
    font-size: 18px !important;
    line-height: 10px !important;
  }
  .content_wrap_ .social_par {
    font-size: 18px !important;
    line-height: 10px !important;
  }
  .pr_20 {
    font-size: 17px;
  }
  .itm_a_wrap {
    margin-top: 15px;
  }
  .style_dialog .button_brd {
    height: 38px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 17px;
  }
  .style_dialog {
    padding: 38px 24px 10px 24px;
  }
  .style_dialog input.item_ {
    margin-top: 4px;
  }
  label.pr_20 {
    font-size: 14px;
  }
  .h_fixed {
    height: 150px;
  }
  .style_dialog {
    height: 405px;
  }
  .dec_head._background {
    margin-top: -100px !important;
  }
  .image {
    border-radius: 10px;
  }
  .lot_div {
    margin: 20px -12.5% !important;
  }
  .wrapper_line span.text-color_ {
    margin: 25px 0 25px auto !important;
  }
  .similar-item-title {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .similar-item-content {
    padding: 10px 0 0 0 !important;
    width: 150px !important;
  }
  .wrapper_line {
    padding: 0px 0 40px 0 !important;
  }
  .similar-item-image {
    width: 150px !important;
    height: 104px !important;
    border-radius: 10px !important;
  }
  .arr_w {
    width: 34px !important;
    height: 34px !important;
    background-size: cover !important;
  }
  .similar-content-title {
    font-size: 24px !important;
  }
  .buttons a div.button_cont-wrap {
    margin-right: unset !important;
  }
  .buttons {
    justify-content: center !important;
  }
}
@media (max-width: 420px) {
  .mar_md {
    margin-top: -212px;
  }
}
.top_block {
  contain: layout paint;
  transform: translateZ(0);
}
.side_head {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 0 255px;
  background: var(--side-back-stripes), var(--main-back-gradient);
  height: 80px;
  background-size: 825px;
  background-position: center;
  background-repeat: repeat-x;
}
.side_head::after {
  content: "";
  position: absolute;
  background-image: var(--bf_gradient);
  background-repeat: no-repeat;
  background-position: center;
  height: 425px;
  width: 100%;
  left: 0;
  top: 80px;
  z-index: -1;
}
.sidebar_cl {
  position: fixed;
  left: -925px;
  top: 0;
  height: 100%;
  width: 825px;
  color: #fff;
  transition: 0.3s;
  z-index: 1008;
  background: var(--side_back);
  overflow: hidden;
}
.sidebar_cl.active {
  left: 0;
}
.sidebar_cl a:not(.spec_) {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
}
.main-container {
  margin-left: 0;
  transition: 0.3s;
}
.main-container.active {
  margin-left: 250px;
}
.logo {
  max-width: 80px;
}
.carousel-container.cnt .carousel-item {
  min-width: 25%;
}
.carousel-container.trp .carousel-item {
  min-width: 33.33%;
}
@media (max-width: 1079px) {
  .carousel-container.trp .carousel-item {
    min-width: 50%;
  }
}
@media (max-width: 768px) {
  .carousel-container.trp .carousel-item {
    min-width: 100%;
  }
}
.carousel-date.mb_ {
  margin-bottom: 20px;
}
.clamp_2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.carousel-container.middle {
  margin: unset;
}
.carousel-container.middle.with_decor .frame_w {
  position: absolute;
  left: 42px;
  width: 161px;
}
.carousel-container.middle.with_decor .frame_w.mirr {
  right: 42px;
  left: unset;
}
.carousel-container .carousel {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-container .carousel-item {
  min-width: 75%;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
}
.carousel-container .carousel-item .carousel-content {
  color: #fff;
  position: absolute;
  z-index: 11;
  bottom: 55px;
  width: 346px;
}
.carousel-container .carousel-item .carousel-content .carousel-date {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  color: #F4D4A2;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.carousel-container .carousel-item .carousel-content .carousel-title {
  font-family: Lato, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  max-width: 70%;
  margin: auto;
  color: #fff;
}
.carousel-container .carousel-item .carousel-content .carousel-title.gold {
  color: rgb(255, 226, 189);
  margin-bottom: 20px;
}
.profile-playlist {
  max-width: 900px;
  margin: 90px auto;
  padding: 20px;
  border: 1px solid gray;
  border-radius: 10px;
  background-image:
    linear-gradient(
      360deg,
      #f2ead4 4.3%,
      #d6c28d);
}
.profile-playlist h1 {
  font-weight: 500;
  font-size: 22px;
}
.button_b {
  background-color: #f1f1f1;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  outline: none;
  border-radius: 5px;
}
.button_b.active {
  background-image:
    linear-gradient(
      360deg,
      #0E5788 4.3%,
      #062b55);
  color: white;
  background-position: center;
}
.button_b.mb {
  margin-bottom: 15px;
}
.tabs .button_b.active {
  background-image:
    linear-gradient(
      360deg,
      #0E5788 4.3%,
      #062b55);
  color: white;
  background-position: center;
}
.tabs button:hover {
  background-color: #ddd;
}
.frame_ {
  position: absolute;
  z-index: 11;
  width: 346px;
  height: 346px;
  background: url("./media/frame-J3SDAIC5.webp");
  background-size: contain;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  color: white;
  border: none;
  font-size: 2em;
  cursor: pointer;
  padding: 10px;
  transform: translateY(-50%);
  z-index: 10;
  background: url("./media/btn_l-5PEBJAX2.webp");
  background-size: contain;
  width: 84px;
  height: 44px;
}
.carousel-arrow.left-arrow {
  left: -88px;
}
.carousel-arrow.right-arrow {
  right: -88px;
  transform: rotate(180deg);
}
.top_neg {
  position: absolute;
  bottom: -17px;
  width: 100%;
  z-index: 8;
}
.side_blbc {
  position: absolute;
  top: -50vh;
  width: 100%;
  height: 200vh;
  z-index: 109;
  background-color: var(--blur_main);
}
.side_ {
  padding: 32px 10px 52px 255px;
}
.social_side_ {
  display: flex;
  padding-left: 255px;
}
.soc_ {
  width: 40px;
  height: 40px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  cursor: pointer;
  margin-right: 15px;
}
.soc_.tel_ {
  background: url("./media/telegr-CGNP3E67.svg");
}
.soc_.yt_ {
  background: url("./media/yout-4GPUYQIX.svg");
}
.soc_.vk_ {
  background: url("./media/vk-Y2IMJRTL.svg");
}
.soc_.fb_ {
  background: url("./media/fbk-B43OYLRR.svg");
}
.soc_.in_ {
  background: url("./media/instgrm-NEHTIZ2F.svg");
}
.sidebar_cl .button_img a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 203px;
  height: 50px;
  background: var(--btn_main);
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 17px;
  color: rgb(211, 146, 60);
}
.sidebar_cl .button_img.reg a {
  background: var(--btn_main_r);
  color: rgb(255, 255, 255);
  margin-left: 40px;
}
.star_ {
  position: relative;
  top: -45px;
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  background-position: center;
  background: url("./media/star-WJO5ICGJ.webp");
  background-size: contain;
}
.tablet_mob {
  display: none;
}
.show_msd {
  display: none;
}
.quick-links {
  position: relative;
  z-index: 1;
}
.quick-links .link-icons {
  display: flex;
  justify-content: space-evenly;
  align-items: baseline;
  max-width: 1170px;
  margin: auto;
}
.quick-links .link-icons .link-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  max-width: 150px;
}
.quick-links .link-icons .link-item.col {
  flex-direction: column;
}
.quick-links .link-icons .link-item span {
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFE2BD;
  max-width: 95%;
  margin-top: 22px;
}
.quick-links .link-icons .link-item .image_w {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-links .link-icons .link-item .image_w img.sign {
  position: absolute;
  scale: 0.5;
}
header {
  position: relative;
  z-index: 108;
}
.divide_ {
  width: 100%;
  align-items: center;
}
.img_row {
  display: flex;
  align-items: center;
}
.ms_wrap {
  margin: 12px 0 0 57px;
}
.item_menu {
  display: flex;
  flex-direction: column;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 20px;
  color: var(--font-color1);
  cursor: pointer;
}
.item_menu li {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 44px;
  color: var(--font-color1);
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.list_menu {
  padding: 39px 10px 10px 255px;
  overflow: auto;
  max-height: 62vh;
}
.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  padding: 10px 0;
  position: relative;
  z-index: 1008;
  background: var(--burger);
  width: 35px;
  height: 19px;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: content-box;
}
select.form-select_ {
  height: 30px;
}
.menu_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 125px;
  background: var(--main-back-stripes), var(--main-back-gradient);
  height: 80px;
  background-size: 1920px;
  background-position: center;
  background-repeat: repeat-x;
}
.similar-content-title {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--font-color1);
}
.tags_cont {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
.tag_item {
  border: 1px solid var(--font-color1);
  border-radius: 15px;
  padding: 12px 22px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: var(--font-color1);
  cursor: pointer;
  margin-right: 20px;
  margin-bottom: 20px;
}
.tag_item:hover {
  border: 1px solid var(--blockquote-par);
  background: var(--blockquote-par);
  color: rgb(255, 255, 255);
}
.scroll_top {
  position: fixed;
  width: 60px;
  height: 60px;
  background-size: cover !important;
  background: var(--scroll_top);
  cursor: pointer;
  bottom: 8%;
  right: 6%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}
.scroll_top.is-visible {
  opacity: 1;
  transition: opacity 0.5s;
  z-index: 11;
}
.wrapper_line span.text-color_ {
  display: block;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  text-align: right;
  color: var(--font-color1);
  margin: 50px 0 50px auto;
}
.icons_w .icon-wrap:not(.cal_w, .clock_w) {
  cursor: pointer;
}
.icons_w span.text-color {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 18px;
  color: var(--font-color1);
}
.icons_w.in-favourites .star_w {
  background: var(--star_dark);
  height: 24px;
  width: 25px;
}
.icons_w.in-favourites svg.emty_f_hover {
  display: none;
}
.icons_w.in-favourites svg.emty_f {
  display: none;
}
.icons_w svg.emty_f_hover {
  display: none;
}
.icons_w.is-liked .like_w {
  background: var(--heart_dark);
  height: 22px;
  width: 24px;
}
.icons_w.is-liked svg.emty_l_hover {
  display: none;
}
.icons_w.is-liked svg.emty_l {
  display: none;
}
.icons_w svg.emty_l_hover {
  display: none;
}
.icons_w:hover.no_hover span.text-color {
  color: var(--font-color1);
}
.icons_w:hover span.text-color {
  color: var(--text-color);
}
.icons_w:hover:not(.in-favourites) .star_w svg.emty_f {
  display: none;
}
.icons_w:hover:not(.in-favourites) .star_w svg.emty_f_hover {
  display: block;
}
.icons_w:hover:not(.is-liked) .like_w svg.emty_l {
  display: none;
}
.icons_w:hover:not(.is-liked) .like_w svg.emty_l_hover {
  display: block;
}
.icons_w:hover.is-liked .like_w {
  background: var(--heart);
  height: 22px;
  width: 24px;
}
.icons_w:hover.in-favourites .star_w {
  background: var(--star);
  height: 24px;
  width: 25px;
}
.icons_w:hover .share_w {
  background: var(--share);
  height: 24px;
  width: 24px;
}
.icons_w:hover .share_w svg {
  opacity: 0;
}
.icons_w:hover .content_w {
  background: var(--content);
  height: 18px;
  width: 22px;
}
.icons_w:hover .content_w svg {
  opacity: 0;
}
.icon-wrap {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  margin-top: -3px;
}
.m_grid {
  max-width: 1170px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.m_grid.nav_wrap {
  max-width: 1260px;
}
.f_par {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: var(--menu_font);
  margin-top: 30px;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  position: relative;
  margin: 0 auto;
}
.navbar ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ms_wrap ul {
  list-style: initial;
}
.navbar li {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.navbar li::before {
  content: "";
  background-image: var(--arrow_d);
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  width: 10px;
  height: 6px;
  margin-right: 6px;
}
.navbar li.item::before {
  background-image: unset;
  width: unset;
  height: unset;
}
.navbar li.button_img_before {
  width: 178px;
  height: 37px;
  justify-content: center;
  margin: 0 25px 0 0;
}
.navbar li.button_img_before button {
  margin-top: 4px;
}
.navbar .button_img_before a {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 18px;
  color: var(--menu_font);
}
.navbar li.item.button_img_before::before {
  background-image: var(--btt_top);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 178px;
  height: 37px;
  position: absolute;
  right: 0;
  margin: 0;
}
.navbar li.item.serch::before {
  background-image: var(--serch);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 21px;
  height: 21px;
  margin: 0;
}
.navbar a {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 20px;
  vertical-align: middle;
  color: var(--menu_font);
}
.navbar a.rout_l {
  position: absolute;
  width: 21px;
  height: 21px;
}
.user-menu {
  display: flex;
  align-items: center;
}
.user-dropdown {
  color: var(--menu_font);
  padding: 5px 14px;
  cursor: pointer;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 17px;
  margin-bottom: -5px;
}
.user-dropdown.has-arrow {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.user-dropdown.has-arrow::after {
  content: "";
  background-image: var(--arrow_d);
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  width: 10px;
  height: 6px;
  margin-left: 7px;
  margin-top: -2px;
}
.user_logo_ {
  width: 32px;
  height: 32px;
  background: var(--signin);
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.user_logo_.authorized_ {
  background: var(--authorized);
}
.user_logo_.authorized_ img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  height: 100%;
}
.notifications span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  right: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  font-family: Lato, sans-serif;
  font-size: 10px;
  font-weight: 400 !important;
  color: #fff;
  line-height: 20px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  background: rgb(42, 124, 187);
}
app-layout {
  width: 100%;
}
.content-height_wrap {
  display: flex;
  min-height: 100vh;
}
.notifications span {
  font-weight: bold;
}
b,
strong {
  font-weight: normal;
}
.html_wrap b,
.html_wrap strong {
  font-weight: bold !important;
}
.editor-content b,
.editor-content strong,
[contenteditable=true] b,
[contenteditable=true] strong {
  font-weight: bold !important;
}
.editor-content i,
.editor-content em,
[contenteditable=true] i,
[contenteditable=true] em {
  font-style: italic !important;
}
.editor-content u,
[contenteditable=true] u {
  text-decoration: underline !important;
}
.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}
.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.6509803922);
  opacity: 1;
  will-change: opacity;
}
.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}
.fancybox__viewport {
  width: 100%;
  height: 100%;
}
.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
  transform:
    matrix(
      1, 0,
      0, 1,
      0, 0);
}
.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}
.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 0 0;
  padding: 4px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}
.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}
.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: #374151;
  background: #fff;
  cursor: default;
  border-radius: 0;
  z-index: 20;
}
.fancybox__content .btn-light {
  display: block;
  border: 1px solid;
  border-radius: 3px;
  background-color: #d0e4f5;
  padding: 3px;
  margin: 20px 20px 0 0;
}
.ng-select .ng-select-container {
  cursor: default;
  display: flex;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container {
  flex-wrap: wrap;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder {
  z-index: 1;
  position: absolute;
}
.ng-select .ng-select-container .ng-value-container {
  display: flex;
  flex: 1;
}
.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon {
  display: none;
}
.ng-select {
  position: relative;
  display: block;
  box-sizing: border-box;
}
.fancybox__content > .f-button.is-close-btn {
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}
.ng-dropdown-panel .scroll-host {
  border: 1px solid;
  background: cornsilk;
  padding: 5px;
}
.f-button svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  stroke: #fff;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.nams_wrap {
  background: url("./media/namaste_-SDQPZNSP.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 38px;
  max-width: 336px;
  margin: 32px auto 28px auto;
}
.x_bt {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 20px;
  height: 20px;
  background: var(--x_bt);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
dialog:-internal-dialog-in-top-layer::backdrop {
  background: var(--blur_main);
}
dialog {
  border-radius: 8px;
  padding: 20px;
}
dialog:focus-visible {
  outline: none;
}
dialog.stylized_ {
  width: 426px;
  border-radius: 20px;
  padding: 46px 0 65px 0;
}
dialog.stylized_ .b_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
dialog.stylized_wide {
  width: 690px;
  padding: 54px 0 30px 0;
  border-radius: 20px;
  overflow: visible;
}
dialog.stylized_wide.h_auto {
  height: fit-content;
  padding: 52px 0 79px 0;
}
dialog.stylized_wide.h_auto .cont_mod {
  height: 100%;
  overflow: visible;
}
dialog.stylized_wide .cont_mod {
  overflow: visible;
  margin: auto;
  width: 75%;
}
dialog.stylized_wide .x_bt {
  right: 21px;
  top: 21px;
}
.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.format-options {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  cursor: pointer;
  flex-wrap: wrap;
}
.format-options input.checkbox_ {
  width: 32px;
  height: 32px;
}
.format-options label {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--font-color1);
  cursor: pointer;
}
.format-options input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: 3;
  margin: 0;
  cursor: pointer;
}
.format-options span {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid var(--text-color);
  margin-right: 11px;
  transition: background-color 0.3s;
  z-index: -1;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.format-options input[type=checkbox]:checked + span {
  background-color: var(--text-color);
}
.format-options input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 10px;
  height: 16px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  cursor: pointer;
}
.else_bt {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("./media/bt_bord_-BMURE6XO.svg");
  width: 187px;
  height: 50px;
  background-size: contain !important;
  margin-bottom: 15px;
  background-repeat: no-repeat !important;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: var(--font-color1);
  text-align: center;
}
.auth_head {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: var(--font-color1);
  text-align: left;
  margin-bottom: 6px;
}
.auth_p {
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--font-color1);
  text-align: center;
}
button.else_bt.reg_bt {
  background: url("./media/Button1_1_-EMCZFMFM.svg");
  width: 258px;
  height: 55px;
}
.ok-button {
  padding: 5px 20px;
  border-radius: 10px;
  color: white;
  background-color: rgb(173, 59, 59);
}
.cancel-button {
  padding: 5px 20px;
  border-radius: 10px;
  color: white;
  background-color: #26691d;
}
@media (max-width: 1008px) {
  .html_wrap blockquote {
    padding: 70px 0 50px 0 !important;
  }
  .html_wrap blockquote p {
    font-size: 18px !important;
    line-height: 26px !important;
  }
  .html_wrap blockquote::before {
    width: 132%;
    left: -16%;
  }
  .html_wrap blockquote::after {
    width: 130%;
    left: -15%;
  }
}
.image-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      var(--light-color, rgba(249, 233, 200, 0.95)) 0%,
      var(--selection, rgba(255, 226, 163, 0.95)) 50%,
      var(--pl-stop, rgba(240, 187, 86, 0.95)) 100%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 2;
  transition: opacity 0.3s ease;
}
.image-loading-overlay app-loading-indicator {
  padding: 0;
}
.image-loading-overlay.rounded {
  border-radius: 50%;
}
.image-loading-overlay.rounded-lg {
  border-radius: 20px;
}
.image-loading-overlay.rounded-xl {
  border-radius: 30px;
}
.image-loading-overlay.rounded-sm {
  border-radius: 10px;
}
@media not all and (min-width: 640px) {
  .max-sm\:max-h-\[97vh\] {
    max-height: 97vh;
  }
  .max-sm\:max-w-\[98vw\] {
    max-width: 98vw;
  }
}
@media (min-width: 640px) {
  .sm\:gap-\[100px\] {
    gap: 100px;
  }
}

/* src/assets/styles/responsive.scss */
@media (max-width: 1550px) {
  .burger {
    margin-right: 25px;
    width: 29px;
    height: 16px;
    background-size: contain;
  }
  .navbar a {
    font-size: 17px;
    line-height: 20px;
  }
  .navbar .button_img_before a {
    font-size: 15px;
    line-height: 15px;
  }
  .navbar li.item.button_img_before::before {
    width: 160px;
    height: 33px;
  }
  .navbar li.button_img_before button {
    margin-top: 2px;
  }
  .navbar li.button_img_before {
    width: 160px;
    height: 33px;
    margin: 0 20px 0 0;
  }
  .user_logo_:not(.head_section) {
    width: 32px;
    height: 32px;
  }
  .navbar li {
    margin-right: 20px;
  }
  .top_block {
    height: 900px;
  }
  .img_mnb {
    max-height: 75vh;
  }
  .quick-links .link-icons.tr_ {
    max-width: 1170px;
  }
  .frame_w {
    left: 10px;
  }
  .frame_w.mirr {
    right: 10px;
  }
  .frame_w:not(.dec) {
    width: 57px;
  }
  .m_btn.mid {
    margin-bottom: 80px;
    margin-top: 45px;
    height: 61px;
    width: 100%;
  }
  .m_btn.mid span {
    font-size: 22px;
  }
  .m_btn.wide {
    width: 100%;
    height: 77px;
  }
  .m_btn.wide span {
    font-size: 22px;
  }
  .secnd_block-wrap {
    padding: 80px 0;
  }
  .def-block_block-wrap {
    padding: 80px 0;
  }
  .m_btn.wide {
    margin-bottom: 55px;
  }
  .frame_ {
    width: 280px !important;
    height: 280px;
  }
  .carousel-arrow {
    width: 44px;
    height: 22px;
  }
  .carousel-arrow.right-arrow {
    right: 60px;
  }
  .carousel-arrow.left-arrow {
    left: 60px;
  }
  .carousel-container {
    max-width: 1050px;
  }
  .carousel-container.middle {
    max-width: 900px;
  }
  .carousel-container .carousel-item .carousel-content {
    bottom: 80px;
    width: 280px;
  }
  .carousel-container .carousel-item .carousel-content .carousel-title {
    max-width: 80%;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 7px;
  }
  .carousel-container .carousel-item .carousel-content .carousel-date img {
    height: 41px;
  }
  .star_ {
    width: 46px;
    height: 46px;
    top: -37px;
  }
  .quick-links .link-icons {
    max-width: 900px;
  }
  .quick-links .link-icons.complex {
    max-width: 1170px;
  }
  .quick-links .link-icons .link-item {
    max-width: 120px;
  }
  .quick-links .link-icons .link-item .image_w img.sign {
    scale: 0.4;
  }
  .quick-links .link-icons .link-item .image_w .round {
    width: 120px;
    height: 120px;
  }
  .quick-links .link-icons .link-item span {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 1350px) {
  .cl_bun span {
    display: block;
    opacity: 0;
    width: 30px;
  }
  .cl_bun:after {
    right: 2px;
  }
  .playControls__elements {
    padding: 17px 34px 19px 34px;
  }
  .card-wrap,
  .m_tab {
    margin-left: 15px;
    margin-right: 15px;
  }
  .top_block {
    height: 850px;
  }
  .menu_wrap {
    padding: 0 50px;
  }
}
@media (max-width: 1239px) {
  .top_block {
    height: 800px;
  }
  .navbar li.button_img_before {
    width: 150px;
    height: 29px;
  }
  .navbar .button_img_before a {
    font-size: 13px;
  }
  .user-dropdown:not(.head_section, .app_section) {
    font-size: 15px;
  }
  .navbar li.item.button_img_before::before {
    width: 150px;
    height: 29px;
  }
  .burger {
    margin-right: 14px;
  }
  .navbar a {
    font-size: 15px;
  }
  .navbar li {
    margin-right: 15px;
  }
  .l-container.l-fullwidth {
    width: 100%;
  }
  .carousel-container {
    max-width: 930px;
  }
  .frame_s {
    width: 160px;
  }
  .ic_rud:not(.wide__) {
    width: 65px;
    margin-bottom: -25px;
  }
  .quick-links .link-icons.complex {
    max-width: 895px;
  }
  .frame_s.frame_bottom {
    margin-bottom: -26px;
  }
  .quick-links .link-icons.complex:not(.bottom_ln) .link-item {
    width: 133px;
  }
  .bottom_ln .frame_s {
    width: 210px;
  }
  .bottom_ln .frame_s.frame_top {
    margin-top: -35px;
  }
  .frame_s.frame_top {
    margin-top: -25px;
    margin-bottom: -20px;
  }
}
@media (max-width: 1200px) {
  .top_block {
    height: 750px;
  }
  .close_btn {
    top: 10px;
  }
  .user-dropdown:not(.head_section, .app_section) {
    font-size: 13px;
    line-height: 16.5px;
    padding: 0 0 0 10px;
  }
  .top_block {
    margin-top: -75px;
  }
  .carousel-arrow.left-arrow {
    left: 12px;
  }
  .carousel-arrow.right-arrow {
    right: 12px;
  }
}
@media (max-width: 1100px) {
  .pl_center_wrap {
    width: 43.67%;
  }
  .playControls__elements {
    justify-content: space-evenly;
  }
  .f_par {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .footer_wrap .m_grid.nav_wrap {
    justify-content: unset;
  }
  .footer_wrap .f-tr_block.sd_ {
    margin-left: 20px;
  }
  .f_head {
    font-size: 40px !important;
    line-height: 44px !important;
  }
  .soc_block {
    position: absolute;
    bottom: -64px;
    right: 0;
  }
  .abs_sm {
    position: absolute;
    bottom: -65px;
    left: 0;
  }
  .bord_bt {
    border-bottom: none !important;
    margin-top: auto;
    justify-content: space-between;
  }
  .f-tr_block {
    width: 43% !important;
  }
  .f-tr_block.sd_ {
    width: 38% !important;
  }
  .flex_item {
    margin-right: 38px;
  }
  .footer_wrap {
    min-height: 525px;
    padding: 0 20px 35px 20px !important;
  }
  .footer_wrap .nav_wrap {
    border-bottom: 1px solid var(--menu_font);
    padding-bottom: 50px;
  }
  .top_block {
    height: 700px;
  }
  .tags {
    font-size: 16px;
  }
  .block_quote {
    padding: 24px;
    margin: 35px 0;
  }
  .quotes_ {
    width: 51px;
    height: 51px;
  }
  .img_description {
    font-size: 20px;
    line-height: 26px;
  }
  .html_wrap figcaption {
    font-size: 20px;
    line-height: 26px;
    margin-top: 15px;
  }
  .carn_b {
    display: none;
  }
  h1.dec_head-title {
    font-size: 24px !important;
    font-weight: 400 !important;
    line-height: 24px;
    margin: 50px 0;
  }
  .wrapper_line {
    padding: 0 0 100px 0;
  }
  .tr_cont {
    width: 180px;
    margin-bottom: 0;
  }
  .button_sm_wrap span {
    font-size: 11.52px;
    line-height: 11.52px;
  }
  .three_items .tablet_mob {
    display: block;
    width: 182px;
    height: 162px;
    background: url("./media/frame_md-PSPKHQTJ.webp");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .button_sm_wrap {
    width: 152px;
    height: 36px;
  }
  .lbl_c {
    font-size: 18px;
    line-height: 18px;
    max-width: 70%;
    margin: 12px auto 5px auto;
  }
  .lbl_t {
    font-size: 10px;
    line-height: 10px;
    margin: 0 auto 2px auto;
  }
  .frame_t.desctop {
    display: none;
  }
  .quick-links .link-icons.tr_ {
    height: 200px;
    margin-top: 50px;
    max-width: 870px;
  }
  .close_btn {
    right: 115px;
  }
  .m_btn.light_ {
    width: 180px;
    height: 89px;
  }
  .m_btn {
    width: 285px;
    height: 82px;
  }
  .m_btn span {
    font-size: 18px;
  }
  .m_btn h1 {
    font-size: 18px;
  }
  .top_block {
    margin-top: -65px;
  }
  .user-menu.auth_ {
    margin-left: 27px;
  }
  .user_logo_:not(.head_section) {
    width: 35px;
    height: 35px;
  }
  .button_img_before,
  .item.serch {
    display: none !important;
  }
}
@media (max-width: 1079px) {
  .playControls__inner {
    height: 70px;
  }
  .playControl.playControls__control svg {
    height: 35px;
  }
  .playControls__control.playControl {
    width: 35px;
    height: 35px;
  }
  .playControls__control.playControl svg {
    max-width: 100%;
  }
  .playControls__control {
    width: 16px;
    height: 14px;
  }
  .nav_contner {
    height: 35px;
    margin-bottom: 0;
  }
  .playControls__control.playControls__shuffle {
    width: 15.5px;
    height: 12.5px;
    display: flex;
  }
  .playControls__control.playControls__shuffle button:before {
    background-size: contain;
  }
  .playControls__control.playControls__shuffle button:after {
    background-size: contain;
  }
  .playControls__control,
  .playControls__control:not(:first-child) {
    margin-left: 12px;
  }
  .playControls__control.playControl,
  .playControls__control:not(:first-child).playControl {
    margin-left: 12px;
    margin-right: 0;
  }
  .playbackTimeline__progressHandle {
    height: 8px;
    width: 3px;
    margin-top: -3px;
    margin-left: -4px;
  }
  .playbackTimeline__progressBackground {
    height: 2px;
  }
  .playbackTimeline__progressBar {
    height: 2px;
  }
  .playbackTimeline__progressHandle::before {
    top: 2px;
  }
  .playbackTimeline__progressHandle::after {
    top: 2px;
  }
  .playbackTimeline__duration,
  .playbackTimeline__timePassed {
    font-size: 11px;
  }
  .playControls__control.playControls__repeat {
    width: 14.5px;
    height: 13.5px;
    display: flex;
  }
  .playControls__control.playControls__repeat button {
    background-size: contain;
  }
  .list__button {
    width: 15px;
    background-size: 15px 15px;
  }
  .cl_bun:after {
    width: 14px;
    height: 14px;
    background-size: contain;
  }
  .volume__iconWrapper button {
    margin-right: 12px;
  }
  .cl_bun {
    line-height: 14px;
    width: 20px;
  }
  .cl_bun span {
    width: unset;
  }
  .volume__iconWrapper svg {
    width: 15px;
    height: 15px;
  }
  .volume__button.speed {
    font-size: 13px;
  }
  .pl_title {
    font-size: 12px;
  }
  .pl_title.auth_sm {
    font-size: 12px;
  }
  .playbackTimeline__progressWrapper {
    padding: 6px 0;
    margin: 0 5px 0;
  }
  .skipControl__previous,
  .playControls__next {
    background-size: contain;
  }
  .html_wrap {
    font-size: 18px;
    line-height: 26px;
  }
  .html_wrap a.mention {
    font-size: 18px;
    line-height: 26px;
  }
  .carousel-container {
    max-width: 690px;
  }
}
@media (max-width: 950px) {
  .soc_block {
    bottom: unset;
    right: unset;
    top: 0;
  }
  .user-menu.auth_ {
    margin-left: 5px;
  }
  .f-tr_block.sd_ {
    margin-top: 70px;
  }
  .footer_wrap .nav_wrap {
    padding-bottom: 15px;
  }
  .top_block {
    height: 650px;
  }
  .secnd_block-wrap {
    padding: 54px 0;
  }
  .def-block_block-wrap {
    padding: 54px 0;
  }
  .m_btn.wide {
    max-width: unset;
  }
  .m_btn.wide {
    margin-bottom: 15px;
    overflow: hidden;
  }
  .m_btn.mid {
    margin-bottom: 50px;
    margin-top: 20px;
  }
  .quick-links .link-icons .link-item.decoration {
    display: none;
  }
  .navbar li {
    margin-right: 5px;
  }
  .row_btns {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .sidebar_cl {
    left: -85%;
    width: 85%;
  }
  .top_block {
    margin-top: -45px;
  }
  .user-dropdown:not(.head_section, .app_section) {
    font-size: 11px;
  }
  .notifications img {
    width: 28px;
    height: 28px;
  }
  .menu_wrap {
    padding: 0 10px;
  }
  .quick-links .link-icons.complex {
    padding: 0 20px;
  }
}
@media (max-width: 850px) {
  .playControls__elements {
    padding: 17px 15px 19px 15px;
  }
  .f-tr_block.sd_ {
    width: 50% !important;
  }
  .side_head {
    padding: 0 41px 0 35px;
  }
  .list_menu {
    padding: 39px 10px 10px 35px;
  }
  .side_ {
    padding: 10px 10px 52px 35px;
  }
  .social_side_ {
    padding-left: 35px;
  }
  .quick-links .link-icons.complex.bottom_ln {
    justify-content: center;
  }
  .quick-links .link-icons.bottom_ln .link-item {
    margin: 0 18px 60px 18px;
  }
  .bottom_ln .frame_bottom {
    position: absolute;
    display: block;
    width: 160px;
    bottom: 0;
  }
  .quick-links .link-icons .link-item.visible_item {
    display: flex;
  }
  .quick-links .link-icons.complex.bottom_ln .ic_rud {
    display: none;
  }
  .bottom_ln .frame_s.frame_top {
    width: 160px;
  }
  .quick-links .link-icons.complex.bottom_ln .link-item {
    width: 133px;
    background-size: 90%;
  }
  .bottom_ln .frame_s.frame_top {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  .quick-links .link-icons.complex.bottom_ln .link-item.col {
    min-height: 85px;
  }
  .quick-links .link-icons.complex .link-item span.t_cont {
    display: none;
  }
  .quick-links .link-icons.complex.bottom_ln .link-item.col span.txt_ {
    margin: -5px auto 0 auto;
  }
  .hide_msd {
    display: none !important;
  }
  .quick-links .link-icons.tr_ {
    padding: 0 15px;
  }
  .show_msd {
    display: flex;
  }
  .carousel-container {
    max-width: 615px;
  }
  .col_md {
    flex-direction: column;
  }
  .quick-links .link-icons.complex .link-item {
    background-size: cover;
  }
  .quick-links .link-icons.complex .link-item span {
    max-width: 85%;
  }
  .quick-links .link-icons.complex .link-item span.txt_ {
    margin-bottom: -30px;
  }
  .full_sm {
    width: 100%;
  }
  .mbtm {
    margin-bottom: 80px;
  }
  .col_min_md {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .lan_wrap .lan_switch {
    right: -15px;
  }
  .volume__sliderWrapper.list {
    left: -453px;
    bottom: 60px;
    width: 510px;
  }
  .que_lst {
    font-size: 16px;
    left: 20px;
  }
  .playControls__elements {
    padding: 10px 2px 10px 2px;
  }
  .dropdown-header {
    padding: 0 15px 0 14px !important;
    border-radius: 10px !important;
    height: 40px !important;
  }
  .dropdown_c {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .srchh {
    height: 16px !important;
    width: 16px !important;
    bottom: 10px !important;
  }
  .dropdown-item:not(.cat_i) {
    min-height: 40px !important;
  }
  input.item_ {
    width: 16px !important;
    height: 16px !important;
  }
  p.item_ {
    width: 16px !important;
    height: 16px !important;
  }
  .search-input {
    height: 34px !important;
    font-size: 18px !important;
    line-height: 18px !important;
  }
  .search-input::placeholder {
    font-size: 18px !important;
    line-height: 18px !important;
  }
  .format-options input[type=checkbox]:checked + span::after {
    left: 10px;
    top: 4px;
    width: 9px;
    height: 14px;
  }
  .format-options label {
    font-size: 18px;
  }
  .format-options span {
    width: 28px;
    height: 28px;
  }
  dialog.stylized_wide {
    width: 90% !important;
    padding: 40px 12px !important;
  }
  dialog.stylized_wide.h_auto {
    height: fit-content !important;
  }
  .center_logo {
    display: flex;
  }
  .f-tr_block {
    width: 45% !important;
  }
  .f-tr_block.sd_ {
    width: 51% !important;
  }
  .checked {
    background-size: 16px 16px !important;
  }
  .selectd_ p.item_ {
    background-size: 16px 16px !important;
  }
  .footer_wrap .nav_wrap {
    padding-bottom: 60px;
  }
  .side_head {
    background: var(--main-back-stripes_md), var(--main-back-gradient);
    background-size: 768px;
    background-position: center;
    background-repeat: repeat-x;
    height: 67px;
    padding: 0 41px 0 34px;
  }
  .side_head .center_logo {
    top: 4px;
  }
  .side_head .user_logo_.head_section {
    margin-left: 0;
  }
  .side_head .user-dropdown,
  .side_head .user-dropdown.has-arrow {
    display: flex;
  }
  .side_head .close_butn {
    width: 27px;
    height: 27px;
    margin-left: 26px;
  }
  .side_head .them_cn {
    width: 41px;
    height: 41px;
  }
  .lan_btn {
    background: var(--circl_lang);
    width: 38px;
    height: 38px;
  }
  .lan_btn p {
    margin-top: -1px;
  }
  .theme_choose {
    margin-right: 20px;
  }
  .rh_block {
    width: fit-content;
  }
  .side_head::after {
    top: 67px;
  }
  .footer_wrap {
    padding: 56px 34px 130px 34px !important;
    height: fit-content !important;
  }
  .header_stunt {
    height: 67px;
  }
  .menu_wrap {
    background: var(--main-back-stripes_md), var(--main-back-gradient);
    background-size: 768px;
    background-position: center;
    background-repeat: repeat-x;
    height: 67px;
    padding: 0 34px;
  }
  .f-tr_block.sd_ {
    width: 47% !important;
  }
  .one_of {
    margin-bottom: -30px !important;
    margin-right: 0 !important;
  }
  .f-tr_block {
    width: 47%;
  }
  .flex_item {
    margin-right: 55px;
  }
  .f_text_ {
    line-height: 26px !important;
    margin-bottom: 16px !important;
  }
  .center_logo {
    top: 2px;
  }
  .f_par {
    margin-top: 22px;
  }
  .burger {
    margin-right: 16px;
    padding: 10px 0;
    background: var(--burger_md);
    width: 41px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .user-menu.hide:not(.auth_) {
    display: none;
  }
  .user_logo_ {
    width: 32px;
    height: 32px;
  }
  .user-dropdown,
  .user-dropdown.has-arrow {
    display: none;
  }
  .nav_cont_sch {
    cursor: pointer;
    background: var(--nav_cont_sch);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 35px;
    height: 35px;
    margin-left: auto;
  }
  .navbar ul li:not(.button_img) {
    display: none;
  }
  .buttons_wrap {
    bottom: 24%;
  }
  .img_mnb {
    left: -90px;
  }
  .row_btns:not(.bottom_t) {
    display: none;
  }
  .m_btn.mid {
    height: 44px;
  }
  .m_btn.mid span {
    font-size: 15px;
  }
  .m_btn.wide {
    margin-top: 35px;
  }
  .m_btn.wide span {
    font-size: 15px;
  }
  .m_btn.wide {
    height: 47px;
  }
  .m_btn.mid {
    margin-bottom: 70px;
  }
  .quick-links .link-icons .link-item {
    width: 190px;
    max-width: unset;
    margin-bottom: 30px;
  }
  .quick-links .link-icons {
    flex-wrap: wrap;
    padding: 0 50px;
  }
  .def-block_block-wrap {
    padding: 85px 0;
  }
  .secnd_block-wrap {
    padding: 85px 0;
  }
  .secnd_block-wrap .row_btns {
    display: flex;
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin: 0 auto;
  }
  .user-dropdown {
    padding: 5px 14px 5px 20px;
  }
  .sidebar_cl {
    left: -100%;
    width: 100%;
  }
  header {
    z-index: 110;
  }
  .side_blbc {
    display: none;
  }
  .user-menu.auth_ {
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  .f_head {
    font-size: 30px !important;
    line-height: 30px !important;
  }
  .f_text_ {
    font-size: 17px !important;
    line-height: 20px !important;
  }
  .one_of {
    margin-bottom: -10px !important;
  }
  .und {
    font-size: 17px !important;
  }
}
@media (max-width: 650px) {
  .abs_sm {
    flex-direction: column;
    bottom: -85px;
  }
  dialog.stylized_wide .cont_mod {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .lan_switch {
    top: 15px;
  }
  .lan_wrap .lan_switch {
    right: -20px;
  }
  .lan_switch {
    right: -17px;
  }
  .item_menu {
    line-height: 28px;
  }
  .item_menu li {
    font-size: 18px;
  }
  .list_menu {
    padding: 30px 10px 10px 30px;
  }
  .side_ {
    padding: 10px 10px 46px 30px;
  }
  .social_side_ {
    padding-left: 30px;
  }
  .side_head {
    padding: 0 30px;
  }
  .sidebar_cl .button_img a {
    width: 150px;
    height: 37px;
    font-size: 15px;
    line-height: 15px;
  }
  .sidebar_cl .button_img.reg a {
    margin-left: 15px;
  }
  .html_wrap {
    font-size: 15px;
    line-height: 22px;
  }
  .html_wrap a.mention {
    font-size: 15px;
    line-height: 22px;
  }
  .soc_block {
    top: unset;
    bottom: -190px;
    left: 0;
  }
  .f_par {
    margin-top: 0;
  }
  .footer_wrap {
    padding: 0px 34px 165px 34px !important;
    height: fit-content !important;
    padding: 55px 34px 240px 34px !important;
  }
  .footer_wrap .f-tr_block.sd_ {
    margin-left: 0;
  }
  .one_of_ {
    margin-right: 40px !important;
  }
  .footer_wrap .nav_wrap {
    flex-direction: column;
  }
  .f-tr_block.sd_ {
    width: 100% !important;
    margin-top: 36px;
  }
  .f-tr_block {
    width: 100% !important;
  }
  .abs_sm {
    bottom: -108px;
  }
  .else_bt {
    width: 155px;
    height: 41px;
    margin-bottom: 12px;
    font-size: 17px;
  }
  .flex_item {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .f_par {
    font-size: 15px;
    line-height: 22px;
  }
  .auth_p {
    font-size: 17px;
  }
  dialog.stylized_ {
    min-width: 306px;
    padding: 46px 0 50px 0;
  }
  button.else_bt.reg_bt {
    width: 210px;
    height: 45px;
  }
  .x_bt {
    right: 14px;
    top: 13px;
    width: 16px;
    height: 16px;
  }
  .img_mnb {
    display: none;
  }
  .three_items .frame_t {
    width: 150px;
    height: 133px;
  }
  .quick-links .link-icons.tr_ {
    height: 130px;
  }
  .button_sm_wrap span {
    font-size: 10px;
  }
  .quick-links .link-icons.tr_ {
    flex-wrap: wrap;
  }
  .quick-links .link-icons.tr_ .three_items {
    width: 170px;
    height: 150px;
  }
  .button_sm_wrap {
    width: 130px;
    height: 28px;
  }
  .lbl_c {
    font-size: 14px;
    line-height: 14px;
    margin: 8px auto 4px auto;
    max-width: 55%;
  }
  .lbl_t {
    max-width: 55%;
  }
  .col_md {
    flex-direction: row;
    justify-content: space-around;
  }
  .col_min_md {
    flex-direction: column;
  }
  .col_min_md .link-item {
    min-height: 80px;
  }
  .quick-links .link-icons.complex .link-item span {
    max-width: 73%;
  }
  .quick-links .link-icons .link-item {
    margin-bottom: 55px;
  }
  .frame_s {
    width: 149px;
  }
  .quick-links .link-icons .link-item span {
    font-size: 15px;
    line-height: 15px;
  }
  .mbtm {
    margin-bottom: 0;
  }
  .col_min_md {
    width: fit-content;
  }
  .top_block {
    align-items: center;
  }
  .buttons_wrap {
    position: absolute;
  }
  .venzs_ {
    display: none;
  }
  .m_btn.light_ {
    width: 158px;
    height: 83px;
  }
  .m_btn span {
    font-size: 15px;
  }
  .m_btn h1 {
    font-size: 15px;
  }
  .menu_wrap {
    padding: 0 23px;
  }
  .nav_cont_sch {
    width: 30px;
    height: 30px;
  }
  .user_logo_ {
    width: 32px !important;
    height: 32px !important;
  }
  .center_logo {
    top: 1px;
    width: 70px;
    height: 70px;
  }
  .menu_wrap {
    background-size: 585px;
    height: 50px;
  }
  .burger {
    width: 30px;
    height: 19px;
  }
  .buttons_wrap {
    bottom: 15%;
  }
  .quick-links .link-icons.complex {
    margin-top: 70px;
  }
  .side_head {
    background-size: 560px;
    height: 46px;
  }
  .side_head::after {
    top: 46px;
  }
  .side_head .close_butn {
    width: 23px;
    height: 23px;
    margin-left: 17px;
    background-size: contain;
  }
  .side_head .center_logo {
    top: 1px;
    width: 70px;
    height: 70px;
  }
  .side_head .them_cn {
    width: 30px;
    height: 30px;
    background-size: cover, 70%;
  }
  .theme_choose {
    margin-right: 14px;
  }
  .lan_btn p {
    font-size: 14px;
  }
  .lan_btn {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 570px) {
  dialog.stylized_wide {
    padding: 40px 20px 20px 20px !important;
  }
  .icons_w.is-liked .like_w {
    width: 17px !important;
    height: 16px !important;
  }
  .icon-wrap.like_w svg {
    width: 17px;
    height: 16px;
  }
  .icons_w.in-favourites .star_w {
    width: 18px;
    height: 17px;
  }
  .icon-wrap.star_w svg {
    width: 18px;
    height: 17px;
  }
  .main_art-image {
    margin: 30px 0 36px 0 !important;
    position: relative;
    height: unset !important;
    max-height: unset !important;
    aspect-ratio: 16/9;
    border-radius: 10px !important;
  }
  .main_art-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .header_stunt {
    height: 90px;
  }
  .icons_w:hover.in-favourites .star_w {
    width: 18px;
    height: 17px;
  }
  .icons_w {
    margin-top: 0;
  }
  .icons_w:hover .content_w {
    height: 16px;
    width: 16px;
  }
  .icons_w:hover .share_w {
    width: 16px;
    height: 16px;
  }
  .icons_w .icon-wrap:not(.cal_w, .clock_w) svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 500px) {
  .hidden {
    position: relative;
    top: -100%;
  }
  .app-additional-mobile-menu {
    display: flex;
  }
  .pl_title {
    font-size: 20px;
    line-height: 1;
    color: var(--text-color23);
  }
  .pl_title.auth_sm {
    font-size: 15px;
    line-height: 2;
    color: var(--text-color);
  }
  .header_stunt {
    height: 110px;
  }
  .pl_center_wrap {
    width: 100%;
  }
  .playControls__control,
  .playControls__control:not(:first-child) {
    margin-left: 15px;
  }
  .shuffleControl:before {
    background-image: var(--no-shfl);
  }
  .shuffleControl:after {
    background-image: var(--shoffl);
  }
  .playControls__control.playControls__shuffle {
    width: 22px;
    height: 22px;
  }
  .playControls__control.playControls__repeat {
    width: 24px;
    height: 22px;
  }
  .playControls__control.playControls__repeat button {
    background-repeat: no-repeat;
    background-position: center;
  }
  .repeatControl.no-repeat {
    background: var(--no-repeat);
  }
  .repeatControl.repeat-all {
    background-image: var(--all-repeat);
  }
  .repeatControl.repeat-one {
    background-image: var(--one-repeat);
  }
  .playbackTimeline__progressBackground {
    background-color: var(--pl_line1);
  }
  .playbackTimeline__progressBar {
    background-color: var(--line_back1);
  }
  .cl_bun {
    position: absolute;
    top: 25px;
    right: 45px;
  }
  .cl_bun:after {
    content: "";
    position: absolute;
    top: 0;
    right: -28px;
    display: block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-image: var(--ard);
  }
  .playControls__control.playControl {
    width: 48px;
    height: 48px;
    margin-left: 0;
  }
  .playControls__control.playControl svg {
    height: 48px;
  }
  .skipControl__previous {
    background-image: var(--nav-pl);
    width: 15px;
    height: 15px;
  }
  .skipControl__previous.skipth {
    display: block;
  }
  .skipControl__next {
    background-image: var(--nav-pl);
    width: 15px;
    height: 15px;
    margin-left: 20px !important;
  }
  .skipControl__next.skipth {
    display: block;
    transform: none;
    margin-left: 15px !important;
  }
  .mb_ver {
    display: block;
  }
  .dt_ver {
    display: none;
  }
  .cal_wrp {
    display: flex;
    line-height: 1;
    margin-top: 4px;
  }
  .playbackTimeline__progressBackground {
    height: 3px;
  }
  .playbackTimeline__progressHandle::after {
    display: none;
  }
  .playbackTimeline__progressHandle::before {
    display: none;
  }
  .playbackTimeline__progressHandle {
    height: 10px;
    width: 10px;
    margin-top: -3px;
    margin-left: -1px;
    border-radius: 50%;
    background-color: var(--line_handle1);
  }
  .playbackTimeline__duration,
  .playbackTimeline__timePassed {
    margin-top: 16px;
  }
  .playbackTimeline__progressWrapper {
    margin: 0 -16px;
  }
  .playbackTimeline__progressBar {
    height: 3px;
  }
  .playbackTimeline__duration,
  .playbackTimeline__timePassed {
    font-family: Satoshi;
    font-weight: 400;
    font-size: 11.53px;
    color: var(--menu_font1);
  }
  .cust_wd {
    width: 97%;
    padding: 0;
    margin-bottom: 15px;
  }
  .playControls {
    height: 100%;
  }
  .playControls__inner:not(.main-contetnt-wrapper) {
    height: calc(100% - 80px);
    margin-top: 80px;
    background: var(--main-background-color);
  }
  .playControls__inner:has(.main-contetnt-wrapper) {
    background: #fff6e0;
  }
  .g-z-index-control-bar {
    z-index: 52;
  }
  .playControls__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .playControls__elements {
    display: flex;
    position: unset;
    flex-direction: column;
    padding: 0 22px 25px 22px;
    justify-content: space-between;
    height: fit-content;
  }
  .spec_onee {
    height: fit-content;
  }
  .nav_contner {
    height: 48px;
    margin-top: 52px;
  }
  .list__button {
    height: 17px;
  }
  .volume__button.speed {
    color: var(--line_handle1);
    font-size: 20px;
    line-height: 21px;
  }
  .nav_playr:not(.mobile_v) {
    display: none;
  }
  .nav_playr.mobile_v {
    display: flex;
    justify-content: space-between;
    margin-left: 0;
    width: 100%;
    margin-top: calc(52px + 6%);
  }
  .nav_playr.mobile_v .list__button {
    background: var(--listt_);
    width: 22px;
    height: 18px;
  }
  .nav_playr.mobile_v .volume__button.speed {
    background: var(--1speed);
    font-size: 0;
    width: 30px;
    height: 20px;
  }
  .nav_playr.mobile_v .mob_star {
    background: var(--l-star);
    width: 24px;
    height: 22px;
  }
  .nav_playr.mobile_v .mob_like {
    background: var(--l-heart);
    width: 24px;
    height: 22px;
  }
  .nav_playr.mobile_v .mob_like.is-liked {
    background: var(--lk-heart);
  }
  .nav_playr.mobile_v .mob_lst {
    background: var(--add-p);
    width: 22px;
    height: 22px;
  }
  .nav_playr.mobile_v .mob_share {
    background: var(--l-share);
    width: 22px;
    height: 22px;
  }
  .volume__iconWrapper button {
    margin-right: 0;
  }
  .spinn_.show_list {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: 100%;
    height: 50%;
    z-index: 5;
    background-color: var(--blur_main);
  }
  .volume__sliderWrapper.list {
    position: fixed;
    left: 0;
    bottom: 0;
    min-height: 92% !important;
    width: 100%;
  }
  .volume__sliderWrapper {
    left: -24px;
    bottom: 51px;
  }
  .playControls__bgg {
    margin: 30px 18px 18px 18px;
    position: unset;
    height: 410px;
    background: url("./media/avatar_-2B3D6SQ5.png");
    margin: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .playControls__bg {
    position: unset;
    height: 410px;
    background: var(--venz_);
    margin: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .album_cover {
    position: unset;
    height: 410px;
    background: var(--venz_cover);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .cursor-move.list__ {
    display: none;
  }
  .play_list {
    padding-right: 5px;
    padding-left: 12px;
  }
  .que_lst {
    display: none;
  }
  .ul-list {
    margin-top: 60px;
  }
  .volume__sliderWrapper.list:before {
    opacity: 0;
  }
  .bs_wrapper_ {
    right: unset !important;
    top: 14px !important;
  }
  .close_list {
    top: 20px;
    right: 15px;
  }
  .pl_center_wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  .hvr:hover .on_hover {
    right: 60px;
  }
  .btn_item_wrapper {
    margin-left: 10px !important;
  }
  .ent_choose_blc {
    display: flex;
    position: fixed;
    top: 0;
    width: 102%;
    height: 103vh;
    z-index: 112;
    background-color: var(--blur_main);
  }
  .theme_choose:hover .lan_switch {
    opacity: 0;
    z-index: 0;
  }
  .lan_wrap:hover .lan_switch {
    opacity: 0;
    z-index: 0;
  }
  .side_head .center_logo {
    display: none;
  }
  .user-dropdown {
    font-size: 14px;
    padding: 5px 14px 5px 10px;
  }
  .top_block {
    margin-top: -25px;
  }
  .img_description {
    font-size: 18px;
    line-height: 22px;
  }
  .html_wrap figcaption {
    font-size: 18px;
    line-height: 22px;
  }
  .library-tab-content .html_wrap {
    margin-top: 15px;
  }
  .wrapper_line {
    padding: 0 0 90px 0;
  }
  .frame_ {
    width: 245px !important;
    height: 245px;
  }
  .carousel-arrow {
    width: 41px;
  }
  .carousel-arrow.right-arrow {
    right: 5px;
  }
  .carousel-arrow.left-arrow {
    left: 5px;
  }
  .buttons_wrap {
    bottom: 8%;
  }
  .carousel-container .carousel-item .carousel-content .carousel-title {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 0;
  }
  .m_btn.wide {
    margin-top: 25px;
    margin-bottom: 0;
  }
  .carousel-container .carousel-item .carousel-content {
    bottom: 95px;
    width: 250px;
  }
  .m_btn {
    width: 233px;
    height: 72px;
  }
  .def-block_block-wrap {
    padding: 50px 0;
  }
  .secnd_block-wrap {
    padding: 50px 0;
  }
  .secnd_block-wrap .row_btns {
    padding: 0 10px;
    max-width: 100%;
  }
  .ms_wrap {
    margin: 12px 0 0 40px;
  }
  .quick-links .link-icons {
    padding: 0;
  }
  .footer_wrap .nav_wrap {
    padding-bottom: 40px;
  }
  dialog.stylized_wide {
    height: fit-content !important;
  }
  .dropdown-header {
    height: 36px !important;
  }
  .dropdown_c {
    font-size: 14px !important;
    line-height: 14px !important;
  }
  .search-input {
    height: 24px !important;
    font-size: 14px !important;
    line-height: 14px !important;
  }
  .search-input::placeholder {
    font-size: 14px !important;
    line-height: 14px !important;
  }
  .srchh {
    height: 12px !important;
    width: 12px !important;
    bottom: 7px !important;
  }
  .dropdown-item:not(.cat_i) {
    min-height: 30px !important;
    padding: 8px !important;
  }
  input.item_ {
    width: 12px !important;
    height: 12px !important;
  }
  p.item_ {
    width: 12px !important;
    height: 12px !important;
  }
  .playControls__control.playControl,
  .playControls__control:not(:first-child).playControl {
    margin-left: 20px;
  }
  .checked {
    background-size: 12px 12px !important;
  }
  .selectd_ p.item_ {
    background-size: 12px 12px !important;
  }
  .search-input {
    width: calc(100% - 10px) !important;
    margin: 0 5px !important;
  }
  .dropdown-menu {
    padding: 4px 0 !important;
  }
  .ent-mob_switch {
    bottom: 11%;
  }
  .search-wrap {
    justify-content: unset !important;
  }
}
@media (max-width: 420px) {
  .dec_head._background {
    background-size: 100% !important;
    padding: 62px 0 50px 0 !important;
    min-height: 360px;
    margin: -100px 0 -20px 0 !important;
    justify-content: unset !important;
  }
  .cat_wrap {
    margin: 0 auto 20px auto !important;
  }
}
@media (max-width: 400px) {
  .one_of_ {
    margin-right: 20px !important;
  }
  .side_wrap {
    margin-right: 20px !important;
  }
  .side_wrap.last_one {
    margin-right: 0 !important;
    margin-left: 20px !important;
  }
  .cat_wrap {
    margin: 0 auto 20px auto !important;
  }
  .quick-links .link-icons.complex {
    padding: 0;
  }
  .m_btn.mid {
    height: 42px;
  }
  .quick-links .link-icons .link-item span {
    margin-top: 12px;
  }
  .quick-links .link-icons .link-item {
    width: 140px;
  }
  .carousel-arrow.right-arrow {
    right: -5px;
  }
  .carousel-arrow.left-arrow {
    left: -5px;
  }
  .m_btn.mid {
    margin-bottom: 60px;
    margin-top: 10px;
  }
  .sidebar_cl a {
    padding: 15px 0px;
  }
  .secnd_block-wrap .row_btns {
    padding: 0;
  }
}
@media (max-width: 370px) {
  .center_menu {
    width: 60px !important;
    height: 60px !important;
    top: -14px !important;
  }
  .side_item {
    width: 60px !important;
  }
  .cat_wrap {
    margin: 0 auto 20px auto !important;
  }
  .ent-mob_switch {
    min-width: 295px;
  }
  .def-block_block-wrap.nxt_ {
    padding: 260px 0 10px 0;
  }
  .item_menu {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 18px;
  }
  .side_ {
    padding: 10px 10px 46px 18px;
  }
  .sidebar_cl .button_img a {
    width: 135px;
    height: 30px;
    font-size: 12px;
  }
  .m_btn.light_ {
    scale: 0.9;
  }
  .footer_wrap {
    padding: 55px 15px 240px 15px !important;
  }
}
@media (max-width: 350px) {
  .cat_wrap {
    margin: 0 auto 20px auto !important;
  }
}

/* angular:styles/global:styles */
