.filter-group {
    position: relative;
}

.filter-group .filter-group__title {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 4px;
}

.filter-group .filter-group-heading {
    width: 100%;
    height: auto;
    min-height: 44px;
    padding: 10px 9px 10px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border: 2px solid #000;
}

.filter-group .filter-left > span {
    font-weight: 350;
    font-size: 18px;
    line-height: 24px;
    color: #707075;
}

.filter-group .filter-left .tags-list {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-group .filter-group-heading.have-data .filter-left > span {
    display: none;
}

.filter-group .filter-group-heading.have-data .tags-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.filter-group .filter-left .tags-list__item {
    padding: 7px 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f0f0f5;
}

.filter-group .filter-left .tags-list__item > span {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #000;
}

.filter-group .filter-left .tags-list__item > button {
    padding: 0;
    height: 24px;
    width: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
}

.filter-group .filter-left .tags-list__item > button::before {
    font-size: 24px;
    display: inline-block;
    font-family: "Icon";
    line-height: inherit;
    vertical-align: top;
    content: "\e90f";
    position: relative;
    margin-left: 4px;
}

.filter-group .filter-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.filter-group .filter-right__btn {
    height: 24px;
    width: 24px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter-group .filter-right__btn[data-role=delete-tags] {
    display: none;
}

.filter-group .filter-group-heading.have-data .filter-right__btn[data-role=delete-tags] {
    display: inline-flex;
}

.filter-group.is-on .filter-group-heading {
    border: 2px solid #0158bb;
}

.filter-group.is-on .filter-right__btn[data-role=switch-dropdown] > svg {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.filter-group .dropdown {
    display: none;
    border-right: 1px solid #B2B2B2;
    border-bottom: 1px solid #B2B2B2;
    border-left: 1px solid #B2B2B2;
    background: #fff;
}

.filter-group.is-on .dropdown {
    display: block;
}

.filter-group .dropdown-list {
    max-height: 270px;
    overflow-y: auto;
    margin: 0;
    font-weight: 400;
    user-select: none;
    -webkit-user-select: none;
    overflow-x: hidden;
}

.filter-group .dropdown-list::-webkit-scrollbar,
#sharing-content-mr-popup .popup::-webkit-scrollbar {
    width: 4px;
}

.filter-group .dropdown-list::-webkit-scrollbar-track,
#sharing-content-mr-popup .popup::-webkit-scrollbar-track {
    background: transparent;
}

.filter-group .dropdown-list::-webkit-scrollbar-thumb,
#sharing-content-mr-popup .popup::-webkit-scrollbar-thumb {
    background-color: rgba(24, 25, 47, 0.20);
    border: 3px solid transparent;
    border-radius: 4px;
}

.filter-group .dropdown-list__item {
    height: auto;
    width: 100%;
    padding: 8px 16px 20px;
    position: relative;
    cursor: pointer;
    margin: 0;
    min-height: 54px;
}

.filter-group .dropdown-list__item:before {
    content: "";
    display: block;
    height: 18px;
    width: 18px;
    border: 2px solid #000;
    background-color: #fff;
    border-radius: 0;
    position: absolute;
    top: 16px;
}

.filter-group .dropdown-list__item:after {
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    background: #000;
    -ms-transform: scale(0);
    transform: scale(0);
    left: 21px;
    top: 21px;
}

.filter-group .dropdown-list__item[aria-selected=true]:after {
    -ms-transform: scale(1);
    transform: scale(1);
}

.filter-group .dropdown-list__item .name {
    font-size: 18px;
    font-weight: 350;
    line-height: 24px;
    color: #000;
    display: block;
    float: left;
    margin-left: 40px;
    width: calc(100% - 40px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.filter-group .dropdown-list__item .wrum {
    color: #707075;
    font-size: 14px;
    line-height: 20px;
    display: inline;
    float: left;
    margin-left: 40px;
    margin-top: 6px;
    margin-right: 5px;
}

.filter-group .dropdown-list__item .error {
    color: #E22045;
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 28px;
    left: 166px;
    display: none;
}

.filter-group .dropdown-list__item .select {
    background-color: #C3E0FF;
}

.filter-group .dropdown-list__item.no-valid.email .error[data-error=email],
.filter-group .dropdown-list__item.no-valid.sms .error[data-error=sms],
.filter-group .dropdown-list__item.no-valid.wapp .error[data-error=wapp],
.filter-group .dropdown-list__item.no-valid.telegram .error[data-error=telegram],
.filter-group .dropdown-list__item.no-valid.tgsms .error[data-error=tgsms] {
    display: block;
}

.filter-group .dropdown-list__item:hover {
    background-color: #0158bb;
}

.filter-group .dropdown-list__item:hover .name,
.filter-group .dropdown-list__item:hover .wrum {
    color: #fff;
}

.filter-group .dropdown-list__item.no-valid .name,
.filter-group .dropdown-list__item.no-valid .wrum,
.filter-group .dropdown-list__item.fill .name,
.filter-group .dropdown-list__item.fill .wrum {
    color: #B2B2B2;
}

.filter-group .dropdown-list__item.no-valid:before,
.filter-group .dropdown-list__item.fill:before {
    border-color: #B2B2B2;
}

.filter-group .input__item {
    padding: 20px 12px 8px;
    position: relative;
}

.filter-group .input__item input {
    padding: 8px 16px 8px 50px;
    border: 2px solid #000;
    background: #fff;
    font-size: 18px;
    font-weight: 350;
    line-height: 24px;
    width: 100%;
}

.filter-group .input__item .field__icon {
    color: #707075;
    pointer-events: none;
    position: absolute;
    top: 29px;
    left: 27px;
    z-index: 4;
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.filter-group .input__item input::placeholder {
    color: #707075;
}

#sharing-content-mr-popup .popup {
    min-height: 400px;
    height: auto;
    padding-bottom: 56px;
}

#sharing-content-mr-popup .popup__close {
    margin-top: -8px;
}

#sharing-content-mr-popup .popup__title {
    margin-bottom: 39px;
    text-align: left;
}

#sharing-content-mr-popup h3,
#sharing-content-mr-popup-ok h3 {
    font-size: 24px;
    line-height: 27px;
}

#sharing-content-mr-popup .popup__body {
    margin-top: -30px;
}

#sharing-content-mr-popup .popup__text {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 28px;
    color: #000000;
}

#sharing-content-mr-popup .buttons {
    margin-top: 32px;
}

.mr_share-block {
    margin-bottom: 60px;
}

.data-block-component-content-sharing-mr .mr_share-block {
    margin-top: 20px;
    margin-bottom: 20px;
}

.component-content-sharing-mr .mr_share-block {
    margin-bottom: 40px;
}

.mr_share-head {
    font-weight: 700;
    font-size: 24px;
    line-height: 27px;
    text-align: center;
    color: #000000;
    margin-bottom: 24px;
}

.detail-body-ver1__aside .mr_share-head {
    text-align: left;
}

.mr_share-buttons {
    display: flex;
    justify-content: center;
}
/* short link*/
.mr_share-body {
    font-family: "Circe", "Helvetica Neue", Arial, sans-serif;
}

.mr_share-deeplink-title {
    color: #707075;
    font-size: 13px;
    text-align: center;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}

.mr_share-shortlink {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mr_share-shortlink__body {
    display: flex;
    justify-content: left;
    flex-direction: column;
    width: 350px;
}

.mr_share-shortlink__link {
    position: relative;
    color: #0170ED;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    margin-top: 24px;
    cursor: pointer;
}

.shortlink-img__svg-path {
    color: #0170ED;
}

.mr_share-shortlink__link:hover {
    color: #0158bb;
}

.mr_share-shortlink__link:hover .shortlink-img__svg-path{
    fill: #0158bb;
}

.mr_share-shortlink__link.copied {
    color: #3edca2;
    cursor: none;
}

.mr_share-shortlink__link.copied .shortlink-img__svg-path{
    fill: #3edca2;
}

.mr_share-shortlink__link.copied:hover {
    color: #3edca2;
}

.mr_share-shortlink__link.copied:hover .shortlink-img__svg-path{
    fill: #3edca2;
}

.shortlink__title--copied {
    display: none;
}

.mr_share-shortlink__link.copied .shortlink__title{
    display: none;
}

.mr_share-shortlink__link.copied .shortlink__title--copied{
    display: block;
}

.mr_share-shortlink__desc {
    font-size: 13px;
    font-weight: 400;
    margin-left: 35px;
    margin-top: 4px;
    line-height: 8px;
}
.shortlink__img {
    margin-right: 11px;
    position: relative;
}

.mr_share-button {
    margin-right: 20px;
    width: 100%;
    max-width: 117px;
    height: 75px;
    background: #F0F0F5;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 9px 0 9px;
    text-decoration: none;
}

.detail-body .mr_share-block a {
    text-decoration: none;
}

.mr_share-button:last-child {
    margin-right: 0;
}

.mr_share-button:hover {
    color: #0158BB;
}

.mr_share-button:hover svg > path.fill {
    fill: #0158BB;
}

.mr_share-button:hover svg > path.stroke {
    stroke: #0158BB;
}

#sharing-content-mr-popup .popup__desc {
    text-align: left;
}

#sharing-content-mr-popup {
    position: relative;
    z-index: 50;
}

#sharing-content-mr-popup .h3 {
    font-size: 24px;
    line-height: 27px;
}

#sharing-content-mr-popup-ok .popup {
    min-height: 402px;
    height: auto;
}

#sharing-content-mr-popup-ok .button {
    width: 180px;
    margin: 0 auto;
}

@media screen and (max-width: 807px), print {
    #sharing-content-mr-popup .popup,
    #sharing-content-mr-popup-ok .popup {
        width: calc(100% - 68px);
    }

    #sharing-content-mr-popup-ok .button {
        width: 257px;
    }
}

@media screen and (max-width: 767px) {
    #sharing-content-mr-popup .popup__close {
        padding: 28px 5px;
    }

    #sharing-content-mr-popup .popup,
    #sharing-content-mr-popup-ok .popup {
        width: calc(100% - 32px);
        min-height: 371px;
        padding-bottom: 32px;
    }

    #sharing-content-mr-popup-ok .button {
        width: 100%;
    }
}

.content-inline-mr-share {
    background: #FFFFFF;
    padding-top: 30px;
}

.content-inline {
    background: #FFFFFF !important;
}

.content-inline .inline-header {
    background: #F0F0F5;
    margin: 0 15px;
}

.content-inline ul {
    background: #F0F0F5;
    padding: 0 16px 12px 16px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .content-inline-mr-share .mr_share-block {
        margin-bottom: 30px !important;
    }

    .content-inline .inline-header {
        margin: 0 28px;
    }

    .content-inline ul {
        background: #F0F0F5;
        margin: 0 28px !important;
        padding: 0 16px 12px 16px;
    }
}

@media screen and (max-width: 767px) {
    .content-inline-mr-share .mr_share-block {
        margin-bottom: 30px !important;
    }

    .content-inline .inline-header {
        margin: 0 16px;
    }

    .content-inline ul {
        background: #F0F0F5;
        margin: 0 16px !important;
        padding: 0 16px 12px 16px;
    }

    .detail-header + .mr_share-block {
        margin-top: 53px;
        padding: 0 16px;
    }
}

/*  disable buttons*/
.mr_share-button.mr_share-button--disabled {
    cursor: none;
    color: #808080;
}

.mr_share-button.mr_share-button--disabled svg>path.fill{
    cursor:default;
   
    fill: #808080;
}

.mr_share-button.mr_share-button--disabled svg>path.stroke{
    cursor:default;
   
    stroke: #808080;
}

.mr_share-button.mr_share-button--disabled:hover {
    cursor:default;
   
    color: #808080;
}

.mr_share-button.mr_share-button--disabled:hover svg>path.fill {
    cursor:default;
   
    fill: #808080;
}

.mr_share-button.mr_share-button--disabled:hover svg>path.stroke {
    cursor:default;
    stroke: #808080;
}

/* notification */
.main-send-timeout-notification {
    display: block;
    color: #E22045;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

.send-timeout-notification {
    color: #E22045;
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    top: 38px;
    left: 166px;
}

.send-timeout-notification--disabled {
    display: none;
}

.send-timeout-notification--closed {
    display: none;
}

.main-send-timeout-notification__text {
    display: block;
    max-width: 345px;
}

.main-send-timeout-notification >.dsi-close {
    position: absolute;
    top: 5px;
    right: 0px;
    cursor: pointer;
}

