html {
    @media (min-width: 960px) {
        scroll-padding-top: calc(80px + 16px); /* (header + space) */
    }
    @media (min-width: 430px) and (max-width: 959px) {
        scroll-padding-top: calc(72px + 12px);
    }
    @media (min-width: 320px) and (max-width: 429px) {
        scroll-padding-top: calc(64px + 12px);
    }
    @media (max-width: 319px) {
        scroll-padding-top: calc(48px + 8px);
    }
}

body {
    -webkit-user-drag: none;
    background-color: var(--brand-colors-grayish-lime-green);
}

i[class] {
    @media (min-width: 430px) {
        font-size: 24px;
    }
    @media (max-width: 429px) {
        font-size: 16px;
    }
}

svg {
    @media (min-width: 430px) {
        width: 24px;
        height: 24px;
    }
    @media (max-width: 429px) {
        width: 16px;
        height: 16px;
    }
}

.nav-header {
    z-index: 22;
}
.sociala-logo {
    width: 111px;
}
.obj-cv {
    object-fit: cover;
}
.obj-ct {
    object-fit: contain;
}
.h30 {
    height: 30px;
}
.h45 {
    height: 45px;
}
.os-theme-dark>.os-scrollbar, .os-theme-light>.os-scrollbar {
    padding: 0;
}
.os-theme-dark>.os-scrollbar-vertical, .os-theme-light>.os-scrollbar-vertical {
    right: 2px;
    width: 4px;
}
.os-theme-dark>.os-scrollbar-vertical .os-scrollbar-handle:before, .os-theme-light>.os-scrollbar-vertical .os-scrollbar-handle:before {
    left: 0;
    right: 0;
}
.os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle {
    background: rgba(204, 228, 204, .3);
}
.os-theme-dark>.os-scrollbar:hover>.os-scrollbar-track>.os-scrollbar-handle,
.os-theme-dark>.os-scrollbar>.os-scrollbar-track>.os-scrollbar-handle.active {
    background: rgba(204, 228, 204, .3);
}

.main {
    @media (min-width: 960px) {
        padding: calc(80px + 24px) 24px 24px calc(136px + 24px); /* (header + space) space space (sidebar + space) */
    }
    @media (max-width: 959px) {
        padding: calc(72px + 24px) 24px calc(96px + 24px) 24px;
    }
    @media (max-width: 589px) {
        padding: calc(64px + 16px) 16px calc(94px + 16px) 16px;
    }
    @media (max-width: 429px) {
        padding: calc(64px + 12px) 12px calc(78px + 12px) 12px;
    }
    @media (max-width: 319px) {
        padding: calc(48px + 12px) 8px calc(67px + 12px) 8px;
    }
}
.main.menu-opened {
    @media (min-width: 1440px) {
        padding: calc(80px + 24px) 24px 24px calc(255px + 24px); /* (header + space) space space (sidebar + space) */
    }
}

.post-container[type="post"],
.feed-container[type="feed"] {
    position: relative;
    display: flex;
    width: inherit;
    gap: 24px;
}

.post-container__heading {
    margin-bottom: 24px;
    line-height: 33px;

    a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: "Open Sans", sans-serif;
        font-weight: 700;
        font-size: 14px;
        line-height: 21px;
        color: var(--general-green);
    }

    .icon {
        transform: rotate(180deg);
    }
}

.post-container__heading.hidden {
    display: none;
}

.feed-container:is([type="profile"], [type="channel"]) {
    position: relative;
    display: flex;
    width: inherit;

    @media (max-width: 1100px) {
        flex-direction: column;
    }

    @media (min-width: 960px) and (max-width: 1099px) {
        gap: 16px;
    }
    @media (min-width: 320px) and (max-width: 959px) {
        gap: 12px;
    }
    @media (max-width: 319px) {
        gap: 8px;
    }
}

.posts {
    height: 100vh;
    overflow-y: auto;
}

.posts {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.posts::-webkit-scrollbar {
    display: none;
}

#recommendations {
    @media (min-width: 1440px) {
        height: calc(100vh - 88px - 24px - 24px); /* (screen height - header height - gap - gap) */
    }
    @media (min-width: 1099px) and (max-width: 1439px) {
        height: calc(100vh - 78px - 16px - 24px); /* (screen height - header height - gap - gap) */
    }
}

#feed[type="feed"] {
    position: relative;
    z-index: 1;
}

#post-content,
#feed[type="feed"] {
    @media (min-width: 1920px) {
        width: calc(100% - 845px - 24px);
    }
    @media (min-width: 1600px) and (max-width: 1919px) {
        width: calc(100% - 525px - 24px);
    }
    @media (min-width: 1440px) and (max-width: 1599px) {
        width: calc(100% - 482px - 24px);
    }
    @media (min-width: 1280px) and (max-width: 1439px) {
        width: calc(100% - 532px - 24px);
    }
    @media (min-width: 1100px) and (max-width: 1279px) {
        width: calc(100% - 352px - 24px);
    }
    @media (max-width: 1099px) {
        width: 100%;
    }
}

#recommendations[type="post"],
#recommendations[type="feed"] {
    position: fixed;
    right: 24px;

    @media (min-width: 1920px) {
        width: 845px;
    }
    @media (min-width: 1600px) and (max-width: 1919px) {
        width: 525px;
    }
    @media (min-width: 1440px) and (max-width: 1599px) {
        width: 482px;
    }
    @media (min-width: 1280px) and (max-width: 1439px) {
        width: 532px;
    }
    @media (min-width: 1100px) and (max-width: 1279px) {
        width: 352px;
    }
    @media (max-width: 1099px) {
        display: none;
    }
}

#feed[type="profile"] {
    @media (min-width: 1680px) {
        width: calc(100% - 374px - 24px);
    }
    @media (max-width: 1679px) {
        width: 100%;
    }
}

/*Home page list*/
.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list .icon {
    font-size: 28px;
    margin-right: 10px;
    color: var(--theme-color);
}

.num-list {
    padding: 0;
    margin: 0;
}
.num-list li {
    position: relative;
    padding-left: 25px;
}
.num-list li:before {
    content: counter(list-item) ". ";
    counter-increment: item;
    color: #000;
    margin-right: 5px;
    font-weight: bold;
    position: absolute;
    left: 0;
}
.welcome-banner {
    background-image: url('../images/banner.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 24px;
    border-radius: 11px;
    margin-bottom: 26px;
    text-align: center;
}
.welcome-banner .welcome-banner__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -0.025em;
    color: #2E2E2E;
}
/*Tabs on mail page*/
.message-tabs .nav-link {
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    height: 100%;
}

.message-tabs .nav-link.active {
    border-color: transparent;
    border-bottom: 1px solid var(--theme-color) !important;
    background-color: #fbfcfe;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.message-tabs .nav-link.active .icon {
    color: var(--theme-color);
}

.message-tabs .dropdown .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-tabs .dropdown .nav-link.show .icon-dd {
    transform: rotate(180deg);
}

.message-tabs .nav-link:hover, .message-tabs .nav-link:focus {
    border-color: transparent;
    border-bottom-color: #6c757d;
}

/*People tabs*/
.people-tabs {
    border: 0;
}
.people-tabs .nav-link {
    border: 0;
    position: relative;
}
.people-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border: 0;
}
.people-tabs li a.active {
    background-color: transparent !important;
    border: 0 !important;
}
.people-tabs li a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: 100%;
    background-color: #000000;
}

/*Deposit page*/
.deposit-card__row {
    padding: 10px;
    background: #fff;
    display: flex;
}
.deposit-card__row:nth-child(even) {
    background: #fbfcfe;
}
.deposit-card__row span {
    min-width: 20%;
    margin-right: 10px;
}
.deposit-card__row b {
    font-size: 12px;
    cursor: pointer;
    word-break: break-all;
    display: flex;
    align-items: center;
    position: relative;
}
.deposit-card__row b .icon {
    margin-right: 5px;
}
.copy-done {
    position: absolute;
    display: flex;
    align-items: center;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-right: 0 !important;
    color: var(--theme-color);
}
.deposit-card__row:nth-child(even) .copy-done {
    background: #fbfcfe;
}

/*Channels*/
.channel-list__item {
    transition: all 0.2s ease-in-out;
}
.action-button.btn-success.loading:after {
    content: ' .';
    margin: 0 5px;
    animation: dots 1s steps(5, end) infinite;
}
.action-button.btn-light.loading:after {
    content: ' .';
    margin: 0 5px;
    animation: dots-black 1s steps(5, end) infinite;
}
.channel-list__item:hover {
    background-color: #fbfcfe;
}
.channel-list__item--image img {
    height: 75px;
    width: 75px;
    border-radius: 50%;
    object-fit: cover;
}
.channel-list__arrow {
    line-height: 1;
    color: #fff;
    background: var(--theme-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
}
.channel-list__arrow:hover,
.channel-list__arrow:active,
.channel-list__arrow:focus {
    color: #fff;
}
.channel-header__avatar {
    width: 75px;
    height: 75px;
    object-fit: cover;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.channel-header__actions {
    position: absolute;
    right: 10px;
    top: 10px;
}
.publication .publication__title {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.publication a,
.post a {
    color: var(--theme-color);
}
.image__container {
    height: 100%;
}
.image__container-single {
    max-width: 1200px;
    max-height: 630px;
}
.image__container img {
    max-height: 630px;
    max-width: 1200px;
    height: 100%;
}
.image__container-single img {
    max-width: 100%;
    max-height: 100%;
}
.images {
	margin-left: 0px;
	margin-right: 0px;
}
.content-text-block {
	line-height: 1.67;
}
.fullPreview {
    display: none;
}
.content-text-block .show_more_btn.show_more {
    display: inline-block !important;
}
blockquote:not(.ck-content blockquote) {
    display: block;
    border-width: 2px 0;
    border-style: solid;
    border-color: #f1f1f1;
    font-style: italic;
    text-align: center;
    padding: 20px 0 5px;
    margin: 16px 0;
    position: relative;
}
blockquote:not(.ck-content blockquote):before {
    content: '\201C';
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, -50%);
    background: #fff;
    width: 2rem;
    height: 2rem;
    font: 5em/1em 'PT Sans', sans-serif;
    color: #adb5bd;
}
.emoji-bttn__action {
    width: 20px;
    height: 20px;
    background-image: url('../images/like.svg');
    background-size: cover;
    background-repeat: no-repeat;
}
.emoji-bttn__dislike {
    transform: rotate(180deg);
}

.emoji-bttn__like.active {
    background-image: url('../images/like-active-gr.svg');
}

.emoji-bttn__dislike.active {
    background-image: url('../images/like-active-rd.svg');
}

/*Channel image*/
.avatar-wrapper {
    position: relative;
    height: 100px;
    width: 100px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 1px 1px 10px -5px #000;
    transition: all 0.3s ease;
}
.avatar-wrapper .channel-pic {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.avatar-wrapper .channel-pic-camera {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 55px;
    background: #f5f5f5;
    color: #adb5bd;
    text-align: center;
}
.avatar-wrapper .channel-pic-camera:before {
    position: relative;
    top: -3px;
}
.avatar-wrapper .upload-button {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.avatar-wrapper .upload-button .feather-plus {
    position: absolute;
    font-size: 50px;
    left: 0px;
    top: 0px;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: #34495e;
}
.avatar-item {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    user-select: none;
}
.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avatar-item a {
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 1px 1px 10px -5px #000;
}
.comments-chat-wrapper {
    max-height: calc(100vh - 120px);
    height: auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
.input-currency {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translate(0, -50%);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #BABABA;
}
.input-currency.tr-input {
    left: 0;
}
.input-price {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.input-nickname,
.input-username {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(0, -50%);
}
input[name="nickname"],
input[name="username"]{
    padding-left: 30px;
}
textarea[name="description"]::-webkit-input-placeholder {
    color: #C2C2C2;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
}

textarea[name="description"]::-moz-placeholder {
    color: #C2C2C2;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
}

textarea[name="description"]:-ms-input-placeholder {
    color: #C2C2C2;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
}

/*loader for infinite scroll*/
.infinite-scroll-request.preloader {
    position: relative;
    background-size: 30px;
    background-color: transparent;
}

.dropdown-menu-settings {
    width: auto;
    left: 0;
    right: auto;
}
.dropdown-menu-settings:after {
    left: 13px;
    right: auto;
}

.support-button {
    bottom: 60px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    transition: all .2s ease-in-out;
    z-index: 100;
}
.support-button .support-button__icon {
    font-size: 24px;
}

.tooltip {
    padding: 8px;
    filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.22));
}
.tooltip.show {
    opacity: 1;
}
.tooltip:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 8px 4px;
    border-color: transparent transparent #f1f6f1 transparent;
}
.tooltip.bs-tooltip-top:before {
    top: auto;
    bottom: 0;
    transform: translateX(-50%) rotate(180deg);
}
.tooltip .tooltip-arrow {
    display: none;
}
.tooltip-inner {
    background: #F1F6F1;
    border-radius: 5px;
    color: #000000;
    font-size: 12px;
    line-height: 20px;
    padding: 12px 4px;
    font-family: "Open Sans", sans-serif;
}

/*Custom tooltip*/
.tooltip-wrapper {
    max-width: max-content;
}
.tooltip-content {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
    background: #F1F6F1;
    border-radius: 5px;
    filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.22));
    color: #000000;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    margin-top: 12px;
}
.tooltip-content.date-tooltip-content {
    left: -50%;
    right: -50%;
    min-width: 180px;
}
.tooltip-icon:before {
    content: '';
    display: none;
    position: absolute;
    bottom: -12px;
    z-index: 4;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4px 8px 4px;
    border-color: transparent transparent #f1f6f1 transparent;
}
.tooltip-icon.active:before {
    display: block;
}
.tooltip-content.active {
    display: block !important;
}
.close-tooltip-content {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    width: 14px;
    height: 14px;
}
.close-tooltip-content:after,
.close-tooltip-content:before {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: #9DBFB4;
    left: 0;
    top: 6px;
}
.close-tooltip-content:before {
    transform: rotate(45deg);
}
.close-tooltip-content:after {
    transform: rotate(-45deg);
}

.pills-tabs {
    border-radius: 50px;
    width: 100%;
    border: 1px solid #76A193;
    overflow: hidden;
}
.pills-tabs .nav-item {
    width: 50%;
    text-align: center;
}
.pills-tabs .pills-tabs__nav {
    padding: 8px;
    border: 0;
    color: #027A52;
    margin: 0;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pills-tabs .pills-tabs__nav.active {
    border-bottom: 0 !important;
    border-radius: 50px;
    background: #027A52;
    color: #FFFFFF !important;
}

/*Buttons*/
.btn-tr-sm,
.btn-delete-sm {
    border: 1px solid;
    border-radius: 50px;
    padding: 6px 18px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-tr-sm {
    max-width: 220px;
    border-color: #027A52;
    color: var(--theme-color);
}
.btn-delete-sm {
    border-color: #C81F1F;
    color: #C81F1F;
}
.btn-cta-green,
.btn-cta-green-outline,
.btn-cta-gray {
    font-weight: 700;
    border-radius: 50px;
    padding: 12px;
    min-width: 140px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
}
.btn-cta-green {
    background: var(--theme-color);
    color: #FFFFFF;
    border: 1px solid var(--theme-color);
}
.btn-cta-green.loading:after {
    content: ' .';
    margin: 0 5px;
    animation: dots 1s steps(5, end) infinite;
}
.btn-cta-green.loading img {
    display: none;
}
@keyframes dots {
    0%, 20% {
        color: rgba(0,0,0,0);
        text-shadow:
                .25em 0 0 rgba(0,0,0,0),
                .5em 0 0 rgba(0,0,0,0);
    }
    40% {
        color: white;
        text-shadow:
                .25em 0 0 rgba(0,0,0,0),
                .5em 0 0 rgba(0,0,0,0);
    }
    60% {
        text-shadow:
                .25em 0 0 white,
                .5em 0 0 rgba(0,0,0,0);
    }
    80%, 100% {
        text-shadow:
                .25em 0 0 white,
                .5em 0 0 white;
    }
}
@keyframes dots-black {
    0%, 20% {
        color: rgba(0,0,0,0);
        text-shadow:
                .25em 0 0 rgba(0,0,0,0),
                .5em 0 0 rgba(0,0,0,0);
    }
    40% {
        color: white;
        text-shadow:
                .25em 0 0 rgba(0,0,0,0),
                .5em 0 0 rgba(0,0,0,0);
    }
    60% {
        text-shadow:
                .25em 0 0 black,
                .5em 0 0 rgba(0,0,0,0);
    }
    80%, 100% {
        text-shadow:
                .25em 0 0 black,
                .5em 0 0 black;
    }
}
.btn-cta-green-outline {
    background: #FEFEFE;
    color: #027A52;
    border: 1px solid #76A293;
}
.btn-cta-gray {
    background: transparent;
    border: 1px solid #4A4A4A;
    color: #4A4A4A;
}
.btn-cta-green:hover,
.btn-cta-green:active,
.btn-cta-green:focus {
    color: #FFFFFF;
}
.btn-cta-green-outline:hover,
.btn-cta-green-outline:active,
.btn-cta-green-outline:focus {
    color: #027A52;
}
.btn-general {
    font-family: var(--font-family);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 6px;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-general.second-green {
    border: 1px solid var(--general-second-green);
    background-color: var(--general-second-green);
    color: var(--general-green);
}
.btn-general.general-green {
    color: #FFFFFF;
    border: 1px solid var(--interface-colors-icons-color);
    background: var(--brand-colors-dark-green);
}
.btn-general.general-green:hover,
.btn-general.general-green.active {
    background-color: var(--general-green-hover);
}
.btn-general.general-green > .icon {
    transition: transform 0.25s ease;
}
.btn-general.general-green.active > .icon {
    transform: rotate(180deg);
}
.btn-general .icon {
    font-size: 22px;
}
.btn-general.light-blue {
    background-color: var(--light-blue);
    color: var(--general-green);
}
.btn-general.blue {
    background-color: var(--blue);
    color: #FFFFFF;
}
.btn-general.pink {
    background-color: var(--pink);
    color: #FFFFFF;
}
.btn-general.add-more-btn .icon-X {
    transform: rotate(45deg);

    @media (min-width: 960px) {
        font-size: 22px;
    }
    @media (max-width: 959px) {
        font-size: 20px;
    }
}
.toggle .toggle-icon {
    width: 30px;
    height: 16px;
    background: #99A3C6;
}
.toggle input[type=checkbox]:checked + .toggle-icon {
    background: #027A52;
}
.toggle .toggle-icon:before {
    left: 1px;
    top: 1px;
    height: calc(18px - 4px);
    width: calc(18px - 4px);
    box-shadow: none;
}
.toggle .toggle-icon:after {
    height: calc(18px - 4px);
    width: calc(18px - 4px);
    top: 1px;
    left: 1px;
    box-shadow: none;
}
.toggle input[type=checkbox]:checked + .toggle-icon:after {
    transform: translateX(14px);
}
.form-check-input {
    border: 1px solid #BABABA;
    border-radius: 3px;
    min-width: 1em;
    margin-top: 0;
}
.form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.form-check-input.with-error {
    border-color: #C81F1F;
}
.form-check-input.with-error:checked {
    border-color: var(--theme-color);
}
.form-check-label {
    font-size: 12px;
    line-height: 16px;
    color: #505B6E;
}
.head-menu__language {
    bottom: 15px;
}
.head-menu__language-content {
    border-radius: 4px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out,all 0.2s ease-in-out;
}
.head-menu__language-content.active {
    opacity: 1;
    visibility: visible;
}
.head-menu__language-item {
    border-bottom: 1px solid #efefef;
}
.head-menu__language-item:not(._active):last-of-type {
    border-bottom: 0;
}
.head-menu__language-item._active {
    display: none;
}
.head-menu__language-link {
    display: block;
    padding: 0 10px;
    cursor: pointer;
}
.head-menu__language-link:hover {
    color: var(--theme-color);
}
.head-menu__language-selected .icon {
    transition: ease-in-out,all 0.2s ease-in-out;
}
.head-menu__language-selected.active .icon {
    transform: rotate(180deg);
}
.video-preview {
    padding-bottom: 56.25%;
    height: 0;
    background: black;
    border-radius: 10px;
}
.video-preview iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.video-thumbnail-wrapper:before {
    font-family: 'VideoJS';
    content: "\f101";
    width: 70px;
    height: 70px;
    background-color: rgba(43, 51, 63, 0.8);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: white;
    cursor: pointer;
    transition: all 0.4s;
    z-index: 2;
}
.video-thumbnail-wrapper:hover:before {
    background-color: rgba(115, 133, 159, 0.8);
}
.video-thumbnail {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    cursor: pointer;
    position: absolute;
    height: 100%;
    object-fit: contain;
    left: 0;
    right: 0;
}
.post-video-wrapper video {
    padding: 0 !important;
}

@media (min-width: 768px) {
    .sociala-logo {
        width: 163px;
    }
    .max-w-md-250 {
        max-width: 250px;
    }
    .mh-42 {
        min-height: 42px;
    }
    textarea[name="description"]::-webkit-input-placeholder {
        font-size: 14px;
    }
    textarea[name="description"]::-moz-placeholder {
        font-size: 14px;
    }
    textarea[name="description"]:-ms-input-placeholder {
        font-size: 14px;
    }
    .btn-cta-green,
    .btn-cta-green-outline,
    .btn-cta-gray {
        min-width: 156px;
    }
    .pills-tabs {
        width: auto;
    }
    .pills-tabs .nav-item {
        width: auto;
    }
    .pills-tabs .pills-tabs__nav {
        padding: 10px 16px;
        line-height: 1;
    }
}

@media (min-width: 992px) {
    .main-content {
        padding-left: 240px;
    }

    .mail-navigation + .main-content {
        padding-left: 280px;
    }

    .copy-done {
        justify-content: center;
    }
    .support-button {
        bottom: 10px;
    }
    .support-button:hover {
        padding-right: 8px !important;
        box-shadow: 0 0rem 0.5rem var(--theme-color);
    }
    .support-button .support-button__icon {
        font-size: 28px;
    }
    .head-menu__language {
        left: 15px;
        z-index: 2;
    }
}
@media (min-width: 1024px) {
    .btn-tr-sm:hover {
        background: #E5F2EC;
        border-color: #E5F2EC;
    }
    .btn-cta-green:hover {
        background: #0AA45A;
        border-color: #0AA45A;
    }
    .btn-cta-green-outline:hover {
        background: #E5F2EC;
        border-color: #E5F2EC;
    }
    .btn-cta-gray:hover {
        background: #E5F2EC;
        border-color: #E5F2EC;
    }
    .tooltip-icon:hover:before {
        display: block;
    }
    .tooltip-icon:hover ~ .tooltip-content {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .avatar-wrapper .upload-button:hover .feather-plus {
        opacity: 1;
    }
}
@media (max-width: 990px) {
    .desc-menu{
        display: none;
    }
    /*Channels*/
    .channels-tab-content {
        margin-bottom: 100px;
    }
}
@media (max-width: 780px) {
    .title-text{
        width: 90%;
    }

}
@media (max-width: 767.98px) {
    .main-content {
        padding-bottom: 56px;
        height: 100%;
    }
}

@media (max-width: 760px) {
    .email-message a .email-text {
        padding: 13px 0 3px 5px;
    }
}

@media (max-width: 767px) {
    .space-bottom-sm {
        padding-bottom: 100px !important;
    }
    /*Channels*/
    .channels-tab-content {
        margin-bottom: 80px;
    }
    .channels-tabs .nav-link {
        position: relative;
        padding-top: 15px;
        font-size: 11px;
        line-height: 1.3;
    }
    .channels-tabs .nav-link .badge {
        position: absolute;
        top: 0;
        right: 0;
    }
    .channel-list__item--actions .dropdown {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .channel-list__item--actions .action-button {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        justify-content: center;
        margin-bottom: 0 !important;
        border-radius: 0 !important;
    }
}
@media (max-width: 576px) {
    .title-text{
        width: 90%;
    }
}

/* Hide reCAPTCHA v3 badge */
.grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
}
