.icon-btn{
    position: relative;
}

.icon-right{
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}

.icon-btn .icon-left{
    position: absolute;
    left: 19px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.modal-3 .modal__header{
    background-color: rgba(254, 44, 85, 0.13);
    border-radius: 45px 45px 0 0;
    align-items: center;
    justify-content: center;
}

.comments-dropdown .comments-dropdown--btn .info::after{
    content: attr(data-hide);
    display: block;
    font-size: 16px;
    line-height: 19px;
    font-family: var(--fotnFamily);
}

.comments-dropdown.active-dropdown .comments-dropdown--btn .info::after{
    content: attr(data-show);
}

.comments-dropdown .comments-dropdown--btn .ico{
    transform: rotate(0deg);
}

.comments-dropdown.active-dropdown .comments-dropdown--btn .ico{
    transform: rotate(180deg);
}

.comments-dropdown--item{
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    color: var(--defaultTextColor);
    position: relative;
}

.comments-dropdown--item span{
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    padding-left: 16px;
}

.comments-dropdown--item:not(:last-child){
    margin-bottom: 18px;
}

.input-custom__textarea{
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: var(--defaultTextColor);
    padding: 23px 16px;
    resize: none;
}

.choices-comment__item{
    background-color: #FAFCFF;
    background-clip: padding-box;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 18px 10px 16px;
    cursor: pointer;
    position: relative;
}

.choices-comment__item:hover::after,
.choice-label .choice-input:checked + .choices-comment__item::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(45deg, rgb(0, 242, 234), rgb(254, 44, 85));
}

.choices-comment__item:hover::before,
.choice-label .choice-input:checked + .choices-comment__item::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: #FAFCFF;
    margin: 0;
    border-radius: 10px;
}

.choices-comment__icon{
    margin-bottom: 8px;
    z-index: 2;
}

.choices-comment__amount{
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
    z-index: 2;
    gap: 4px;
}

.choices-wrap{
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.col-choice{
    width: 50%;
    flex: 0 0 50%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.choices-comment__price{
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    color: var(--primary-500);
    z-index: 2;
}

.choices-comment__chevron{
    border-radius: 10px;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    min-width: 18px;
    height: 18px;
}

.choices-comment__amount-list{
    background-color: #FFFFFF;
    border: 0.5px solid rgba(0, 0, 0, 0.08);
    padding: 5px 0;
    border-radius: 10px;
    overflow: hidden;
}

.choices-comment__amount-item{
    font-family: 'Manrope';
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
    padding: 0 20px;
}

.choices-comment__amount-item:not(:last-child){
    margin-bottom: 8px;
}

.choices-comment__amount-item:hover{
    background-color: #F8F8F8;
    cursor: pointer;
}

.choices-comment__body-amount{
    z-index: 300;
}

.textarea{
    font-family: 'Manrope';
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 24px 18px;
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
    color: rgba(0, 0, 0, 1);
    resize: none;
}

.textarea::placeholder{
    color: rgba(0, 0, 0, .3);
}

.textarea-wrap__info-text{
    font-family: 'Manrope';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    position: absolute;
    top: 15px;
    left: 18px;
    color: #FE2C55;
}
.textarea-wraper--label{
    overflow: hidden;
    position: relative;
}

.textarea-wraper--label.fill-input .label-input{
    opacity: 1;
    background-color: #ffffff;
}

.textarea-wraper--label.fill-input .textarea-input{
    padding-top: 35px;
}

.textarea-wraper{
    display: flex;
    align-items: center;
    border-radius: 8px;
    height: 210px;
    border: 1.5px solid rgba(200,206,218, 0.375082);
    background-color: var(--white);
}

.textarea-wraper .textarea-input{
    flex: auto;
    padding: 18px 15px;
    border-radius: 8px;
    min-height: 100%;
}

.textarea-input{
    opacity: 1;
    color: var(--black);
    font-weight: 400;
    font-style: normal;
    padding: 10px 0;
    font-size: var(--defaultFontSize);
    width: 100%;
    background-color: transparent;
    resize: none;
}

.textarea-input::-webkit-scrollbar{
    width: 3px;
}

.textarea-input::-webkit-scrollbar-thumb{
    background-color: #F8F8F8;
}

.textarea-wraper.error .label-input{
    color: var(--primary-500);
}

.border{border: 1px solid rgba(0, 0, 0, 0.08);}
.border-bottom{border-bottom: 1px solid rgba(0, 0, 0, 0.08);}
.border-top{border-top: 1px solid rgba(0, 0, 0, 0.08);}
.border-dashed{border: 1px dashed rgba(0, 0, 0, 0.17);}

/* =============== */

.rating-input {
    display: flex;
    overflow: hidden;
    flex-direction: row-reverse;
    position: relative;
  }
  
.rating-0 {
    filter: grayscale(100%);
}
  
.rating-input > input {
    display: none;
}
  
.rating-input > label {
    cursor: pointer;
    width: 25px;
    height: 25px;
    background-image: url('../img/icons/icon-star-silver.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 76%;
    transition: .3s;
}
  
.rating-input > input:checked ~ label,
.rating-input > input:checked ~ label ~ label {
    background-image: url('../img/icons/icon-star-gold.svg');
}
  
  
.rating-input > input:not(:checked) ~ label:hover,
.rating-input > input:not(:checked) ~ label:hover ~ label {
    background-image: url('../img/icons/icon-star-gold.svg');
}

  /* ========================== */

.user-name-30x30{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
}

.counter-number{
    counter-reset: number;
}

.counter-increment::before{
    counter-increment: number;
	content: counter(number);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
}

.input-custom__textarea::-webkit-resizer{
    background: url(../img/icons/icon-resizer.svg);
    background-repeat: no-repeat;
}

.input-custom__textarea::-webkit-scrollbar{
    width: 4px;
    height: 4px;
}
.input-custom__textarea::-webkit-scrollbar-thumb{
    background-color: var(--secondary-500);
}

.gray-card{
    background-color: #FAFCFF;
    border: 1px solid #EEEEEE;
}
  
.gray-card:hover{
    border: 1px solid var(--primary-500);
}

.black-credit-card{
    background-color: var(--black);
    border-radius: 4px;
    padding: 8px 7px;
    width: 87px;
    height: 55px;
}

.black-credit-card__head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.black-credit-card__body{
    display: flex;
    flex-direction: column;
}
 
.border-red{border: 1px solid var(--primary-500);}
  
.decor-box-black{
    width: 89px;
    height: 89px;
    min-width: 89px;
    background: #000000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.or-decor{
    height: 1px;
    width: 100%;
    background-color: #EFEFEF;
}

.or-decor-wrap{
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.36px;
    text-align: center;
    width: 100%;
    letter-spacing: 0.36px;
    color: #969AA8;
}

.confirm-decor{
    position: absolute;
    right: 22px;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-500);
    display: flex;
    align-items: center;
    justify-content: center;
}


.verify-input-list{
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-input-item + .verify-input-item{
    margin-left: 8px;
}

.verify-input{
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: var(--secondary-500);
    max-width: 78px;
    width: 100%;
    height: 68px;
    text-align: center;
}

.verify-input::-webkit-outer-spin-button,
.verify-input::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;
    margin: 0;
}

.btn-back{
    padding: 7px;
    background-color: #F8F8F8;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn--black{
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn--white{
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.get-likeSupply{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* ======tabs======= */

.tabs__list{
    display: flex;
    align-items: center;
    background-color: #F8F8F8;
    border-radius: 12px;
    width: 100%;
}

.tab-button{
    color: #77838F;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
}

.tab-button.active{
    color: #ffffff;
    background-color: #000000;
}

.tabs-item{
    display: none;
}

.tabs-item.active{
    display: block;
}

.type-item-list{
    display: flex;
    align-items: center;
    background: #F8F8F8;
    width: 100%;
    overflow: auto;
}

.type-item-list .btn{
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #000000;
    padding: 13px 10px;
    border-radius: 8px;
}

.type-item-list .btn + .btn{
    margin-left: 7px;
}

.type-item-list .btn.active{
    color: #FFFFFF;
    background-color: var(--primary-500);
}

.blog-wrap{
    max-width: 1153px;
    margin-left: auto;
    margin-right: auto;
}

.blog-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -17.5px;
    margin-right: -17.5px;
}

.blog-item{
    width: 33.33%;
    flex: 0 0 33.33%;
    padding-left: 17.5px;
    padding-right: 17.5px;
    margin-bottom: 43px;
    display: flex;
    justify-content: center;
}

.blog-item__text{
    font-weight: 600;
    color: var(--secondary-500);
    font-size: 14px;
    line-height: 18px;
    max-width: 330px;
}

.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination a{
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: var(--primary-500);
}

.pagination li:not(:last-child){
    margin-right: 20px;
}

.tab-blog .tabs__list{
    justify-content: center;
    background-color: transparent;
}

.tab-blog .tab-button{
    padding: 14px 25px;
    background-color: #F8F8F8;
}
.tab-blog .tab-button.active{
    background: var(--primary-500);
    color: var(--white);
    border-radius: 8px;
}

.tab-blog .tabs__list li + li{
    margin-left: 8px;
}

.tab-blog .tabs-head{
    overflow: auto;
}

.buy-tiktok-list{
    display: flex;
    flex-direction: column;
}

.buy-tiktok-item .btn{
    padding: 20px 24px;
    font-weight: 700;
    font-size: 14px;
    line-height: 19px;
    color: var(--primary-500);
    width: 100%;
}

.buy-tiktok-item:not(:last-child){
    margin-bottom: 18px;
}

.blog-post-wrap{
    display: flex;
    align-items: flex-start;
}

.blog-block{
    text-align: center;
}

.blog-right-block{
    display: flex;
    flex-direction: column;
    flex: 0 0 400px;
    width: 400px;
}

.logo-black-box-125x48{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 125px;
    width: 125px;
    height: 48px;
    background: #000000;
    border-radius: 7px;
}

.container.container-1190{
    max-width: 1190px;
}
.container.container-1030{
    max-width: 1030px;
}

.teg-item{
    display: inline-block;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.14px;
    background-color: #EAECF1;
    border-radius: 6px;
    padding: 7px 10px;
    color: rgba(0, 0, 0, 0.4);
}

.list-tegs{
    display: flex;
    flex-wrap: wrap;
}

.list-tegs__item{
    margin-bottom: 10px;
}

.list-tegs__item:not(:last-child){
    margin-right: 14px;
}

.step-lable{
    position: absolute; 
    right: -42px;
    top: -7px;
}

.step-lable-info{
    background-color: var(--primary-500);
    border-color: var(--primary-500);
    color: var(--white);
}
.label-red{
    display: block;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    color: var(--primary-500);
}

.max-amount{
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    line-height: 16px;
    padding-right: 19px;
}

.card-body--item-2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #CFD3DD;
}

.user-50x50{
    border-radius: 50%;
    width: 50px;
    min-width: 50px;
    height: 50px;
}

.card-gray{
    background-color: var(--primary-100);
}

.btn--white-outline{
    border: 1px solid var(--white);
    color: var(--white);
}

.recommendations-item + .recommendations-item{
    margin-top: 34px;
    border-top: 1px solid #EAECF1;
    padding-top: 34px;
}

.recommendations-item{
    display: flex;
    justify-content: space-between;
}


.black-range .noUi-horizontal .noUi-handle{
    width: 30px;
    height: 30px;
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 50%;
    box-shadow: none;
}

.black-range .noUi-handle:before, .noUi-handle:after{
    display: none;
}

.black-range .noUi-target{
    background-color: #D8D8D8;
    border-radius: 11px;
    box-shadow: none;
}
.black-range .noUi-connects{
    border-radius: 11px;
}

.black-range .noUi-connect{
    background-color: #000000;
}

.black-range__list{
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}

.black-range__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
}

.black-range__item span:first-child{
    margin-bottom: 5px;
}

.media-summary-card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--secondary-100);
    border-radius: 5px;
    white-space: nowrap;
}

.media-summary-card__img img{
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 5px;
}

.media-summary-card__item-150{
    display: flex;
    flex: 0 0 150px;
    width: 150px;
    font-weight: 600;
}

.media-summary-card__item-text{
    display: flex;
    flex: 0 0 254px;
    width: 254px;
}

.media-summary-card__date{
    display: flex;
}

.your-hashtags{
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
}

.your-hashtags span {
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    margin-right: 14px;
    margin-bottom: 13px;
  }

.your-hashtags span:nth-child(3),
.your-hashtags span:nth-child(5) {
    position: relative;
    transform: translateY(0.7em);
    /* margin-top: 0.7em; */
}

.your-hashtags span:nth-child(7){
    position: relative;
    transform: translateY(0.4em);
}

.your-hashtags span:last-child{
    position: relative;
    transform: translateY(-1.1em);
    color: #03D07D;
}
.your-hashtags span:nth-child(2) {
    color: #03D07D;
}

.your-hashtags span:nth-child(3) {
    color: #FE2C55;
}
.your-hashtags span:nth-child(8n) {
    position: relative;
    transform: translateY(0.5em);
    /* margin-top: 0.2em; */
    margin-left: 32px;
}

.your-hashtags span:nth-child(8){
    position: relative;
    transform: translateY(0.2em);
}
.your-hashtags span:nth-child(9) {
    transform: translateY(-0.4em);
    color: #FE2C55;
    /* margin-top: 0; */
}

.started-tab .tabs-head{
    overflow: auto;
}

.started-tab .tabs__list{
    background-color: transparent;
}

.started-tab .tab-button.active{
    background-color: var(--primary-500);
    color: var(--white);
    border-radius: 8px;
}

.started-tab .tab-button{
    padding: 13px 17px;
    background-color: #F8F8F8;
}

.started-tab .tabs__list li + li{
    margin-left: 8px;
}

.account-stats-card {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.account-stats-card__wrap-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.account-stats-card__wrap-block span:first-child{
    margin-right: 10px;
}

.account-stats-card__wrap-block + .account-stats-card__wrap-block{
    margin-top: 16px;
}

.account-stats-card{
    padding: 17px 23px;
    border-radius: 5px;
    background-color: #F8F8F8;
}

.account-stats-card__item-150{
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

/* .started-tab .tabs-item{
    margin-top: -183px;
} */

.max-w-355{
    max-width: 355px;
}
.mt--183{
    margin-top: -183px;
}


.ff-fotnFamilyMontserrat{font-family: var(--fotnFamilyMontserrat);}

.invalid-border {
    border: 1px solid red;
}