@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Gilroy-Bold.eot');
    src: local('Gilroy Bold'), local('Gilroy-Bold'),
        url('../assets/fonts/Gilroy-Bold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Gilroy-Bold.woff2') format('woff2'),
        url('../assets/fonts/Gilroy-Bold.woff') format('woff'),
        url('../assets/fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Gilroy-Medium.eot');
    src: local('Gilroy Medium'), local('Gilroy-Medium'),
        url('../assets/fonts/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Gilroy-Medium.woff2') format('woff2'),
        url('../assets/fonts/Gilroy-Medium.woff') format('woff'),
        url('../assets/fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../assets/fonts/Gilroy-Extrabold.eot');
    src: local('Gilroy Extrabold'), local('Gilroy-Extrabold'),
        url('../assets/fonts/Gilroy-Extrabold.eot?#iefix') format('embedded-opentype'),
        url('../assets/fonts/Gilroy-Extrabold.woff2') format('woff2'),
        url('../assets/fonts/Gilroy-Extrabold.woff') format('woff'),
        url('../assets/fonts/Gilroy-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

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

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

*{
    font-family: 'Gilroy';
}

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;
}

.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);
}

.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;
}

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

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

.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-btn{
    border-radius: 7px !important;
    height: 40px !important;
    border: none;
    font-size: 15px;
    min-width: 40px;
}

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.light-btn {
    background: var(--light-color);
    color: var(--brown-color);
}

.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 {
    background: #DEDBDA !important;
    color: #A19B95;
}

.custom-btn.underlined-btn {
    color: var(--brown-color);
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
}

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

.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;
    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;
    display: flex;
    z-index: 11;
    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;
}

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

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

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

.page {
    padding: 65px 0 85px;
    width: 100vw;
    overflow-x: hidden;
}

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

body {
    background: #FFF;
}

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);
}

.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: var(--dark-brown-color);
}

.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);
}

.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;
}

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

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

.content-cover .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%;
}
.content-cover .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-views, .content-cover .content-duration, .content-cover .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.broadcast-content {
    width: calc(100vw - 20px - 10px);
    margin: 0 5px 10px;
}

.content-item.broadcast-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: absolute;
    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: 120vw;
    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;
}

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

#media-js:not(.vjs-fullscreen#media-js) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

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

.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-caption-settings, .vjs-texttrack-settings, .vjs-subs-caps-button, .vjs-fullscreen-control:not(.vjs-fullscreen .vjs-fullscreen-control) {
    display: none !important;
}

.video-js .vjs-progress-holder.vjs-slider {
    margin: 0 10px !important;
    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;
}
.player-time {
    position: absolute;
    bottom: 25px;
    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%;
}
.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;
}
.feature-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #FFF;
    font-size: 14px;
}
.feature-icon {
    width: 25px;
    height: 25px;
    background: #FFF3EF;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}


.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%;
}

.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-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 101;
    transition: all .4s ease-in-out;
    transform: translateX(calc(100% + 15px));
    -webkit-transform: translateX(calc(100% + 15px));
}

.sidebar-menu.opened{
    transform: translateX(0);
    -webkit-transform: translateX(0);
    backdrop-filter: brightness(0.5);
}

.close-menu-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;
}

.menu-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;
}

.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;
}
.menu-link img {
    height: 12px;
    width: 12px;
}

.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;
}
.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, #F6F1EE 0%, #F6F1EE 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: 0 0 20px 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;
    max-height: calc(var(--vh, 1vh) * 100);
}

.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;
}

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

.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) {
    left: 50%;
    position: absolute;
    height: 100%;
    width: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.content-view-container.broadcast-content .video-container .video-js .vjs-tech{
    object-fit: contain;
    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;
}
.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-top: 15px;
    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;
}
.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 .read-more {
    color: #907663;
    font-size: 14px;
}

.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;
}

.hidden-text {
    height: calc(35vh - 85px - 30px);
    height: calc(var(--vh, 1vh) * 35 - 85px - 30px);
    overflow: hidden !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 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;
    justify-content: space-between;
    align-items: center;
}
.subscription-plan {
    background: #CCA98F;
    color: #907663;
    border-radius: 9px;
    padding: 5px;
    width: calc(100% / 3);
    text-align: center;
    transition: all .3s ease-in-out;
}
.subscription-plan:nth-child(2) {
    margin: 0 10px;
}
.subscription-plan.checked {
    background: #FFA668;
    color: #FFF;
}

.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;
}

/*bottom panel*/
.bottom-panel {
    position: fixed;
    top: 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;
}

.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: scroll;*/
}

.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-size: 24px;
    color: var(--brown-color);
}
.bottom-panel .panel-description {
    color: var(--brown-color);
    font-size: 14px;
    line-height: 120%;
}

.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.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;
}

.question-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;
}
.question-option.checked {
    opacity: 1;
}

.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%;
}

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

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

.option-icon {
    height: 50px;
}

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

.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;
}
