.gu-circle-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 100%;
}
.gu-circle-card-wrapper.gu-card-wrapper-scrollable {
    flex-wrap: nowrap;
    overflow-x: auto;
}
@media (max-width: 1280px) {
    .gu-circle-card-wrapper.gu-card-wrapper-scrollable .gu-circle-card {
        min-width: 343px;
    }
}

.gu-circle-card {
    height: 460px;
    width: auto;
    min-width: 343px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #cf3c1a;
    box-shadow: 0 4px 24px rgba(0, 43, 67, 0.08);
    border-radius: 2px;
    /* margin: 10px; */
}

.gu-circle-card.gu-circle-card-team {
    height: 460px;
}

/* @media (min-width: 768px) {
    .gu-circle-card {
        max-width: 47%;
    }
}
@media (min-width: 1080px) {
    .gu-circle-card {
        max-width: 31.2%;
    }
}*/
/* @media (min-width: 1281px) {
    .gu-circle-card {
        max-width: 31.3%;
    }
} */
@media (min-width: 1480px) {
    .gu-circle-card {
        width: 100%;
        max-width: 343px;
    }
}
.gu-circle-card__top-image {
    position: relative;
}
.gu-circle-card__top-image:hover .gu-card-hover-area {
    display: flex;
    justify-content: space-between;
}
.gu-circle-card__top-image img {
    border-radius: 2px 2px 0 0;
    width: 100%;
    height: 140px;
    -o-object-fit: cover;
    object-fit: cover;
}
.gu-circle-card__top-image .gu-card-hover-area {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
}
.gu-circle-card__top-image .gu-card-hover-area-always-visible {
    display: flex;
    justify-content: space-between;
}
.gu-circle-card .gu-card {
    padding: 16px;
    font-family: Proxima Nova, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
}
.gu-circle-card .gu-card-content {
    flex-grow: 1;
    position: relative;
    padding-bottom: 0;
}
.gu-circle-card .gu-card-content .gu-rating-wrapper {
    display: flex;
    flex-direction: row-reverse;
}
.gu-circle-card .gu-card-content .gu-circle-text-preview {
    display: flex;
    flex-direction: column;
    max-height: 200px;
}

.gu-circle-card .gu-card-content .gu-circle-text-preview.gu-circle-text-preview-team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 200px;
    top: 60px;
    position: relative;
}

.gu-circle-card .gu-card-content .gu-circle-text-preview h1,
.gu-circle-card .gu-card-content .gu-circle-text-preview h2,
.gu-circle-card .gu-card-content .gu-circle-text-preview h3,
.gu-circle-card .gu-card-content .gu-circle-text-preview h4,
.gu-circle-card .gu-card-content .gu-circle-text-preview h5 {
    margin-top: 0;
}
.gu-circle-card .gu-card-content .gu-circle-text-preview__header {
    margin: 0 0 8px;
    color: #002b43;
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}
.gu-circle-card .gu-card-content .gu-circle-text-preview__text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    padding-bottom: 3px;
}
.gu-circle-card .gu-card-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #879499;
    font-size: 12px;
    line-height: 18px;
    padding-top: 4px;
}
.gu-circle-card .gu-card-bottom__members {
    max-width: 50%;
    margin-right: 10px;
}
.gu-circle-card .gu-card-bottom__members b {
    color: #464646;
}
.gu-circle-card .gu-card-bottom__button .gu-main-link-form-fill {
    min-width: 142px;
    height: 46px;
    text-decoration: none;
}

.gu-d-flex {
    display: flex;
}
.gu-d-flex.gu-direction-row {
    flex-direction: row;
}
.gu-d-flex.gu-direction-row-reverse {
    flex-direction: row-reverse;
}
.gu-d-flex.gu-direction-column {
    flex-direction: column;
}
.gu-d-flex.gu-direction-column-reverse {
    flex-direction: column-reverse;
}
.gu-d-flex.gu-justify-center {
    justify-content: center;
}
.gu-d-flex.gu-justify-between {
    justify-content: space-between;
}
.gu-d-flex.gu-justify-around {
    justify-content: space-around;
}
.gu-d-flex.gu-justify-start {
    justify-content: flex-start;
}
.gu-d-flex.gu-justify-end {
    justify-content: flex-end;
}
.gu-d-flex.gu-align-center {
    align-items: center;
}

.gu-close-icon {
    background: rgba(180, 180, 180, 0.8);
    box-shadow: 0px 4px 4px rgba(145, 145, 145, 0.25);
}

.gu-round-btn:not(:last-child) {
    margin-right: 10px;
}

.gu-round-btn {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.gu-round-btn:hover {
    cursor: pointer;
    background: #f1f1f1;
}
.gu-round-btn__number {
    font-size: 10px;
    line-height: 10px;
    margin-top: 4px;
    color: #fff;
}

.gu-post-bookmark i {
    color: #c4c4c4;
}
.gu-post-bookmark.gu-bookmark-active {
    background: #8fbb23;
}
.gu-post-bookmark.gu-bookmark-active i {
    color: #fff;
}

.gu-card-banner {
    position: absolute;
    background: #fff;
    top: -32px;
    left: 20px;
    height: 90px;
    width: 90px;
    padding: 5px;
    border-radius: 50%;
    margin: 0 15px 20px 0;
}
.gu-card-banner__badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    right: -17px;
    height: 30px;
    width: 44px;
    background: #11bb59;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
    line-height: 22px;
}
.gu-card-banner__badge.badge-checkmark {
    background: #fff;
    height: 40px;
    width: 40px;
    padding: 3px;
    box-shadow: 2px 4px 12px rgba(0, 15, 70, 0.14);
}
.gu-card-banner__badge.badge-checkmark .badge-checkmark-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #c4c4c4;
    border-radius: 50%;
}
.gu-card-banner__badge.badge-checkmark .badge-checkmark-wrapper.checkmark-done {
    background: #8fbb23;
}
.gu-card-banner__badge.badge-checkmark .badge-checkmark-wrapper svg {
    width: 22px;
    height: 16px;
}
.gu-card-banner__badge.badge-checkmark .badge-checkmark-wrapper img {
    width: 22px;
    height: 16px;
}
.gu-card-banner-header {
    padding: 8px;
    height: 140px;
    width: 140px;
    top: -88px;
    left: calc(50% - 70px);
}
@media (min-width: 768px) {
    .gu-card-banner-header {
        top: -112px;
        left: 70px;
    }
}
.gu-card-banner img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

.elevation-1 {
    box-shadow: 5px 4px 34px rgba(34, 45, 63, 0.09);
}

.elevation-1.elevation-1-team {
    top: -60px;
    width: 120px;
    margin: 0px;
    left: calc(50% - 60px);
    height: 120px;
}

.gu-rating-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}
.gu-rating-block.gu-rating-one-line {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.gu-rating-block.gu-rating-one-line .gu-main-card-middle-rating-block {
    margin-right: 12px;
    padding-bottom: 0;
}
.gu-rating-block-reviews a {
    color: #879499;
    font-size: 12px;
}
.gu-rating-block-reviews a:hover {
    text-decoration: underline !important;
}
.gu-rating-block .gu-main-card-middle-rating-block {
    display: flex;
    align-items: baseline;
    padding-bottom: 5px;
}
.gu-rating-block .gu-main-card-middle-rating-block .gu-main-card-middle-rating {
    height: 14px;
    position: relative;
    width: 70px;
}
.gu-rating-block .gu-main-card-middle-rating-block .gu-main-card-middle-rating:before {
    background-image: url('../images/community/grey-star.svg');
    background-repeat: repeat-x;
    background-size: 14px;
    bottom: 0;
    content: '';
    display: block;
    height: 14px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
}
.gu-rating-block .gu-main-card-middle-rating-block .gu-main-card-middle-rating > span {
    display: block;
    text-indent: -10000px;
    width: 70px;
    height: 14px;
    position: absolute;
    overflow: hidden;
}
.gu-rating-block .gu-main-card-middle-rating-block .gu-main-card-middle-rating > span:before {
    background-image: url('../images/community/yellow-star.svg');
    background-repeat: repeat-x;
    background-size: 14px;
    bottom: 0;
    content: '';
    display: block;
    height: 14px;
    left: 0;
    position: absolute;
    right: 0;
    text-indent: 10000px;
    top: 0;
}
.gu-rating-block .gu-main-card-middle-rating-block .gu-main-card-middle-rating-number {
    font-size: 18px;
    margin-left: 10px;
    color: #ffc107;
    font-weight: 700;
}
@media (min-width: 768px) and (max-width: 1279px) {
    .gu-rating-block .gu-main-card-middle-rating-block .gu-main-card-middle-rating-number {
        margin-left: 5px;
    }
}

.gu-duo-banner-circle-name .gu-circle-location {
    font-size: 16px;
    line-height: 26px;
    color: #879499;
}

.gu-bg-orange.gu-main-link-form-fill:hover,
.gu-bg-orange.gu-main-link-form-fill:focus {
    background: #d64903 !important;
}

.gu-bg-primary.gu-main-link-form-fill:hover,
.gu-bg-primary.gu-main-link-form-fill:focus {
    background: #123556 !important;
}

.gu-bg-green.gu-main-link-form-fill:hover,
.gu-bg-green.gu-main-link-form-fill:focus {
    background: #799e1e !important;
}

.gu-bg-white.gu-main-link-form-fill {
    color: #000;
}
.gu-bg-white.gu-main-link-form-fill:hover,
.gu-bg-white.gu-main-link-form-fill:focus {
    background: #cecece !important;
}

.gu-main-link-form-fill {
    outline: none;
    background: #cecece;
    color: #fff;
    text-align: center;
    min-width: 168px;
    max-width: 100%;
    max-height: 46px;
    width: 100%;
    border: none;
    border-radius: 1px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
}
.gu-main-link-form-fill:hover,
.gu-main-link-form-fill:focus {
    background-color: #888686;
    color: #fff;
    transition: background 0.3s ease;
}
@media (min-width: 768px) {
    .gu-main-link-form-fill {
        max-width: 248px;
        margin-top: 0;
    }
}

.gu-overlap-area {
    display: flex;
}
.gu-overlap-area .gu-overlap-element:hover {
    z-index: 100;
}
.gu-overlap-area .gu-overlap-element:not(:first-child) {
    margin-left: -24px;
}
.gu-overlap-area .gu-overlap-element:not(:last-child) {
    margin-right: 0 !important;
}

.gu-z-index.z-1.gu-overlap-element {
    position: absolute;
    left: 0;
}

.gu-z-index.z-2.gu-overlap-element {
    position: absolute;
    left: 5%;
}

.gu-overlap-area .gu-overlap-element:hover {
    z-index: 100;
}
.gu-overlap-area .gu-overlap-element:not(:first-child) {
    margin-left: -24px;
}
.gu-overlap-area .gu-overlap-element:not(:last-child) {
    margin-right: 0 !important;
}

.gu-bg-blue {
    background: #3081ce !important;
}
.gu-bg-yellow {
    background: #f0c20c !important;
}
.gu-bg-green {
    background: #27ae60 !important;
}
.gu-bg-purple {
    background: #bb6bd9 !important;
}

.gu-bg-orange {
    background: #f05203 !important;
}
.gu-bg-orange.gu-main-link-form-fill:hover,
.gu-bg-orange.gu-main-link-form-fill:focus {
    background: #d64903 !important;
}

.gu-pa-0 {
    padding: 0 !important;
}
.gu-pa-1 {
    padding: 4px !important;
}
.gu-pa-2 {
    padding: 8px !important;
}
.gu-pa-3 {
    padding: 12px !important;
}
.gu-pa-4 {
    padding: 16px !important;
}
.gu-pa-5 {
    padding: 20px !important;
}
.gu-pl-0 {
    padding-left: 0 !important;
}
.gu-pl-1 {
    padding-left: 4px !important;
}
.gu-pl-2 {
    padding-left: 8px !important;
}
.gu-pl-3 {
    padding-left: 12px !important;
}
.gu-pl-4 {
    padding-left: 16px !important;
}
.gu-pl-5 {
    padding-left: 20px !important;
}
.gu-pr-0 {
    padding-right: 0 !important;
}
.gu-pr-1 {
    padding-right: 4px !important;
}
.gu-pr-2 {
    padding-right: 8px !important;
}
.gu-pr-3 {
    padding-right: 12px !important;
}
.gu-pr-4 {
    padding-right: 16px !important;
}
.gu-pr-5 {
    padding-right: 20px !important;
}
.gu-pt-0 {
    padding-top: 0 !important;
}
.gu-pt-1 {
    padding-top: 4px !important;
}
.gu-pt-2 {
    padding-top: 8px !important;
}
.gu-pt-3 {
    padding-top: 12px !important;
}
.gu-pt-4 {
    padding-top: 16px !important;
}
.gu-pt-5 {
    padding-top: 20px !important;
}
.gu-pb-0 {
    padding-bottom: 0 !important;
}
.gu-pb-1 {
    padding-bottom: 4px !important;
}
.gu-pb-2 {
    padding-bottom: 8px !important;
}
.gu-pb-3 {
    padding-bottom: 12px !important;
}
.gu-pb-4 {
    padding-bottom: 16px !important;
}
.gu-pb-5 {
    padding-bottom: 20px !important;
}
.gu-ma-0 {
    margin: 0 !important;
}
.gu-ma-1 {
    margin: 4px !important;
}
.gu-ma-2 {
    margin: 8px !important;
}
.gu-ma-3 {
    margin: 12px !important;
}
.gu-ma-4 {
    margin: 16px !important;
}
.gu-ma-5 {
    margin: 20px !important;
}
.gu-ml-0 {
    margin-left: 0 !important;
}
.gu-ml-1 {
    margin-left: 4px !important;
}
.gu-ml-2 {
    margin-left: 8px !important;
}
.gu-ml-3 {
    margin-left: 12px !important;
}
.gu-ml-4 {
    margin-left: 16px !important;
}
.gu-ml-5 {
    margin-left: 20px !important;
}
.gu-mr-0 {
    margin-right: 0 !important;
}
.gu-mr-1 {
    margin-right: 4px !important;
}
.gu-mr-2 {
    margin-right: 8px !important;
}
.gu-mr-3 {
    margin-right: 12px !important;
}
.gu-mr-4 {
    margin-right: 16px !important;
}
.gu-mr-5 {
    margin-right: 20px !important;
}
.gu-mt-0 {
    margin-top: 0 !important;
}
.gu-mt-1 {
    margin-top: 4px !important;
}
.gu-mt-2 {
    margin-top: 8px !important;
}
.gu-mt-3 {
    margin-top: 12px !important;
}
.gu-mt-4 {
    margin-top: 16px !important;
}
.gu-mt-5 {
    margin-top: 20px !important;
}
.gu-mb-0 {
    margin-bottom: 0 !important;
}
.gu-mb-1 {
    margin-bottom: 4px !important;
}
.gu-mb-2 {
    margin-bottom: 8px !important;
}
.gu-mb-3 {
    margin-bottom: 12px !important;
}
.gu-mb-4 {
    margin-bottom: 16px !important;
}
.gu-mb-5 {
    margin-bottom: 20px !important;
}

.gu-tag-block {
    height: 30px;
    display: flex;
    align-items: center;
    background: #29b6f6;
    padding: 5px 12px;
    border-radius: 1px;
    color: #f7f8fa;
    font-weight: 700;
    font-size: 12px;
}

.gu-tags-line-grey .gu-tag-block {
    color: #fff;
    background: #aaa7a6;
    /* height: 26px; */
}

.gu-ellipsis-svg {
    line-height: 26px;
}

.gu-card-row__image {
    padding: 2px;
    max-width: 44px;
    max-height: 44px;
}
.gu-card-row__image-36 {
    max-width: 36px;
    max-height: 36px;
}

.gu-static {
    position: static !important;
}

.gu-card-header {
    color: #002b43 !important;
    font-size: 12px;
    font-weight: 600;
    /* text-decoration: underline; */
}

.gu-card-subheader {
    color: #879499;
    font-size: 12px;
    font-weight: 400;
}

.gu-circle-card-article {
    border: 1px solid #8fbb23;
    box-sizing: border-box;
    box-shadow: 0px 4px 24px rgba(0, 43, 67, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.gu-round-image-block {
    border-radius: 50%;
    box-shadow: 2px 4px 12px rgba(0, 15, 70, 0.14);
}
.gu-round-image-block img {
    border-radius: 50%;
}

.gu-article-line__clamp--2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media only screen and (max-width: 1250px) {
    .gu-article-line__clamp--2 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

.gu-article-line__clamp--3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
