* {
    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: #f8f8f8;
}
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;
}

.slick-dots {
    display: flex!important;
    justify-content: flex-end;
    margin-top: 13px;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 11px;
    height: 11px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #ffffff52;
    border-radius: 100%;
}
.slick-dots li.slick-active button {
    background: #fff;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}

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

.custom-select {
    margin-left: 10px;
    position: relative;
}
.custom-select.loaded select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    color: #555;
    padding: 6px 12px;
    border-radius: 7px;
    cursor: pointer;
    font-size: 15px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(/assets/images/down.svg) no-repeat right;
    background-color: #fff;
    background-position: 85% 10px;
    background-size: 13px;
    min-width: 110px;
    border: 1px solid #e7e7e7;
}

/* Style items (options): */
.select-items {
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 7px;
}
.select-items div {
    padding: 8px 15px;
    cursor: pointer;
}
.select-items div:first-child {
    background-image: url(/assets/images/up.svg);
    background-repeat-x: no-repeat;
    background-repeat-y: no-repeat;
    background-position-x: 92%;
    background-size: 26px;
    background-position-y: center;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    font-weight: 500;
    background-color: #f9f9f9;
}
.select-items div:first-child:hover, .same-as-selected:first-child {
    border-radius: 7px 7px 0 0;
}
.select-items div:last-child:hover, .same-as-selected:last-child {
    border-radius: 0 0 7px 7px;
}

/* custom-checkbox-wrapper */
.custom-checkbox-wrapper {
    display: block;
    position: relative;
    padding-right: 35px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #555;
    margin-right: 15px;
}
.custom-checkbox-wrapper input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: -1px;
    right: 0;
    height: 22px;
    width: 22px;
    border-radius: 100%;
    border: 1px solid #e5e5e5;
    background-color: #fcfcfc;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-checkbox-wrapper input:checked ~ .checkmark:after {
    display: block;
}
.custom-checkbox-wrapper .checkmark:after {
    left: 5px;
    top: 5px;
    width: 10px;
    background: #0ca1ff;
    height: 10px;
    border-radius: 100%;
}
/* custom-checkbox-wrapper */

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

.sidebar-popup-wrapper {
    display: none;
    position: fixed;
    top: 0;
    background: #fff;
    right: 0;
    width: 268px;
    z-index: 999999999;
    box-shadow: 2px 2px 1px 0 rgba(0,0,0,.1);
    text-align: left;
    font-size: 15px;
    height: 100vh;
    flex-direction: column;
    overflow-y: auto;
    justify-content: space-between;
}
.sidebar-popup-header {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    padding: 15px;
}
.sidebar-popup-title {
    color: #555;
    font-size: 16px;
    display: flex;
    align-items: center;
    position: relative;
}
.sidebar-popup-close {
    cursor: pointer;
    display: flex;
}
.sidebar-popup-close svg {
    width: 18px;
    height: 18px;
    fill: #aaa;
    cursor: pointer;
}
.sidebar-popup-menu-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px 10px;
    background-image: linear-gradient(to right, rgb(14 93 160 / 90%), rgb(147 23 20 / 90%)), url(/assets/bg.jpg);
    color: #fff;
}
.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 {
    margin-left: -2px;
}
.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-login-btn .material-icons {
    display: inline-flex;
    font-size: 18px;
    margin-left: 10px;
}
.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: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 .material-icons {
    font-size: 16px;
}
.sidebar-popup-user-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sidebar-popup-user-avatar {
    position: relative;
    width: 100px;
    height: 100px;
}
.sidebar-popup-user-avatar img {
    border-radius: 100%;
}
.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 {
    margin-top: 10px;
    font-weight: 700;
    font-size: 20px;
    color: #0ca1ff;
    max-width: 120px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.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: #0ca1ff;
    border-radius: 20px;
    padding: 7px 15px;
    cursor: pointer;
}
.sidebar-popup-logout-button .material-icons {
    font-size: 22px;
    margin-right: 5px;
    display: inline-flex;
}
.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;
}


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


.content {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    position: relative;
}
.content.profile, .content.user {
    max-width: 750px;
}
.main-header .content {
    max-width: 1152px;
}
.wrapper {
    position: relative;
    padding-bottom: 40px;
}

.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: 170px;
    display: flex;
    align-items: center;
}
.logo {
    margin-right: 10px;
}
.logo a {
    color: #555;
    font-size: 24px;
    font-weight: 700;
    display: flex;
}
.logo a i {
    margin-left: -2px;
}
#search_form {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    min-width: 320px;
}
.search_form_icon {
    display: flex;
    margin-left: 13px;
    color: #aaa;
    min-width: 24px;
}

.search_form_icon .spinner {
    border: 2px solid #aaa!important;
    border-right-color: transparent!important;
    width: 18px;
    height: 18px;
}
#search_form input {
    font-size: 16px;
    padding: 9px;
    border: none;
    color: #aaa;
    opacity: 1;
    width: 100%;
    line-height: 23px;
    height: 36px;
    background: #f5f5f5;
    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;}

.menu_block {
    display: flex;
    align-items: center;
    min-width: 170px;
    justify-content: flex-end;
}
.menu_block_item {
    display: flex;
    background: #f5f5f5;
    justify-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    margin: 0 5px;
    border-radius: 100%;
    cursor: pointer;
    color: #555;
}
.menu_block_item span {
    font-size: 25px;
}
.left-header .menu_block_item:last-child span {
    font-size: 18px;
}
.menu_block_item.add span {
    font-size: 25px;
}
.menu_block_item.star span {
    font-size: 18px;
}
.menu_block_item.without-bg {
    background: unset;
}
.menu_block_item.without-bg span {
    font-size: 28px;
}
.user-header-block {
    display: flex;
    align-items: center;
    margin: 0 5px;
}
.user-header-block img {
    width: 33px;
    height: 33px;
    border-radius: 100%;
    margin-right: 8px;
}
.user-header-block span {
    color: #555;
}

.confirm-mail-notice {
    background: #E5F0F6;
    border-radius: 5px;
    text-align: center;
    padding: 8px;
    margin: 10px 0;
}
.resend-mail {
    color: #0ca1ff;
    text-decoration: underline;
    cursor: pointer;
}

.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: #0ca1ff;
}
.form-header-tab.active:after {
    content: "";
    height: 3px;
    width: 100%;
    background: #0ca1ff;
    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 #e7e7e7;
}
.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;
}
.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: #0ca1ff;
    text-decoration: underline;
}
.form-action button {
    background-color: #0ca1ff;
    font-weight: 700;
    font-size: 17px;
    border: none;
    color: #fff;
    padding: 12px 26px;
    cursor: pointer;
    border-radius: 8px;
    min-width: 120px;
}
.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 .material-icons, .form-success .material-icons {
    position: absolute;
    left: 10px;
    font-size: 22px;
}
.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: #0ca1ff;
    text-decoration: underline;
}


.main-top-wrapper {
    color: #555555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px auto 0;
}
.main-top-left {
    display: flex;
    align-items: center;
    height: 41px;
    border-bottom: 2px solid #f0f0f0;
    width: 100%;
    width: -webkit-fill-available;
    min-width: 410px;
    font-size: 17px;
}
.main-top-share-wrapper {
    display: flex;
    height: 41px;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
}
.main-top-left span {
    font-weight: bold;
}
.main-top-filter-wrapper {
    display: flex;
    margin-left: 10px;
}
.main-top-filter {
    border-bottom: 1px solid transparent;
    padding: 8px 7px;
    position: relative;
    top: 1px;
    cursor: pointer;
    color: #aaa;
}
.main-top-filter.active {
    color: #555;
}
.main-top-filter.active:after {
    width: 30%;
    content: '';
    height: 2px;
    background: #0ca1ff;
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
}
.main-top-share {
    display: flex;
    align-items: center;
    color: #aaa;
    background: #eee;
    padding: 2px 8px;
    border-radius: 8px;
    cursor: pointer;
}

.main-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
}
.main-left {
    display: flex;
    flex-wrap: wrap;
    max-width: 650px;
    width: 100%;
    padding-right: 15px;
    flex-direction: column;
}
.main-right {
    display: flex;
    flex-wrap: wrap;
    max-width: 320px;
    width: 100%;
    align-content: flex-start;
}

.main-carousel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    position: relative;
    background-image: linear-gradient(to right, rgb(14 93 160 / 90%), rgb(147 23 20 / 90%)), url(/assets/bg.jpg);
    height: 170px;
    background-position: left;
    background-size: cover;
    max-width: 1010px;
    margin: 0 auto 15px;
    padding: 12px 10px 10px 20px;
    border-radius: 5px;
}
.main-carousel-item {
    text-align: center;
    padding: 0;
    margin-bottom: 40px;
}
.main-carousel-item-inner {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}
.slick-initialized .main-carousel-item {
    margin-bottom: 0;
}
.main-carousel-item__title {
    color: #fff;
    font-weight: 500;
    font-size: 21px;
}
.main-carousel-item__text {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
}

.main-top-rated-wrapper {
    background: #fff;
    box-shadow: 1px 1px 2px 0 rgb(145 145 145 / 8%);
    display: flex;
    flex-direction: column;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    width: 100%;
}
.main-top-rated-filter {
    display: flex;
    padding: 7px 8px 7px 16px;
    margin-bottom: 10px;
    align-items: center;
    justify-content: space-between;
}
.main-top-rated-title {
    font-weight: bold;
}
.main-top-rated-filter .select-selected {
    background-color: #f5f5f5;
    border: none;
    background-position: 87px 11px;
    padding: 7px 12px 6px;
}
.main-top-rated-filter .select-items div {
    font-size: 15px;
    padding: 8px 10px;
}
.main-top-rated-filter .select-items div:first-child {
    background-position-x: 90px;
}
.main-top-rated-filter .select-items {
    width: 120px;
    right: unset;
    left: -10px;
}
.main-top-rated-filter .select-items div:hover {
    font-weight: normal;
}

.main-top-rated-filter .select-items div.same-as-selected {
    font-weight: 500;
}
.main-top-rated-filter-item {
    width: 50%;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    padding: 3px 0;
}
.main-top-rated-filter-item.active {
    background: #F5F5F5;
}

.main-top-rated-list {
    display: flex;
    flex-direction: column;
}
.main-top-rated__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    padding: 15px 20px 15px 20px;
    border-bottom: 1px solid #f1f1f1;
}
.main-top-rated__item-avatar {
    display: flex;
    align-items: center;
    width: calc(100% - 45px);
}
.main-top-rated__item-position {
    font-weight: 500;
    font-size: 17px;
    color: #aaa;
}
.main-top-rated__item-avatar img {
    width: 35px;
    height: 35px;
    margin-left: 15px;
    margin-right: 8px;
    border-radius: 40px;
}
.main-top-rated__item-name {
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: calc(100% - 75px);
    white-space: nowrap;
}
.main-top-rated__item-rate {
    display: flex;
    align-items: center;
}
.main-top-rated__item-more {
    text-align: center;
    padding: 8px;
    color: #AAAAAA;
}

.review-wrapper {
    display: flex;
}
.review-box {
    background: #fff;
    box-shadow: 1px 1px 2px 0 rgb(145 145 145 / 8%);
    display: flex;
    flex-direction: column;
    border: 1px solid #e7e7e7;
    border-radius: 7px;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
}
.review-box-info {
    position: relative;
    display: flex;
    align-items: center;
}
.review-box-info-avatar {
    display: flex;
}
.review-box-info-avatar img {
    width: 35px;
    height: 35px;
    margin-right: 8px;
    border-radius: 40px;
}
.review-box-info-right {
    width: calc(100% - 43px);
}
.review-box-info-text {
    font-weight: 500;
    color: #555;
    width: 100%;
}
.review-box-info-text a {
    color: #555;
    display: inline-block;
    /*border-bottom: 1px solid #efefef;*/
}
.review-box-info-text span {
    display: inline-block;
    width: 85px;
}
.review-box-info-text a:first-child {
    border-bottom: none;
}
.review-more-wrapper {
    position: absolute;
    right: 0;
    display: flex;
    cursor: pointer;
    top: -5px;
}
.review-box-text {
    border-left: 3px solid #ededed;
    display: flex;
    padding: 4px 8px;
    margin: 10px 8px;
    background: #fff;
    font-size: 17px;
    flex-direction: column;
    word-break: break-word;
}
.review-box-footer {
    border-top: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 5px 0;
}
.review-box-footer-date {
    /*color: #aaa;*/
    font-size: 15px;
    /*font-style: italic;*/
    display: flex;
    align-items: center;
    color: #aaa;
}
.review-box-footer-date span {
    display: inline-flex;
    margin-right: 5px;
    font-size: 18px;
}

.review-box-footer-actions {
    display: flex;
}
.review-box-footer-action {
    display: flex;
    align-items: center;
    color: #aaa;
    margin-right: 7px;
    font-size: 15px;
}
.review-box-footer-action-button {
    padding: 2px 13px;
    cursor: pointer;
}
.review-box-footer-action-button:first-child {
    border-right: 1px solid #f2f2f2;
}
.review-box-footer-comment {
    display: flex;
    align-items: center;
    border-radius: 40px;
    padding: 2px 14px;
    cursor: pointer;
    margin-right: 13px;
    background: #f8f8f8;
}
.review-box-footer-comment.active {
    background: #ededed;
}
.review-box-footer-comment-count {
    margin-left: 8px;
}
.review-box-footer-comment .material-icons {
    font-size: 16px;
}
.review-box-votes-wrapper {
    display: flex;
    align-items: center;
    border-radius: 40px;
    padding: 2px 6px;
    background: #f8f8f8;
}
.review-box-votes-wrapper div {
    display: inline-flex;
}
.review-box-votes-up {
    margin-right: 5px;
    cursor: pointer;
}
.review-box-votes-up.active {
    color: #0ca1ff;
}
.review-box-votes-down {
    margin-left: 5px;
    cursor: pointer;
}
.review-box-votes-down.active {
    color: #FF1514;
}

.review-box-info-stars-wrapper {
    display: flex;
    align-items: center;
    color: #aaa;
}
.review-box-info-stars {
    display: flex;
    align-items: center;
    margin-right: 5px;
}
.review-box-info-stars .material-icons {
    font-size: 18px;
    color: #d0d0d0;
}
.review-box-info-stars .material-icons.gray {
    color: #DDDDDD;
}
.review-box-info-stars-count {
    font-weight: bold;
    display: flex;
    align-items: center;
    font-size: 15px;
    position: relative;
    top: 1px;
}
.no-reviews-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ccc;
    margin: 80px 0;
}
.no-reviews-text {
    font-size: 20px;
    font-weight: 600;
}
.no-reviews-block span {
    font-size: 48px;
    display: flex;
}


.profile-wrapper {
    background: #fff;
    box-shadow: 1px 1px 2px 0 rgb(145 145 145 / 8%);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e7e7e7;
    border-radius: 7px;
    margin-top: 15px;
}
.profile-box {
    padding: 10px;
}
.profile-info {
    background: #f8f8f8;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 15px;
    position: relative;
}
.profile-avatar-wrapper {
    position: relative;
    display: flex;
    margin-right: 20px;
}
.profile-box img {
    border-radius: 100%;
    width: 90px;
    height: 90px;
    overflow: hidden;
}
.profile-name-top {
    color: #0ca1ff;
    font-size: 21px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
}
.profile_block_text.title {
    font-size: 17px;
}
.profile_block_text {
    font-size: 16px;
    color: #555;
}
.profile-header-more {
    display: flex;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.profile-header-more span {
    font-size: 26px;
}

.profile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}
.profile-social {
    margin-left: 10px;
    padding: 0 2px;
    border-bottom: 1px solid #e7e7e7;
    position: relative;
}
.profile-social svg {
    position: absolute;
    width: 16px;
    height: 16px;
    fill: #aaa;
    right: -19px;
    top: 4px;
}
.profile-footer-right {
    display: flex;
}
.profile-rate-wrapper {
    display: flex;
    align-items: center;
}
.profile-review-button {
    background: #0ca1ff;
    color: #fff;
    padding: 11px 25px;
    display: inline-flex;
    margin-left: 25px;
    cursor: pointer;
    font-size: 17px;
    border-radius: 5px;
    font-weight: 500;
    align-items: center;
}
.profile-footer-right-info {
    display: flex;
    margin-right: 15px;
    cursor: pointer;
}
.profile-footer-right-info span {
    font-size: 18px;
    color: #aaa;
}
.profile-rate-total-count {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 15px;
}
.profile-rate-total-count.popup-open {
    cursor: pointer;
}
.profile-rate-total-count-stars {
    display: flex;
}
.profile-rate-total-count-stars span {
    font-size: 18px;
    color: #d0d0d0;
}
.profile-rate-total-count-text {
    font-size: 15px;
}
.profile-rate-average {
    display: flex;
    align-items: center;
    padding-left: 15px;
    border-left: 1px solid #e7e7e7;
}
.profile-rate-average span {
    font-size: 20px;
    display: inline-flex;
    margin-right: 5px;
    color: #d0d0d0;
}
.profile-rate-average-text {
    color: #aaa;
    font-size: 15px;
}
.profile-rate-average-text b {
    color: #555;
    font-size: 18px;
    display: inline-flex;
    margin-right: 4px;
    font-weight: 600;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.reviews-header-title {
    font-weight: 500;
    font-size: 18px;
}
.reviews-header-filter-wrapper {
    display: flex;
}
.reviews-header-filter-wrapper .custom-select:first-child .select-selected {
    min-width: 70px;
}

.load-more-review-form {
    display: flex;
    align-items: center;
    justify-content: center;
}
.load-more-review-form button {
    display: flex;
    width: 100%;
    background: #F0F0F0;
    border: none;
    outline: none;
    border-radius: 7px;
    color: #aaa;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 9px;
    font-size: 16px;
    cursor: pointer;
}

.popup-wrapper {
    width: 100%;
    position: fixed;
    height: 100vh;
    background: rgba(13, 13, 13, 0.82);
    top: 0;
    left: 0;
    display: none;
    z-index: 99;
    align-items: center;
    justify-content: center;
}
.popup {
    z-index: 9999999999999;
    background: #fff;
    max-width: 800px;
    width: 100%;
    border-radius: 5px;
}
.popup__header {
    padding: 15px;
    position: relative;
    color: #555;
    font-size: 17px;
    background: #F5F5F5;
    border-radius: 5px 5px 0 0;
}
.popup__header .popup__header-close {
    position: absolute;
    width: 18px;
    color: #aaa;
    cursor: pointer;
    top: calc(50% - 11px);
    right: 22px;
    height: 19px;
}
.add-new-profile-popup-error {
    display: none;
    color: #FF4747;
    font-size: 15px;
    align-items: center;
}
.add-new-profile-popup-error svg {
    fill: #FF4747;
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.add-new-profile-popup {
    max-width: 500px;
}
.add-new-profile-popup-form, .search-new-profile-popup-form  {
    padding: 30px 35px 30px 35px;
}
.add-new-profile-popup-text {
    font-size: 16px;
}
.add-new-profile-popup-input-wrapper {
    position: relative;
}
.add-new-profile-popup-input-wrapper button {
    position: absolute;
    right: 10px;
    border: none;
    outline: none;
    background: none;
    display: flex;
    top: 20px;
    cursor: pointer;
}
.add-new-profile-popup-input-wrapper button span {
    color: #555;
}
.add-new-profile-popup-input {
    width: 100%;
    padding: 16px;
    margin: 5px 0;
    border: 1px solid #e4e4e4;
    color: #555;
    font-size: 16px;
    background: #fcfcfc;
    border-radius: 6px;
}
.add-new-profile-popup-hint {
    color: #ccc;
    font-size: 15px;
}
.add-new-profile-popup-button {
    background: #0ca1ff;
    color: #fff;
    padding: 10px 30px;
    display: inline-flex;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 17px;
    border: none;
    outline: none;
    font-weight: 500;
}
.add-new-profile-popup-button-wrapper {
    display: flex;
    justify-content: flex-end;
}
.add-new-profile-popup-success {
    flex-direction: column;
}
.add-new-profile-popup-svg-success {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0ca1ff;
    margin-right: 10px;
}
.add-new-profile-popup-svg-success span {
    font-size: 36px;
}
.add-new-profile-popup-text-success, .add-new-profile-popup-text-already_added {
    color: #0ca1ff;
    font-size: 19px;
}
.add-new-profile-popup-text-success span, .add-new-profile-popup-text-already_added span {
    font-weight: bold;
}
.add-new-profile-popup-link {
    border: 1px solid #EFEFEF;
    border-radius: 20px;
    padding: 6px 15px;
    color: #0ca1ff;
    font-weight: bold;
}
.add-new-profile-popup-type-wrapper {
    display: flex;
    margin-bottom: 5px;
}
.add-new-profile-popup-type {
    display: inline-flex;
    border-radius: 20px;
    padding: 6px 15px;
    cursor: pointer;
}
.add-new-profile-popup-type.active {
    background: #f0f8ff;
}
.add-new-profiles-wrapper {
    margin-top: 10px;
}
.new-profiles-item {
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.new-profiles-left {
    display: flex;
    align-items: center;
}
.new-profiles-left img {
    width: 50px;
    border-radius: 100%;
    margin-right: 10px
}
.new-profiles-item:last-child {
    border-bottom: none;
}
.new-profiles-button.view {
    background: #eef8ff;
    color: #0ca1ff;
    padding: 5px 8px;
    border-radius: 5px;
}
.new-profiles-button.add {
    background: #F5F5F5;
    color: #555;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
}

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

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

.add-review-popup {
    max-width: 500px;
}
.add-review-popup .popup__header {
    text-align: center;
    font-weight: bold;
    padding: 14px;
    font-size: 18px;
}
.add-review-popup .popup__header.login {
    padding: 18px 0 0 0;
    display: flex;
    justify-content: space-around;
    border-bottom: 3px solid #f5f5f5;
    background: #fff;
    border-radius: 5px 5px 0 0;
}
.add-review-popup-form, .edit-review-popup-form, .add-review-no-login-popup-form {
    padding: 35px;
}
.add-review-popup-form-text {
    font-size: 17px;
    text-align: center;
    margin-bottom: 10px;
}
.add-review-popup-form-stars-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #DDDDDD;
}
.add-review-popup-form-stars-wrapper.rate1 > span:nth-child(-n+1),
.add-review-popup-form-stars-wrapper.hover_rate1 > span:nth-child(-n+1),
.rate1 .review-box-info-stars > span:nth-child(-n+1),
.rate1 .profile-rate-total-count-stars > span:nth-child(-n+1),
.rate1 .profile-rate-average span,
.rate1 .review-box-info-stars-count,
.rate-with-start.rate1 > span,
.rate1 .more-rate-info-average span
{
    color: #FF1514!important;
}
.add-review-popup-form-stars-wrapper.rate2 > span:nth-child(-n+2),
.add-review-popup-form-stars-wrapper.hover_rate2 > span:nth-child(-n+2),
.rate2 .review-box-info-stars > span:nth-child(-n+2),
.rate2 .profile-rate-total-count-stars > span:nth-child(-n+2),
.rate2 .profile-rate-average span,
.rate2 .review-box-info-stars-count,
.rate-with-start.rate2 > span,
.rate2 .more-rate-info-average span
{
    color: #FF9914!important;
}
.add-review-popup-form-stars-wrapper.rate3 > span:nth-child(-n+3),
.add-review-popup-form-stars-wrapper.hover_rate3 > span:nth-child(-n+3),
.rate3 .review-box-info-stars > span:nth-child(-n+3),
.rate3 .profile-rate-total-count-stars > span:nth-child(-n+3),
.rate3 .profile-rate-average span,
.rate3 .review-box-info-stars-count,
.rate-with-start.rate3 > span,
.rate3 .more-rate-info-average span
{
    color: #F3D50A!important;
}
.add-review-popup-form-stars-wrapper.rate4 > span:nth-child(-n+4),
.add-review-popup-form-stars-wrapper.hover_rate4 > span:nth-child(-n+4),
.rate4 .review-box-info-stars > span:nth-child(-n+4),
.rate4 .profile-rate-total-count-stars > span:nth-child(-n+4),
.rate4 .profile-rate-average span,
.rate4 .review-box-info-stars-count,
.rate-with-start.rate4 > span,
.rate4 .more-rate-info-average span
{
    color: #10CF02!important;
}
.add-review-popup-form-stars-wrapper.rate5 > span:nth-child(-n+5),
.add-review-popup-form-stars-wrapper.hover_rate5 > span:nth-child(-n+5),
.rate5 .review-box-info-stars > span:nth-child(-n+5),
.rate5 .profile-rate-total-count-stars > span:nth-child(-n+5),
.rate5 .profile-rate-average span,
.rate5 .review-box-info-stars-count,
.rate-with-start.rate5 > span,
.rate5 .more-rate-info-average span
{
    color: #0ca1ff!important;
}
.rate5.more-rate-info-bar .more-rate-info-bar-fill {
    background: #0ca1ff!important;
}
.rate4.more-rate-info-bar .more-rate-info-bar-fill {
    background: #10CF02!important;
}
.rate3.more-rate-info-bar .more-rate-info-bar-fill {
    background: #F3D50A!important;
}
.rate2.more-rate-info-bar .more-rate-info-bar-fill {
    background: #FF9914!important;
}
.rate1.more-rate-info-bar .more-rate-info-bar-fill {
    background: #FF1514!important;
}

.about-rating-popup {
    max-width: 500px;
}
.about-rating-popup .popup__body {
    padding: 20px;
}

.rate-with-start {
    display: flex;
    align-items: center;
}
.rate-with-start span {
    font-size: 18px;
    display: inline-flex;
    margin-right: 4px;
    color: #d0d0d0;
}
.search-item-info-rate .rate-with-start span {
    font-size: 18px;
    margin-top: 2px;
}
.rate-with-start div {
    display: inline-flex;
    font-weight: 500;
}

.add-review-popup-form-stars-wrapper span {
    display: inline-flex;
    margin: 0 5px;
    font-size: 42px;
    cursor: pointer;
}
.add-review-popup-form-textarea {
    width: 100%;
    min-height: 175px;
    outline: none;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    margin: 30px 0 16px 0;
    padding: 15px;
    font-size: 17px;
    background: #fcfcfc;
}
.add-review-popup-form-button-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.add-review-popup-form-button-add {
    background: #0ca1ff;
    color: #fff;
    padding: 13px 27px;
    display: inline-flex;
    margin-left: 25px;
    cursor: pointer;
    font-size: 17px;
    border-radius: 40px;
    font-weight: 600;
    align-items: center;
    border: none;
    outline: none;
}
.add-review-popup-form-button-close {
    padding: 0 5px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
}

.popup.success .popup__header div {
    display: none;
}
.popup.success .popup__header span {
    color: #0ca1ff;
}
.popup.success .popup__header {
    background: #EFF8FF;
    padding: 25px;
}
.popup.success .add-new-profile-popup-button {
    margin: 15px;
}
.add-new-profile-popup-wrapper {
    background: #EFF8FF;
    display: flex;
    align-items: center;
    padding: 10px 30px 40px 30px;
}

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

.success-report-popup {
    padding: 10px 20px;
    max-width: 550px;
}
.success-report-popup-notice {
    border-radius: 5px 5px 0 0;
    background: #fff;
    display: flex;
    padding: 20px;
    align-items: center;
}
.success-report-popup-notice-icon {
    margin-right: 10px;
}
.success-report-popup-notice-icon span {
    color: #f48f00;
    font-size: 40px;
}
.success-report-popup-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 10px;
    border-top: 1px solid #f1f1f1;
}
.success-report-popup-button {
    padding: 10px 20px;
    cursor: pointer;
    background: #0ca1ff;
    color: #fff;
    border-radius: 20px;
    font-weight: 700;
}

.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 span {
    color: #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: #0ca1ff;
    cursor: pointer;
}

.delete-prompt-popup {
    padding: 10px 20px;
    max-width: 550px;
}
.delete-prompt-popup-wrapper {
    border-radius: 5px 5px 0 0;
    background: #fff;
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: center;
}
.delete-prompt-popup-icon {
    margin-right: 10px;
    display: inline-flex;
}
.delete-prompt-popup-icon span {
    color: #555;
    font-size: 40px;
}
.delete-prompt-popup-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid #f1f1f1;
}
.delete-prompt-popup-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    margin: 0 5px;
}
.delete-prompt-popup-button:first-child {
    background: #e91517;
    color: #fff;
    font-weight: 700;
}
.delete-prompt-popup-button:last-child {
    color: #555;
    font-weight: 700;
}

.more-rate-info-popup {
    max-width: 600px;
}
.more-rate-info-popup-wrapper {
    padding: 25px;
    display: flex;
    align-items: center;
}
.more-rate-info-popup-left {
    width: 35%;
    padding-left: 30px;
}
.more-rate-info-popup-right {
    width: 65%;
    display: flex;
    flex-direction: column;
}
.more-rate-info-total-count {
    color: #aaa;
    font-size: 18px;
}
.more-rate-info-average {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.more-rate-info-average span {
    font-size: 20px;
    display: inline-flex;
    margin-right: 5px;
}
.more-rate-info-average-text {
    font-size: 22px;
}
.more-rate-info-bar {
    display: flex;
    padding-bottom: 10px;
    align-items: center;
}
.more-rate-info-bar:last-child {
    padding-bottom: 0;
}
.more-rate-info-bar-rate {
    font-weight: 600;
}
.more-rate-info-bar-percent {
    color: #aaa;
    min-width: 40px;
}
.more-rate-info-bar-fill-wrapper {
    width: -webkit-fill-available;
    margin: 0 15px;
    background: #e9e9e9;
    border-radius: 20px;
    height: 11px;
}
.more-rate-info-bar-fill {
    display: flex;
    height: 100%;
    border-radius: 20px;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    margin-top: 20px;
}
.list-header-title {
    font-size: 20px;
}
.list-header-title span {
    color: #aaa;
}
.list-header-filter-wrapper {
    display: flex;
    align-items: center;
}

.list-header-filter-wrapper .custom-select:first-child .select-selected {
    min-width: 130px;
}
.list-header-filter-tabs {
    border: 1px solid #e7e7e7;
    background-color: #fff;
    font-size: 15px;
    color: #555;
    padding: 4px;
    border-radius: 7px;
}
.list-header-filter-tab {
    padding: 2px 8px;
    display: inline-flex;
    color: #555;
}
.list-header-filter-tab.active {
    background: #EFF9FE;
    border-radius: 7px;
    color: #0ca1ff;
}
.list-table {
    border: 1px solid #e7e7e7;
    background-color: #fff;
    border-radius: 7px;
}
.list-table-row {
    display: flex;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
}
.list-table-row:last-child {
    border-bottom: none;
}
.list-table-row > div {
    padding: 13px 17px;
    width: 20%;
    display: flex;
    align-items: center;
}
.list-table-row div:first-child {
    width: 60%;
}
.list-table-header .list-table-item {
    color: #aaa;
    padding: 11px 14px;
    font-size: 15px;
}
a.list-table-row {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}
a.list-table-row .list-table-item:first-child span:first-child {
    color: #555;
    font-size: 15px;
    font-weight: 500;
}
a.list-table-row .list-table-item img {
    border-radius: 100%;
    width: 35px;
    height: 35px;
    overflow: hidden;
    margin: 0 15px;
    min-width: 35px;
}
a.list-table-row .list-table-item span:last-child {
    font-weight: 500;
    font-size: 16px;
}
.list-pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.list-pagination .pagination {
    display: flex;
    align-items: center;
}
.list-pagination .pagination li {
    display: flex;
    align-items: center;
}
.list-pagination .pagination li.active span {
    background: #0ca1ff;
    color: #fff;
}
.list-pagination .pagination li > a, .list-pagination .pagination li > span {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    border: 1px solid #e7e7e7;
    border-radius: 6px;
    margin-left: 7px;
    background: #fff;
    color: #555;
    height: 34px;
}
.list-pagination .pagination li > a span {
    display: flex;
    align-items: center;
}
.list-pagination .pagination li > a span {
    display: flex;
    align-items: center;
}
.list-pagination .pagination li.disabled span {
    color: #aaa;
}
.list-pagination .pagination li .material-icons {
    font-size: 17px;
}


.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 10px;
}
.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: #0ca1ff;
    padding: 3px 20px;
    border-radius: 15px;
    color: #fff;
    cursor: pointer;
}
.search-item {
    border: 1px solid #e7e7e7;
    background-color: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 20px;
    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;
    overflow: hidden;
    margin-right: 15px;
}
.search-item-info-text {
    font-weight: bold;
}
.search-item-info-title {
    font-size: 17px;
    font-weight: 600;
}


.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;
    white-space: nowrap;
}
.search-item-view-button {
    background: #F8F8F8;
    padding: 5px 20px;
    border-radius: 7px;
    cursor: pointer;
    color: #555;
    font-size: 16px;
}

.user-wrapper {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eaeaea;
    margin-top: 15px;
}
.user-info {
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 15px;
    position: relative;
}
.user-info img {
    border-radius: 100%;
    width: 60px;
    height: 60px;
    overflow: hidden;
    margin-right: 15px;
}
.user-header-more {
    display: flex;
    position: absolute;
    top: 7px;
    right: 15px;
    cursor: pointer;
}
.user-info-name {
    color: #0ca1ff;
    font-weight: bold;
    font-size: 20px;
}
.user-info-review-count {
    border-bottom: 2px solid #e5e5e5;
    display: inline-flex;
}

.review-comment-wrapper {
    position: relative;
    border-bottom: 1px solid #f1f1f1;
    padding: 10px 0;
}
.review-comment-wrapper:first-child {
    border-top: 1px solid #f1f1f1;
    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: 26px;
    height: 26px;
    min-width: 26px;
}
.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: -5px;
    right: 15px;
    display: flex;
}
.replies {
    margin-left: 35px;
}
.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: 15px;
    color: #555;
    font-weight: 500;
}
.comment-body-top span {
    color: #B2B2B2;
}
.comment-body-text {
    border-radius: 10px;
    padding: 8px 10px;
    background: #f6f6f6;
    font-size: 15px;
    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 #f1f1f1;
    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 #f6f6f6;
    padding-bottom: 8px;
}
.reply-form.active {
    display: flex;
}
.comment-form input {
    width: 100%;
    font-size: 16px;
    border-radius: 0px;
    border: none;
    outline: none;
    height: 35px;
    padding: 7px;
}
.comment-form button {
    color: #fff;
    background-color: #0ca1ff;
    padding: 4px 20px;
    border-radius: 6px;
    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;
}
.comment-action-votes-up.active {
    color: #0ca1ff;
}
.comment-action-votes-down.active {
    color: #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: 14px;
    cursor: pointer;
    margin-top: 10px;
}
.review-comments-more {
    display: flex;
    margin: 0 auto;
    width: 108px;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border: 1px solid #f1f1f1;
    border-radius: 6px;
    cursor: pointer;
}

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

.errorWrapper {
    margin: 25px auto;
    border: 1px solid #D9D9D9;
    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 h1 {
    font-size: 30px;
    font-weight: 400;
}
.errorWrapper h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 28px;
    color: #aaaaaa;
}
.errorWrapper a {
    background: #0498FF;
    color: #fff;
    font-weight: 500;
    border-radius: 20px;
    padding: 10px 20px;
    display: inline-flex;
    text-decoration: none;
}

.mobile_right {
    display: none;
}
.desktop-hide {
    display: none;
}
.mobile-carousel {
    display: none;
}
.mobile-profile-rate-wrapper {
    display: none;
}

.main-reviews-wrapper {
    width: 100%;
}
.recent-posts-wrapper {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.recent-posts-title {
    color: #555;
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    margin-bottom: 10px;
}
.recent-posts-items {
    display: flex;
    /*margin: 0 -5px;*/
}
.recent-post-item {
    width: calc(16.6% - 10px);
    background-position: center;
    background-size: cover;
    border-radius: 7px;
    /*margin: 0 5px;*/
}
.recent-post-item-wrapper {
    padding: 0 5px;
    width: 100%;
    display: flex;
}
.recent-post-item-bg {
    width: 100%;
    border-radius: 8px;
    height: 115px;
    background-size: cover;
    background-position: center;
}
.recent-post-item img {
    width: 100%;
    border-radius: 8px;
    /*padding-right: 10px;*/
}


.lightbox-p {
    opacity: 0;
    visibility: hidden;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
}
body.lightbox-view {
}
body.lightbox-view .lightbox-p {
    opacity: 1;
    visibility: visible;
}
.lightbox-p .lightbox-bg {
    background: rgba(0, 0, 0, 0.94);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
}
.lightbox-p .lightbox {
    text-align: center;
    z-index: 12;
    max-height: 90%;
    max-width: 90%;
    position: relative;
}
.lightbox-p .lightbox .lightbox-close {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 12;
    cursor: pointer;
    background: #000;
    color: #fff;
    border-radius: 100%;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-p .lightbox .lightbox-close span {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-p .lightbox img {
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}
.lightbox-p .lightbox video {
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
.slick-track {
    display: flex!important;
    align-items: center;
    margin: unset!important;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    display: flex!important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    border: none;
    box-shadow: 0px 0px 4px 1px #cfcfcf;
    border-radius: 50%;
    background: #fff;
    z-index: 9;
}
.slick-disabled {
    display: none!important;
}
.slick-prev {
    left: -15px;
}
.slick-next {
    right: -15px;
}
.slick-arrow .material-icons {
    font-size: 28px;
    color: #555;
}

.google-auth-wrapper {
    background: #fff;
    border-radius: 0 0 5px 5px;
    padding: 20px;
}
form .google-auth-wrapper {
    padding: 20px 0 0;
}
.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;
    margin-top: 20px;
}

@media screen and (max-width: 1000px) {
    .content {
        padding: 0 10px;
    }
    .main-header > .content {
        padding: 0 10px;
    }
    .main-left {
        max-width: calc(100% - 320px);
    }
}
@media screen and (max-width: 850px) {
    .list-header {
        flex-direction: column;
        margin-bottom: 4px;
    }
    .list-header-title {
        width: 100%;
    }
    .list-header-filter-wrapper {
        width: 100%;
        margin: 10px 0 5px;
        justify-content: space-between;
    }
    .list-header-filter-wrapper .custom-select:first-child {
        margin-left: 0;
    }
    .list-header-filter-tabs {
        display: flex;
    }

    .list-pagination .pagination li > a, .list-pagination .pagination li > span {
        padding: 4px 8px;
        margin-left: 5px;
    }
    .list-header-filter-tab {
        width: 50%;
        justify-content: center;
    }
    .list-header-title {
        font-size: 18px;
        text-align: center;
    }
}
@media screen and (max-width: 870px) {
    .left-header {
        min-width: 180px!important;
    }
}
@media screen and (max-width: 780px) {
    .left-header {
        min-width: unset!important;
    }
}
@media screen and (max-width: 680px) {
    .main-left {
        max-width: 650px;
    }
    .slick-arrow {
        width: 30px;
        height: 30px;
    }
    .slick-prev {
        left: -5px;
    }
    .slick-next {
        right: -5px;
    }
    .slick-arrow .material-icons {
        font-size: 26px;
    }
    /*.recent-posts-items a:nth-child(n+5) {*/
    /*    display: none;*/
    /*}*/
    .recent-post-item {
        width: calc(25% - 10px);
    }

    .menu_block_item.add {
        display: none;
    }
    .menu_block_item.star {
        display: none;
    }
    body{
        -webkit-text-size-adjust: 100%;
    }
    .main-top-rated__item-name {
        max-width: unset;
    }
    .form {
        padding: 20px;
    }
    .form-action button {
        padding: 13px 20px;
        white-space: nowrap;
    }
    .forgot-form .form label {
        margin-bottom: 0px;
    }
    .profile-avatar-wrapper {
        margin: 0;
    }
    .profile-info {
        flex-direction: column;
    }
    .profile-name {
        display: flex;
        flex-direction: column;
    }
    .profile-name-top {
        justify-content: center;
        margin: 5px 0 20px;
    }
    .profile-header-more {
        transform: rotate(90deg);
        top: 10px;
        right: 0;
    }
    .user-header-more {
        transform: rotate(90deg);
        top: 5px;
        right: 0;
    }
    .reviews-header {
        flex-direction: column;
    }
    .reviews-header-filter-wrapper {
        margin-top: 5px;
        width: 100%;
        justify-content: space-between;
    }
    .reviews-header-filter-wrapper .custom-select {
        margin-left: 0;
    }
    .mobile-profile-rate-wrapper {
        padding-top: 10px;
        display: flex;
        justify-content: center;
    }
    .profile-footer-right .profile-rate-wrapper {
        display: none;
    }
    .mobile-carousel {
        display: block;
        position: relative;
    }
    .mobile-carousel .main-carousel {
        border-radius: 0;
        height: 108px;
        padding: 8px 10px;
    }
    .main-carousel-item__title {
        font-size: 20px;
    }
    .main-carousel-item__text {
        font-size: 17px;
        line-height: 20px;
    }
    .mobile-carousel .main-carousel .slick-dots {
        margin-top: 9px;
    }
    .main-right .main-carousel {
        display: none;
    }
    .main-carousel-item {
        text-align: left;
    }
    .main-carousel-item-inner {
        display: block;
        margin-top: 0;
    }
    .user-header-block span {
        display: none;
    }
    .user-header-block img {
        margin-right: 0;
    }

    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: flex;
    }

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

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

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

    .menu_block {
        min-width: unset;
    }

    .menu_block > .menu_block_item:first-child {
        display: none;
    }

    .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 .menu_block_item:nth-child(2) span {
        font-size: 19px;
    }

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

    .main-top-wrapper {
        overflow-x: scroll;
        overflow-y: hidden;
        padding-bottom: 2px;
    }
    .main-top-wrapper::-webkit-scrollbar {
        height: 0;
    }
    .main-left {
        padding-right: 0;
    }
    .main-right {
        max-width: unset;
    }

    .review-more-wrapper {
        transform: rotate(90deg);
        right: -8px;
        top: -2px;
    }
    .popup-wrapper {
        padding: 100px 15px 0;
        align-items: flex-start;
    }
    .search-item-info img {
        width: 55px;
        height: 55px;
    }
    .search_form_icon {
        color: #555;
    }
    .review-box-footer-action {
        display: none;
    }

    .profile-footer {
        border-top: 1px solid #e7e7e7;
        padding-top: 10px;
        margin-top: 10px;
    }
    .success-report-popup-notice br {
        display: none;
    }

    .registeredBlockInfo {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }
    .registeredBlockSvg {
        margin: 0;
    }
    .form-error {
        justify-content: flex-start;
        padding: 10px 40px 9px;
    }
}
@media screen and (max-width: 500px) {
    .popup-wrapper {
        overflow-y: auto;
        padding: 25px 15px 40px;
        align-items: flex-start;
    }
}
@media screen and (max-width: 465px) {
    .add-new-profile-popup-type-wrapper {
        overflow-x: scroll;
    }
    .add-new-profile-popup-type-wrapper::-webkit-scrollbar {
        height: 0;
    }
}
@media screen and (max-width: 435px) {
    .search-header {
        overflow-x: scroll;

    }
    .search-header::-webkit-scrollbar {
        height: 0;
    }
    .list-header-filter-scroll {
        /*overflow-x: scroll;*/
        /*overflow-y: hidden;*/
        width: 100%;
    }
    .list-header-filter-scroll::-webkit-scrollbar {
        height: 0;
    }
}
.review-box-info-text {
    white-space: nowrap;
}
.review-box-info-text a {
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: middle;
    width: max-content;
    max-width: calc(100% - 105px - 40%);
}
.review-box-info-text a:first-child {
    max-width: 40%;
}

.profile .profile-reviews-wrapper .review-box-info-text a:first-child {
    max-width: 100%;
}
.review-box-info-text span {
    vertical-align: middle;
}
.list-table-row .list-table-item span:last-child {
    text-overflow: ellipsis;
    max-width: -webkit-fill-available;
    overflow: hidden;
}
@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;
    }

    .more-rate-info-popup-wrapper {
        flex-direction: column;
    }
    .more-rate-info-popup-left {
        width: 100%;
        padding: 0;
        display: flex;
        margin-bottom: 10px;
        flex-direction: column;
        align-items: center;
    }
    .more-rate-info-popup-right {
        width: 100%;
    }
}
@media screen and (max-width: 415px) {
    /*.review-box-info-text a {*/
    /*    max-width: 100px;*/
    /*}*/
    /*.profile-reviews-wrapper .review-box-info-text a {*/
    /*    max-width: unset;*/
    /*}*/
}
@media screen and (max-width: 375px) {
    /*.review-box-info-text a {*/
    /*    max-width: 80px;*/
    /*}*/
    /*.profile-reviews-wrapper .review-box-info-text a {*/
    /*    max-width: unset;*/
    /*}*/
    .review-box-info-text a {
        text-overflow: ellipsis;
        overflow: hidden;
        vertical-align: middle;
        width: max-content;
        max-width: calc(100% - 105px - 30%);
    }
    .review-box-info-text a:first-child {
        max-width: 30%;
    }
    .profile .profile-reviews-wrapper .review-box-info-text a:first-child {
        max-width: 100%;
    }
}

@media screen and (max-width: 325px) {
    .main-top-rated__item-name {
        max-width: 130px;
    }
    /*.review-box-info-text a {*/
    /*    text-overflow: ellipsis;*/
    /*    max-width: 70px;*/
    /*    overflow: hidden;*/
    /*}*/
    /*.profile-reviews-wrapper .review-box-info-text a {*/
    /*    max-width: unset;*/
    /*}*/
}
