* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #555555;
    background: #fdfdfd;
}
a {
    text-decoration: none;
    color: #aaa;
}
li {
    list-style: none;
}
b {
    font-weight: 600;
}
input, textarea, select, button {
    font-family: 'Roboto', sans-serif;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #dedede;
}
::-webkit-scrollbar-thumb {
    background: #bbbbbb;
}
::-webkit-scrollbar-thumb:hover {
    background: #bbbbbb;
}

#chart-scroll-wrapper::-webkit-scrollbar {
    height: 10px;
}
#chart-scroll-wrapper::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #fff;
}
#chart-scroll-wrapper::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #efefef;
}

.static-wrapper {
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    box-shadow: 1px 1px 2px 0 hsla(0,0%,57%,.08);
    background: #fff;
    padding: 10px;
    margin: 20px auto;
    max-width: 800px;
}
.static-header {
    background: #f9f9f9;
    border-radius: 5px;
    padding: 8px 10px;
}
.static-header h1 {
    font-size: 18px;
    font-weight: 400;
}
.static-text {
    font-size: 16px;
    padding: 15px 12px 10px;
    line-height: 25px;
}
.static-text h2 {
    margin-bottom: 4px;
    font-size: 17px;
    margin-top: 15px;
}
.static-text p {
    margin-bottom: 8px;
    line-height: 25px;
}
.static-text a {
    color: #0084fd;
    /*text-decoration: underline;*/
}
.static-text li {
    list-style: disc;
}
.static-text ul {
    padding-left: 20px;
}

.custom-error-svg {
    background-image: url('/assets/images/error_outline_black_24dp.svg');
    background-size: cover;
    width: 35px!important;
    height: 35px!important;
}
.custom-success-svg {
    background-image: url('/assets/images/check_circle_outline_black_24dp.svg');
    background-size: cover;
    width: 35px!important;
    height: 35px!important;
}

.errorWrapper {
    margin: 25px auto;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    text-align: center;
    max-width: 600px;
    padding: 40px;
    box-shadow: 1px 1px 2px 0 hsl(0deg 0% 57% / 8%);
    background: #ffffff;
}
.errorWrapper svg {
    fill: #ddd;
    width: 70px;
    height: 70px;
}
.errorWrapper h1 {
    font-size: 30px;
    font-weight: 400;
}
.errorWrapper h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 28px;
    color: #555;
}
.errorWrapper429 h2 {
    font-weight: 500;
    margin-bottom: 15px;
}
.errorWrapper-username {
    color: #0084fd;
    font-weight: 500;
    font-size: 18px;
}
.errorWrapper a {
    background: #555;
    color: #fff;
    font-weight: 500;
    border-radius: 20px;
    padding: 8px 18px;
    display: inline-flex;
    text-decoration: none;
}
.errorWrapper429 a {
    font-weight: 500;
    background: none;
    text-decoration: underline;
    color: #0084fd;
    font-size: 18px;
}

.errorReportWrapper {
    border-top: 1px solid #f1f1f1;
    max-width: 600px;
    padding: 13px 18px 13px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 67px;
    margin: 40px -40px -40px;
    text-align: left;
}
.errorReportText {
    font-size: 17px;
    font-weight: 400;
}
.errorReportButton {
    border: 2px solid #d8ecff;
    color: #0084fd;
    font-weight: bold;
    padding: 6px 18px;
    border-radius: 20px;
    cursor: pointer;
}

.form-with-profile-pic-wrapper {
    max-width: 530px;
    margin: 20px auto;
}
.form-with-profile-pic-block {
    background: #f2f2f2;
    padding: 10px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    max-width: 210px;
    cursor: pointer;

}

.form-with-profile-pic-block img {
    height: 45px;
    width: 45px;
    margin-right: 10px;
    border-radius: 100%;
}
.form-with-profile-pic-block span {
}

.form-wrapper {
    max-width: 530px;
    margin: 30px auto;
    box-shadow: 1px 1px 2px 0 rgb(145 145 145 / 8%);
    border: 1px solid #e7e7e7;
    border-radius: 5px;
}
.user-edit .form-wrapper {
    margin: 20px auto;
}
.form-header-tabs {
    padding-top: 18px;
    display: flex;
    justify-content: space-around;
    border-bottom: 3px solid #f5f5f5;
    background: #fff;
    border-radius: 5px 5px 0 0 ;
}
.form-header-tab {
    list-style: none;
    display: inline-block;
    font-size: 17px;
    margin: 0 10px;
    padding: 0 10px 18px;
    position: relative;
    font-weight: 500;
    color: #555;
    cursor: pointer;
}
.form-header-tab.active {
    color: #0084fd;
}
.form-header-tab.active:after {
    content: "";
    height: 3px;
    width: 100%;
    background: #0084fd;
    position: absolute;
    left: 0;
    bottom: -3px;
}
.form-header {
    font-size: 17px;
    color: #555555;
    padding: 15px;
    border-radius: 5px 5px 0 0;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}
.user-edit .form-header {
    font-size: 16px;
    background: #fff;
    font-weight: 500;
}
.with-expand .form-header {
    border-bottom: none;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 10px 9px 15px;
}
.with-expand.expanded .form-header {
    border-radius: 5px 5px 0 0;
}
.form-header-expand {
    display: flex;
    background: #f5f5f5;
    justify-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    margin: 0 5px;
    border-radius: 100%;
    cursor: pointer;
    color: #555;
}
.form-header-expand span {
    font-size: 20px;
}
.with-expand .form {
    border-top: 1px solid #f2f2f2;
}
.form {
    background: #fff;
    padding: 35px 40px;
    border-radius: 0 0 5px 5px;
}
.report-form-notice {
    background: #fff3ea;
    padding: 10px;
    border-radius: 6px;
    text-align: left;
}
.add-review-no-login-popup-form .form {
    padding: 0;
}
.forgot-form .form {
    border-radius: 5px;
}
/*.login-form.form, .register-form.form {*/
/*    border-radius: unset;*/
/*}*/
.user-edit .form {
    padding: 15px 20px 20px 20px;
}
.form label {
    font-weight: 500;
    font-size: 15px;
    /*margin-bottom: -7px;*/
    display: flex;
}
.forgot-form .form label {
    font-weight: 500;
    font-size: 16px;
}
.form input, .form textarea {
    width: 100%;
    background: #fcfcfc;
    border: 1px solid #e4e4e4;
    color: #555555;
    padding: 12px;
    margin: 10px 0;
    font-size: 15px!important;
    border-radius: 6px;
}
.form input:focus, .form textarea:focus {
    border: 1px solid #adcae0;
    outline: none;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form textarea:-webkit-autofill,
.form textarea:-webkit-autofill:hover,
.form textarea:-webkit-autofill:focus{
    -webkit-box-shadow: 0 0 0px 1000px #fcfcfc inset;
    -webkit-text-fill-color: #555555;
    font-size: 15px!important;
}
.form-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.user-edit .form-action {
    margin-top: 5px;
}
.forgot-form .form-action a {
    color: #0084fd;
    text-decoration: underline;
}
.form-action button {
    background-color: #0084fd;
    font-weight: 700;
    font-size: 17px;
    border: none;
    color: #fff;
    padding: 12px 26px;
    cursor: pointer;
    border-radius: 8px;
    min-width: 120px;
}
.login-popup .form-action button {
    border-radius: 40px;
}
.user-edit .form-action button {
    font-size: 16px;
    min-width: 110px;
}
.register-form button, .contact-us-form button, .report-form button {
    width: 100%;
}
.form-error {
    font-size: 15px;
    color: #555;
    padding: 10px 35px 9px;
    background: #FEF0EF;
    position: relative;
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-error svg, .form-success svg {
    position: absolute;
    left: 10px;
    width: 22px;
    height: 22px;
    fill: #555;
}
.form-error > div {
    display: flex;
    flex-direction: column;
}
.form-success {
    font-size: 15px;
    color: #555;
    padding: 10px 35px 9px;
    background: #e8f7e9;
    position: relative;
    text-align: center;
    margin-top: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hint-link {
    color: #0084fd;
    text-decoration: underline;
}
.password-field-wrapper {
    position: relative;
}
.password-field-wrapper svg {
    position: absolute;
    fill: #ccc;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 23px;
    height: 23px;
}
.google-auth-wrapper {
    background: #fff;
    border-radius: 0 0 5px 5px;
    padding: 20px;
    padding-top: 0;
}
form .google-auth-wrapper {
    padding: 20px 0 0;
}
.login-popup .google-auth-wrapper {
    padding: 0;
    margin-top: 20px;
}
.google-auth-or-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.google-auth-or-line {
    width: calc(50% - 20.5px);
    height: 2px;
    background: #f5f5f5;
}
.google-auth-or {
    padding: 0 10px;
}
.google-auth-button {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 2px solid #f5f5f5;

}
.google-auth-button span {
    font-size: 17px;
    color: #555;
    font-family: Roboto!important;
}
.google-auth-button [role="button"] {
    background: #fcfcfc;
    border: 2px solid #e4e4e4;
    height: unset;
    padding: 10px 20px;
    border-radius: 40px!important;
}
.custom-google-button {
    background: #fcfcfc;
    border: 2px solid #e4e4e4;
    height: unset;
    padding: 10px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.custom-google-button svg {
    width: 20px;
    height: 20px;
    display: block;
}
.custom-google-button span {
    font-size: 17px;
    color: #555;
    font-family: Roboto;
    margin-left: 10px;
    font-weight: 500;
}

.sidebar-popup-wrapper {
    display: none;
    position: fixed;
    top: 0;
    background: #fff;
    right: 0;
    width: 320px;
    z-index: 999999999;
    box-shadow: 2px 2px 1px 0 rgba(0,0,0,.1);
    text-align: left;
    font-size: 15px;
    height: 100%;
    flex-direction: column;
    overflow-y: auto;
    justify-content: space-between;
    border-radius: 16px 0 0 16px;
}
.sidebar-popup-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 10px 15px;
    background: #f8f8f8;
    align-items: center;
}
.sidebar-popup-title {
    color: #555;
    font-size: 16px;
    display: flex;
    align-items: center;
    position: relative;
}
.sidebar-popup-title > span:first-child {
    color: #555;
    font-size: 24px;
    font-weight: 700;
    display: flex;
}
#list-popup .sidebar-popup-title > span {
    font-size: 18px;
    font-weight: normal;
    padding: 2px 0;
}
#list-popup > div {
    height: 100%;
}
.profile-list-wrapper {
    height: calc(100% - 50px);
}
.profile-list-block.empty {
    display: flex;
    justify-content: center;
    height: 100%;
}
.profile-list-empty-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 200px;
}
.profile-list-empty-icon {
    display: flex;
}
.profile-list-empty-icon svg {
    width: 70px;
    height: 70px;
    fill: #dddddd;
    margin-bottom: -10px;
}
.profile-list-empty-title {
    font-size: 18px;
    font-weight: 500;
}
.profile-list-empty-text {
    font-size: 18px;
}

.sidebar-popup-title > svg {
    display: inline-flex;
    margin-left: 2px;
    height: 20px;
    width: 20px;
    fill: #0084fd;
}
#list-popup .sidebar-popup-title > svg {
    display: inline-flex;
    margin-right: 2px;
    height: 24px;
    width: 24px;
    fill: #ccc;
    margin-left: 0;
}
.sidebar-popup-close {
    cursor: pointer;
    display: flex;
}
.sidebar-popup-close svg {
    width: 17px;
    height: 17px;
    fill: #aaa;
    cursor: pointer;
}
.sidebar-popup-menu-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px 10px;
    color: #555;
}
.sidebar-popup-menu-info-title {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-popup-menu-info-title i {
    font-family: Segoe print;
    font-style: normal;
    color: #0ca0ff;
}
.sidebar-popup-menu-info-desc {
    text-align: center;
    font-size: 16px;
}
.sidebar-popup-login-btn-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0 20px;
}
.sidebar-popup-login-btn {
    display: flex;
    align-items: center;
    background: #444;
    border-radius: 20px;
    padding: 7px 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.sidebar-popup-menuListWrapper {
    position: relative;
}
.sidebar-popup-menuItem {
    margin-bottom: 0;
    color: #555;
    line-height: normal;
    padding: 18px 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom: 1px solid #f1f1f1;
}
.sidebar-popup-menuItem > a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
}
.sidebar-popup-menuItem > a > svg {
    font-size: 20px;
    margin-right: 10px;
    fill: #ccc;
    width: 1em;
    height: 1em;
}
.sidebar-popup-menuItem:first-child > a > svg {
    fill: #ccc;
}
.sidebar-popup-menuItem.trendItem > a > svg {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}
.sidebar-popup-menuItem.articleItem > a > svg {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}
.sidebar-popup-menuItem.reviewItem > a > svg {
    width: 24px;
    height: 24px;
    margin-right: 6px;
    fill: #0084fd;
}
.sidebar-popup-menuItem:last-child {
    border-bottom: none;
}
.sidebar-popup-menuItemReport {
    padding: 8px 15px;
}
.sidebar-popup-menuItemReport a {
    padding: 6px 10px;
    border-radius: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: #fef4f3;
}
.sidebar-popup-menuItemReport a svg {
    fill: #ff5b5c;
}
.sidebar-popup-copyright {
    margin: 20px 0;
    color: #aaa;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.sidebar-popup-copyrightText {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sidebar-popup-copyrightText svg {
    height: 16px;
    width: 16px;
    fill: #aaa;
}
.sidebar-popup-user-wrapper {
    display: flex;
    align-items: center;
    padding: 15px;
}
.sidebar-popup-user-avatar {
    position: relative;
    padding-right: 10px;
}
.sidebar-popup-user-avatar img {
    border-radius: 100%;
    width: 60px;
    height: 60px;
}
.sidebar-popup-user-avatar-hover {
    display: none;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(0deg,hsla(0,0%,42%,.8),rgba(47,47,47,.91));
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.sidebar-popup-user-avatar-hover span {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: inline-flex;
    padding: 0 5px;
}
.sidebar-popup-user-avatar:hover .sidebar-popup-user-avatar-hover {
    display: flex;
}
.sidebar-popup-user-avatar-hover-main {
    display: flex;
}


.sidebar-popup-user-username {
    font-weight: 500;
    font-size: 20px;
}
.sidebar-popup-user-edit {
    display: inline-flex;
    padding: 4px 13px 3px 13px;
    background: #f1f1f1;
    border-radius: 20px;
    color: #555;
}
.sidebar-popup-user-premium {
    background: #fff8ce;
    display: inline-flex;
    padding: 4px 13px 3px 13px;
    border-radius: 20px;
    color: #555;
    margin-left: 5px;
}
.sidebar-popup-user-link {
    margin: 10px 0;
    border-radius: 20px;
    background: #444444;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 17px;
}
.sidebar-popup-logout-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 20px;
    padding: 0 20px 20px;
}
.sidebar-popup-logout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef8ff;
    color: #0084fd;
    border-radius: 20px;
    padding: 7px 15px;
    cursor: pointer;
}
.sidebar-popup-expand {
    position: absolute;
    right: 15px;
    bottom: 16px;
    background: #f0f0f0;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px;
    font-size: 28px;
    border-radius: 100%;
    cursor: pointer;
}
.sidebar-auth-expand {
    display: none;
}
.sidebar-popup-background {
    background: #0084fd;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.sidebar-popup-background:after {
    content: '';
    background: #1b91ff;
    height: 150px;
    width: 40px;
    position: absolute;
    right: -15px;
    transform: rotate(20deg);
    top: -36px;
}
.sidebar-popup-background:before {
    content: '';
    background: #1b91ff;
    height: 150px;
    width: 40px;
    position: absolute;
    left: -20px;
    transform: rotate(-51deg);
    top: -36px;
}

.sidebar-popup-background span:first-child {
    font-weight: 500;
    color: #fff;
    font-size: 22px;
    display: inline-flex;
}
.sidebar-popup-background span:last-child {
    color: #81c2fe;
    display: inline-flex;
    margin-left: 4px;
    font-size: 20px;
}

.sidebar-popup-articles-wrapper {
    display: none;
}
.sidebar-popup-articles-back {
    margin-left: 10px;
    margin-top: 10px;
    padding: 5px;
    background: #f1f1f1;
    display: inline-flex;
    border-radius: 100%;
    cursor: pointer;
}
.sidebar-popup-articles-back svg {
    fill: #555;
}
.sidebar-popup-articles-empty {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-size: 17px;
    color: #aaa;
}
.sidebar-popup-articles-item {
    margin-bottom: 0;
    color: #555;
    line-height: normal;
    padding: 18px 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom: 1px solid #f1f1f1;
}
.sidebar-popup-articles-item a {
    color: #555;
    font-size: 17px;
}
.articles-count-badge {
    background: #f1f1f1;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 5px;
    font-size: 15px;
    font-weight: 500;
}

.sidebar-popup-reviews-wrapper {
    display: none;
}
.sidebar-popup-reviews-back {
    margin-left: 10px;
    margin-top: 10px;
    padding: 5px;
    background: #f1f1f1;
    display: inline-flex;
    border-radius: 100%;
    cursor: pointer;
}
.sidebar-popup-reviews-back svg {
    fill: #555;
}
.sidebar-popup-reviews-empty {
    display: flex;
    justify-content: center;
    padding: 20px;
    font-size: 17px;
    color: #ccc;
}
.sidebar-popup-reviews-item {
    margin-bottom: 0;
    color: #555;
    line-height: normal;
    padding: 18px 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-bottom: 1px solid #f1f1f1;
}
.sidebar-popup-reviews-item a {
    color: #555;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar-popup-reviews-item-rate {
    display: flex;
    align-items: center;
}
.sidebar-popup-reviews-item-rate svg {
    margin-right: 4px;
}


.profile-list-count {
    font-style: italic;
    color: #aaa;
    display: flex;
    justify-content: flex-end;
    padding: 16px;
    padding-bottom: 0;
}
.profile-list-block {
    padding: 10px;
}
.profile-list-item {
    border-bottom: 1px solid #efefef;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.profile-list-remove {
    position: absolute;
    right: 10px;
    top: calc(50% - 7.5px);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    cursor: pointer;
}
.profile-list-remove svg {
    fill: #aaa;
}
.profile-list-item-profile-block {
    display: flex;
}
.profile-list-item-avatar {
    display: flex;
    margin-right: 10px;
}
.profile-list-item-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #eeeeee;
}
.profile-list-item-username {
    font-size: 17px;
    font-weight: 500;
    color: #555;
}
.profile-list-item-amount {
    font-size: 17px;
    color: #15a900;
    font-weight: 500;
}
.profile-list-item-frame {
    font-style: italic;
    color: #aaa;
}
.profile-list-delete-prompt-buttons {
    display: flex;
    padding-top: 17.4px;
    justify-content: flex-end;
}
.profile-list-delete-prompt-button {
    color: #0084fd;
    font-weight: 500;
    padding: 4px 14px;
    cursor: pointer;
}
.profile-list-delete-prompt-button:first-child {
    background: #0084fd;
    color: #fff;
    margin-right: 5px;
    border-radius: 20px;
}
.profile-list-item-avatar-loading {
    width: 50px;
    height: 50px;
    background: #eeeeee;
    border-radius: 100%;
    margin-right: 10px;
}
.profile-list-item-username-loading {
    background: #eeeeee;
    width: 120px;
    height: 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.profile-list-item-amount-loading {
    background: #eeeeee;
    width: 90px;
    height: 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.profile-list-item-frame-loading {
    background: #eeeeee;
    height: 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: 50px;
}



.bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.8);
    z-index: 9999;
}
.popup-open {
    cursor: pointer;
}


.content {
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
    position: relative;
}

.wrapper {
    position: relative;
}

.main-header {
    padding: 8px 0 9px;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
}
.main-header > .content {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}
.left-header {
    min-width: 216px;
    display: flex;
    align-items: center;
}
.logo {
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.logo a {
    color: #555;
    font-size: 24px;
    font-weight: 700;
    display: flex;
}
.logo svg {
    display: inline-flex;
    margin-left: 2px;
    width: 20px;
    height: 20px;
    fill: #0084fd;
}
.logo a i {
    font-family: Segoe print;
    font-style: normal;
    color: #0ca0ff;
}
#search_form {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    border-radius: 20px;
    min-width: 450px;
    position: relative;
}
.search_form_icon {
    display: flex;
    margin-left: 13px;
    color: #aaa;
}
.search_form_icon svg {
    fill: #aaa;
}
#search_form input {
    font-size: 16px;
    padding: 9px;
    border: none;
    color: #aaa;
    opacity: 1;
    width: 100%;
    line-height: 23px;
    height: 36px;
    background: #f7f7f7;
    border-radius: 0 20px 20px 0;
}
#search_form input::-webkit-input-placeholder {color:#aaa ;opacity: 1;}
#search_form input::-moz-placeholder          {color:#aaa ;opacity: 1;}/* Firefox 19+ */
#search_form input:-moz-placeholder           {color:#aaa ;opacity: 1;}/* Firefox 18- */
#search_form input:-ms-input-placeholder      {color:#aaa ;opacity: 1;}
.search-failed {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: #0383fd;
    width: 100%;
    padding: 10px;
    top: calc(100% + 15px);
    border-radius: 10px;
    text-align: left;
    z-index: 9999;
}
.search-failed:before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #0383fd;
    content: '';
    display: block;
    position: absolute;
    right: 50%;
    top: -9px;
    transform: translateX(50%);
}
.search-failed-close {
    position: absolute;
    right: 10px;
    fill: #a8c2ff;
    top: 11px;
    width: 22px;
    height: 22px;
    cursor: pointer;
}


.new-main-header-button {
    padding: 4px 14px 4px 14px;
    border-radius: 20px;
    color: #555;
    margin-right: -2px;
    position: relative;
    text-decoration: underline;
}
.new-main-header-button-register {
    background: #f9faff;
    border: 1px solid #9dc8f2;
    text-decoration: unset;
    margin-right: 8px;
}
.menu_block {
    display: flex;
    align-items: center;
    min-width: 170px;
    justify-content: flex-end;
}
.menu_block_item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    margin: 0 5px;
    border-radius: 100%;
    cursor: pointer;
    color: #555;
}
.menu_block_item.menu_block_item-list {
    width: unset;
    margin-right: 10px;
}
.menu_block_item.menu_block_item-list svg {
    fill: #cccccc;
    margin-right: 2px;
}
.menu_block_item svg {
    height: 25px;
    width: 25px;
    fill: #555;
}
.left-header .menu_block_item:last-child svg {
    height: 18px;
    width: 18px;
}
.menu_block_item.add svg {
    height: 25px;
    width: 25px;
}
.menu_block_item.star svg {
    height: 18px;
    width: 18px;
}
.menu_block_item.without-bg {
    background: unset;
}
.menu_block_item.without-bg svg {
    height: 28px;
    width: 28px;
}
.menu_block_item.updated {
    position: relative;
}
.menu_block_item.updated:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #0084fd;
    left: -7px;
    border-radius: 100%;
}

.popup-wrapper {
    width: 100%;
    position: fixed;
    height: 100vh;
    background: rgba(13, 13, 13, 0.82);
    top: 0;
    left: 0;
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.popup {
    z-index: 9999999999999;
    background: #fff;
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    position: relative;
}
.popup__header {
    padding: 15px;
    position: relative;
    color: #555;
    font-size: 17px;
    background: #F5F5F5;
    border-radius: 12px 12px 0 0;
    min-height: 53px;
}
.popup__header .popup__header-close {
    position: absolute;
    width: 30px;
    fill: #ccc;
    cursor: pointer;
    top: calc(50% - 15px);
    right: 10px;
    height: 30px;
}

.share-popup {
    max-width: 500px;
}
.share-popup .popup__body {
    padding: 15px;
}
.share-popup-slider {
    display: flex;
    flex-wrap: wrap;
}
/*.share-popup-slider::-webkit-scrollbar {*/
/*    height: 5px;*/
/*}*/
.share-popup-slider a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    width: 75px;
    font-size: 15px;
    color: #999;
    flex: 1 0 21%;
}
.share-popup-slider a img {
    width: 55px;
    height: 55px;
}
.share-popup-slider a .copy-svg {
    width: 55px;
    height: 55px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.share-popup-slider a .copy-svg svg {
    fill: #555;
}
.slider-social-name {
    margin-top: 10px;
    font-size: 15px;
    color: #999;
}
.shareUrlWrapper {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f7f7f7;
    border-radius: 5px;
    width: 100%;
}
.shareUrlWrapper-url {
    width: 70%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.shareUrlWrapper-copy {
    font-weight: 700;
    color: #0084fd;
    cursor: pointer;
}
#country-popup .popup, .select-popup {
    max-width: 400px;
}
#country-popup .popup__body, .select-popup .popup__body {
    padding: 15px;
}
.countries-list-wrapper {
    max-height: 350px;
    overflow-y: auto;
}
.countries-list-wrapper::-webkit-scrollbar {
    width: 10px;
    border-radius: 5px;
}
.countries-list-wrapper::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 5px;
}
.countries-list-wrapper::-webkit-scrollbar-thumb {
    background: #bbbbbb;
    border-radius: 5px;
}
.countries-list-wrapper::-webkit-scrollbar-thumb:hover {
    background: #bbbbbb;
    border-radius: 5px;
}
.country-item {
    margin-bottom: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.select-period-label {
    margin-left: 10px;
    color: #ccc;
}
.country-item > span {
    padding: 5px 14px;
    color: #555;
}
.country-item.hide {
    display: none;
}
.country-item.active > span {
    background: #0084ff;
    color: #fff;
    border-radius: 40px;
}

#currency-popup .popup, #type-popup .popup, #sort-popup .popup, #list-period-popup .popup {
    max-width: 400px;
}
#currency-popup .popup__body, #type-popup .popup__body, #sort-popup .popup__body, #list-period-popup .popup__body {
    padding: 15px;
}
.currencies-list-wrapper {
    max-height: 350px;
    overflow-y: auto;
}
.currencies-list-wrapper::-webkit-scrollbar {
    width: 10px;
    border-radius: 5px;
}
.currencies-list-wrapper::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 5px;
}
.currencies-list-wrapper::-webkit-scrollbar-thumb {
    background: #bbbbbb;
    border-radius: 5px;
}
.currencies-list-wrapper::-webkit-scrollbar-thumb:hover {
    background: #bbbbbb;
    border-radius: 5px;
}
.currency-item {
    margin-bottom: 5px;
    cursor: pointer;
    display: flex;
}
.currency-item span {
    padding: 5px 14px;
    color: #555;
}
.currency-item.hide {
    display: none;
}
.currency-item.active span {
    background: #0084ff;
    color: #fff;
    border-radius: 40px;
}


#profile-rate-info-popup .popup {
    max-width: 440px;
}

#profile-rate-info-popup .info-popup__body  {
    padding: 24px 75px 24px 40px;
}
.rate-info-bar {
    display: flex;
    padding-bottom: 10px;
    align-items: center;
}
.rate-info-bar:last-child {
    padding-bottom: 0;
}
.rate-info-bar-rate {
    font-weight: 600;
    display: flex;
    align-items: center;
}
.rate-info-bar-rate svg {
    margin-right: 2px;
    position: relative;
    top: -1px;
}
.rate-info-bar-percent {
    color: #aaa;
    min-width: 40px;
}
.rate-info-bar-fill-wrapper {
    width: -webkit-fill-available;
    margin: 0 0 0 15px;
    background: #cbcbcb;
    border-radius: 20px;
    height: 11px;
}
.rate-info-bar-fill {
    display: flex;
    height: 100%;
    border-radius: 20px;
    background: #555555;
}

#gifts-info-popup .popup,#review-reported-popup .popup,#review-info-popup .popup,#info-popup .popup, #countdown-popup .popup, #search-insight-info-popup .popup, #article-info-popup .popup, #article-added-popup .popup, .info-popup {
    max-width: 440px;
}
.info-popup__body {
    background: #F5F5F5;
    padding: 18px 22px 18px;
    font-size: 17px;
    border-radius: 12px 12px 0 0;
}
.info-popup-text.bold {
    font-weight: 500;
}
.info-popup-text a {
    color: #555;
    text-decoration: underline;
}
#countdown-popup .info-popup-text {
    font-size: 17px;
    margin-bottom: 14px;
    margin-top: 17px;
}
#countdown-popup .info-popup-text span {
    font-weight: 500;
    border-bottom: 2px solid #dbdbdb;
}
.info-popup-label {
    background: #e2e2e2;
    padding: 2px 8px;
    border-radius: 8px;
    width: fit-content;
    margin-top: 7px;
    font-size: 16px;
    margin-right: 5px;
}
.info-popup__footer {
    display: flex;
    justify-content: flex-end;
    padding: 12px 20px;
}
.popup__footer_button {
    background: #555;
    padding: 7px 14px;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}
.countdown-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.countdown-block {
    display: flex;
    flex-direction: column;
    padding: 0 7.5px;
    align-items: center;
}
.countdown-block-text {
    color: #aaa;
}
.countdown-block-value {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #e4e4e4;
    padding: 10px 18px;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
}

.report-popup {
    max-width: 300px;
}
.report-popup-button {
    padding: 15px;
    cursor: pointer;
    display: flex;
    border-bottom: 1px solid #f1f1f1;
    color: #555;
}
.report-popup-button.popup-remove-action {
    padding: 0;
}
.report-popup-button.popup-remove-action >div {
    padding: 15px;
    width: 100%;
}
.report-popup-button:last-child {
    border-bottom: none;
}
.popup-remove-action-step-2 span {
    color: #0084fd;
    margin: 0 7px;
    cursor: pointer;
}

.login-popup {
    max-width: 440px;
}
#login-popup .form {
    padding: 0;
}
#login-popup .popup__body{
    padding: 18px 35px 24px 35px;
}
#login-popup .popup__header {
    background: #fff;
    padding: 13px 15px 18px 20px;
}
#login-popup .popup__header .popup__header-close {
    width: 29px;
    height: 29px;
    top: calc(50% - 15px);
}
.popup__header_tabs {
    display: flex;
    align-items: center;
}
.popup__header_tab {
    margin-right: 15px;
    font-weight: bold;
    cursor: pointer;
    padding: 4px;
    position: relative;
    color: #bbb;
    font-size: 18px;
}
.popup__header_tab.active {
    color: #555;
}
.popup__header_tab.active:before {
    content: '';
    background: #0084fd;
    height: 3px;
    width: 25px;
    display: block;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2px;
}
.popup__login-notice {
    background: #fff8eb;
    text-align: center;
    padding: 13px;
    color: #555;
    font-size: 17px;
}

.spinner {
    margin: 0 auto;
    height: 50px;
    width: 50px;
    animation: rotate 0.8s infinite linear;
    border: 4px solid #ccc;
    border-right-color: transparent;
    border-radius: 50%;
}
.search-spinner .spinner {
    height: 24px;
    width: 24px;
    border: 2px solid #aaa;
    border-right-color: transparent;
}

@keyframes rotate {
    0%    { transform: rotate(0deg); }
    100%  { transform: rotate(360deg); }
}

.mobile_right {
    display: none;
}
.desktop-hide {
    display: none!important;
}

.main-notice-wrapper {
    display: flex;
    margin-top: 12px;
    background: #f8faff;
    border: 1px solid #9dc8f2;
    border-radius: 10px;
    padding: 10px 15px 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.search-insight-notice {
    padding: 12px 18px 12px;
}
.main-notice-icon {
    position: absolute;
    display: flex;
    color: #e9effa;
    right: -20px;
    transform: rotate(-26deg);
}
.search-insight-notice-icon {
    position: absolute;
    display: flex;
    color: #e9effa;
    right: 10px;
}
.search-insight-notice-icon svg {
    height: 45px;
    width: 45px;
    fill: #dae3f7;
    margin-right: 6px;
}
.main-notice-text {
    z-index: 1;
    font-size: 16px;
    font-weight: normal;
}
.main-notice-icon svg {
    height: 80px;
    width: 80px;
    fill: #e9effa;
}
.main-notice-close {
    display: flex;
    cursor: pointer;
    color: #b4c3e7;
}

.ranklist-wrapper {
    display: flex;
    margin: 20px 0;
    flex-direction: column;
}
.ranklist-filter-wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
}
.ranklist-filter-left {
    display: flex;
}
.ranklist-filter-left > div {
    margin-right: 10px;
}
.ranklist-filter-left > div:last-child {
    margin-right: 0;
}
.ranklist-filter-right {
    display: flex;
}
.ranklist-filter-right > div {
    margin-left: 10px;
}
.ranklist-filter-right > div:first-child {
    margin-left: 0;
}
.ranklist-filter-button {
    display: flex;
    align-items: center;
    border: 1px solid #e7e7e7;
    background: #fff;
    padding: 7px 14px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}
.ranklist-filter-button.active {
    background: #f8faff;
    border: 1px solid #9dc8f2;
}
.ranklist-filter-button svg {
    display: inline-flex;
    margin-left: 6px;
    height: 20px;
    width: 20px;
    fill: #555;
}
.ranklist-filter-button.active svg {
    fill: #0084fd;
}
.ranklist-report-wrapper {
    display: flex;
    align-items: center;
}
.ranklist-report-button {
    display: inline-flex;
    margin-left: 5px;
    color: #555;
    background: #ececec;
    padding: 0 5px;
    border-radius: 6px;
}

.ranklist-table-wrapper {
    display: flex;
    flex-direction: column;
    background: #fff;
    width: 100%;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 10px;
}
.ranklist-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fcfcfc;
    padding: 14px 15px;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
}
.ranklist-title {
    display: flex;
    align-items: center;
}
.ranklist-title span:first-child {
    font-weight: 500;
    font-size: 17px;
}
.ranklist-next-update {
    display: flex;
    align-items: center;
}
.ranklist-next-update > span:first-child {
    color: #aaa;
    font-size: 15px;
}
.ranklist-title-wrapper svg {
    height: 18px;
    width: 18px;
    fill: #ccc;
    margin-left: 5px;
    display: inline-flex;
}

.ranklist-table.fixed, .gifts-table.fixed {
    padding-top: 45px;
}

.ranklist-table-header .ranklist-table-item {
    color: #aaa;
    padding: 14px;
    font-size: 14px;
    text-transform: uppercase;
}
.fixed .ranklist-table-header, .fixed .gifts-table-header {
    position: fixed;
    top: 0;
    background: #fff;
    overflow-x: scroll;
    width: 100%;
}
.fixed .gifts-table-header {
    border-bottom: 1px solid #f0f0f0;
}
.fixed .ranklist-table-header::-webkit-scrollbar, .fixed .gifts-table-header::-webkit-scrollbar {
    height: 0;
}
.ranklist-table-row {
    display: flex;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}
.ranklist-table-row.ad {
    /*padding: 15px 0;*/
    justify-content: center;
    width: 100%;
}
.ranklist-table-row.ad.desktop-hide > div {
    width: 300px!important;
    height: 250px!important;
    max-width: 300px;
    margin: 15px 0;
}
.ranklist-table-row.ad.mobile-hide > div {
    width: 728px!important;
    height: 90px!important;
    max-width: 728px;
    margin: 15px 0;
}
.ad-wrapper.ad.desktop-hide > div {
    width: 300px!important;
    height: 250px!important;
    max-width: 300px;
    margin: 15px 0;
}
.ad-wrapper.ad.mobile-hide > div {
    width: 728px!important;
    height: 90px!important;
    max-width: 728px;
    margin: 15px 0;
}
.ad-wrapper.ad {
    display: flex;
    justify-content: center;
}
.ranklist-table-row.ad ins.adsbygoogle, .ad-wrapper.ad ins.adsbygoogle {
    margin: 0;
}
.ranklist-table-row > div {
    padding: 15px;
    display: flex;
    align-items: center;
}
.ranklist-table-row > div:nth-child(1) {
    min-width: 90px;
    max-width: 90px;
}
.ranklist-table-row > div:nth-child(2) {
    min-width: calc(100% - 460px);
    max-width: calc(100% - 460px);
}
.ranklist-table-row > div:nth-child(3) {
    min-width: 200px;
    max-width: 200px;
}
.ranklist-table-row > div:nth-child(4) {
    min-width: 170px;
    max-width: 170px;
}
.ranklist-table-row:last-child {
    border-bottom: none;
}
.ranklist-table-more {
    display: flex;
    justify-content: center;
    background: #fcfcfc;
    padding: 12px 0;
    border-radius: 0 0 10px 10px;
    cursor: pointer;
    border-top: 1px solid #e7e7e7;
    margin: -10px;
    font-weight: 500;
}
.ranklist-table-more .spinner, .profile-history-more .spinner, .profile-review-more .spinner {
    height: 24px;
    width: 24px;
    border: 2px solid #aaa;
    border-right-color: transparent;
}

.ranklist-place-wrapper {
    display: flex;
    align-items: center;
}
.ranklist-place-wrapper > span {
    font-size: 17px;
    color: #555;
    font-weight: 500;
}
.ranklist-cup-wrapper {
    display: flex;
    margin-left: 10px;
    padding: 8px;
    border-radius: 100%;
}
.ranklist-cup-wrapper.cup1 {
    background: #fef8dc;
}
.ranklist-cup-wrapper.cup2 {
    background: #f6f6f6;
}
.ranklist-cup-wrapper.cup3 {
    background: #ffeddc;
}

.ranklist-cup-wrapper.cup1 svg {
    fill: #ffc30b;
}
.ranklist-cup-wrapper.cup2 svg {
    fill: #cacaca;
}
.ranklist-cup-wrapper.cup3 svg {
    fill: #deac67;
}
.ranklist-cup-wrapper svg {
    height: 24px;
    width: 24px;
}

.ranklist-table-row > div.ranklist-table-item-userinfo {
    padding: 26px 15px;
}
.ranklist-userinfo {
    display: flex;
    flex-direction: column;
    width: calc(100% - 63px);
}
.ranklist-username {
    font-weight: 500;
    color: #555;
    font-size: 17px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.ranklist-live-badge {
    padding: 4px 10px 2px 10px;;
    background: #ff1312;
    color: #fff;
    font-size: 13px;
    display: inline-flex;
    width: max-content;
    border-radius: 40px;
    margin-bottom: -20px;
    font-weight: 500;
}
.ranklist-table-item img {
    border-radius: 100%;
    width: 53px;
    height: 53px;
    overflow: hidden;
    min-width: 53px;
}
.ranklist-table-item.live img {
    border: 3px solid #fff;
}
.avatar-wrapper {
    display: flex;
    border-radius: 100%;
    margin-right: 10px;
}
.avatar-wrapper .ranklist-example-bg {
    border-radius: 100%;
    width: 53px;
    height: 53px;
    overflow: hidden;
    min-width: 53px;
    background: #f0f0f0;
}
.ranklist-example-bg {
    background: #f0f0f0;
    height: 20px;
    width: 100px;
    border-radius: 20px;
}
.ranklist-place-wrapper .ranklist-example-bg {
    width: 35px;
}

.live .avatar-wrapper {
    border: 3px solid #ffcdcd;
}

.ranklist-diamonds-wrapper, .ranklist-earning-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e9e9e9;
    border-radius: 40px;
    padding: 5px 16px;
    font-size: 16px;
    font-weight: 600;
    color: #555;
}
.ranklist-diamonds-wrapper, .ranklist-earning-wrapper {
    border: none;
    padding: 0;
}
.ranklist-earning-wrapper {
    color: #15a900;
}
.ranklist-diamonds-wrapper svg {
    height: 20px;
    width: 20px;
    fill: #fec923;
    display: inline-flex;
    margin-left: 5px;
    display: none;
}
.ranklist-earning-wrapper svg {
    height: 20px;
    width: 20px;
    fill: #15a900;
    display: inline-flex;
    margin-left: 5px;
    display: none;
}

.profile-technical-notice-wrapper, .notice-wrapper {
    display: flex;
    margin-top: 12px;
    background: #fffbf8;
    border: 1px solid #e8d8c0;
    border-radius: 10px;
    padding: 10px 15px 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.profile-technical-notice-wrapper span, .notice-wrapper span {
    cursor: pointer;
    color: #d0b49f;
}
.notice-icon svg {
    fill: #e8d8c0;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    display: flex;
    width: 26px;
    height: 26px;
}

.profile-wrapper {
    max-width: 850px;
    margin: 0 auto;
}
.profile-info-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 20px;
}
.profile-info-left {
    display: flex;
    align-items: center;
}
.profile-photo-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
}
.profile-photo-wrapper img {
    width: 88px;
    height: 88px;
    border-radius: 100%;
}
.profile-photo-wrapper.live {
    border: 3px solid #ffcdcd;
    border-radius: 100%;
}
.profile-photo-box {
    display: flex;
    border-radius: 100%;
}
.live .profile-photo-box {
    border: 3px solid #fff;
    position: relative;
    overflow: hidden;
}
.live-badge {
    position: absolute;
    bottom: 0;
    background: rgb(255 0 0 / 60%);
    color: #fff;
    display: flex;
    width: 100%;
    justify-content: center;
    height: 50%;
    font-size: 15px;
    padding-top: 4px;
    font-weight: 500;
}
.live-badge span {
    display: flex;
    transform: rotate(6deg);
}


.profile-info-username-wrapper {
    margin-left: 10px;
}
.profile-info-username {
    font-weight: 600;
    font-size: 20px;
}
.profile-info-name {
    color: #aaa;
    font-size: 18px;
    white-space: nowrap;
}
.profile-info-country-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e7e7e7;
    padding: 3px 12px 3px 6px;
    border-radius: 20px;
    width: max-content;
    color: #aaa;
    margin-top: 4px;
}
.profile-info-country-wrapper.back {
    color: #555;
}
.profile-info-country-wrapper svg {
    display: inline-flex;
    margin-right: 4px;
    fill: #ccc;
    height: 21px;
    width: 21px;
}
.profile-info-country-wrapper.back svg {
    fill: #555;
}
.profile-badges {
    display: flex;
}
.profile-rating-score {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e7e7e7;
    padding: 3px 14px 3px 9px;
    border-radius: 20px;
    width: max-content;
    color: #aaa;
    margin-top: 4px;
    /*margin-left: 8px;*/
}
.profile-rating-score svg {
    fill: #9dbde0;
    display: inline-flex;
    margin-right: 4px;
    height: 21px;
    width: 21px;
}
.profile-rating-score.cup1 svg {
    fill: #ffc30b;
}
.profile-rating-score.cup2 svg {
    fill: #cacaca;
}
.profile-rating-score.cup3 svg {
    fill: #deac67;
}


.profile-info-right {
    display: flex;
    align-items: center;
}
.profile-info-button {
    display: flex;
    padding: 8px;
    background: #ededed;
    border-radius: 100%;
    margin-left: 10px;
    cursor: pointer;
}
.profile-info-button:first-child {
    margin-left: 0;
}
.profile-info-button-svg {
    background: #000;
}
.profile-info-button-svg img {
    width: 21px;
}
.profile-info-button svg {
    width: 20px;
    height: 20px;
    fill: #555;
}
.profile-add-to-list-button {
    border: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
    padding: 6px 12px 6px 9px;
    border-radius: 11px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: #555;
    background: #fff;
}
.profile-add-to-list-button svg {
    width: 24px;
    height: 24px;
    fill: #cccccc;
    margin-right: 2px;
}
.profile-add-to-list-button.added svg {
    fill: #bbd6f1;
}
.profile-info-button-svg svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.profile-earning-wrapper {
    background: #fff;
    border: 1px solid #e7e7e7;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    width: 75%;
}
.profile-earning-title {
    font-size: 17px;
    color: #555;
    font-weight: 500;
    display: inline-flex;
    position: relative;
}
.profile-earning-title span {
    position: relative;
}
.profile-earning-title span:after {
    content: '';
    width: 40px;
    height: 2px;
    background: #efefef;
    position: absolute;
    bottom: -5px;
    right: 50%;
    transform: translateX(50%);
}
.profile-earning-block {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}
.profile-earning-button {
    display: flex;
    align-items: center;
    border: 2px solid #ededed;
    border-radius: 40px;
    padding: 8px 20px 7px;
    font-size: 22px;
    font-weight: 600;
    color: #555;
    min-height: 51px;
    min-width: 155px;
    justify-content: center;
}
.profile-earning-label {
    color: #aaa;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.profile-earning-label span {
    display: inline-flex;
    margin-left: 5px;
    border-bottom: 2px solid #efefef;
    cursor: pointer;
}
.profile-earning-button-wrapper:first-child .profile-earning-button svg {
    fill: #15a900;
    display: inline-flex;
    margin-left: 15px;
}
.profile-earning-button-wrapper:last-child .profile-earning-button svg {
    fill: #fec923;
    display: inline-flex;
    margin-left: 15px;
}
.approx {
    color: #ccc;
    position: relative;
    top: 1px;
    margin-right: 8px;
    font-weight: normal;
}

.profile-earning-next-update-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0 15px;
}
.profile-earning-next-update-label {
    background: #f5f5f5;
    color: #aaa;
    padding: 6px 13px 5px;
    border-radius: 20px;
}

.profile-earning-left-time {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
}
.profile-earning-left-time > svg {
    height: 21px;
    width: 21px;
    fill: #ccc;
}
.profile-earning-left-time > span:last-child {
    margin-left: 3px;
}
.profile-earning-bar-wrapper {
    background: #f8f8f8;
    height: 10px;
    margin: 15px -15px -15px;
}
.profile-earning-bar {
    display: flex;
    height: 100%;
    background: rgb(8, 133, 254);
    background: linear-gradient(90deg, rgba(8, 133, 254, 1) 0%, rgba(254, 1, 137, 1) 100%);
}

.profile-earning-wrapper-loading {
    height: 307px;
    background: #fff;
    border: 1px solid #e7e7e7;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    justify-content: space-between;
}
.profile-earning-title-loading {
    background: #f0f0f0;
    height: 20px;
    width: 100px;
    border-radius: 20px;
    animation: pulse 0.75s ease-in infinite alternate;
}
.profile-earning-button-loading {
    background: #f0f0f0;
    height: 50px;
    width: 160px;
    border-radius: 40px;
    animation: pulse 0.75s ease-in infinite alternate;
}
.profile-earning-left-time-loading {
    background: #f0f0f0;
    height: 20px;
    width: 100%;
    border-radius: 20px;
    margin: 0 auto;
    max-width: 400px;
    animation: pulse 0.75s ease-in infinite alternate;
}
.profile-earning-label-loading {
    background: #f0f0f0;
    height: 24.5px;
    width: 100px;
    border-radius: 20px;
    margin: 10px auto 0;
    animation: pulse 0.75s ease-in infinite alternate;
}
.profile-earning-next-update-label-loading {
    background: #f0f0f0;
    height: 34px;
    width: 190px;
    border-radius: 20px;
    animation: pulse 0.75s ease-in infinite alternate;
}

@keyframes pulse {
    0%   { opacity: 1; }
    100% { opacity: 0.4; }
}

.profile-notice-wrapper {
    display: flex;
    margin-top: 15px;
    background: #f8faff;
    border: 1px solid #9dc8f2;
    border-radius: 10px;
    padding: 12px 15px 12px 15px;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.empty.profile-notice-wrapper {
    background: #fefdf7;
    border: 1px solid #f2d69f;
}
.profile-notice-text {
    font-size: 16px;
    font-weight: normal;
    z-index: 999;
}
.profile-notice-icon {
    display: flex;
    color: #e9effa;
    position: absolute;
    bottom: -25px;
    right: -26px;
    transform: rotate(-25deg);
}
.profile-notice-icon svg {
    height: 80px;
    width: 80px;
    fill: #e9effa;
}
.empty .profile-notice-icon svg {
    fill: #fcf3e9;
}

.profile-history-wrapper {
    margin-top: 50px;
}
.profile-history-title {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.profile-history-title span {
    color: #aaa;
    font-size: 17px;
}
.profile-history-more, .profile-review-more {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    background: #f3f3f3;
    padding: 8px 0;
    border-radius: 10px;
    cursor: pointer;
}
.profile-review-more {
    margin-top: 10px;
}
.profile-history-item {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 0;
}
.profile-history-period {
    display: flex;
    align-items: center;
}
.profile-history-label {
    display: flex;
    padding: 4px 20px;
    color: #aaa;
    border-right: 1px solid #e8e8e8;
}
.profile-history-earning {
    display: flex;
    align-items: center;
}
.profile-history-amount {
    display: flex;
    align-items: center;
    /*width: 99px;*/
    padding: 0 20px;
}
.profile-history-date {
    display: flex;
    padding: 0 20px;
    font-weight: 500;
}
.profile-history-amount span:first-child {
    font-weight: 600;
}
.green-bg {
    background: #effbee;
}
.red-bg {
    background: #fbeeee;
}
.yellow-bg {
    background: #fcfaef;
    font-weight: normal!important;
}

.loader {
    width: 42px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side,#e3e3e3 90%,#0000);
    background:
        var(--_g) 0%   50%,
        var(--_g) 50%  50%,
        var(--_g) 100% 50%;
    background-size: calc(100%/3) 50%;
    animation: l3 1s infinite linear;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}
/*.profile-history-amount span:last-child {*/
/*    color: #15a900;*/
/*    display: inline-flex;*/
/*    margin-left: 5px;*/
/*}*/

.search-wrapper {
    max-width: 560px;
    margin: 0 auto;
}
.search-header {
    margin: 30px 0  20px;
    text-align: center;
    font-size: 18px;
}
.search-header span {
    border-bottom: 2px solid #cde4f9;
}
.search-header-tabs {
    display: flex;
    align-items: center;
}
.search-header-tab {
    padding: 4px 16px;
    border-radius: 15px;
    cursor: pointer;
    color: #555;
    font-size: 16px;
}
.search-header-tab.active {
    background: #D9EEFF;
}
.search-cant-find-block {
    border-radius: 7px;
    border: 1px solid #ABD4F3;
    margin-bottom: 10px;
    background: #F8FCFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.search-cant-find-button {
    background: #0084fd;
    padding: 3px 20px;
    border-radius: 7px;
    color: #fff;
    cursor: pointer;
}
.search-item {
    border: 1px solid #e9e9e9;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 16px 18px 16px 24px;
    justify-content: space-between;
}
.search-item.empty {
    justify-content: center;
    padding: 30px 20px;
}
.search-item-info {
    display: flex;
    align-items: center;
}
.search-item-info img {
    border-radius: 100%;
    width: 70px;
    height: 70px;
    min-width: 70px;
    overflow: hidden;
    margin-right: 15px;
}
.search-item-info-text {
    font-weight: bold;
}
.search-item-info-title {
    font-size: 17px;
    font-weight: 500;
    color: #0084fc;
}


.search-item-info-text {
    width: calc(100% - 75px);
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0084fc;
}
.search-item-info {
    width: calc(100% - 75px);
}
.search-item-info-title {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.search-item-view-button {
    background: #F8F8F8;
    padding: 4px 16px;
    border-radius: 40px;
    cursor: pointer;
    color: #555;
    font-size: 16px;
}

.search-item-trending-info {
    width: calc(100% - 46px);
}
.search-item-trending-title {
    color: #555;
    font-weight: 500;
    font-size: 17px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}
.search-item-trending-count {
    color: #aaa;
}
.search-item-trending-button {
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 100%;
}
.search-item-trending-button svg {
    fill: #555;
    width: 20px;
    height: 20px;
}

ins.adsbygoogle {
    margin: 15px 0;
}
ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
}

.trending-table-wrapper {
    margin-top: 20px;
}
.trending-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.trending-table-title {
    font-weight: 500;
    font-size: 17px;
}
.trending-table-tabs {
    display: flex;
    align-items: center;
}
.trending-table-tab {
    background: #f1f1f1;
    margin-left: 9px;
    padding: 5px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}
.trending-table-tab.active {
    background: #f8faff;
    border: 1px solid #9dc8f2;
}
.trending-table-block {
    display: flex;
    flex-direction: column;
    background: #fff;
    width: 100%;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 0 10px;
    margin: 10px 0 15px;
}
.trending-table-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
}
.trending-table-row:last-child {
    border-bottom: none;
}
.trending-table-row-left {
    display: flex;
    align-items: center;
}
.trending-table-row-place {
    color: #aaaaaa;
    padding: 0 20px 0 10px;
    font-weight: 500;
}
.trending-table-row-keyword {
    font-size: 17px;
    font-weight: 600;
}
.trending-table-row-divider {
    color: #e5e5e5;
    padding: 0 10px;
    font-size: 17px;
    font-weight: 400;
}
.trending-table-row-count {
    display: flex;
    align-items: center;
}
.trending-table-row-count span {
    color: #0084fd;
    font-weight: 500;
    font-size: 16px;
}
.trending-table-row-count svg {
    fill: #fe7820;
    margin-right: 3px;
    width: 19px;
    height: 19px;
}
.trending-table-row-percentage {
    color: #aaa;
    font-weight: 400;
    font-size: 15px;
    margin-left: 10px;
    font-style: italic;
    position: relative;
    top: 1px;
}
.trending-table-row-right {
    display: flex;
    align-items: center;
}
.trending-table-row-nav-icon {
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 100%;
    margin-left: 4px;
    margin-right: 10px;
}
.trending-table-row-nav-icon svg {
    fill: #555;
    height: 22px;
    width: 22px;
}


.registeredBlock {
    background: #fff;
    max-width: 550px;
    width: 100%;
    border-radius: 5px;
    margin: 40px auto;
    padding: 10px 20px;
    border: 1px solid #e7e7e7;
    box-shadow: 1px 1px 2px 0 hsla(0,0%,57%,.08);
}
.registeredBlockInfo {
    display: flex;
    padding: 30px 20px;
    align-items: center;
}
.registeredBlockSvg {
    margin-right: 20px;
}
.registeredBlockSvg span {
    color: #2fb500;
    font-size: 40px;
}
.registeredBlockSvg.warning span {
    color: #f48f00;
}
.registeredBlockText {
    line-height: 24px;
}
.registeredBlockButtons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid #f1f1f1;
}
.registeredBlockButtons a {
    padding: 8px 20px;
    cursor: pointer;
    background: #0498ff;
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
}

.trend-keyword-wrapper {
    display: flex;
    margin-bottom: 30px;
}
.trend-keyword-main-title {
    margin-top: 30px;
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 10px;
}
.trend-keyword-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
.trend-keyword-title {
    position: relative;
}
.trend-keyword-title span {
    position: relative;
    font-weight: 500;
    font-size: 18px;
}
.trend-keyword-title span:before {
    content: '';
    background: #e8e8e8;
    height: 3px;
    width: 35px;
    display: block;
    border-radius: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}
.trend-keyword-graph-wrapper {
    width: calc(60% - 20px);
    border: 1px solid #e9e9e9;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    margin-right: 20px;
    height: 380px;
}
.trend-keyword-graph-wrapper canvas {
    margin-top: 10px;
}
.trend-keyword-searches-related-wrapper {
    width: 40%;
    border: 1px solid #e9e9e9;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    height: 380px;
}
.trend-keyword-videos-related-wrapper {

}
.trend-keyword-related-items {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    overflow-y: scroll;
}
.trend-keyword-related-items::-webkit-scrollbar {
    width: 7px;
    border-radius: 5px;
}
.trend-keyword-related-items::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 5px;
}
.trend-keyword-related-items::-webkit-scrollbar-thumb {
    background: #e9e9e9;
    border-radius: 5px;
}
.trend-keyword-related-items::-webkit-scrollbar-thumb:hover {
    background: #e9e9e9;
    border-radius: 5px;
}
.trend-keyword-related-item {
    display: flex;
    align-items: center;
    padding: 5px 0;
}
.trend-keyword-related-item span {
    margin-right: 20px;
    font-weight: 500;
}
.trend-keyword-related-item a {
    color: #0084fd;
    font-weight: 500;
}
.trend-keyword-videos-related-slider {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 10px 0 20px;
}
.trend-keyword-related-video {
    width: 150px;
    padding-right: 10px;
    margin-top: 15px;
}
.trend-keyword-related-video img {
    width: 100%;
    border-radius: 12px;
    display: flex;
}
.trend-keyword-graph-wrapper svg {
    position: absolute;
    margin-left: 4px;
    fill: #cccccc;
    width: 20px;
    height: 20px;
    top: 2px;
}
.trending-table-block .spinner {
    margin: 20px auto;
}

.trending-header-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9faff;
    border: 1px solid #9dc8f2;
    border-radius: 100%;
    height: 32px;
    width: 32px;
}
.trending-header-item svg {
    fill: #0084fd;
}

.slick-arrow {
    outline: none;
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    display: flex !important;
    background: #fff;
    transform: translateY(-50%);
    align-items: center;
    cursor: pointer;
    z-index: 999;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    box-shadow: -2px 0px 20px 20px rgb(255 255 255 / 75%);
    border: 1px solid #e7e7e7;
}
.slick-next.slick-arrow {
    right: 0;
    padding-left: 3px;
}
.slick-prev.slick-arrow {
    left: 0;
    padding-left: 8px;
}
.slick-disabled {
    display: none!important;
}
.slick-next svg {
    fill: #aaa;
    width: 20px;
}
.slick-prev svg {
    fill: #aaa;
    width: 20px;
}

.trend-keyword-videos-related-loader-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 30px 0;
}
.trend-keyword-videos-related-loader {
    width: 60px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side,#e8e8e8 90%,#0000);
    background:
        var(--_g) 0%   50%,
        var(--_g) 50%  50%,
        var(--_g) 100% 50%;
    background-size: calc(100%/3) 50%;
    animation: l3 1s infinite linear;
}
@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

.profile-review-wrapper {
    display: flex;
    margin-top: 15px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 13px 17px 13px 17px;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.profile-leave-review-wrapper {
    display: flex;
    align-items: center;
}
.profile-leave-review-star-wrapper {
    display: flex;
}
.profile-leave-review-star {
    display: flex;
    cursor: pointer;
}
.profile-leave-review-star > svg {
    width: 34px;
    height: 34px;
    fill: #ddd;
}
.profile-leave-review-star > svg:nth-child(2) {
    display: none;
}
.profile-leave-review-star-wrapper.rate1 .profile-leave-review-star:nth-child(1) > svg:nth-child(1),
.profile-leave-review-star-wrapper.rate2 .profile-leave-review-star:nth-child(-n+2) > svg:nth-child(1),
.profile-leave-review-star-wrapper.rate3 .profile-leave-review-star:nth-child(-n+3) > svg:nth-child(1),
.profile-leave-review-star-wrapper.rate4 .profile-leave-review-star:nth-child(-n+4) > svg:nth-child(1),
.profile-leave-review-star-wrapper.rate5 .profile-leave-review-star:nth-child(-n+5) > svg:nth-child(1) {
    display: none;
}

.profile-leave-review-star-wrapper.rate1 .profile-leave-review-star:nth-child(1) > svg:nth-child(2),
.profile-leave-review-star-wrapper.rate2 .profile-leave-review-star:nth-child(-n+2) > svg:nth-child(2),
.profile-leave-review-star-wrapper.rate3 .profile-leave-review-star:nth-child(-n+3) > svg:nth-child(2),
.profile-leave-review-star-wrapper.rate4 .profile-leave-review-star:nth-child(-n+4) > svg:nth-child(2),
.profile-leave-review-star-wrapper.rate5 .profile-leave-review-star:nth-child(-n+5) > svg:nth-child(2) {
    display: inline;
}

.profile-edit-review-wrapper {
    display: flex;
    align-items: center;
}
.profile-edit-review-text {
    font-size: 17px;
    font-weight: 500;
    margin-right: 5px;
}
.profile-edit-review-star-wrapper {
    display: flex;
    align-items: center;
}
.profile-edit-review-star-wrapper svg {
    position: relative;
    top: -1px;
    margin-right: 2px;
}

.profile-leave-review-text {
    font-size: 18px;
    font-weight: 500;
    margin-right: 10px;
}
.profile-review-rate-wrapper {
    display: flex;
    align-items: center;
}
.profile-rate-average {
    display: flex;
    align-items: center;
    padding-right: 15px;
    border-right: 1px solid #e5e5e5;
}
.profile-rate-average svg {
    width: 24px;
    height: 24px;
    display: inline-flex;
    margin-right: 3px;
    fill: #d0d0d0;
    position: relative;
    top: -1px;
}

.profile-rate-average.rate1 svg {
    fill: #FF1514!important;
}
.profile-rate-average.rate2 svg {
    fill: #FF9914!important;
}
.profile-rate-average.rate3 svg {
    fill: #F3D50A!important;
}
.profile-rate-average.rate4 svg {
    fill: #10CF02!important;
}
.profile-rate-average.rate5 svg {
    fill: #0ca1ff!important;
}
.profile-rate-average-text {
    color: #ccc;
    font-size: 17px;
    font-weight: 500;
}
.profile-rate-average-text b {
    color: #555;
    font-size: 20px;
    display: inline-flex;
    margin-right: 4px;
    font-weight: 600;
}
.profile-review-right {
    display: flex;
    align-items: center;
}
.profile-rate-total-count-text {
    padding: 0 20px 0 15px;
}
.profile-review-info-svg {
    height: 22px;
    width: 22px;
    fill: #ccc;
}

.profile-leave-review-star-wrapper.rate1 > div:nth-child(-n+1) svg,
.add-review-star-wrapper.rate1 > div:nth-child(-n+1) svg,
.profile-review-user-info-rate.rate1 svg,
.sidebar-popup-reviews-item-rate.rate1 svg,
.rate-info-bar.rate1 svg,
.profile-edit-review-star-wrapper.rate1 svg
{
    fill: #FF1514!important;
}
.profile-leave-review-star-wrapper.rate2 > div:nth-child(-n+2) svg,
.add-review-star-wrapper.rate2 > div:nth-child(-n+2) svg,
.profile-review-user-info-rate.rate2 svg,
.sidebar-popup-reviews-item-rate.rate2 svg,
.rate-info-bar.rate2 svg,
.profile-edit-review-star-wrapper.rate2 svg
{
    fill: #FF9914!important;
}
.profile-leave-review-star-wrapper.rate3 > div:nth-child(-n+3) svg,
.add-review-star-wrapper.rate3 > div:nth-child(-n+3) svg,
.profile-review-user-info-rate.rate3 svg,
.sidebar-popup-reviews-item-rate.rate3 svg,
.rate-info-bar.rate3 svg,
.profile-edit-review-star-wrapper.rate3 svg
{
    fill: #F3D50A!important;
}
.profile-leave-review-star-wrapper.rate4 > div:nth-child(-n+4) svg,
.add-review-star-wrapper.rate4 > div:nth-child(-n+4) svg,
.profile-review-user-info-rate.rate4 svg,
.sidebar-popup-reviews-item-rate.rate4 svg,
.rate-info-bar.rate4 svg,
.profile-edit-review-star-wrapper.rate4 svg
{
    fill: #10CF02!important;
}
.profile-leave-review-star-wrapper.rate5 > div:nth-child(-n+5) svg,
.add-review-star-wrapper.rate5 > div:nth-child(-n+5) svg,
.profile-review-user-info-rate.rate5 svg,
.sidebar-popup-reviews-item-rate.rate5 svg,
.rate-info-bar.rate5 svg,
.profile-edit-review-star-wrapper.rate5 svg
{
    fill: #0ca1ff!important;
}

#add-review-popup .popup, #edit-review-popup .popup {
    max-width: 440px;
    padding: 10px;
}
#add-review-popup .popup__header, #edit-review-popup .popup__header {
    background: #fff;
}
#add-review-popup .popup__header div, #edit-review-popup .popup__header div {
    font-weight: 500;
    font-size: 19px;
    text-align: center;
}
.add-review-form {
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.add-review-star-wrapper {
    display: flex;
    cursor: pointer;
    margin: 0 auto 15px;
}
.add-review-star {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.add-review-star > svg {
    width: 36px;
    height: 36px;
    fill: #ddd;
}
.add-review-star > svg:nth-child(2) {
    display: none;
}
.add-review-star > span {
    display: none;
    font-weight: 500;
    font-size: 18px;
}
.add-review-star-wrapper.rate1 .add-review-star:nth-child(1) > svg:nth-child(1),
.add-review-star-wrapper.rate2 .add-review-star:nth-child(-n+2) > svg:nth-child(1),
.add-review-star-wrapper.rate3 .add-review-star:nth-child(-n+3) > svg:nth-child(1),
.add-review-star-wrapper.rate4 .add-review-star:nth-child(-n+4) > svg:nth-child(1),
.add-review-star-wrapper.rate5 .add-review-star:nth-child(-n+5) > svg:nth-child(1) {
    display: none;
}

.add-review-star-wrapper.rate1 .add-review-star:nth-child(1) > svg:nth-child(2),
.add-review-star-wrapper.rate2 .add-review-star:nth-child(-n+2) > svg:nth-child(2),
.add-review-star-wrapper.rate3 .add-review-star:nth-child(-n+3) > svg:nth-child(2),
.add-review-star-wrapper.rate4 .add-review-star:nth-child(-n+4) > svg:nth-child(2),
.add-review-star-wrapper.rate5 .add-review-star:nth-child(-n+5) > svg:nth-child(2) {
    display: inline;
}

.add-review-star-wrapper.rate1 .add-review-star:nth-child(1) > span {
    display: flex;
}
.add-review-star-wrapper.rate2 .add-review-star:nth-child(2) > span {
    display: flex;
}
.add-review-star-wrapper.rate3 .add-review-star:nth-child(3) > span {
    display: flex;
}
.add-review-star-wrapper.rate4 .add-review-star:nth-child(4) > span {
    display: flex;
}
.add-review-star-wrapper.rate5 .add-review-star:nth-child(5) > span {
    display: flex;
}

.add-review-input-wrapper {
    background: #f4f4f4;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}
.add-review-input-wrapper textarea {
    min-height: 100px;
    width: 100%;
    outline: none;
    border: none;
    background: none;
    max-width: 100%;
    min-width: 100%;
    font-size: 18px;
}
.add-review-form button {
    background: #0383fd;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    padding: 12px 10px 12px 10px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.profile-bottom-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.profile-bottom-tab {
    display: flex;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
}
.profile-bottom-tab.active {
    background: #ececec;
}
#history .profile-history-wrapper {
    margin-top: 20px;
}
.profile-review-block {
    margin-bottom: 20px;
}
.profile-review-item {
    display: flex;
    margin-top: 15px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 16px 17px 10px 20px;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    color: #555;
}
.profile-review-items .profile-review-text {
    cursor: pointer;
}
.profile-review-report {
    display: flex;
}
.profile-review-report svg {
    fill: #555;
    width: 21px;
    height: 21px;
}
.profile-review-user {
    display: flex;
    align-items: center;
}
.profile-review-user-info {
    width: calc(100% - 50px);
}
.profile-review-user img {
    width: 44px;
    height: 44px;
    display: flex;
    margin-right: 10px;
    border-radius: 100%;
}
.profile-review-user-info-rate {
    display: flex;
    align-items: center;
}
.profile-review-user-info-rate svg {
    width: 18px;
    height: 18px;
}
.profile-review-user-info-rate-text {
    font-weight: 500;
}
.profile-review-user-info-username {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #0084fd;
}
.profile-review-user-info-username .color {
    color: #555;
}
.profile-review-user-info-username a {
    color: #0084fd;
    text-decoration: underline;
}
.profile-review-text {
    margin-left: 20px;
    padding-left: 15px;
    border-left: 2px solid #e7e7e7;
    margin-top: 22px;
    padding-right: 20px;
    font-size: 17px;
}
.profile-reviews-empty, .profile-history-empty {
    display: flex;
    justify-content: center;
    margin: 70px 0 100px 0;
    font-weight: 500;
    color: #aaa;
}
.profile-review-title {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 10px 10px;
    font-size: 17px;
    text-align: center;
}
.profile-review-title:after {
    content: '';
    width: 70px;
    height: 2px;
    background: #efefef;
    position: absolute;
    bottom: 5px;
    right: 50%;
    transform: translateX(50%);
}
.profile-review-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e7e7e7;
    padding-top: 10px;
    margin-top: 16px;
    align-items: center;
}
.review-box-votes-wrapper {
    display: flex;
    align-items: center;
    border-radius: 40px;
    padding: 2px 6px;
    border: 1px solid #ebebeb;
}
.review-box-votes-wrapper svg {
    fill: #555;
}
.review-box-votes-wrapper div {
    display: inline-flex;
}
.review-box-votes-up {
    margin-right: 5px;
    cursor: pointer;
}
.review-box-votes-up.active svg {
    fill: #0383fd;
}
.review-box-votes-down {
    margin-left: 5px;
    cursor: pointer;
}
.review-box-votes-down.active svg {
    fill: #FF1514;
}

.profile-article-wrapper {
    display: flex;
    margin-top: 15px;
    background: #f3f3f3;
    border-radius: 10px;
    padding: 13px 17px 13px 17px;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.profile-article-wrapper .article-label {
    font-size: 16px;
}
.profile-article-left {
    font-size: 17px;
}
.profile-article-info-svg {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 22px;
    width: 22px;
    fill: #aaa;
}
.profile-article-right {
    display: flex;
    align-items: center;
}
.profile-article-right svg {
    height: 22px;
    width: 22px;
    fill: #aaa;
}
.profile-article-add-button {
    background: #555555;
    color: #fff;
    margin-left: 10px;
    padding: 5px 15px;
    font-weight: 500;
    border-radius: 20px;
    font-size: 16px;
}
.profile-article-wrapper .article-value {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 17px;
}
.fade {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 83px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(241, 241, 241, 1));
}

.profile-article-more-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #555555;
    color: #fff;
    padding: 4px 14px;
    font-weight: 500;
    border-radius: 10px;
    font-size: 16px;
}

#add-article-popup, #edit-article-popup, #add-review-popup, #edit-review-popup {
    flex-direction: column;
}
.popup-error {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 440px;
    background: #ff0402;
    width: 100%;
    border-radius: 8px;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
}
#add-article-popup .popup, #edit-article-popup .popup {
    max-width: 440px;
    padding: 10px;
}
#add-article-popup .popup__header, #edit-article-popup .popup__header {
    background: #fff;
}
#add-article-popup .popup__header div, #edit-article-popup .popup__header div {
    font-weight: 500;
    font-size: 17px;
}
.add-article-form {
    display: flex;
    flex-direction: column;
    padding: 15px;
}
.add-article-input-wrapper {
    background: #f4f4f4;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.add-article-input-wrapper input {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 17px;
    color: #555;
}
.add-article-input-wrapper span {
    font-size: 17px;
    color: #757575;
}
.add-article-birth-input-wrapper {
    display: flex;
    justify-content: space-between;
}
.add-article-birth-input-block {
    display: flex;
}
.add-article-birth-input-block input:nth-child(1) {
    width: 28px;
    text-align: center;
}
.add-article-birth-input-block input:nth-child(3) {
    width: 52px;
    text-align: center;
}
.add-article-birth-input-block input:nth-child(5) {
    width: 38px;
    text-align: center;
}
.add-article-birth-input-block span {
    padding: 0 3px;
    color: #555;
}
.add-article-input-wrapper textarea {
    min-height: 100px;
    width: 100%;
    outline: none;
    border: none;
    background: none;
    max-width: 100%;
    min-width: 100%;
    font-size: 17px;
}
.add-article-form button {
    background: #0383fd;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.confirm-mail-notice {
    margin-top: 12px;
    background: #f8faff;
    border: 1px solid #9dc8f2;
    border-radius: 10px;
    padding: 10px 15px 10px;
    position: relative;
    overflow: hidden;
}
.resend-mail {
    color: #0084fd;
    text-decoration: underline;
    cursor: pointer;
}

.notice-subscribe-button {
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}
#subscribe-info-popup .popup, #subscribe-form-popup .popup,
#subscribe-payment-error-popup .popup, #pay-subscription-popup .popup,
#subscription-paid-popup .popup, #subscription-failed-popup .popup,
#subscription-option-form-popup .popup
{
    max-width: 450px;
}
.popup__header_button.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.popup__header_button.popup-close svg {
    fill: #ccc;
    width: 26px;
    height: 26px;
}
.subscribe-popup-wrapper {
    padding: 25px;
}
.subscribe-popup-title {
    font-weight: 500;
    font-size: 18px;
}
.subscribe-popup-item {
    display: flex;
    align-items: center;
    padding-top: 5px;
    font-size: 17px;
}
.subscribe-popup-item svg {
    margin-left: 4px;
    fill: #2cc304;
    width: 24px;
    height: 24px;
}
.subscribe-popup-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 10px;
    align-items: center;
}
.subscribe-popup-price {
    font-size: 17px;
    font-weight: 500;
}
.subscribe-popup-submit {
    background: #0084fd;
    color: #fff;
    padding: 9px 20px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 17px;
    margin-left: 18px;
}
.subscribe-popup-form-wrapper {
    display: flex;
    align-items: center;
    padding: 7px 9px 7px 12px;
    border: 2px solid #efefef;
    border-radius: 40px;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 10px;
}
.subscribe-popup-form-submit {
    background: #0084fd;
    padding: 7px 22px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    font-size: 18px;
}
.subscribe-popup-form-wrapper input {
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    background: none;
    color: #555;
}

.subscribe-popup-form-success {
    display: none;
    padding: 10px;
}
.notice-wrapper.popup-open br {
    display: none;
    /*justify-content: center;*/
}
.subscribe-popup-form-wrapper.sent {
    background: #fff7ec;
    border: none;
}

.subscribe-popup-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 35px;
    padding-bottom: 35px;
}
.subscribe-popup-price-block {
    border: 2px solid #dfdfdf;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    font-weight: 500;
    border-radius: 40px;
    font-size: 17px;
}
.subscribe-popup-price-text {
    padding: 8px 0;
}
.subscribe-popup-payment-pay-button {
    margin-top: 20px;
}
.subscribe-popup-payment-type-button, .subscribe-popup-payment-pay-button {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 500;
    border-radius: 40px;
    max-width: 230px;
    margin-bottom: 8px;
    background: #0084fd;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
}
.subscribe-popup-payment-type-button:last-child {
    margin-bottom: 0;
}
.subscribe-popup-terms-wrapper {
    display: flex;
    align-items: center;
}
.subscribe-popup-terms-checkbox {
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.subscribe-popup-terms-checkbox-circle {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    display: flex;
    border-radius: 10px;
}
.subscribe-popup-terms-checkbox.active .subscribe-popup-terms-checkbox-circle {
    background-color: #fea800;
}
.subscribe-popup-terms-text {
    margin-left: 10px;
}
.subscribe-popup-terms-text a {
    color: #555;
    text-decoration: underline;
}
#pay-subscription-popup {
    flex-direction: column;
}
.subscription-terms-error-block {
    background: #fe0100;
    width: 100%;
    max-width: 450px;
    margin-top: 15px;
    border-radius: 12px;
    color: #fff;
    padding: 15px;
    text-align: center;
}
#paypal-buttons-wrapper {
    margin: 10px 0;
    width: 100%;
    max-width: 280px;
}
.subscription-info-svg {
    display: flex;
    justify-content: center;
    margin: 50px 0 14px;
}
.subscription-info-svg svg {
    width: 46px;
    height: 46px;
}
.subscription-info-svg.success svg {
    fill: #0cab00;
}
.subscription-info-svg.error svg {
    fill: #c43714;
}
.subscription-info-text {
    display: flex;
    justify-content: center;
    padding: 0 88px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}
.subscription-info-footer {
    padding: 35px 15px 15px 15px;
    display: flex;
    justify-content: flex-end;
}
.subscription-info-button {
    display: flex;
    background: #555;
    padding: 7px 17px;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

#premium-popup .popup {
    max-width: 450px;
}
.premium-popup-wrapper {
    padding: 20px;
    font-size: 17px;
}
.premium-info-text.bold {
    font-weight: 500;
}
.premium-footer {
    padding-top: 40px;
    display: flex;
    justify-content: flex-end;
}
.premium-cancel-button {
    display: flex;
    color: #fe0100;
    padding: 7px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    border: 2px solid #ffeded;
}
.premium-already-cancelled {
    color: #fe0100;
    font-weight: 500;
}
.premium-action-button {
    display: flex;
    color: #fe0100;
    padding: 5px 14px;
    border-radius: 20px;
    cursor: pointer;
    border: 2px solid #ffeded;
    font-size: 17px;
    font-weight: 500;
    width: 56px;
    justify-content: center;
}
.premium-action-button:first-child {
    margin-right: 10px;
}
.premium-prompt-wrapper {
    padding: 18px 22px 18px;
    font-size: 17px;
    display: none;
}
.premium-prompt-title {
    font-weight: bold;
}
.premium-prompt-text, .premium-info-text.underline {
    margin-top: 20px;
    text-decoration: underline;
}
.premium-prompt-wrapper .premium-footer {
    padding-top: 40px;
    display: flex;
    justify-content: center;
}
.subscription-option-form-wrapper, .subscription-option-form-success-wrapper {
    padding: 25px;
}
.subscription-option-form-text {
    font-weight: 500;
}
.subscription-option-input {
    font-size: 16px;
    width: 100%;
    border: none;
    background: #f2f2f2;
    padding: 10px;
    border-radius: 8px;
    margin-top: 10px;
}
.subscription-option-form-footer {
    padding: 20px 0px 0px 15px;
    display: flex;
    justify-content: flex-end;
}
.subscription-option-form-button {
    display: flex;
    background: #0084fd;
    padding: 7px 17px;
    border-radius: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}
.subscribe-popup-other-option-button {
    background: #efefef;
    margin: 0 auto;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    font-weight: 500;
    border-radius: 40px;
    font-size: 16px;
}

.review-wrapper {
    max-width: 850px;
    margin: 0 auto;
}
.review-box-footer-actions {
    display: flex;
}
.review-box-footer-comment {
    display: flex;
    align-items: center;
    border-radius: 40px;
    padding: 2px 15px;
    border: 1px solid #ebebeb;
    cursor: pointer;
    margin-right: 10px;
}
.review-box-footer-comment svg {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    fill: #555;
}
.review-comment-wrapper {
    position: relative;
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0;
}
.review-comment-wrapper:first-child {
    border-top: 1px solid #e7e7e7;
    margin-top: 10px;
}
.review-comment-wrapper:last-child {
    border-bottom: none;
}
.sr-only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.comment-border-link {
    display: block;
    position: absolute;
    top: 40px;
    left: 12px;
    width: 2px;
    height: calc(100% - 50px);
    background: #ccc;
    display: none;
}
.review-comment-wrapper > div {
    position: relative;
    list-style: none;
}
/*details.review-comment-wrapper > div::-webkit-details-marker {*/
/*    display:none;*/
/*}*/
.comment {
    display: flex;
    font-size: 14px;
}
.comment-avatar {
    width: 28px;
    height: 28px;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 100%;
    min-width: 28px;
}
.replies .comment-avatar {
    width: 28px;
    height: 28px;
    min-width: 28px;
}
.comment-avatar img {
    width: 100%;
    height: 100%;
    display: block;
}
.comment-body-wrapper {
    /*min-width: 250px;*/
    position: relative;
}
.comment-body {
    position: relative;
}
.comment-body-time {
    display: inline-block;
    color: #aaa;
    font-size: 13px;
    font-style: italic;
    font-weight: normal;
}
.comment-more {
    position: absolute;
    top: 0;
    right: 15px;
    display: flex;
}
.comment-more svg {
    fill: #555;
}
.review-comments-thread > div > .replies {
    margin-left: 35px;
}
.comment-body-text span {
    color: #0084fd;
    margin-right: 5px;
}
.replies .review-comment-wrapper > div:before {
    content: '';
    position: absolute;
    background: #ccc;
    width: 35px;
    height: 2px;
    top: 12px;
    left: -41px;
    display: none;
}
.comment-body-top {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}
.comment-body-top span {
    color: #B2B2B2;
}
.comment-body-text {
    border-radius: 10px;
    padding: 8px 10px;
    background: #f6f6f6;
    font-size: 16px;
    margin-top: 4px;
}
.comment-actions {
    margin-left: 35px;
}
.comment-action-time {
    color: #aaa;
    font-size: 14px;
    font-weight: 400;
}

.reply-form-avatar {
    width: 40px;
    height: 40px;
    overflow: hidden;
    margin-right: 10px;
    border-radius: 100%;
}
.reply-form > div {
    display: flex;
    width: calc(100% - 50px);
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
}
.reply-form textarea {
    color: #555;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #EDEDED;
    padding: 10px;
    height: 43px;
    line-height: 20px;
    font-size: 15px;
}
.reply-form button {
    color: #555;
    border: none;
    background: #F3F3F3;
    padding: 2px 15px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}

.review-write-comment-block {
    display: flex;
    align-items: center;
    border-top: 1px solid #e7e7e7;
    padding-top: 10px;
    margin-top: 10px;
}
.comment-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.reply-form {
    display: none;
    position: relative;
    margin-top: 10px;
    border-bottom: 2px solid #e7e7e7;
    padding-bottom: 8px;
}
.reply-form.active {
    display: flex;
}
.comment-form input {
    width: 100%;
    font-size: 17px;
    border-radius: 0px;
    border: none;
    outline: none;
    height: 35px;
    padding: 7px;
}
.comment-form button {
    color: #fff;
    background-color: #0084fd;
    padding: 4px 20px;
    border-radius: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.comment-action-wrapper {
    display: flex;
    align-items: center;
    margin-top: 4px;
    color: #aaa;
}
.comment-action-votes-wrapper {
    display: flex;
    align-items: center;
}
.comment-action-votes-up, .comment-action-votes-down {
    display: flex;
    cursor: pointer;
}
.review-comments-replies-more svg {
    fill: #aaa;
    width: 22px;
    height: 22px;
}
.comment-action-votes-up svg, .comment-action-votes-down svg {
    fill: #555;
}
.comment-action-votes-up.active svg {
    fill: #0383fd;
}
.comment-action-votes-down.active svg {
    fill: #FF1514;
}
.comment-action-votes-count {
    display: flex;
    color: #555;
    font-size: 15px;
}
.comment-action-answer {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}
.review-comments-replies-more {
    display: flex;
    align-items: center;
    color: #aaa;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}
.review-comments-thread > div > .replies .replies .review-comments-replies-more {
    margin-left: 35px;
}
.review-comments-more {
    display: flex;
    margin: 0 auto;
    width: 108px;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: #f6f6f6;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
}
.review-box-footer-share {
    display: flex;
    align-items: center;
    border-radius: 40px;
    padding: 2px 15px;
    border: 1px solid #ebebeb;
    cursor: pointer;
    margin-right: 10px;
}
.review-box-footer-share svg {
    fill: #555;
    width: 18px;
    height: 18px;
    margin-left: 5px;
}

#notification-popup .sidebar-popup-title > svg {
    display: inline-flex;
    margin-right: 2px;
    height: 24px;
    width: 24px;
    fill: #ccc;
    margin-left: 0;
}
#notification-popup .sidebar-popup-title > span {
    font-size: 18px;
    font-weight: normal;
    padding: 2px 0;
}
.menu_block_item.menu_block_item-list.notification-icon {
    border-right: 1px solid #e7e7e7;
    border-radius: 0;
    margin-right: 5px;
    padding-right: 10px;
    position: relative;
}
.notification-list-wrapper {
    height: calc(100% - 50px);
}
.notification-list-block.empty {
    display: flex;
    justify-content: center;
    height: 100%;
}
.notification-list-block {
    padding: 10px;
}
.notification-list-empty-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 200px;
}
.notification-list-empty-title {
    font-size: 18px;
    font-weight: 500;
}
.notification-list-empty-icon svg {
    width: 70px;
    height: 70px;
    fill: #dddddd;
    margin-bottom: -10px;
}
.notification-list-item {
    border-bottom: 1px solid #efefef;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.notification-list-item-text a {
    color: #0084fd;
    text-decoration: underline;
}
.notification-list-item-text {
    padding: 0 10px;
    font-size: 16px;
}
.notification-list-item-time {
    margin-top: 5px;
    color: #aaa;
    padding: 0 10px;
    font-style: italic;
}
.menu_block_item.menu_block_item-list.notification-icon.unseen:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #0084fd;
    left: -3px;
    border-radius: 100%;
    top: 5px;
}
.notification-list-remove {
    position: absolute;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    cursor: pointer;
    bottom: 0;
}
.notification-list-remove svg {
    fill: #aaa;
}
.content.review-page {
    margin-bottom: 15px;
}

.article-wrapper {
    max-width: 750px;
    margin: 0 auto;
}
.article-title {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 500;
}
.article-subtitle-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.article-author {
    font-style: italic;
    color: #aaa;
    font-size: 17px;
}
.article-share-button {
    background: #f0f0f0;
    padding: 3px 15px;
    border-radius: 40px;
    font-size: 17px;
}
.article-body {
    margin-top: 20px;
    line-height: 30px;
    margin-bottom: 20px;
    font-size: 17px;
    border-bottom: 2px solid #f0f0f0;
    border-top: 2px solid #f0f0f0;
    padding-bottom: 25px;
    padding-top: 25px;
}
.article-body a {
    color: #0084fd;
    text-decoration: underline;
}
.article-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.article-image-wrapper img {
    width: 100%;
    border-radius: 12px;
}
.suggested-article-block {
    margin-bottom: 20px;
}
.suggested-article-title {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 17px;
}
.suggested-article-items-wrapper {
    display: flex;
    flex-direction: column;
}
.suggested-article-item {
    width: 100%;
    display: flex;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 16px 20px 16px 12px;
    position: relative;
    align-items: center;
    margin-bottom: 15px;
    background: #fff;
    color: #555;
}
.suggested-article-item-title {
    font-weight: 500;
}
.suggested-article-item-image {
    width: 50px;
    height: 50px;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    margin-right: 10px;
}
.suggested-article-item-info {
    width: calc(100% - 60px);
}
.suggested-article-item-title {
    font-weight: 500;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.suggested-article-item-text {
    margin-top: 2px;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #888;
}

.main-reviews-articles-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.main-reviews-articles-tabs-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    justify-content: space-between;
    margin-top: 18px;
}
.main-reviews-select-tab-wrapper {
    display: flex;
}
.main-reviews-select-tab {
    display: flex;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid #e7e7e7;
    color: #aaa;
    cursor: pointer;
}
.main-reviews-select-tab:first-child {
    border-right: none;
    border-radius: 20px 0 0 20px;
}
.main-reviews-select-tab.active {
    background: #f9fafe;
    color: #555;
}
.main-reviews-select-tab:last-child {
    border-radius: 0 20px 20px 0;
}
.main-reviews-articles-tab {
    padding: 3px 0px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 17px;
    display: flex;
    align-items: center;
}
.main-reviews-articles-tab svg {
    margin-left: 7px;
}
.main-reviews-articles-tab:first-child {
    margin-right: 5px;
}
.main-reviews-articles-tab.active {
    background: #e9e9e9;
}
.main-articles-item-wrapper {
    margin: 0 6px;
    width: 350px;
}
.main-articles-item {
    width: 100%;
    display: flex;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 15px 16px;
    position: relative;
    background: #fff;
    color: #555;
    flex-direction: column;
}
.main-articles-item-wrapper:first-child {
    margin-left: 0;
}
.main-articles-item-wrapper:last-child {
    margin-right: 0;
}
.main-articles-item-image {
    position: absolute;
    top: 12px;
    right: 10px;
    width: 35px;
    height: 30px;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
}
.main-articles-item-title {
    width: calc(100% - 40px);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
}
.main-articles-item-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 4px;
    color: #888;
    line-height: 23px;
}

.main-reviews-item-wrapper {
    margin: 0 6px;
    width: 350px;
}
.main-reviews-item {
    width: 100%;
    display: flex;
    border: 1px solid #e7e7e7;
    border-radius: 12px 12px 0 0;
    padding: 15px 12px;
    position: relative;
    background: #fff;
    color: #555;
    flex-direction: column;
    border-bottom: 1px solid #f0f0f0;
}
.main-reviews-item-wrapper:first-child {
    margin-left: 0;
}
.main-reviews-item-wrapper:last-child {
    margin-right: 0;
}
.main-reviews-item .profile-review-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 13px;
    margin-top: 5px;
    font-size: 16px;
}
.main-reviews-item .profile-review-user img {
    width: 30px;
    height: 30px;
}
.main-reviews-item .profile-review-user-info {
    width: calc(100% - 40px);
}
.main-reviews-item .profile-review-user-info-username {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #555;
}
.main-reviews-footer {
    padding: 7px 15px;
    border: 1px solid #e7e7e7;
    border-radius: 0 0 12px 12px;
    border-top: none;
    background: #fff;
    color: #aaa;
}
.main-reviews-footer a {
}
.main-reviews-footer a:hover {
    text-decoration: underline;
}
.slider {
    height: 104px;
    overflow: hidden;
    display: flex;
    position: unset!important;
}
.slider.slick-initialized {
    overflow: unset;
    display: unset;
}
.main-reviews-articles-tab-wrapper > div {
    position: relative;
}

.what-is-wrapper .content {
    background: #f1f1f1;
    margin: 40px auto;
    padding: 40px;
    border-radius: 20px;
}
.what-is-title, .why-is-title {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 5px;
}
.main-articles-title-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.main-articles-title {
    font-size: 18px;
    position: relative;
}
.main-articles-title:after {
    content: '';
    width: 30px;
    height: 3px;
    background: #efefef;
    position: absolute;
    bottom: -5px;
    right: 50%;
    border-radius: 40px;
    transform: translateX(50%);
}
.why-is-wrapper {
    padding: 40px 0;
    font-size: 17px;
}
.main-column-block-wrapper.who {
    margin-top: 20px;
}
.main-column-block-title {
    display: flex;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 18px;
}
.main-column-block-items {
    display: flex;
    flex-wrap: wrap;
}
.main-column-block-item-wrapper {
    width: 50%;
    padding: 5px 0;
    padding-left: 80px;
}
.main-column-block-item {
    padding: 20px 33px;
    position: relative;
    width: fit-content;
    border-radius: 12px;
}
.main-column-block-item.blue {
    background: #e1eaff;
}
.main-column-block-item.yellow {
    background: #fff9e3;
}
.main-column-block-item.orange {
    background: #feeae3;
}
.main-column-block-item-title {
    font-weight: 500;
    font-size: 18px;
}
.main-column-block-subtitle {
    display: flex;
    justify-content: center;
    color: #888;
    text-align: center;
    margin-bottom: 15px;
    font-size: 17px;
}
.main-column-block-icon {
    width: 30px;
    height: 30px;
    display: flex;
    position: absolute;
    bottom: 10px;
    right: 0;
}
.main-column-block-icon.blue {
    border-right: 3px solid #0084fd;
    border-bottom: 3px solid #0084fd;
}
.main-column-block-icon.yellow {
    border-right: 3px solid #ffe508;
    border-bottom: 3px solid #ffe508;
}
.main-column-block-icon.orange {
    border-right: 3px solid #ff7c0e;
    border-bottom: 3px solid #ff7c0e;
}
.main-for-businesses {
    color: #888;
    margin-top: 40px;
}
.why-reviews-wrapper .content {
    background: #f1f1f1;
    margin: 40px auto;
    padding: 40px;
    border-radius: 20px;
}
.why-reviews-title {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 5px;
}
.main-content-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}
.main-content-text {
    margin-bottom: 30px;
    font-size: 17px;
}
.main-content-list {
    padding-left: 40px;
    margin-bottom: 30px;
    line-height: 32px;
}
.main-content-text.grey {
    color: #888;
}
.main-content-list-item {
    position: relative;
}
.main-content-list .main-content-list-item:before {
    content: '';
    display: flex;
    width: 6px;
    height: 6px;
    background: #aaa;
    position: absolute;
    border-radius: 100%;
    top: 13px;
    left: -15px;
    /*transform: translateY(-50%);*/
}

.main-content-list.blue .main-content-list-item:before {
    background: #0084fd;
}
.main-content-list.blue .main-content-list-item.light:before {
    background: #99d7fe;
}
.main-content-list.yellow .main-content-list-item:before {
    background: #ffe50f;
}
.main-content-list.yellow .main-content-list-item.light:before {
    background: #fff8be;
}
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.faq-title {
    padding: 40px 0;
    font-weight: 500;
    font-size: 18px;
}
.faq-answers-block {
    border-left: 2px solid #ededed;
    margin-left: -40px;
    padding-left: 40px;
    margin-bottom: 40px;
}
.faq-answer-item {
    margin-bottom: 22px;
}
.footer {
    background: #f6f6f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.footer-rights {
    color: #aaa;
    margin-top: 10px;
}
.footer-link {
    margin: 0 10px;
    color: #aaa;
}

.main-content-block-wrapper {
    display: flex;
}
.main-content-block-item-wrapper.right {
    display: flex;
    padding-right: 20px;
}
.main-content-block-item-wrapper.left {
    display: flex;
}
.main-content-block-item {
    padding: 20px;
    border-radius: 20px;
}
.main-content-block-item.blue {
    background: #e1eaff;
}
.main-content-block-item.yellow {
    background: #fff9e3;
}
.main-content-item-title {
    margin-bottom: 20px;
    font-weight: 500;
}

.profile-earning-block-wrapper {
    display: flex;
}
.profile-total-earning-block-wrapper {
    width: 25%;
    padding-left: 10px;
}
.profile-total-earning-block {
    background: #d8f2d5;
    padding: 18px;
    border-radius: 10px;
    height: 100%;
    font-size: 17px;
}
.profile-total-earning-title {
    font-weight: 500;
    font-size: 17px;
}
.profile-total-earning-price {
    display: flex;
    justify-content: center;
    font-size: 28px;
    margin-top: 70px;
    font-weight: 500;
    margin-bottom: 15px;
}
.profile-total-earning-price.show {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}
.profile-earning-green {
    color: #97ce90;
    margin-right: 5px;
}
.profile-total-earning-view-button {
    color: #15a900;
    background: #c7ebc3;
    display: flex;
    width: 112px;
    justify-content: center;
    margin: 0 auto;
    border-radius: 20px;
    padding: 5px 5px;
    font-weight: 500;
    cursor: pointer;
    font-size: 18px;
}
.profile-total-earning-from {
    text-align: center;
    padding-top: 15px;
    font-style: italic;
    position: relative;
}
.profile-total-earning-from:before {
    height: 3px;
    width: 40px;
    display: flex;
    position: absolute;
    top: 0;
    background-color: #b9e2b4;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    border-radius: 40px;
}

.country-stat-graph-wrapper {
    display: flex;
    flex-direction: column;
    background: #fff;
    width: 100%;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 15px 22px 20px 22px;
    margin-top: 15px;
}
.country-stat-graph-header {
    display: flex;
    justify-content: space-between;
}
.country-stat-graph-title {
    font-size: 20px;
    font-weight: 500;
}
.country-stat-graph-subtitle {
    font-size: 18px;
    color: #aaa;
    display: flex;
    align-items: center;
}
.country-stat-graph-subtitle svg {
    margin-left: 4px;
}
.country-stat-graph-header-filters {
    display: flex;
    align-items: center;
}
.country-stat-graph-total {
    background: #effbee;
    padding: 4px 16px 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 17px;
    height: 30px;
}
.country-stat-graph-selects {
    display: flex;
}
.country-stat-graph-filter {
    background: #f0f0f0;
    padding: 6px 10px 6px 18px;
    border-radius: 20px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    font-size: 17px;
    cursor: pointer;
    height: 30px;
}
.country-stat-graph-filter > span {
    margin-right: 6px;
}
.country-stat-list-wrapper {
    margin: 30px 0;
}
.country-stat-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.country-stat-list-title {
    font-size: 18px;
    font-weight: 500;
}
.country-stat-graph-list-filters {
    display: flex;
}
.country-stat-list-table {
    display: flex;
    flex-direction: column;
}
.country-stat-list-item {
    display: flex;
    justify-content: space-between;
    background: #fff;
    width: 100%;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 10px 20px 10px 14px;
    margin-top: 10px;
}
.country-stat-list-item-info {
    display: flex;
    align-items: center;
}
.country-stat-list-item-info img {
    width: 40px;
    margin-right: 10px;
    display: flex;
    border-radius: 10px;
    height: 28px;
}
.country-stat-list-item-name {
    font-size: 17px;
    font-weight: 500;
}
.country-stat-list-item-value {
    font-size: 17px;
    font-weight: 500;
    padding-top: 2px;
}
#country-stats-graph {
    max-height: 400px;
    height: 400px!important;
    width: 100%!important;
}
#tooltip {
    background: #fff;
    display: none;
    position: absolute;
    padding: 12px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    width: max-content;
}
.country-stats-graph {
    position: relative;
}
.tooltip-label {
    color: #aaa;
}
.tooltip-value {
    font-weight: bold;
}
.mb-10 {
    margin-bottom: 10px;
}
.main-premium-data-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.main-premium-data-outer-wrapper {
    width: calc(33% - 10px);
}
.main-premium-country-stats-wrapper, .main-premium-archive-list-wrapper, .main-premium-global-list-wrapper {
    display: flex!important;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 12px 22px 12px 22px;
    width: 100%;
}
.main-premium-header {
    display: flex;
    align-items: center;
    padding-bottom: 5px;
}
.main-premium-button {
    display: flex;
    width: 100%;
    background: #f7f7f7;
    justify-content: center;
    padding: 5px;
    border-radius: 40px;
    margin-top: 8px;
    font-size: 15px;
    color: #555;
}
.main-premium-graph-info {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
}
.main-premium-footer {
    display: flex;
    margin-top: 10px;
}
.main-premium-graph-text {
    color: #aaa;
}
.main-premium-graph-amount {
    font-weight: 600;
    font-size: 17px;
}
.main-premium-graph-amount span {
    color: #aaa;
}
.main-premium-select {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-weight: 500;
}
.main-premium-select svg {
    fill: #ccc;
    display: flex;
}
.main-premium-info-svg {
    height: 18px;
    width: 18px;
    fill: #ccc;
    display: inline-flex;
}
.main-premium-header-text {
    display: flex;
    font-weight: 500;
    margin-right: 10px;
    align-items: center;
}
.main-premium-header-text svg {
    margin-left: 7px;
}
.main-premium-list-item-info {
    display: flex;
    align-items: center;
    width: calc(100% - 65px);
}
.main-premium-list-avatar {
    display: flex;
    margin-right: 10px;
}
.main-premium-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
}
.main-premium-list-item-amount {
    font-weight: 600;
    color: #15a900;
    font-size: 15px;
}
.main-premium-list-avatar img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}
.main-premium-list-rank {
    font-weight: 600;
    margin-right: 7px;
    font-size: 16px;
}
.main-premium-list-rank.rank1 {
    color: #ffc30b;
}
.main-premium-list-rank.rank2 {
    color: #cacaca;
}
.main-premium-list-rank.rank3 {
    color: #deac67;
}
.main-premium-list-username {
    white-space: nowrap;
    font-weight: 500;
    text-overflow: ellipsis;
    width: 20ch;
    overflow: hidden;
    font-size: 15px;
    color: #555;
}
.main-premium-graph-wrapper {
    margin: 11px 0 10px;
    display: flex;
    flex-direction: column;
}
#main-premium-graph {
    max-height: 187px;
    max-width: 100%;
    width: 100%;
    height: 187px;
    display: block;
}
.main-footer {
    display: flex;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #efefef;
    flex-direction: column;
}
.main-footer-link {
    color: #bbb;
}
.main-footer-top {
    display: flex;
    justify-content: space-between;
}
.main-footer-name {
    font-size: 24px;
    font-weight: 600;
    color: #ddd;
}
.main-footer-rights {
    color: #ccc;
    text-align: center;
    margin: 28px 0;
}
.main-footer-affiliated {
    color: #bbb;
    margin-top: 8px;
    font-style: italic;
}
.main-footer-links span {
    margin: 0 10px;
    display: inline-flex;
    color: #ccc;
}
.main-footer-links {
    display: flex;
}
.main-premium-data-wrapper {
    height: 344px;
}
.main-premium-data-wrapper .slick-disabled {
    display: flex !important;
}
.slick-premium-prev.slick-arrow {
    top: 25px;
    right: 48px;
    border-right: none;
    border-radius: 20px 0 0 20px;
    box-shadow: none;
    width: 28px;
    height: 28px;
}
.slick-premium-prev.slick-arrow svg {
    width: 18px;
    height: 18px;
    display: flex;
    margin-left: 10px;
    fill: #555;
}
.slick-premium-prev.slick-arrow.slick-disabled svg, .slick-premium-next.slick-arrow.slick-disabled svg {
    fill: #ccc;
}
.slick-premium-next.slick-arrow {
    top: 25px;
    right: 20px;
    border-left: none;
    border-radius: 0 20px 20px 0;
    box-shadow: none;
    width: 28px;
    height: 28px;
}
.slick-premium-next.slick-arrow svg {
    width: 16px;
    height: 16px;
    display: flex;
    fill: #555;
}

.gifts-table-row.gifts-table-header {
    border-top: none;
}
.gifts-table-row {
    display: flex;
    width: 100%;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}
.gifts-table-header .gifts-table-item {
    color: #aaa;
    padding: 14px;
    font-size: 14px;
    text-transform: uppercase;
}
.gifts-table-row > div {
    padding: 15px;
    display: flex;
    align-items: center;
}
.gifts-table-row > div:nth-child(1) {
    width: 75%;
    min-width: 75%;
}
.gifts-table-row > div:nth-child(2) {
    width: 12.5%;
    min-width: 12.5%;
}
.gifts-earning-wrapper {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #15a900;
}
.gifts-table-item img {
    border-radius: 100%;
    width: 53px;
    height: 53px;
    overflow: hidden;
    min-width: 53px;
}
.gifts-image-wrapper {
    display: flex;
    border-radius: 100%;
    margin-right: 22px;
}
.gifts-info {
    display: flex;
    flex-direction: column;
    width: calc(100% - 70px);
}
.gifts-info-name {
    font-weight: 500;
    color: #555;
    font-size: 17px;
    width: 100%;
    /*text-overflow: ellipsis;*/
    /*overflow: hidden;*/
    /*white-space: nowrap;*/
}
.gifts-info-price {
    display: flex;
    align-items: center;
}
.coin-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ffd800;
    border-radius: 100%;
    margin-right: 4px;
}
.gifts-table-row:last-child {
    border-bottom: none;
}
.gifts-empty {
    display: none;
    text-align: center;
    padding: 40px 20px 30px;
}

.main-gifts-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.main-gifts-header-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    justify-content: space-between;
    margin-top: 18px;
}
.main-gifts-header-left {
    padding: 3px 0px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 17px;
    display: flex;
    align-items: center;
}
.main-gifts-header-left svg {
    margin-left: 7px;
}
.main-gifts-header-link {
    display: flex;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid #e7e7e7;
    color: #aaa;
    cursor: pointer;
    border-radius: 20px;
}
.main-gifts-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.main-gifts-list-item {
    width: calc(33.3% - 7.5px);
    display: flex;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 15px 20px 15px 12px;
    position: relative;
    background: #fff;
    color: #555;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
}
.main-gifts-list-item-left {
    display: flex;
    align-items: center;
}
.main-gifts-list-item-left .gifts-image-wrapper {
    margin-right: 10px;
}
.gifts-image-wrapper img {
    border-radius: 100%;
    width: 48px;
    height: 48px;
    overflow: hidden;
    min-width: 48px;
}
.main-gifts-list-item-left .gifts-info {
    width: calc(100% - 58px);
}
.main-gifts-list-item-right-label {
    color: #aaa;
    font-size: 14px;
    text-transform: uppercase;
}
.main-gifts-list-item-right-value {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #15a900;
}
.ranklist-filter-search-button .search {
    cursor: pointer;
}
.ranklist-filter-search-button .clear {
    display: none;
}
.ranklist-filter-search-button.filter .clear {
    display: inline-flex;
    cursor: pointer;
}
.ranklist-filter-search-button.filter .search {
    display: none;
}
.ranklist-filter-search-button {
    cursor: auto;
}
#ranklist-filter-search {
    background: none;
    border: none;
    outline: none;
    font-weight: 500;
    font-size: 16px;
    width: 110px;
}
.ranklist-filter-search-button.filter #ranklist-filter-search {
    color: #555;
    font-weight: normal;
}

#ranklist-filter-search::-webkit-input-placeholder {color:#555 ;opacity: 1;}
#ranklist-filter-search::-moz-placeholder          {color:#555 ;opacity: 1;}/* Firefox 19+ */
#ranklist-filter-search:-moz-placeholder           {color:#555 ;opacity: 1;}/* Firefox 18- */
#ranklist-filter-search:-ms-input-placeholder      {color:#555 ;opacity: 1;}

@media screen and (max-width: 1152px) {
    .content {
        padding: 0 10px;
    }
    .main-header > .content {
        padding: 0 10px;
    }
    #search_form {
        min-width: 300px;
    }
}

@media screen and (max-width: 852px) {
    .ranklist-table-header.ranklist-table-row > div:nth-child(1) {
        min-width: 65px;
        max-width: 65px;
    }
    .ranklist-place-wrapper {
        flex-direction: column;
        justify-content: center;
    }
    .ranklist-cup-wrapper {
        margin-left: 0;
        background: none!important;
    }
    .ranklist-table-row > div:nth-child(3) {
        min-width: 95px;
        max-width: 95px;
    }
    .ranklist-table-row > div:nth-child(4) {
        min-width: 100px;
        max-width: 100px;
    }
    .ranklist-table-row > div:nth-child(1) {
        min-width: 45px;
        max-width: 45px;
        justify-content: center;
    }
    .ranklist-table-row > div:nth-child(2) {
        min-width: calc(100% - 240px);
        max-width: calc(100% - 240px);
    }
    .ranklist-table-header.ranklist-table-row > div:nth-child(2) {
        min-width: calc(100% - 260px);
        max-width: calc(100% - 260px);
    }
    .ranklist-table-row > div.ranklist-table-item-userinfo {
        padding: 26px 5px 26px 35px;
    }
    .main-premium-data-wrapper {
        display: flex!important;
        flex-direction: column;
        height: 344px;
        overflow: hidden;
        justify-content: flex-end;
        margin-left: -10px;
        margin-right: -10px;
    }
    .main-premium-data-outer-wrapper {
        width: 100%;
        height: 344px!important;
        padding: 0 10px;
    }
    .main-gifts-list-item {
        width: calc(50% - 7.5px);
    }
    .main-gifts-list-item {
        width: 100%;
        margin-bottom: 10px;
    }
    #country-stats-graph {
        height: 200px!important;
    }
    .gifts-table-row > div:nth-child(1) {
        width: calc(100% - 180px);
        min-width: 260px;
    }
    .gifts-table-row > div:nth-child(2) {
        width: 80px;
        min-width: 80px;
    }
    .gifts-table-row > div:nth-child(3) {
        width: 100px;
        min-width: 100px;
    }
    .main-premium-data-wrapper .slick-track {
        display: flex!important;
        flex-direction: row-reverse!important;
    }
    .country-stat-graph-wrapper .country-stat-graph-filter {
        background: #f9f9f9;
    }
    .main-footer {
        border-top: none;
        margin-top: 10px;
    }
    .main-footer-rights {
        text-align: right;
        margin: 10px 0 20px;
    }
    .main-footer-top {
        flex-direction: column;
    }
    .main-footer-affiliated {
        border-bottom: 1px solid #efefef;
        padding-bottom: 10px;
    }
    .main-footer-links {
        flex-wrap: wrap;
        border-bottom: 1px solid #efefef;
        padding-bottom: 10px;
    }
    .main-footer-link {
        margin-bottom: 5px;
    }
    .main-footer-name {
        display: none;
    }
    .country-stat-graph-filter span {
        /*font-size: 14px;*/
        white-space: nowrap;
    }
    .country-stat-graph-header {
        position: relative;
        margin-bottom: 60px;
    }
    .country-stat-graph-wrapper {
        padding: 10px;
    }
    .country-stat-graph-selects {
        position: absolute;
        left: -10px;
        top: 60px;
    }
    .country-stat-graph-title {
        font-size: 18px;
    }
    .country-stat-graph-subtitle {
        font-size: 16px;
        white-space: nowrap;
    }
    .country-stat-graph-total {
        border-radius: 12px;
        white-space: nowrap;
    }
    .profile-earning-block-wrapper {
        flex-direction: column;
    }
    .main-content-title {
        padding: 0 10px;
    }
    .main-content-text {
        padding: 0 10px;
    }
    .faq-wrapper {
        padding: 0 10px;
    }
    .why-is-wrapper {
        padding: 40px 10px;
    }
    .what-is-wrapper .content {
        border-radius: 0;
    }
    .why-reviews-wrapper .content {
        border-radius: 0;
    }
    .main-column-block-wrapper {
        padding: 0 10px;
    }
    .footer-link {
        margin: 5px 0;
    }
    .footer-links {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .main-content-block-wrapper {
        flex-direction: column;
        padding: 0 10px;
    }
    .main-content-block-item-wrapper.right {
        padding: 0;
        margin-bottom: 20px;
    }
    .main-column-block-item {
        width: 100%;
    }
    .main-column-block-item-wrapper {
        width: 100%;
        padding-left: 0;
    }
    .menu_block_item.menu_block_item-list.notification-icon {
        padding-right: 0;
        border: none;
        margin-left: 0;
    }
    .menu_block_item.menu_block_item-list.notification-icon svg {
        fill: #555;
    }
    .notice-wrapper.popup-open br {
        display: block;
        /*justify-content: center;*/
    }
    #subscribe-info-popup, #subscribe-form-popup {
        align-items: flex-start;
        padding-top: 100px;
    }
    .notice-wrapper.popup-open {
        /*align-items: flex-end;*/
        padding: 8px 15px;
    }
    .subscribe-popup-item {
        width: 100%;
        justify-content: space-between;
    }
    .main-notice-icon svg {
        display: none;
    }
    .profile-review-wrapper {
        flex-direction: column-reverse;
    }
    .profile-review-left {
        width: 100%;
    }
    .profile-review-right {
        width: calc(100% + 34px);
        justify-content: space-between;
        border-bottom: 1px solid #e7e7e7;
        padding: 0 17px 10px;
    }
    .profile-review-right.without-border {
        border-bottom: 0;
        margin-bottom: -47px;
        z-index: 99;
    }
    .profile-edit-review-wrapper {
        justify-content: flex-end;
        padding-top: 13px;
    }
    .profile-review-info-svg {
        margin-left: auto;
    }
    .profile-leave-review-wrapper {
        flex-direction: column;
        align-items: unset;
        padding-top: 13px;
    }
    .profile-leave-review-star-wrapper {
        display: flex;
        justify-content: center;
        padding-top: 5px;
    }
    .trending-header-item {
        background: none;
        border: none;
        margin-left: 2px;
    }
    .slick-next.slick-arrow {
        right: 0;
    }
    .slick-prev.slick-arrow {
        left: 0;
    }
    .trend-keyword-wrapper {
        flex-direction: column;
    }
    .trend-keyword-graph-wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        height: auto;
    }
    .trend-keyword-searches-related-wrapper {
        width: 100%;
    }
    .search-insight-notice-icon {
        top: 50%;
        transform: translateY(-50%);
    }
    .trending-table-row-place, .trending-table-row-divider {
        display: none;
    }
    .trending-table-row-left {
        flex-direction: column;
        align-items: flex-start;
    }
    .trending-table-row-keyword {
        margin-bottom: 3px;
        margin-left: 3px;
    }
    .trending-table-header {
        overflow-x: scroll;
        margin: 0 -10px;
    }
    .trending-table-header::-webkit-scrollbar {
        display: none;
    }
    .trending-table-title {
        min-width: fit-content;
        margin-left: 10px;
    }
    .trending-table-tabs {
        margin: 0 10px;
    }
    .registeredBlockInfo {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }
    .registeredBlockSvg {
        margin: 0;
    }

    .profile-photo-wrapper img {
        width: 78px;
        height: 78px;
    }
    .google-auth-button span {
        font-size: 16px;
    }
    .menu_block_item.updated:before {
        top: 3px;
        right: -1px;
        left: unset;
    }
    #login-popup .popup__header {
        padding: 13px 15px 16px 20px;
    }
    .popup__login-notice {
        font-size: 17px;
        padding: 11px;
    }
    #login-popup .popup__body {
        padding: 18px 27px 20px 27px;
    }
    .content.mobile-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
    .profile-add-to-list-button {
        padding: 3px 14px 3px 9px;
        border-radius: 16px;
        font-size: 16px;
    }
    [data-popup="list-popup"], .login-mobile-btn {
        margin-right: 0!important;
        margin-left: 0;
    }
    [data-popup="list-popup"] span {
        display: none;
    }
    [data-popup="list-popup"] svg, .login-mobile-btn svg {
        fill: #555!important;
    }
    .profile-badges .profile-rating-score {
        display: none;
    }
    /*.profile-rating-score {*/
    /*    width: 100%;*/
    /*    justify-content: center;*/
    /*    position: relative;*/
    /*    padding: 6px;*/
    /*    border-radius: 10px;*/
    /*    margin-left: 0;*/
    /*    margin-top: 10px;*/
    /*}*/
    /*.profile-rating-score svg {*/
    /*    position: absolute;*/
    /*    left: 10px;*/
    /*    width: 24px;*/
    /*    height: 24px;*/
    /*}*/
    .profile-rating-score {
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .profile-rating-score span {
        width: calc(100% - 25px);
        text-overflow: ellipsis;
        overflow: hidden;
    }
    #search_form {
        min-width: unset;
    }
    body{
        -webkit-text-size-adjust: 100%;
    }
    .mobile-hide {
        display: none!important;
    }

    .desktop-hide {
        display: flex!important;
    }

    .left-header {
        min-width: unset;
    }

    .left-header .menu_block_item {
        display: none;
    }

    .menu_block_item {
        width: 34px;
        height: 34px;
    }

    .menu_block {
        min-width: unset;
    }

    .center-header {
        display: none;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        height: 100%;
        align-items: center;
        z-index: 9;
        background: #fff;
        padding: 0 10px;
    }

    .mobile_right {
        display: flex;
        align-items: center;
    }

    .main-header > .content {
        position: relative;
    }

    .search_form_icon-button {
        outline: none;
        border: none;
        background: none;
        margin-left: 0;
        margin-right: 13px;
    }


    .menu_block_item span, .menu_block .menu_block_item:first-child span {
        font-size: 25px;
    }

    .popup-wrapper {
        padding: 100px 15px 0;
        align-items: center;
    }
    .search_form_icon {
        color: #555;
    }
    .search_form_icon svg {
        fill: #555;
    }
    .ranklist-filter-right {
        display: none;
    }
    .ranklist-filter-wrapper {
        padding-left: 10px;
        padding-bottom: 10px;
    }
    .ranklist-filter-left {
        overflow-x: scroll;
        padding-right: 10px;
    }
    .ranklist-filter-left::-webkit-scrollbar {
        height: 0;
    }
    .ranklist-filter-button {
        white-space: nowrap;
        padding: 6px 12px;
    }
    .ranklist-filter-button svg {
        margin-left: 7px;
    }
    .ranklist-table-item img {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    .ranklist-username {
        font-size: 16px;
    }
    .main .main-header {
        border-bottom: 1px solid #c6dbf0;
    }
    .profile-technical-notice-wrapper {
        margin: 0 -10px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #e8d8c0;
        padding: 10px 15px;
        align-items: end;
    }
    .main-notice-wrapper {
        margin: 0 -10px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #c6dbf0;
        padding: 10px 15px;
        align-items: start;
    }
    .main-notice-icon {
        bottom: -36px;
        right: -33px;
        transform: rotate(-20deg);
    }
    .profile-history-label {
        display: none;
    }
    .profile-history-date {
        padding: 3px 10px;
    }
    .profile-history-amount {
        padding-right: 10px;
        width: unset;
    }
    .profile-info-wrapper {
        margin: 10px 0 14px;
        position: relative;
    }
    .profile-info-left {
        width: calc(100% - 142px);
    }
    .profile-photo-wrapper {
        min-width: 78px;
    }
    .profile-info-username-wrapper {
        width: calc(100% - 50px);
    }
    .profile-info-country-wrapper {
        width: 100%;
        max-width: fit-content;
    }
    .profile-info-country-wrapper span:last-child {
        white-space: nowrap;
        width: calc(100% - 25px);
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .profile-info-right {
        width: 93px;
        position: absolute;
        right: 2px;
        bottom: 0;
        justify-content: flex-end;
    }
    .profile-info-button {
        background: none;
        padding: 0;
    }
    .profile-info-button svg {
        width: 21px;
        height: 21px;
    }
    .profile-info-button-svg svg {
        fill: #555;
        width: 21px;
        height: 21px;
    }
    /*.profile-info-button-svg img {*/
    /*    width: 20px;*/
    /*}*/
    /*.profile-info-button span {*/
    /*    font-size: 20px;*/
    /*}*/
    .profile-info-button:last-child {
        right: 0px;
        position: absolute;
        top: -52px;
        transform: rotate(90deg);
    }
    .profile-notice-text br {
        display: none;
    }
    .profile-notice-icon {
        display: none;
        bottom: -36px;
        right: -33px;
        transform: rotate(-20deg);
    }
    .profile-earning-button {
        border: none;
        padding: 0;
    }
    .profile-earning-wrapper {
        padding: 12px 15px 15px;
        width: 100%;
    }
    .profile-total-earning-block-wrapper {
        width: 100%;
        padding-left: 0;
        margin-top: 15px;
    }
    .profile-total-earning-price {
        margin-top: 15px;
        margin-bottom: 5px;
        font-size: 26px;
    }
    .profile-total-earning-view-button {
        margin-bottom: 20px;
    }
    .profile-earning-bar-wrapper {
        margin: 12px -15px -15px;
        height: 8px;
    }
    .live .avatar-wrapper {
        border: 2px solid #ffcdcd;
    }
    .ranklist-place-wrapper .ranklist-example-bg {
        margin-left: 20px;
    }
    .ranklist-example-bg {
        width: 60px;
    }

    .article-top-wrapper {
        flex-direction: column;
        position: relative;
    }
    .article-top-left {
        flex-wrap: wrap;
        justify-content: unset;
        width: 100%;
    }
    .article-top-left .article-info-block {
        width: 50%;
    }
    .article-top-left .article-info-block:nth-child(1) {
        width: 100%;
        margin-bottom: 10px;
    }
    .article-top-right {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .no-article {
        flex-direction: column;
    }
    .no-article .profile-article-left {
        width: 100%;
    }
    .no-article .profile-article-right {
        position: absolute;
        bottom: 9px;
        right: 10px;
    }
    .slider {
        height: unset;
        flex-direction: column;
    }
    .main-reviews-item-wrapper {
        width: 100%;
        padding: 0 4px;
        margin: 10px 0 0;
    }

    .main-reviews-item-wrapper:first-child {
        margin-top: 0;
    }
    .main-reviews-articles-tab-wrapper > div {
        margin-left: -6px;
        margin-right: -6px;
    }

    .gifts-table-wrapper {
        border-radius: 0;
        border-top: none;
        border-right: none;
        border-left: none;
        padding: 0;
    }
    .gifts-table {
        overflow-x: scroll;
    }
    .gifts-table::-webkit-scrollbar {
        height: 0;
    }
    .gifts-table-row {
        width: fit-content;
        min-width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .popup-wrapper {
        overflow-y: auto;
        padding: 25px 15px 40px;
        align-items: center;
    }
    #login-popup {
        align-items: flex-start;
        padding-top: 100px;
    }
    .ranklist-wrapper {
        margin: 10px -10px 20px;
    }
    .ranklist-title-wrapper {
        border-radius: 0;
        overflow-x: scroll;
    }
    .ranklist-title-wrapper::-webkit-scrollbar {
        height: 0;
    }
    .ranklist-table-wrapper {
        border-radius: 0;
        border-top: none;
        border-right: none;
        border-left: none;
        padding: 0;
    }
    .ranklist-table {
        overflow-x: scroll;
    }
    .ranklist-table::-webkit-scrollbar {
        height: 0;
    }
    .ranklist-table-row > div:nth-child(2) {
        min-width: 200px;
        max-width: 200px;
    }
    .ranklist-table-header.ranklist-table-row > div:nth-child(2) {
        min-width: 180px;
        max-width: 180px;
    }
    .ranklist-table-row {
        width: fit-content;
        min-width: 100%;
    }
    .ranklist-table-more {
        margin: 0 auto 10px;
        width: 135px;
        border-radius: 250px;
        border: 1px solid #e7e7e7;
        padding: 6px 0;
    }
    .ranklist-next-update > span:first-child {
        display: inline-flex;
        width: max-content;
        margin-left: 20px;
    }
    .ranklist-title > span:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .ranklist-diamonds-wrapper, .ranklist-earning-wrapper {
        padding: 0;
        border: none;
    }
    .gifts-empty {
        padding-bottom: 40px;
    }
    .ranklist-filter-search-button.filter #ranklist-filter-search {
        padding-left: 6px;
    }
}

@media screen and (max-width: 425px) {
    .search-item-info-text {
        width: calc(100% - 75px);
    }
    .search-item-info {
        width: calc(100% - 75px);
    }
    .search-item-info-title {
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .profile-info-name {
        text-overflow: ellipsis;
        overflow: hidden;
        min-width: 190px;
    }
}

@media screen and (max-width: 415px) {

}

@media screen and (max-width: 375px) {
}

@media screen and (max-width: 325px) {

}
