:root{
    --brown-color: #A08572;
    --brown-hover-color: #8d7565;
    --dark-color: #262626;
    --light-color: #F6F1EE;
    --gray-color: #53382D1A;

    --dark-brown-color: #53382D;
}

*{
    font-family: "Inter", sans-serif;
    line-height: 120%;
}

html {
    margin: 0;
    overflow-x: hidden;
}

a, a:link {
    text-decoration: none;
}
a.link {
    color: inherit;
    text-decoration: underline;
    font-size: inherit;
}

img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
button {
    border: none !important;
}
input, button, textarea {
    border-radius: 15px !important;
    box-shadow: none !important;
    outline: none !important;
    max-width: 100%;
}
input {
    height: 40px !important;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    display: none !important;
    -webkit-appearance: none !important;
}

hr.white-line {
    border-color: #FFF !important;
}
hr.white-line.but-line {
    position: relative;
}
hr.white-line.but-line::before {
    content: "или";
    display: block;
    position: absolute;
    background: var(--brown-color);
    width: 50px;
    top: 0;
    height: 20px;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -10px);
    color: #FFF;
}

.label {
    color: var(--dark-brown-color);
}

.form-input, .form-input:focus {
    backdrop-filter: blur(60px);
    border: 1px solid var(--dark-brown-color);
    background: #eeeeee52;
    padding: 10px 15px;
    height: auto !important;
    font-size: 14px;
    color: var(--dark-brown-color);
    border-radius: 15px !important;
}

.form-input.is-invalid, .form-input.is-invalid:focus {
    border-color: #e91e63 !important;
}

.form-input::placeholder {
    color: #AAA !important;
}

.form-input::-webkit-search-cancel-button,
.form-input::-webkit-search-results-button {
    display: none;
}

.form-input[name="email"] {
    text-transform: lowercase;
}
.form-input[name="email"]::placeholder {
    text-transform: capitalize;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    padding-right: 15px;
    background-image: none;
}

textarea {
    resize: none;
    height: auto !important;
}

.form-input:placeholder {
    color: #A19B95;
}

.form-input:disabled, .form-input[readonly] {
     background-color: #eeeeee52;
}

.custom-radio-btn input[type="radio"]{
    display: none;
}

/* custom checkbox toggle */
.custom-checkbox-toggle {
    display: inline-block;
    height: 22px;
    width: 50px;
    background: #eeeeee47;
    transition: all .6s ease;
    user-select: none;
    border-radius: 5px;
}
.custom-checkbox-toggle .custom-checkbox-toggle-track {
    display: block;
    height: 100%;
    cursor: pointer;
	position: relative;
}
.custom-checkbox-toggle .custom-checkbox-toggle-thumb {
    position: absolute;
    height: 30px;
    width: 25px;
    background: #EEE;
    margin-top: -4px;
    margin-left: -1px;
    transition: all .3s ease;
    text-align: center;
    padding: 4px;
    font-size: 14px;
    color: #CCC;
    border-radius: 5px;
}
.custom-checkbox-toggle input {
    display: none;
}
.custom-checkbox-toggle.checked{
	background: #c1ac9e;
}
.custom-checkbox-toggle.checked .custom-checkbox-toggle-thumb{
    transform: translateX(calc(100% + 2px));
    background: var(--brown-color);
    color: #FFF;
}

/* custom checkbox */
.custom-checkbox input[type="checkbox"]{
    display: none;
}
.custom-checkbox {
    width: 25px;
    height: 25px;
    min-width: 25px;
    border-radius: 7px;
    background: #CCA98F;
    padding: 6px;
    display: flex;
}
.custom-checkbox .checkbox-check-icon {
    filter: invert(1) contrast(100);
    opacity: 0;
}
.custom-checkbox.checked .checkbox-check-icon {
    opacity: 1;
}

.custom-btn{
    border-radius: 7px !important;
    height: 45px !important;
    border: none;
    font-size: 15px;
    min-width: 40px;
    transition: all .3s ease;
    cursor: pointer;
}

a.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-btn.brown-btn {
    color: var(--light-color);
    background: var(--brown-color);
}

.custom-btn.brown-btn.inverted-btn {
    background: none;
    border: 1px solid !important;
    color: var(--brown-color);
}

.custom-btn.brown-btn:active {
    background: var(--brown-hover-color) !important;
}
.custom-btn.brown-btn.inverted-btn:active {
    color: #FFF;
}

.custom-btn.light-btn {
    background: var(--light-color);
    color: var(--brown-color);
}

.custom-btn.gray-btn{
    background: #DEDBDA;
    color: #A19B95;
}

.custom-btn.dark-btn {
    background: var(--dark-color);
    color: var(--light-color);
}

.custom-btn.white-btn {
    background: #FFF;
    color: var(--dark-brown-color);
}

.custom-btn.bordered-btn {
    color: #FFF;
    background: none;
    border: 1px solid;
}
.custom-btn.brown-btn.bordered-btn {
    color: var(--brown-color);
    background: none;
    border: 1px solid;
}

.custom-btn:disabled:not(.form-submit-btn),.custom-btn.brown-btn:disabled:hover {
    background: #dedbda29 !important;
    color: #a19b9566;
}

.custom-btn.underlined-btn {
    color: var(--brown-color);
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
}
.custom-btn.full-rounded-btn {
    border-radius: 30px !important;
}

.custom-btn .btn-icon {
    width: 17px;
}

.block-heading {
    font-family: "STIX Two Text", serif;
    font-size: 35px;
    font-weight: 700;
    color: #452C1C;
    text-align: center;
}

.link-btn.underlined {
    display: block;
    text-align: center;
    color: var(--brown-color);
}

.link-btn.underlined {
    text-decoration: underline;
}

/* custom radio btn */
.custom-radio-btn .radio-label {
    color: var(--dark-brown-color);
}

.custom-radio-btn .custom-radio-checker-btn {
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50%;
    background: #F2EDE9;
    padding: 3px;
}
.custom-radio-btn .custom-radio-checker-btn .cheker-circle {
    display: block;
    background: inherit;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}
.custom-radio-btn.checked .custom-radio-checker-btn .cheker-circle {
    background: var(--brown-color);
}

header .custom-btn {
    height: 36px !important;
}

.top-btn {
    background: var(--brown-color) !important;
    min-width: 36px;
    color: #FFF !important;
    height: 36px !important;
}

.top-btn.top-link-btn, .top-btn.top-link-btn:hover {
    font-size: 14px;
    padding: 5px 15px;
    color: #FFF;
}
.top-btn.top-link-btn .btn-icon {
    width: 12px !important;
    height: 12px !important;
    margin-left: 2px;
}

.tg-btn {
    padding: 0 15px;
}

.wraper {
    padding: 0 10px;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    height: 100%;
}

.small-text {
    font-size: 12px;
}

.flex-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.flex-block.left-justify {
    justify-content: left;
}

.flex-block.top-align {
    align-items: flex-start;
}
.flex-block.left-align {
    justify-content: flex-start;
}
.flex-block.bottom-align {
    align-items: flex-end;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    z-index: 102;
    background: #ffffffd6;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.preloader .preloader-container{
    width: 80px;
    height: 80px;
}

.sticky-block {
    position: sticky;
    top: 0;
    background: #FFF;
    z-index: 10;
    padding: 10px;
}
.sticky-block.with-padding {
    top: 65px !important;
}

.auto-height, .auth-height:focus {
    height: auto !important;
}

.auto-width {
    width: auto !important;
}

.full-width {
    width: 100% !important;
    max-width: 100%;
}

.full-height {
    height: 100% !important;
    max-height: 100%;
}

.page {
    padding: 65px 0 85px;
    width: 100vw;
    overflow: clip;
}

.page-block-title {
    font-size: 24px;
    line-height: 100%;
    font-family: 'STIX Two Text';
    text-align: center;
    color: var(--dark-brown-color);
}
.page-block-title span {
    font-size: inherit;
    font-family: inherit;
    color: var(--brown-color);
}
.page-block-description {
    color: var(--dark-brown-color);
    font-size: 14px;
    line-height: 100%;
}

.page-block-title.medium-title {
    font-size: 20px !important;
}

.page-block-title small {
    font-family: inherit;
}

.btn {
    padding: 0;
    height: auto !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

body {
    background: #FFF;
}

body:has(.bottom-panel.open), body:has(.sidebar.opened){
    /*overflow: hidden;*/
    height: calc(var(--vh, 1vh) * 100);
}

header {
    height: 65px;
    background: #FFF;
    z-index: 100;
    position: fixed;
    width: 100vw;
    top: 0;
}
header.view-mode {
    background: #F2EDE9;
}

footer {
    height: 70px;
    box-shadow: 4px 4px 15px 0px #0000001f;
    background: #FFF;
    z-index: 100;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    border-radius: 11px 11px 0 0;
}

body.hidden-top-bottom header, body.hidden-top-bottom footer {
    display: none;
}

body.hidden-top-bottom .page {
    padding: 15px 0 !important;
}

body.hidden-top-bottom .question-form, body.hidden-top-bottom .support-form {
    height: calc(100vh - 30px);
    height: calc(var(--vh, 1vh) * 100 - 30px);
}

.contacts {
    font-size: 12px;
    line-height: 130%;
    color: var(--dark-brown-color);
}

.contacts a {
    color: inherit;
}

header .wraper, footer .wraper {
    padding: 0 20px;
}

.filters-buttons .filter-btn {
    height: 30px !important;
    font-size: 14px;
    padding: 5px 15px;
    background: var(--light-color);
    color: var(--brown-color);
    width: calc(100% / 3 - 5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters-buttons .filter-btn.active {
    color: var(--light-color);
    background: var(--brown-color);
}

.filters-buttons.scrolled {
    left: -20px;
    width: 100vw;
    padding: 0 15px;
    overflow: scroll;
}
.filters-buttons.scrolled::-webkit-scrollbar{
	display: none;
}
.filters-buttons.scrolled .filter-btn{
    width: auto !important;
    min-width: 100px !important;
}

.sort-btn {
    height: 36px !important;
    width: 36px !important;
    min-width: 36px;
}
.sort-btn img {
    height: 13px;
}


.tab-buttons .tab-btn {
    height: auto !important;
    font-size: 14px;
    padding: 5px 15px;
    background: var(--light-color);
    color: var(--brown-color);
    width: calc(100% / 3 - 5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tab-buttons .tab-btn.active {
    color: var(--light-color);
    background: var(--brown-color);
}
.tab {
    display: none;
}
.tab.active {
    display: block;
}

.load-content-btn {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

 .load-content-btn .icon {
     width: 30px !important;
     height: 30px !important;
     background-position: center;
     background-repeat: no-repeat;
 }

.load-content-btn .btn-label {
    margin-top: 2px;
    font-size: 12px;
    color: #D9CEC7;
}

.load-content-btn.active .btn-label {
    color: var(--brown-color);
}

.load-content-btn[data-load="club"] .icon, .load-content-btn[data-load="home"] .icon {
    background-image: url(../static_images/ic_home.svg);
}
.load-content-btn[data-load="club"].active .icon, .load-content-btn[data-load="home"].active .icon {
    background-image: url(../static_images/ic_home_h.svg);
}
.load-content-btn[data-load="reviews"] .icon{
    background-image: url(../static_images/ic_video.svg);
}
.load-content-btn[data-load="reviews"].active .icon {
    background-image: url(../static_images/ic_video_h.svg);
}
.load-content-btn[data-load="fav"] .icon {
    background-image: url(../static_images/ic_favourites.svg);
}
.load-content-btn[data-load="fav"].active .icon {
    background-image: url(../static_images/ic_favourites_h.svg);
}
.load-content-btn[data-load="audio"] .icon {
    background-image: url(../static_images/ic_audio.svg);
}
.load-content-btn[data-load="audio"].active .icon {
    background-image: url(../static_images/ic_audio_h.svg);
}
.load-content-btn[data-load="profile"] .icon {
    background-image: url(../static_images/ic_profile.svg);
}
.load-content-btn[data-load="profile"].active .icon {
    background-image: url(../static_images/ic_profile_h.svg);
}
.load-content-btn[data-load="login"] .icon {
    background-image: url(../static_images/ic_sign_in.svg);
}

.cookies-panel {
    display: none;
}

.content-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.content-item {
    margin: 0 5px 10px;
    width: calc(50vw - 10px - 10px);
}

.content-item-link-area {
    height: calc(90% - 65px);
}

.content-cover {
    /*background-color: #D9D9D9;*/
    height: 70vw;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.content-item.video-content {
    background-image: url(../static_images/ic_photo.svg);
    background-position: center;
    background-size: 40px;
    background-repeat: no-repeat;
    background-color: #D9D9D9;
    border-radius: 8px;
}

.content-item.video-content .content-cover{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviews-list .content-item.video-content.full-width, .testimonials-list .content-item.video-content.full-width{
    width: calc(100vw - 10px - 20px) !important;
}
.content-item.video-content.full-width .content-cover{
    width: 100%;
    background-size: 50vw;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #333;
}

.reviews-list .content-item.video-content.full-width .content-cover, .testimonials-list .content-item.video-content.full-width .content-cover{
    background-color: #fbf2ec;
}

.content-cover .content-action-btn, .reviews-list .audio-item .content-action-btn, .audio-list .audio-item .content-action-btn, .testimonials-list .audio-item .content-action-btn {
    width: 25px;
    height: 25px;
    margin: 5px;
    display: flex;
    background-color: #00000040;
    border-radius: 50%;
    padding: 3px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 65% 65%;
    color: #FFF;
    font-size: 11px;
    align-items: center;
    justify-content: center;
}
.content-cover .content-action-btn[data-action="share"], .reviews-list .audio-item .content-action-btn[data-action="share"], .audio-list .audio-item .content-action-btn[data-action="share"], .testimonials-list .audio-item .content-action-btn[data-action="share"]{
    background-image: url(../static_images/ic_share.svg);
}
.content-action-btn[data-action="fav"]{
    background-image: url(../static_images/ic_fav.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}
.content-action-btn[data-action="fav"].active {
    background-image: url(../static_images/ic_fav_h.svg);
}

.content-cover .content-action-btn[data-action="delete"]{
    background-image: url(../static_images/ic_delete.svg);
}

.content-views, .content-duration, .content-comments {
    border-radius: 4px;
    background: #00000040;
    font-size: 10px;
    padding: 2px 6px;
    display: inline-flex;
    align-items: center;
    color: #FFF;
    margin: 5px;
}

.content-item.wide-content {
    width: calc(100vw - 20px - 10px);
    margin: 0 5px 10px;
}

.content-item.wide-content .content-cover {
    height: 60vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: contain;
    background-position: center;
}

.view-content-container {
    background: #27272780;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: fixed;
    display: none;
    z-index: 111;
}

.content-player {
    border-radius: 25px;
    background: #464646;
    width: calc(100vw - 60px);
    margin: auto;
    top: 50vh;
    top: calc(var(--vh, 1vh) * 50);
    position: absolute;
    left: 30px;
    height: calc(160vw - 60px);
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.content-player.fullscreen {
    width: 100vw;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 101;
    border-radius: 0;
    left: 0;
    top: 0;
    transform: none;
    -webkit-transform: none;
}

.player-heading {
    padding: 10px;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.player-heading .control-btn{
    background-color: #00000040;
    border-radius: 50px;
    width: 30px;
    height: 30px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.player-heading .control-btn.fav-btn {
    padding: 7px;
}

.control-btn.fullscreen-btn {
    position: absolute;
    bottom: 15px;
    z-index: 100;
    width: 30px;
    height: 30px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00000040;
    border-radius: 50px;
    padding: 5px;
}

.player-bottom {
    position: absolute;
    padding: 0 15px;
    bottom: 70px;
    width: 100%;
    z-index: 2;
}

.video-js:not(.vjs-fullscreen#media-js) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--dark-brown-color);
    /*background: #fbf2ec;*/
}

.video-js .vjs-tech:not(.vjs-fullscreen.video-js .vjs-tech) {
    object-fit: cover;
}

.vjs-fullscreen.video-js .vjs-tech{
    width: 100vw !important;
    height: calc(var(--vh, 1vh) * 100) !important;
    object-fit: contain !important;
}

.vjs-control-bar {
    opacity: 1 !important;
    background: none !important;
    bottom: 40px !important;
    flex-direction: column;
    width: 100% !important;
    align-items: flex-start;
    padding: 0 10px;
    z-index: 2;
}
.vjs-progress-control {
    width: 100% !important;
}

.vjs-fullscreen-control {
    position: absolute !important;
    right: 12px;
    top: 23px;
    font-size: 12px !important;
    width: 35px !important;
    height: 35px !important;
}

.vjs-quality-selector {
    position: absolute !important;
    right: 55px;
    top: 26px;
}
.vjs-quality-selector .vjs-icon-placeholder {
    font-size: 12px;
}

.vjs-playback-rate {
    position: absolute !important;
    right: 100px;
    top: 26px;
}

.vjs-playback-rate .vjs-playback-rate-value {
    font-size: 12px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vjs-quality-selector .vjs-menu-title {
    display: none !important;
}

.vjs-caption-settings, .vjs-texttrack-settings, .vjs-subs-caps-button {
    display: none !important;
}

#media-js .vjs-progress-holder.vjs-slider {
    background: #ffffff88;
    height: 5px !important;
    border-radius: 5px !important;
    overflow: hidden;
}

.vjs-play-progress.vjs-slider-bar {
    background: #FFF;
    border-radius: 5px !important;
    overflow: hidden;
}
.vjs-load-progress {
    background: none !important;
}
.vjs-volume-panel {
    position: absolute !important;
    right: 10px;
    top: 20px;
}

.audio-js {
    height: 15px !important;
    width: 100% !important;
    z-index: 10;
    left: 0;
    position: relative;
    background: none !important;
}

.audio-js video {
    background: none !important;
}

.audio-js .vjs-control-bar {
    display: block;
    padding: 10px 0 !important;
    height: 15px;
    position: absolute;
    bottom: unset !important;
    top: 0;
}

.audio-js video, .audio-js .vjs-big-play-button, .audio-js .vjs-loading-spinner, .audio-js .vjs-control, .audio-js .vjs-contol-text {
    display: none !important;
}

.audio-js .vjs-progress-control {
    display: block !important;
}
.audio-js .vjs-progress-holder.vjs-slider {
    background: #D3C9C1 !important;
    position: relative;
}
.audio-js .vjs-play-progress.vjs-slider-bar {
    background: #CBA78E;
    height: 5px;
    position: absolute;
    top: 0;
}

.video-js .vjs-fullscreen-control {
    display: block !important;
}

.audio-js .vjs-control.vjs-playback-rate {
    top: 35px !important;
    right: 0;
    display: block !important;
}
.audio-js .vjs-control.vjs-playback-rate .vjs-playback-rate-value {
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1;
    background: #f2ede9;
    padding: 0;
    text-align: right;
    justify-content: flex-end;
}
.audio-js .vjs-control-text {
    display: none !important;
}
.audio-js .vjs-control.vjs-playback-rate .vjs-menu {
    position: absolute;
    right: 0 !important;
    left: unset;
}
.audio-js .vjs-control.vjs-playback-rate .vjs-menu-content {
    top: 0;
    height: max-content;
    z-index: 1;
    background: #e9e2dc !important;
    border-radius: 10px;
}

.audio-js .vjs-menu-item, .audio-js .vjs-menu-item:hover, .audio-js .vjs-menu-item:active {
    font-size: 14px;
    background-color: #e1d8d0 !important;
}
.audio-js .vjs-menu-item.vjs-selected {
    background-color: #ffffffb0 !important;
}

.audio-js.vjs-playing .vjs-control-bar {
    pointer-events: all !important;
}

.vjs-mouse-display .vjs-time-tooltip {
    background-color: transparent !important;
}

.player-time {
    position: absolute;
    bottom: 20px;
    color: #FFF;
    font-size: 13px;
    left: 20px;
}

.player-bottom .content-title {
    width: 100%;
    color: #FFF;
    font-size: 13px;
}

.vjs-big-play-button .vjs-icon-placeholder:before {
    display: flex;
    justify-content: center;
    align-items: center;
}
.vjs-big-play-button {
    width: 75px !important;
    height: 75px !important;
    background: #00000088 !important;
    border-radius: 50% !important;
    border: none !important;
    color: #fffc;
    z-index: 2;
}

.player-play-area {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100% - 120px);
    z-index: 1;
}

/* form */
.form-title {
    font-size: 30px;
    color: var(--brown-color);
    line-height: 120%;
    font-family: "STIX Two Text", serif;
}
.form-description {
    color: var(--brown-color);
    line-height: 125%;
}

.social-login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.social-login-link img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 15px;
}

.text-divider {
    color: #A19B95;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    margin-left: calc(50% - 30px);
    background: #FFF;
    padding: 20px 10px;
    width: 60px;
}
.text-divider:before {
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    width: calc(100% - 60px);
    height: 1px;
    background: #A19B95;
    margin-top: 10px;
    z-index: -1;
}

.code-input{
    margin: 0 10px;
    text-align: center;
    font-size: 20px !important;
    font-weight: 600;
    height: 50px !important;
}
.code-input:first-child {
    margin-left: 0;
}
.code-input:last-child {
    margin-right: 0;
}

.custom-modal.brown-modal .modal-content {
    background: var(--brown-color);
    padding: 30px 20px;
    border-radius: 12px;
}
.modal-dialog.bottom-dialog {
    display: flex;
    align-items: flex-end;
    min-height: 100%;
    margin: 0;
}

.modal-icon {
    height: 40px;
    width: 40px;
}
.modal-title {
    font-size: 24px;
    color: #FFF;
}
.modal-description {
    color: #FFF;
    font-size: 14px;
    line-height: 120%;
}
.video-price {
    font-size: 45px;
    font-weight: 600;
    color: #FFF;
}

.select-file-btn input[type="file"] {
    display: none;
}
.select-cover-file {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #D9D9D9;
    width: 50vw;
    height: 60vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;

    background-image: url(../static_images/ic_photo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45px 45px;
    background-blend-mode: color-burn;
}

.select-cover-file img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.select-file-btn .select-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    height: auto;
    font-size: 14px;
    z-index: 1;
    bottom: 20px;
    position: absolute;
}

.select-media-file {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tip {
    color: var(--brown-color);
    font-size: 12px;
    line-height: 120%;
}
.tip.white-tip{
    color: #FFF !important;
}

.uploading-container {
    padding: 15px;
    border-radius: 15px;
    background: #f9f9f9;
    margin-top: 10px;
    display: none;
}

.uploading-bar {
    background: #ccc6;
    height: 10px;
    border-radius: 10px;
    margin: 10px 0 0;
    overflow: hidden;
}
.uploading-progress-scale {
    height: 100%;
    background: var(--brown-color);
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.cancel-uploading-btn, .delete-uploaded-file-btn {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    right: -10px;
    color: var(--brown-color);
    font-size: 18px;
}
.delete-uploaded-file-btn {
    font-size: 14px;
}
.upload-file-name {
    width: 30vw;
    text-align: right;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.uploaded-video {
    width: calc(100vw - 60px);
    height: 60vw;
    background: #000;
    border-radius: 20px;
    object-fit: contain;
}

.delete-cover-btn {
    position: absolute;
    top: 10px;
    z-index: 1;
    background: var(--brown-color);
    color: #FFF;
    font-size: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    right: 10px;
}

.gradient-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 36.57%, #FFFFFF 78.7%);
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 101;
    display: none;
}

.sidebar.opened {
    display: block;
}

.close-sidebar-btn {
    font-size: 25px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    line-height: 36px;
}

.sidebar-bg {
    background: #272727CC;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: .3s ease-in-out;
    opacity: 0;
}

.sidebar.opened .sidebar-bg.show {
    opacity: 1;
}

.sidebar-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 85%;
    margin-left: 15%;
    background: var(--light-color);
    box-shadow: 0px 0px 15px #424242;
    padding: 20px;
    transition: all .3s ease-in-out;
    transform: translateX(calc(100% + 15px));
    -webkit-transform: translateX(calc(100% + 15px));
    overflow-y: auto;
}

.sidebar.opened .sidebar-bg.show .sidebar-flex.show {
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.menu-links {
    padding: 15px 0;
}

.menu-link, .menu-link:active, .menu-link:hover {
    display: flex;
    line-height: 100%;
    font-size: 16px;
    padding: 5px 0;
    margin: 10px 0;
    color: var(--dark-brown-color);
    justify-content: space-between;
    align-items: center;
    font-family: "STIX Two Text", serif;
}
.menu-link img {
    height: 12px;
    width: 12px;
}
.menu-link img.large-icon {
    height: 25px !important;
    width: 25px !important;
}

.menu-link.bordered-link {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid;
}

.subscription-status-panel {
    border-radius: 12px;
    background: #FFF;
    border: 1px solid #EED4C2;
    padding: 15px;
}
.subscription-status-panel .subscription-status {
    font-size: 18px;
    line-height: 110%;
    color: var(--dark-brown-color);
    font-weight: 500;
    font-family: "STIX Two Text", serif;
}
.subscription-status-panel .subscription-status-icon {
    width: 40px;
    height: 40px;
}
.subscription-status-panel .subscription-expires-at {
    height: 35px;
    font-size: 12px;
    color: var(--dark-brown-color);
    display: flex;
    align-items: center;
}

.audio-list {
    padding: 0 5px;
}
.audio-item {
    background: linear-gradient(180deg, #fbf2ec 0%, #fbf2ec 100%);
    border-radius: 7px;
    padding: 15px;
    margin: 0px 0px 8px 0px !important;
    width: 100% !important;
}
.audio-cover {
    width: 45px;
    min-width: 45px;
    height: 45px;
    border-radius: 7px;
    background: var(--brown-color);
    object-fit: cover;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    color: #FFF;
}
.audio-cover .icon {
    width: 50%;
    height: 50%;
    filter: brightness(0) invert(1);
}

.audio-info {
    line-height: 100%;
    padding-left: 10px;
}
.audio-title {
    font-size: 14px;
    color: var(--dark-brown-color);
}
.audio-description {
    font-size: 10px;
    line-height: 100%;
    margin-top: 2px;
    color: var(--dark-brown-color);
}

.audio-control-btn {
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
}
.audio-control-btn[data-action="fav"] {
    background-image: url(../static_images/ic_heart.svg);
    background-color: #EED4C2;
}
.audio-control-btn[data-action="fav"].active {
    background-image: url(../static_images/ic_heart_h.svg);
}
.audio-control-btn[data-action="play"] {
    background-image: url(../static_images/ic_play.svg);
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-size: 100%;
}

.content-view-container {
    background: #F2EDE9;
    border-radius: 20px;
    padding: 10px 30px 0px;
    transition: 0.3s ease-in-out;
    max-height: calc(100vh - 65px);
    max-height: calc(var(--vh, 1vh) * 100 - 65px);
    overflow: hidden;
}

.content-view-container.video-content {
    border-radius: 0;
    max-height: 100vh !important;
    max-height: calc(var(--vh, 1vh) * 100) !important;
}

.content-view-container.fullscreen {
    position: fixed;
    top: 0;
    z-index: 100;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

.content-view-container .player-heading {
    padding: 10px 20px;
}

.content-view-container.fullscreen .player-heading {
    padding: 20px;
}

.content-view-container .video-container {
    height: 35vh;
    position: relative;
}

.view-content-container .video-container {
    height: calc(160vw - 60px) !important;
}
.view-content-container .full-width video {
    width: 100% !important;
}

.content-view-container .player-play-area {
    top: 0;
    height: calc(100% - 70px);
}

.content-view-container .vjs-big-play-button {
    top: calc(50% - 20px) !important;
}

.content-view-container .vjs-volume-panel {
    display: none !important;
}

.content-view-container .content-title {
    color: var(--brown-color);
    font-size: 18px;
    line-height: 115%;
}

.content-view-container .content-description {
    color: var(--dark-brown-color);
    font-size: 12px;
}

.content-view-container .video-container .video-js .vjs-tech:not(.vjs-fullscreen .vjs-tech, .content-view-container.wide-content .vjs-tech) {
    left: 50%;
    position: absolute;
    height: 100%;
    width: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.content-view-container.wide-content .video-container {
    width: 100vw !important;
    height: 56vw !important;
}

.content-view-container.wide-content .video-container .video-js .vjs-tech{
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    -webkit-transform: none;
}

.content-view-container .audio-description {
    font-size: 14px;
}
.content-view-container .audio-title {
    font-size: 18px;
    line-height: 115%;
}
.content-view-container .audio-text {
    line-height: 115%;
    font-size: 12px;
    color: var(--dark-brown-color);
}

.custom-audio-player {
    padding: 15px 0;
    position: relative;
}
.progress-scale {
    height: 5px;
    background: #D3C9C1;
    border-radius: 5px;
    overflow: hidden;
}
.progress-value {
    background: #CBA78E;
    height: 100%;
    display: block;
    border-radius: 5px;
}
.player-controls {
    display: flex;
    justify-content: space-between;
    padding: 25px 0 10px;
    align-items: center;
    position: relative;
}
.play-time {
    float: right;
    color: var(--dark-brown-color);
    font-size: 12px;
    /*width: 50px;*/
}

.player-control-btn {
    background-image: url(../static_images/ic_play.svg);
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.player-control-btn.playing {
    background-image: url(../static_images/ic_pause.svg);
}

.comments-block {

}
.comments-heading {
    padding: 10px 30px;
    border-bottom: 1px solid #CCC;
    color: var(--brown-color);
    font-size: 18px;
    width: 100%;
    background: #FFF;
    height: 50px;
}
.comments-list {
    padding: 15px;
}

.user-avatar {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--brown-color);
    color: #FFF;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar .icon {
    width: 50%;
    height: 50%;
    object-fit: contain;
    filter: invert(1) contrast(100);
}

.comment-item {
    position: relative;
}

.comment-container {
    padding-left: 10px;
}
.comment-body.has-replies {
    position: relative;
}
.comment-body.has-replies:before {
    content: "";
    width: 1px;
    height: calc(100% - 40px);
    position: absolute;
    left: -25px;
    z-index: -1;
    top: 40px;
    background: #907663;
}

.comment-info {
    color: #907663;
    font-size: 14px;
}
.comment-text {
    padding-top: 5px;
    font-size: 14px;
    color: var(--dark-brown-color);
    line-height: 125%;
}
.comment-text-container {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}
.comment-text-container.full-text {
    -webkit-line-clamp: unset;
}

.comment-text .read-more {
    color: #907663;
    font-size: 12px;
    cursor: pointer;
}

.comment-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10px;
    color: #907663;
    font-size: 14px;
    padding-bottom: 10px;
}
.comment-action-btn {
    display: flex;
    align-items: center;
}
.comment-action-btn[data-action="like"] .icon {
    height: 20px;
    width: 20px;
    background-image: url(../static_images/ic_comment_like.svg);
    background-position: left;
    background-repeat: no-repeat;
}
.comment-action-btn[data-action="like"].active .icon {
    background-image: url(../static_images/ic_comment_like_h.svg);
}
.replies-block {
    padding: 0 10px 10px;
    position: relative;
}
.replies-block:before {
    content: "";
    width: 25px;
    height: 50%;
    position: absolute;
    left: -25px;
    top: 0;
    z-index: -1;
    border-left: 1px solid #907663;
    border-bottom: 1px solid #907663;
    border-bottom-left-radius: 50px;
}

.show-replies-btn {
    color: var(--dark-brown-color);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
}
.show-replies-btn img{
    width: 6px;
}

.replies-block.opened:before, .replies-block.opened > .show-replies-btn {
    display: none;
}

.comment-replies {
    display: none;
}

.replies-block.opened > .comment-replies.opened {
    display: block;
}

.replies-block.opened > .comment-replies.opened > .comment-item:last-child:before {
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    left: -37px;
    top: 0px;
    z-index: 0;
    background: #FFF;
}

.replies-block .comment-item .is-reply:before {
    content: "";
    width: 25px;
    height: 20px;
    position: absolute;
    left: -35px;
    top: 0;
    z-index: 1;
    border-left: 1px solid #907663;
    border-bottom: 1px solid #907663;
    border-bottom-left-radius: 50px;
}

.comments-bottom {
    position: fixed;
    bottom: 0;
    background: var(--light-color);
    left: 0;
    width: 100%;
    padding: 10px;
    box-shadow: 0px -0.36px 0px 0px #a6a6aa;
}
.comments-bottom .user-avatar {
    width: 40px;
    min-width: 40px;
    height: 40px;
}
.send-comment-btn {
    height: 40px;
    width: 40px;
    min-width: 40px;
    background: none;
    padding: 7px;
}
.comments-bottom .form-input {
    background: #FFF;
    border: 1px solid #E2D3CB;
    border-radius: 40px !important;
    font-size: 14px;
    color: var(--dark-brown-color);
}
.comments-bottom .form-input:placeholder {
    color: #BDB7B3;
}

.empty-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    filter: opacity(0.4);
}
.empty-block .empty-icon {
    width: 35px;
}
.empty-block .empty-text {
    color: var(--dark-brown-color);
    padding: 20px;
    font-weight: 700;
    font-size: 13px;
}

.comment-replies .comment-item .comment-container:before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    left: -35px;
    z-index: -1;
    top: -45px;
    background: #907663;
}

.reply-to .reply-to-comment {
    display: flex;
    justify-content: space-between;
    background: #FFF;
    font-size: 12px;
    color: var(--dark-brown-color);
    padding: 5px 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid var(--brown-color);
}


.profile-container {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 150px);
    min-height: calc(var(--vh, 1vh) * 100 - 150px);
}

.image-file-container input[type="file"] {
    display: none;
}

.image-file-container {
    position: relative;
}

.profile-container .image-container {
    width: 35vw;
    height: 35vw;
    background-color: #DEDBDA;
    border-radius: 50%;
    margin-left: calc(32.5vw - 20px);
    background-image: url(../static_images/ic_plus.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 33%;
    overflow: hidden;
}

.profile-container .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resizeable-text {
    position: relative;
}

.content-view-container .resizeable-text {
    max-height: calc(100vh - 65px - 100px);
    max-height: calc(var(--vh, 1vh) * 100 - 65px - 100px);
    overflow: scroll;
    padding-bottom: 30px;
}

.hidden-text {
    height: calc(35vh - 85px - 30px - 30px);
    height: calc(var(--vh, 1vh) * 35 - 85px - 30px - 30px);
    overflow: hidden !important;
}
.resizeable-text:has(.show-full-text){
    padding-bottom: 0px !important;
}

.show-full-text {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    text-align: center;
    background: linear-gradient(0deg, #f2ede9 50%, #f2ede96b);
    padding: 15px 0;
    font-size: 14px;
}
.show-full-text img{
    height: 12px;
    width: 12px;
    margin: 2px 0 0 5px;
}

.show-full-text img {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

.hidden-text .show-full-text img {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.custom-modal.subscription-modal .modal-content {
    background: var(--brown-color);
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
}

.subscription-plans {
    display: flex;
    flex-direction: column;
}
.subscription-plan {
    background: #CCA98F;
    color: #907663;
    border-radius: 9px;
    padding: 15px;
    height: 60px;
    text-align: center;
    transition: all .3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    font-size: 18px;
}
.subscription-plan .custom-radio-checker {
    width: 22px;
    height: 22px;
    border-radius: 22px;
    background: #E7C5AD;
    border: 5px solid #E7C5AD;
    display: inline-block;
}
.subscription-plan.checked {
    background: #FFA668;
    color: #FFF;
}
.subscription-plan.checked .custom-radio-checker {
    background: #FFA668;
    border: 5px solid #FFF;
}

.subscription-plan.disabled .custom-radio-checker {
    background: none;
    border: none;
    border-radius: 0;
    background-image: url(../static_images/ic_lock_brown.svg);
    background-size: contain;
    background-position: center;
}

.subscription-plan-price {
    font-size: 20px;
    font-weight: 600;
}

.selected-subscription-plan {
    font-size: 35px;
    font-weight: 700;
    line-height: 100%;
    color: #FFF;
}

.subscription-form .form-btn{
    border: 1px solid #FFF !important;
    background: #BC9D88;
}

.subscription-form:has(.ajax-login-block) .select-payment-btn.disabled {
    display: none;
}

.subscription-form:has(.ajax-login-block) .form-input::placeholder, .bottom-panel.brown-panel .form-input::placeholder{
    color: #ECD4C4 !important;
}
.subscription-form:has(.ajax-login-block) .form-input, .bottom-panel.brown-panel .form-input{
    color: #FFF;
    border: 1px solid #FFF;
    height: 45px !important;
    background: none;
    font-size: 16px;
}

/*bottom panel*/
.bottom-panel {
    position: fixed;
    bottom: 0;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    left: 0;
    width: 100%;
    z-index: 101;
    display: none;
}

.bottom-panel.open {
    display: block;
}

.panel-bg {
    background: #272727CC;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: auto;
    transition: .3s ease-in-out;
    opacity: 0;
}

.bottom-panel.open .panel-bg.show {
    opacity: 1;
}

.bottom-panel .panel-heading {
    position: sticky;
    top: 0;
    background: #FFF;
    padding: 15px 0 0;
    z-index: 10;
}

.bottom-panel.brown-panel .panel-heading {
    background: var(--brown-color);
}

.panel-content {
    background: #FFF;
    padding: 0px 20px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    transition: .3s ease-in-out;
    transform: translateY(100%);
    /*max-height: 95vh;
    max-height: calc(var(--vh, 1vh) * 95);*/
    overflow: auto;
}

.panel-content:has(.panel-top-close-btn){
    overflow: unset;
}

.panel-body {
    padding-top: 15px;
}

.bottom-panel .panel-icon {
    height: 40px;
    width: 40px;
    background-image: url(../static_images/ic_logo_brown.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.bottom-panel.brown-panel .panel-icon {
    background-image: url(../static_images/ic_logo.svg);
}

.bottom-panel .close-panel-btn {
    height: 40px;
    width: 40px;
    background-image: url(../static_images/ic_close_brown.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px;
}
.bottom-panel.brown-panel .close-panel-btn {
    background-image: url(../static_images/ic_close.svg);
}

.bottom-panel .panel-title {
    font-family: "STIX Two Text", serif;
    font-size: 24px;
    color: var(--brown-color);
    line-height: 110%;
}
.bottom-panel .panel-description {
    color: var(--brown-color);
    font-family: "STIX Two Text", serif;
    font-size: 14px;
    line-height: 120%;
}

.bottom-panel .panel-title small, .bottom-panel .panel-description small {
    font-family: inherit;
}

.panel-title.message-text {
    line-height: 100%;
    font-size: 20px;
}
.bottom-panel .ok-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.bottom-panel.brown-panel .panel-content {
    background: var(--brown-color);
}

.bottom-panel.brown-panel .panel-title {
    font-size: 24px;
    color: #FFF;
}
.bottom-panel.brown-panel .panel-description {
    color: #FFF;
}

.bottom-panel.brown-panel .brown-btn {
    border: 1px solid #FFF !important;
    background: #BC9D88;
}

.bottom-panel.open .panel-bg.show .panel-content.show {
    transform: translateY(0);
}

.bottom-panel .panel-top-close-btn {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    background: #FFF;
    height: 60px;
    width: 120px;
    transform: translate(-50%, -45px);
    border-radius: 60px 60px 0 0;
    background-image: url(../static_images/ic_logo_brown.svg);
    background-size: 35px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

#paymentContainer {
    min-height: 400px;
}
.bottom-panel .panel-preloader {
    height: calc(100% - 16px);
    display: flex;
    object-fit: contain;
    width: 100vw;
    padding: 40%;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 20px 20px 0 0;
    background: #ffffffd6;
}

.question-form, .support-form {
    padding: 10px 10px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 150px);
    height: calc(var(--vh, 1vh) * 100 - 150px);
    max-height: 100vh;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow: auto;
}

.question-form .text-input-field, .support-form .text-input-field {
    max-height: calc(100% - 112px) !important;
    height: 100% !important;
    position: relative;
    margin: 0;
}
.question-form .text-input-field {
    max-height: calc(100% - 56px) !important;
}
.question-form .text-input-field .form-input, .support-form .text-input-field .form-input {
    height: 100% !important;
}

.support-form .text-input-field {
    max-height: calc(100% - 190px) !important;
}

.input-field-counter {
    position: absolute;
    right: 10px;
    transform: translateY(-100%);
    margin-top: -10px;
    font-size: 14px;
    color: #B4ADAD;
}


.attach-file-block {
    color: var(--dark-brown-color);
}
.attach-file-block .description {
    font-size: 12px;
    color: var(--brown-color);
    line-height: 100%;
}
.image-container.attach-file-btn {
    width: 60px;
    min-width: 60px;
    height: 60px !important;
    border: 1px solid var(--dark-brown-color);
    background-color: #eeeeee52;
    background-image: url(../static_images/ic_plus.svg);
    background-position: center;
    background-size: 30px;
    background-repeat: no-repeat;
    overflow: hidden;
}

.image-container.attach-file-btn img {
    object-fit: cover;
}

.select-option {
    display: flex;
    flex-direction: row;
    background: #F2EDE9;
    border-radius: 7px;
    padding: 20px 15px;
    justify-content: space-between;
    opacity: .6;
    transition: all .3s ease-in-out;
}
.select-option.checked {
    opacity: 1;
}

.select-option.question-option.platinum{
    background: linear-gradient(180deg, #7B7B7B 0%, #9D9D9D 50.96%, #969696 100%);
}

.option-info {
    width: 60%;
}
.option-title {
    color: var(--dark-brown-color);
    font-size: 18px;
}
.option-title img {
    width: 20px;
    height: 20px;
}
.option-description {
    color: var(--brown-color);
    font-size: 12px;
    line-height: 100%;
    padding: 5px 0;
}
.option-price {
    color: var(--dark-brown-color);
    font-size: 32px;
    line-height: 100%;
}
.option-checker {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.option-selected {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: #D6CCC4;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

.select-option.checked .option-selected {
    background-image: url(../static_images/ic_selected.svg);
}

.select-option.question-option.platinum.checked .option-selected {
    background-blend-mode: color-dodge;
}

.option-icon {
    height: 50px;
}

.select-option.question-option.platinum .option-title, .select-option.question-option.platinum .option-description, .select-option.question-option.platinum .option-price{
    color: #FFFFFF;
}

.select-option.question-option.platinum .option-selected {
    background-color: #ADACAC;
}

.question-status-label {
    border-radius: 7px;
    color: #FFF;
    font-size: 12px;
    height: 36px;
    padding: 0 10px;
    display: flex;
    align-content: center;
    align-items: center;
}

.question-status-label .status-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.question-status-label.pending {
    background: #FFA668;
}
.question-status-label.pending .status-icon {
    background-image: url(../static_images/ic_status_pending.svg);
}
.question-status-label.success {
    background: #21D06C;
}
.question-status-label.success .status-icon {
    background-image: url(../static_images/ic_status_success.svg);
}
.question-status-label.failed {
    background: #FF6868;
}
.question-status-label.failed .status-icon {
    background-image: url(../static_images/ic_status_failed.svg);
}
.question-status-label.not-paid {
    background: #9e9e9e;
}
.question-status-label.not-paid .status-icon {
    background-image: url(../static_images/ic_status_failed.svg);
}

.cookies-text.text-center {
    color: var(--brown-color);
    font-size: 14px;
}

.share-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-btn {
    margin: 15px;
}
.content-link {
    font-size: 14px;
    color: var(--dark-brown-color);
    background: var(--light-color);
    display: block;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 5px;
}

.transactions-list {
    padding: 0 10px;
}
.transaction-item {
    color: var(--dark-brown-color);
    font-size: 14px;
    padding: 10px 0;
}
.transaction-info {
    width: 75%;
}
.transaction-product {
    font-size: 14px;
    line-height: 110%;
}
.transaction-time {
    color: var(--brown-color);
    font-size: 10px;
}
.transaction-amount {
    font-size: 14px;
}

.contact-item {
    color: var(--brown-color);
    line-height: 125%;
    font-size: 18px;
}

.page-gradient-block {
    background: linear-gradient(180deg, #f6f1ee 0%, #f6f1ee00 100%);
    border-radius: 20px 20px 0 0;
    padding: 10px 0 0;
}

.page-gradient-block .form-title {
    font-size: 24px;
    color: var(--dark-brown-color);
    padding: 15px 0;
}

.testimonial-status {
    color: #FFF;
    border-radius: 7px;
    padding: 5px 10px;
    font-size: 10px;
    margin-left: 5px;
}
.testimonial-status.status-1, .testimonial-status.status-4 {
    background: #FFA668;
}
.testimonial-status.status-3 {
    background: #21D06C;
}

.testimonial-status.status-5 {
    background: #FF6868;
}

.book-cover {
    transition: transform .3s, background .1s;
    transform-origin: center;
    background: #00000000;
}

.book-cover.resized {
    position: fixed;
    left: 0;
    top: 0;
    transform: scale(1.1);
    max-width: none;
    margin: 0 !important;
    object-fit: contain;
    z-index: 101;
    padding: 15%;
    background: #a08572ad;
}

.book-reading-progress {
    font-size: 12px;
    padding: 10px;
}
.reading-progress-bar {
    width: 100%;
    height: 10px;
    background: var(--light-color);
    border-radius: 5px;
    margin-right: 10px;
    display: flex;
}
.reading-progress-bar .progress-bar-scale{
    width: 0%;
    display: inline-block;
    height: 10px;
    border-radius: 5px;
    background: var(--brown-color);
    transition: all .3s ease;
}

.book-nav-area {
    height: 60px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 35px;
    z-index: 100;
}

.book-nav-area.btn-prev {
    left: 0;
}

.book-nav-area.btn-next {
    right: 0;
}

.book-nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px !important;
    background: #a0857214 !important;
    color: #444 !important;
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
}
.book-nav-btn img {
    height: 15px;
    width: 15px;
}

.book-nav-area.btn-prev .book-nav-btn {
    left: -5px;
    border-radius: 0 30px 30px 0;
    text-align: right;
    padding-right: 15px;
}
.book-nav-area.btn-prev .book-nav-btn img {
    transform: scale(-1);
}
.book-nav-area.btn-next .book-nav-btn {
    right: -5px;
    border-radius: 30px 0 0 30px;
    text-align: left;
    padding-left: 15px;
}
.book-nav-area:active .book-nav-btn {
    background: var(--brown-color) !important;
    color: #FFF !important;
    opacity: 1;
}
.book-nav-area:active .book-nav-btn img{
    filter: brightness(0) contrast(100) invert(1);
}

.book-chapter-item.locked {
    color: #a0857259;
}
.book-chapter-item.locked i {
    font-size: 13px;
}

.epub-view::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
    content: "";
}

.rounded-block {
    background: linear-gradient(180deg, #F6F1EE 0%, #F6F1EE 100%);
    border-radius: 20px;
    color: var(--dark-brown-color);
    position: relative;
}
.rounded-block.white-block {
    background: #FFF;
}
.rounded-block .block-title{
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    color: var(--dark-brown-color);
    font-family: "STIX Two Text", serif;
}
.rounded-block .block-text {
    font-size: 14px;
    color: var(--dark-brown-color);
    font-family: "STIX Two Text", serif;
}
.rounded-block .block-text.medium-text {
    font-size: 20px;
}
.rounded-block .block-text.small-text {
    font-size: 12px;
}
.rounded-block.brown-block {
    background: var(--brown-color);
}
.rounded-block.brown-block .block-title, .rounded-block.brown-block .block-text {
    color: #FFF;
}
.rounded-block .block-label {
    display: inline-block;
    padding: 5px 20px;
    font-size: 14px;
    border-radius: 7px;
    background: var(--brown-color);
    color: #FFF;
}

.rounded-block .block-label.rounded {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
}

.rounded-block .block-label.transparent-label{
    color: #452C1C;
    border-radius: 30px;
    border: 1px solid;
    background: transparent;
}
.rounded-block .block-image {
    width: 100px;
    max-width: 30%;
}
.rounded-block .block-icon {
    width: 50px;
    background: var(--brown-color);
    height: 50px;
    border-radius: 50%;
    padding: 7px;
    margin-top: -25px;
}

.rounded-block.intensive-banner {
    background: #FFF;
}
.rounded-block.intensive-banner .block-title {
    position: absolute;
    bottom: 30px;
    font-size: 28px;
    width: 100%;
    font-family: "STIX Two Text", serif;
}

.course-item {
    background: linear-gradient(180deg, #F6F1EE 0%, #F6F1EE 100%);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    color: var(--dark-brown-color);
}
.course-label {
    display: inline-block;
    padding: 5px 20px;
    font-size: 14px;
    border-radius: 7px;
    background: var(--brown-color);
    color: #FFF;
}
.course-title, .course-date, .course-cost {
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    font-family: "STIX Two Text", serif;
}
.course-registered-label {
    height: 45px;
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;
    color: var(--brown-color);
    font-size: 16px;
    background: #a0857221;
    border-radius: 7px;
}

.privacy-block a{
    color: var(--brown-color);
    text-decoration: underline;
    font-size: inherit;
}
.text-center.offer-heading {
    font-size: 24px;
    color: var(--brown-color);
    text-transform: uppercase;
}

#payment-loading-overlay-63456123 {
    display: none !important;
}

#media-js.trial-media .vjs-progress-holder.vjs-slider {
    border-radius: 5px 0 0 5px !important;
    margin: 0 !important;
}
.trial-media .vjs-progress-control {
    width: calc(var(--trial-percent) * 1%) !important;
    min-width: 1% !important;
}
.trial-media .vjs-progress-control::after {
    content: "";
    display: block;
    position: absolute;
    height: 5px;
    width: calc((((100 - var(--trial-percent)) / var(--trial-percent)) * 100) * 1%);
    /*width: 100%;*/
    background: #ffffff88;
    left: calc(100% - 1px);
    border-radius: 0 5px 5px 0;
}

.audio-js.trial-media .vjs-progress-control::after {
    width: calc(100% - var(--trial-percent) * 1%);
    background: #D3C9C1 !important;
    left: calc(var(--trial-percent) * 1% - 1px);
    top: 10px;
}

.links-container {

}
.links-container .link-block {
    display: block;
    background: linear-gradient(180deg, #F6F1EE 0%, #F6F1EE 100%);
    border-radius: 20px;
    /*height: 25vh;*/
    height: calc((100vh - 135px - 45px) / 3.5);
    /*height: calc((var(--vh, 1vh) * 100 - 135px - 45px) / 3.5);*/
    margin-bottom: 15px;
    /*max-height: 150px;*/
    overflow: hidden;
    transition: all .4s ease-in-out;
}

.link-block.soon-block {
    filter: opacity(0.5) grayscale(0.3);
}

.link-info {
    padding-left: 30px;
    color: var(--dark-brown-color);
    line-height: 115%;
}
.link-title {
    font-size: 18px;
    font-family: "STIX Two Text", serif;
}
.link-btn {
    margin-top: 10px;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 7px !important;
}
.link-btn i {
    font-size: 10px;
}

.content-player.fullscreen .video-container {
    height: 100vh !important;
    height: calc(var(--vh, 1vh) * 100) !important;
}

.iti {
    width: 100%;
}

.meditation-link .link-btn {
    background: none;
    border: 1px solid !important;
    border-radius: 30px !important;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    text-transform: uppercase;
    color: var(--brown-color);
    padding: 5px 5px 5px 15px;
}

.lesson-item {
    background: #F2EDE9;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #452C1C;
    height: 100%;
    justify-content: space-between;
    position: relative;
}
.lesson-item:not(:first-child){
    margin-top: 10px;
}
.lesson-title {
    font-weight: 500;
    font-size: 20px;
}
.lesson-description {
    font-size: 12px;
    font-weight: 300;
}
.lesson-label {
    border: 1px solid;
    padding: 5px 20px;
    border-radius: 35px;
    font-size: 10px;
    font-weight: 600;
}
.lesson-item .custom-btn {
    border-radius: 25px !important;
    padding: 10px 20px;
}
.lesson-icon {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 28px;
    height: 28px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}
.lesson-icon.locked-icon {
    background-image: url(../static_images/ic_lock.svg);
}
.lesson-icon.available-icon {
    background-image: url(../static_images/ic_available.svg);
}

.content-load-block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.bottom-panel.comments-panel .panel-body {
    padding: 0;
}
.bottom-panel.comments-panel .panel-content {
    padding-bottom: 0;
}

.bottom-panel.comments-panel .comments-list{
    max-height: calc(100vh - 75px);
    max-height: calc(var(--vh, 1vh) * 100 - 75px);
    overflow: scroll;
    padding: 15px 0px 75px;
}

.faq-item {
    border-radius: 10px;
    padding: 15px;
}
.faq-heading {
    cursor: pointer;
}
.faq-question {
    font-size: 13px;
    font-weight: 600;
    color: #452C1C;
    width: calc(100% - 35px);
}
.faq-answer {
    font-size: 12px;
    color: #452C1C;
    height: 0px;
    transition: all .3s ease-in-out;
    overflow: hidden;
}
.faq-btn {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: var(--brown-color);
    border-radius: 5px;
    background-image: url(../static_images/ic_chevron_right_light.svg);
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(90deg);
}
.faq-item.opened .faq-answer{
    height: auto;
    margin-top: 15px;
}
.faq-item.opened .faq-btn{
    transform: rotate(-90deg);
}

.divider-line {
    border-top: 1px solid #A58470;
    display: inline-block;
    width: 30%;
    margin: 20px 0 15px;
}

.course-cost {
    background: #F6F1EE;
    border-radius: 8px;
    color: #452C1C;
    font-size: 18px;
    text-align: center;
    display: block;
    width: 140px;
    padding: 10px;
    margin-left: 10px;
    font-family: "Inter", sans-serif;
}

.bottom-panel.custom-panel .panel-body {
    height: calc(100vh - 55px);
    height: calc(var(--vh, 1vh) * 100 - 55px) !important;
    overflow: auto !important;
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 0 15px;
}
.bottom-panel.custom-panel iframe .lt-block-wrapper {
    padding: 15px 0 0 !important;
}

.view-photo-modal .modal-dialog {
    margin: 0;
    width: 100% !important;
    max-width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}
.view-photo-modal .modal-content {
    border: none;
    background-color: transparent;
}
.view-photo-modal .close-modal-btn {
    position: absolute;
    right: 10px;
    background: #ffffff6b;
    color: var(--dark-brown-color);
    top: 10px;
    height: 40px !important;
}
