/*! core.scss | Friendkit | © Css Ninja. 2018-2019 */


/*! _colors.scss | Friendkit | © Css Ninja. 2018-2019 */


/*! _pageloader.scss | Friendkit | © Css Ninja. 2018-2019 */

.pageloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fafafa;
    z-index: 999998;
    opacity: 0;
    transition: -webkit-opacity 0.35s ease-out;
    transition: opacity 0.35s ease-out;
    transition: opacity 0.35s ease-out, -webkit-transform 0.35s ease-out;
    will-change: opacity;
    pointer-events: none
}

.pageloader.is-active {
    opacity: 1
}

.pageloader::after,
.pageloader::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    border-radius: 100%;
    content: "";
    z-index: 999999
}

.pageloader::after {
    margin-top: -100px;
    margin-left: -100px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 95, 89, 0.5);
    border: 3px solid rgba(255, 95, 89, 0.75);
    -webkit-animation: page-loader-inner 1.5s infinite ease-out;
    animation: page-loader-inner 1.5s infinite ease-out
}

.pageloader::before {
    margin-top: -30px;
    margin-left: -30px;
    width: 60px;
    height: 60px;
    background-color: #ff5f59;
    -webkit-animation: page-loader-outer 1.5s infinite ease-in;
    animation: page-loader-outer 1.5s infinite ease-in
}

@-webkit-keyframes page-loader-inner {
    0%,
    40% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@keyframes page-loader-inner {
    0%,
    40% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes page-loader-outer {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    100%,
    40% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}

@keyframes page-loader-outer {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    100%,
    40% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}

.infraloader {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: -1;
    opacity: 0;
    transition: opacity .35s
}

.infraloader.is-active {
    opacity: 1;
    z-index: 999997
}

.infraloader.is-full {
    width: 100% !important;
    left: 0 !important
}

@media (max-width: 767px) {
    .pageloader,
    .infraloader {
        width: 100% !important;
        left: 0 !important
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .pageloader,
    .infraloader {
        width: 100% !important;
        left: 0 !important
    }
}


/*! _layout.scss | Friendkit | © Css Ninja. 2018-2019 */

body {
    background: #f4f4f4 !important;
    height: 100%;
    width: 100%;
    min-height: 100vh;
    font-family: Roboto, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: #344258
}

body.is-frozen {
    overflow: hidden !important;
    position: fixed;
    top: 0;
    left: 0
}

body.is-white {
    background: #fff !important
}

.app-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
    opacity: 0
}

.app-overlay.is-active {
    opacity: 1 !important;
    z-index: 1000 !important
}

.container.is-fluid {
    margin: 0 !important
}

.view-wrapper {
    padding: 60px 12px;
    transition: all .3s
}

.view-wrapper.is-side {
    width: calc(100% - 70px);
    margin-left: 70px
}

.view-wrapper.is-full {
    padding: 60px 0 0 0
}

.view-wrapper .view-wrap {
    padding: 20px 0
}

.view-wrapper .view-wrap.is-headless {
    padding-top: 10px
}

.inbox-wrapper {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    height: calc(100% - 58px)
}

#profile {
    padding: 80px 0
}

.main-container {
    width: 100%;
    transition: all .3s
}

.main-container.has-sidebar {
    width: calc(100% - 300px);
    margin-left: 300px
}

.columns.no-mb {
    margin-bottom: 0 !important
}

.column.is-paddingless {
    padding: 0
}

.column.no-padding-left {
    padding-left: 0
}

.column.no-padding-right {
    padding-right: 0
}

.card-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.card-row .card-flex {
    width: calc(25% - 16px);
    margin: 8px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 6px
}

.footer {
    background: #fafafa;
    padding-bottom: 6rem !important;
    padding-top: 6rem !important
}

.footer .social-links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.footer .social-links a {
    color: #999;
    margin: 0 5px
}

.footer .social-links a:hover {
    color: #0062ff
}

.footer .footer-description {
    color: #999
}

.footer .footer-column {
    padding-top: 20px
}

.footer .footer-column .column-header {
    font-family: Montserrat, sans-serif;
    text-transform: uppercase;
    color: #0062ff;
    font-size: 1rem;
    font-weight: 700;
    margin: 10px 0
}

.footer .footer-column .column-item {
    padding-bottom: 10px
}

.footer .footer-column .column-item a {
    color: #999
}

.footer .footer-column .column-item a:hover {
    color: #ff5f59
}

.footer .moto {
    display: block;
    color: #999;
    margin-top: 12px;
    font-size: .9rem
}

.footer .moto svg {
    display: inline-block;
    height: 14px;
    width: 14px;
    stroke: #FF7273;
    fill: #FF7273
}

.footer .small-footer-logo {
    height: 55px
}

.copyright {
    background: #fafafa
}

.copyright .inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0
}

.copyright .inner .left {
    font-size: .9rem;
    color: #999
}

.copyright .inner .right img {
    display: block;
    width: 108px;
    margin-left: 20px
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .footer {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }
    .footer .columns .column.is-4 {
        text-align: center
    }
    .footer .columns .column.is-4>div {
        max-width: 430px;
        margin: 20px auto
    }
    .footer .columns .column.is-4 .moto {
        margin: 0
    }
    .footer .columns .column.is-offset-2 .columns {
        display: -ms-flexbox;
        display: flex;
        text-align: center
    }
    .footer .columns .column.is-offset-2 .columns .footer-column {
        padding: 0
    }
    .copyright .inner {
        -ms-flex-pack: center;
        justify-content: center
    }
}


/*! _layout-sidebar.scss | Friendkit | © Css Ninja. 2018-2019 */

.filters-panel {
    position: fixed;
    top: 107px;
    left: 0;
    height: calc(100% - 107px);
    width: 300px;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all .3s;
    z-index: 2
}

.filters-panel.is-active {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.filters-panel .panel-inner {
    position: relative;
    width: 100%
}

.filters-panel .panel-inner .panel-title {
    font-family: Montserrat, sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: #999;
    padding: 20px;
    border-bottom: 1px solid #e8e8e8
}

.filters-panel .panel-inner .filter-block {
    padding: 20px;
    border-bottom: 1px solid #e8e8e8
}

.filters-panel .panel-inner .filter-block label {
    display: block;
    font-size: .7rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #393a4f
}

.filters-panel .panel-inner .filter-block .age-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.filters-panel .panel-inner .filter-block .age-wrap .separator {
    text-align: center;
    padding: 0 8px;
    font-size: .7rem;
    text-transform: uppercase;
    color: #999
}

.filters-panel .panel-inner .filter-block .age-wrap .field {
    margin-bottom: 0;
    max-width: 60px
}

.filters-panel .panel-inner .filter-block .age-wrap .field .control input {
    height: 30px;
    text-align: center
}

.filters-panel .panel-inner .filter-block .age-wrap .field .control input:focus {
    border-color: #757a91
}


/*! _placeholders.scss | Friendkit | © Css Ninja. 2018-2019 */

.placeload {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    background: #fff
}

.placeload.is-bold {
    border: none;
    background: none
}

.placeload .inner-wrap {
    width: 100%
}

.placeload .content-shape {
    height: 10px;
    margin-bottom: 10px;
    border-radius: 2px
}

.placeload .content-shape.is-lg {
    height: 16px
}

.placeload .button-shape {
    width: 130px;
    height: 38px;
    border-radius: 4px
}

.loads {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: placeload;
    animation-name: placeload;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: #eee;
    background: linear-gradient(to right, #eee 8%, #ddd 18%, #eee 33%);
    background-size: 1200px 104px;
    position: relative
}

@-webkit-keyframes placeload {
    0% {
        background-position: -468px 0
    }
    100% {
        background-position: 468px 0
    }
}

@keyframes placeload {
    0% {
        background-position: -468px 0
    }
    100% {
        background-position: 468px 0
    }
}

.compose-placeload {
    height: 226px;
    margin-bottom: 20px;
    padding: 20px
}

.compose-placeload .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    margin-bottom: 1rem
}

.compose-placeload .header .content-shape {
    width: 20%;
    margin-right: 8%
}

.compose-placeload .body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: start;
    height: 100px;
    padding: 16px 0
}

.compose-placeload .body .img {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%
}

.compose-placeload .body .content-shape {
    margin-top: 10px;
    margin-left: 20px
}

.compose-placeload .body .content-shape:first-child {
    width: 45%
}

.compose-placeload .body .content-shape:nth-child(2) {
    width: 25%
}

.post-placeload {
    background: #fff;
    width: 100%;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    position: relative;
    margin-bottom: 20px
}

.post-placeload .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.post-placeload .header .img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%
}

.post-placeload .header .header-content {
    margin-left: 20px;
    width: 100%
}

.post-placeload .header .header-content .content-shape:first-child {
    width: 60%
}

.post-placeload .header .header-content .content-shape:nth-child(2) {
    width: 40%
}

.post-placeload .image-placeholder {
    width: 100%;
    margin-top: 20px;
    height: 350px
}

.post-placeload .placeholder-footer {
    position: relative;
    margin-top: 20px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.post-placeload .placeholder-footer .footer-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%
}

.post-placeload .placeholder-footer .footer-block .img {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%
}

.post-placeload .placeholder-footer .footer-block .inner-wrap {
    margin-left: 10px
}

.post-placeload .placeholder-footer .footer-block .inner-wrap .content-shape:first-child {
    width: 32%
}

.post-placeload .placeholder-footer .footer-block .inner-wrap .content-shape:nth-child(2) {
    width: 24%
}

.stories-placeload,
.list-placeload {
    height: 382px;
    padding: 20px;
    margin-bottom: 20px
}

.stories-placeload .header,
.list-placeload .header {
    height: 48px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.stories-placeload .header .content-shape,
.list-placeload .header .content-shape {
    width: 55%
}

.stories-placeload .body .flex-block,
.list-placeload .body .flex-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    height: 76px
}

.stories-placeload .body .flex-block .img,
.list-placeload .body .flex-block .img {
    height: 44px;
    width: 44px;
    min-width: 44px;
    border-radius: 50%
}

.stories-placeload .body .flex-block .inner-wrap,
.list-placeload .body .flex-block .inner-wrap {
    padding: 0 10px
}

.stories-placeload .body .flex-block .inner-wrap .content-shape:first-child,
.list-placeload .body .flex-block .inner-wrap .content-shape:first-child {
    width: 78%
}

.stories-placeload .body .flex-block .inner-wrap .content-shape:nth-child(2),
.list-placeload .body .flex-block .inner-wrap .content-shape:nth-child(2) {
    width: 54%
}

.mini-widget-placeload {
    height: 323px;
    padding: 20px;
    margin-bottom: 20px
}

.mini-widget-placeload .body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 283px
}

.mini-widget-placeload .body .img {
    margin-top: -20px;
    height: 50px;
    width: 50px;
    min-width: 45px;
    border-radius: 50%;
    margin: 0 auto 20px auto
}

.mini-widget-placeload .body .content-shape {
    margin: 0 auto 12px auto
}

.mini-widget-placeload .body .content-shape:nth-child(2) {
    width: 38%
}

.mini-widget-placeload .body .content-shape:nth-child(3) {
    width: 88% !important
}

.mini-widget-placeload .body .content-shape:nth-child(4) {
    width: 64% !important
}

.mini-widget-placeload .body .button-shape {
    margin: 24px auto 0 auto
}

.weather-widget-placeload {
    height: 450px;
    padding: 20px;
    margin-bottom: 20px
}

.weather-widget-placeload .header {
    height: 220px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.weather-widget-placeload .header .inner-wrap .img {
    height: 60px;
    width: 60px;
    min-width: 45px;
    border-radius: 50%;
    margin: 0 auto 20px auto
}

.weather-widget-placeload .header .inner-wrap .content-shape {
    margin: 0 auto 12px auto
}

.weather-widget-placeload .header .inner-wrap .content-shape:nth-child(2) {
    width: 44%
}

.weather-widget-placeload .header .inner-wrap .content-shape:nth-child(3) {
    width: 88% !important
}

.weather-widget-placeload .body {
    height: 170px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.weather-widget-placeload .body .inner-wrap .rect {
    height: 85px;
    width: 100%;
    min-width: 100%;
    border-radius: 4px;
    margin: 0 auto 30px auto
}

.weather-widget-placeload .body .inner-wrap .content-shape {
    margin: 12px auto
}

.weather-widget-placeload .body .inner-wrap .content-shape:nth-child(2) {
    width: 88%
}

.weather-widget-placeload .body .inner-wrap .content-shape:nth-child(3) {
    width: 44%
}

.questions-menu-placeload {
    width: 100%
}

.questions-menu-placeload .inner-wrap .content-shape {
    height: 22px;
    margin-bottom: 16px
}

.questions-menu-placeload .inner-wrap .content-shape:first-child {
    max-width: 90%
}

.questions-menu-placeload .inner-wrap .content-shape:nth-child(2) {
    max-width: 50%
}

.questions-menu-placeload .inner-wrap .content-shape:nth-child(3) {
    max-width: 65%
}

.questions-menu-placeload .inner-wrap .content-shape:nth-child(4) {
    max-width: 20%
}

.questions-settings-placeload {
    width: 100%
}

.questions-settings-placeload.is-card {
    padding: 30px;
    margin-top: 30px
}

.questions-settings-placeload.is-card .content-shape:nth-child(4) {
    margin-bottom: 0
}

.questions-settings-placeload .inner-wrap .content-shape {
    height: 18px;
    margin-bottom: 16px
}

.questions-settings-placeload .inner-wrap .content-shape:first-child {
    max-width: 30%
}

.questions-settings-placeload .inner-wrap .content-shape:nth-child(2) {
    max-width: 60%
}

.questions-settings-placeload .inner-wrap .content-shape:nth-child(3) {
    max-width: 75%
}

.questions-settings-placeload .inner-wrap .content-shape:nth-child(4) {
    max-width: 30%
}

.questions-side-placeload {
    width: 100%;
    padding: 30px;
    margin-bottom: 20px
}

.questions-side-placeload:last-child {
    margin-bottom: 0
}

.questions-side-placeload .inner-wrap .img {
    height: 60px;
    width: 60px;
    min-width: 45px;
    border-radius: 50%;
    margin: 0 auto 20px auto
}

.questions-side-placeload .inner-wrap .content-shape {
    height: 14px;
    margin-bottom: 16px
}

.questions-side-placeload .inner-wrap .content-shape:nth-child(2) {
    max-width: 70%
}

.questions-side-placeload .inner-wrap .content-shape:nth-child(3) {
    max-width: 90%
}

.questions-side-placeload .inner-wrap .content-shape:nth-child(4) {
    max-width: 40%;
    margin-bottom: 0
}

.questions-single-placeload {
    width: 100%
}

.questions-single-placeload.is-header.is-spaced {
    margin-top: 30px
}

.questions-single-placeload.is-header .content-shape:first-child {
    max-width: 70%;
    height: 18px
}

.questions-single-placeload.is-card {
    padding: 30px;
    margin-top: 30px
}

.questions-single-placeload.is-card .card-head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.questions-single-placeload.is-card .card-head .img {
    height: 40px;
    width: 40px;
    min-width: 40x;
    border-radius: 50%
}

.questions-single-placeload.is-card .card-head>.content-shape {
    width: 100%;
    height: 16px;
    max-width: 40%;
    margin: 0 0 0 12px
}

.questions-single-placeload.is-card .content-shape {
    margin-bottom: 16px
}

.questions-single-placeload.is-card .content-shape.is-body {
    height: 15px
}

.questions-single-placeload.is-card .content-shape.is-body:nth-child(2) {
    max-width: 80%
}

.questions-single-placeload.is-card .content-shape.is-body:nth-child(3) {
    max-width: 95%
}

.questions-single-placeload.is-card .content-shape.is-body:nth-child(4) {
    max-width: 60%
}

.questions-single-placeload.is-card .content-shape.is-body:last-child {
    margin-bottom: 0
}

.questions-stats-placeload {
    width: 100%
}

.questions-stats-placeload.is-header {
    margin-bottom: 20px;
    padding: 30px
}

.questions-stats-placeload.is-header .inner-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.questions-stats-placeload.is-header .inner-wrap .img {
    height: 80px;
    width: 80px;
    min-width: 80px;
    border-radius: 50%
}

.questions-stats-placeload.is-header .inner-wrap>div {
    width: 100%;
    margin-left: 20px
}

.questions-stats-placeload.is-header .inner-wrap .content-shape {
    width: 100%;
    height: 14px;
    max-width: 40%;
    margin-bottom: 12px
}

.questions-stats-placeload.is-header .inner-wrap .content-shape:first-child {
    max-width: 50%
}

.questions-stats-placeload.is-header .inner-wrap .content-shape:nth-child(2) {
    max-width: 30%
}

.questions-stats-placeload.is-header .inner-wrap .content-shape:nth-child(3) {
    max-width: 20%
}

.questions-stats-placeload.is-header .inner-wrap .content-shape:last-child {
    margin-bottom: 0
}

.questions-stats-placeload.is-carousel {
    border: none;
    background: none
}

.questions-stats-placeload.is-carousel .grid-title {
    padding: 14px 0
}

.questions-stats-placeload.is-carousel .grid-title .content-shape {
    height: 16px;
    max-width: 20%
}

.questions-stats-placeload.is-carousel .placeload-grid {
    display: -ms-flexbox;
    display: flex
}

.questions-stats-placeload.is-carousel .placeload-grid .grid-item {
    margin: 6px;
    width: calc(33% - 12px);
    height: 200px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px
}

.questions-stats-placeload.is-carousel .placeload-grid .grid-item .img {
    height: 60px;
    width: 60px;
    min-width: 60x;
    border-radius: 50%;
    margin: 30px auto
}

.questions-stats-placeload.is-carousel .placeload-grid .grid-item .shapes .content-shape {
    margin: 0 auto 10px;
    height: 12px
}

.questions-stats-placeload.is-carousel .placeload-grid .grid-item .shapes .content-shape:first-child {
    max-width: 70%
}

.questions-stats-placeload.is-carousel .placeload-grid .grid-item .shapes .content-shape:nth-child(2) {
    max-width: 30%
}

.questions-stats-placeload.is-activity {
    border: none;
    background: none;
    margin-top: 20px
}

.questions-stats-placeload.is-activity .activity-title {
    padding: 14px 0
}

.questions-stats-placeload.is-activity .activity-title .content-shape {
    height: 16px;
    max-width: 20%
}

.questions-stats-placeload.is-activity .unit-list {
    padding: 20px 0
}

.questions-stats-placeload.is-activity .unit-list .unit {
    display: -ms-flexbox;
    display: flex;
    padding-left: 12px;
    margin-bottom: 20px;
    margin-top: 10px
}

.questions-stats-placeload.is-activity .unit-list .unit:last-child {
    margin-bottom: 0
}

.questions-stats-placeload.is-activity .unit-list .unit .img {
    height: 44px;
    width: 44px;
    min-width: 44px;
    border-radius: 50%
}

.questions-stats-placeload.is-activity .unit-list .unit .unit-meta {
    width: 100%;
    margin-left: 20px
}

.questions-stats-placeload.is-activity .unit-list .unit .unit-meta .content-shape {
    height: 14px
}

.questions-stats-placeload.is-activity .unit-list .unit .unit-meta .content-shape:first-child {
    max-width: 60%
}

.questions-stats-placeload.is-activity .unit-list .unit .unit-meta .content-shape:nth-child(2) {
    max-width: 30%;
    height: 12px
}

.questions-stats-placeload.is-activity .unit-list .unit .unit-meta .content-shape:nth-child(3) {
    height: 10px;
    max-width: 20%
}

.questions-categories-placeload {
    width: 100%
}

.questions-categories-placeload .is-tile-placeload {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px
}

.questions-categories-placeload .is-tile-placeload.is-card {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.questions-categories-placeload .is-tile-placeload.is-card .img {
    max-width: 160px
}

.questions-categories-placeload .is-tile-placeload.is-card .placeload-content {
    margin-top: 0;
    margin-left: 30px;
    width: 100%
}

.questions-categories-placeload .is-tile-placeload.is-card .placeload-content .content-shape:first-child {
    max-width: 80%
}

.questions-categories-placeload .is-tile-placeload.is-card .placeload-content .content-shape:nth-child(2) {
    max-width: 60%
}

.questions-categories-placeload .is-tile-placeload.is-card .placeload-content .content-shape:nth-child(3) {
    max-width: 90%
}

.questions-categories-placeload .is-tile-placeload.is-card .placeload-content .content-shape:nth-child(4) {
    max-width: 40%
}

.questions-categories-placeload .is-tile-placeload .img {
    height: 140px;
    width: 100%;
    border-radius: 2px
}

.questions-categories-placeload .is-tile-placeload .placeload-content {
    margin-top: 30px
}

.questions-categories-placeload .is-tile-placeload .placeload-content .content-shape {
    height: 14px
}

.questions-categories-placeload .is-tile-placeload .placeload-content .content-shape:first-child {
    max-width: 80%
}

.questions-categories-placeload .is-tile-placeload .placeload-content .content-shape:nth-child(2) {
    max-width: 40%
}


/*! _cards.scss | Friendkit | © Css Ninja. 2018-2019 */

.card {
    position: relative;
    margin-bottom: 1.5rem;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    box-shadow: none
}

.card .card-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px
}

.card .card-heading .dropdown {
    margin-left: auto
}

.card .card-heading .dropdown .button {
    padding: 0;
    background: none;
    border: none
}

.card .card-heading .dropdown .button svg {
    stroke: #888da8
}

.card .card-heading .dropdown.is-light svg {
    stroke: #fff
}

.card .card-heading.is-bordered {
    border-bottom: 1px solid #e8e8e8
}

.card .card-heading.is-bordered h4 {
    font-size: .95rem;
    color: #757a91;
    font-weight: 500
}

.card .card-body {
    padding: 10px 16px
}

.card .card-body.no-padding {
    padding: 0
}

.card .card-footer {
    margin: 8px 16px 16px 16px;
    border-top: 1px solid #e8e8e8
}

.card.is-weather-card {
    background-color: #0062ff;
    background-color: -webkit-linear-gradient(to right, #c2e9fb, #a1c4fd);
    background-color: linear-gradient(to right, #c2e9fb, #a1c4fd)
}

.card.is-weather-card .card-heading .dropdown.is-spaced>div .button:hover {
    background: #004ac2 !important
}

.card.is-weather-card .card-body {
    padding-top: 0
}

.card.is-weather-card .temperature {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.card.is-weather-card .temperature span {
    position: relative;
    display: block;
    font-size: 2.6rem;
    font-weight: 500;
    color: #fff
}

.card.is-weather-card .temperature span:after {
    content: '';
    position: absolute;
    top: 10px;
    right: -18px;
    height: 14px;
    width: 14px;
    border: 2px solid #fff;
    border-radius: 50%
}

.card.is-weather-card .weather-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.card.is-weather-card .weather-icon div {
    text-align: center
}

.card.is-weather-card .weather-icon h4 {
    font-size: 1.4rem;
    color: #fff
}

.card.is-weather-card .weather-icon svg {
    stroke: #fff;
    height: 2.8rem;
    width: 2.8rem
}

.card.is-weather-card .weather-icon .details {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    font-size: .85rem;
    color: #fff
}

.card.is-weather-card .weather-icon .details span {
    display: block;
    margin: 0 10px
}

.card.is-weather-card .previsions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    margin: 20px 0
}

.card.is-weather-card .previsions .day {
    text-align: center;
    font-size: .7rem;
    color: #fff
}

.card.is-weather-card .previsions .day * {
    display: block
}

.card.is-weather-card .previsions .day span:first-child {
    text-transform: uppercase;
    font-size: .6rem;
    font-weight: 500
}

.card.is-weather-card .previsions .day svg {
    margin: 3px auto;
    height: 18px;
    width: 18px
}

.card.is-weather-card .current-date-location {
    margin-bottom: 20px
}

.card.is-weather-card .current-date-location span {
    display: block;
    color: #fff
}

.card.is-weather-card .current-date-location .date {
    font-size: 1.1rem;
    font-weight: 500
}

.card.is-weather-card .current-date-location .location {
    font-size: .8rem
}

.card.is-weather-card .current-date-location .location svg {
    height: 16px;
    width: 16px
}

.card.is-birthday-card {
    background-color: #ff645e
}

.card.is-birthday-card .card-heading {
    padding: 16px 16px 0 16px
}

.card.is-birthday-card .card-heading .dropdown.is-spaced>div .button:hover {
    background: #de0800 !important
}

.card.is-birthday-card .card-heading>svg {
    stroke: #fff
}

.card.is-birthday-card .card-body {
    padding: 16px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 290px
}

.card.is-birthday-card .card-body .birthday-avatar {
    position: relative;
    width: 45px;
    margin: 0 auto 16px auto
}

.card.is-birthday-card .card-body .birthday-avatar img {
    display: block;
    height: 45px;
    width: 45px;
    border-radius: 50%
}

.card.is-birthday-card .card-body .birthday-avatar .birthday-indicator {
    position: absolute;
    top: -6px;
    right: -14px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    border: 2px solid #ff645e;
    font-size: .7rem;
    color: #fff;
    font-weight: 500;
    background: #344258
}

.card.is-birthday-card .card-body .birthday-content {
    text-align: center;
    color: #fff
}

.card.is-birthday-card .card-body .birthday-content h4 {
    font-weight: 500
}

.card.is-birthday-card .card-body .birthday-content p {
    font-size: .9rem
}

.card.is-birthday-card .card-body .birthday-content button {
    line-height: 0;
    margin: 16px 0
}

.card.is-new-job-card {
    background-color: #ff645e
}

.card.is-new-job-card .card-heading {
    padding: 16px 16px 0 16px
}

.card.is-new-job-card .card-heading .dropdown.is-spaced>div .button:hover {
    background: #ff241c !important
}

.card.is-new-job-card .card-heading>svg {
    stroke: #fff
}

.card.is-new-job-card .card-body {
    padding: 16px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 290px
}

.card.is-new-job-card .card-body .job-avatar {
    position: relative;
    width: 45px;
    margin: 0 auto 16px auto
}

.card.is-new-job-card .card-body .job-avatar img {
    display: block;
    height: 45px;
    width: 45px;
    border-radius: 50%
}

.card.is-new-job-card .card-body .job-content {
    text-align: center;
    color: #fff
}

.card.is-new-job-card .card-body .job-content h4 {
    font-weight: 500
}

.card.is-new-job-card .card-body .job-content p {
    font-size: .9rem
}

.card.is-new-job-card .card-body .job-content button {
    line-height: 0;
    margin: 16px 0
}

.card.is-ad .card-body {
    position: relative;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center;
    align-items: center;
    padding: 14px
}

.card.is-ad .card-body img {
    display: block;
    max-width: 50% !important;
    -ms-flex-negative: 2;
    flex-shrink: 2
}

.card.is-ad .card-body .ad-text {
    padding-left: 10px;
    font-size: .85rem;
    font-weight: 500;
    margin-top: -20px
}

.card.is-ad .card-body .ad-brand {
    position: absolute;
    bottom: 12px;
    right: 14px;
    text-transform: uppercase;
    font-size: .65rem;
    color: #999
}


/*! _components-widgets.scss | Friendkit | © Css Ninja. 2018-2019 */

.schedule {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    margin: 10px 0 20px 0;
    overflow: visible;
    background: #fff
}

.schedule .schedule-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 16px 16px 0 16px
}

.schedule .schedule-header .month {
    text-align: center;
    padding: 4px 0;
    color: #393a4f;
    width: 40%;
    border-radius: 100px;
    cursor: pointer;
    transition: all .3s
}

.schedule .schedule-header .month:hover {
    background: #f5f5f5
}

.schedule .schedule-header .nav-icon {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s;
    cursor: pointer
}

.schedule .schedule-header .nav-icon:hover {
    background: #f5f5f5
}

.schedule .schedule-header .nav-icon svg {
    height: 20px;
    width: 20px;
    stroke: #999
}

.schedule .schedule-calendar {
    position: relative;
    padding: 20px 20px 40px 20px
}

.schedule .schedule-calendar .next-fab {
    position: absolute;
    bottom: -25px;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 50px;
    width: 50px;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: all .3s;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.schedule .schedule-calendar .next-fab:hover {
    background: #fcfcfc
}

.schedule .schedule-calendar .next-fab:hover svg {
    stroke: #0062ff
}

.schedule .schedule-calendar .next-fab.is-toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    box-shadow: none
}

.schedule .schedule-calendar .next-fab svg {
    height: 20px;
    width: 20px;
    transition: all .3s
}

.schedule .schedule-calendar .calendar-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.schedule .schedule-calendar .calendar-row:not(:first-of-type) {
    margin-top: 4px
}

.schedule .schedule-calendar .calendar-row .day {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    padding: 14px;
    color: #596367;
    border-radius: 50%;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.schedule .schedule-calendar .calendar-row .day:hover {
    background: #f5f5f5
}

.schedule .schedule-calendar .calendar-row .day.day-name {
    color: #869ba1
}

.schedule .schedule-calendar .calendar-row .day.event {
    position: relative;
    color: #fff
}

.schedule .schedule-calendar .calendar-row .day.event:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    z-index: -1;
    transition: -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out
}

.schedule .schedule-calendar .calendar-row .day.event.primary {
    background: #ff5f59
}

.schedule .schedule-calendar .calendar-row .day.event.primary:before {
    background: #ff5f59
}

.schedule .schedule-calendar .calendar-row .day.event.green {
    background: #1CE589
}

.schedule .schedule-calendar .calendar-row .day.event.green:before {
    background: #1CE589
}

.schedule .schedule-calendar .calendar-row .day.event.purple {
    background: #0062ff
}

.schedule .schedule-calendar .calendar-row .day.event.purple:before {
    background: #0062ff
}

.schedule .schedule-calendar .calendar-row .day.event.pink {
    background: #fa3275
}

.schedule .schedule-calendar .calendar-row .day.event.pink:before {
    background: #fa3275
}

.schedule .schedule-calendar .calendar-row .day.event.animate {
    position: static
}

.schedule .schedule-calendar .calendar-row .day.event.animate:before {
    top: 160px;
    left: 55px;
    z-index: 1;
    will-change: transform
}

.schedule .schedule-divider {
    height: 1px;
    background: #ededed
}

.schedule .schedule-events {
    padding: 16px;
    display: none;
    background: #fafafa
}

.schedule .schedule-events .schedule-events-title {
    margin-top: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: .75rem;
    color: #999
}

.schedule .schedule-events .schedule-event {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 16px
}

.schedule .schedule-events .schedule-event .event-date {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: .75rem;
    font-weight: 500;
    border-radius: 50%;
    color: #fff
}

.schedule .schedule-events .schedule-event .event-date.primary {
    background: #ff5f59
}

.schedule .schedule-events .schedule-event .event-date.green {
    background: #1CE589
}

.schedule .schedule-events .schedule-event .event-date.purple {
    background: #0062ff
}

.schedule .schedule-events .schedule-event .event-date.pink {
    background: #fa3275
}

.schedule .schedule-events .schedule-event .event-title {
    color: #596367;
    padding-left: 16px
}

.schedule .schedule-events .schedule-event .event-title span {
    display: block
}

.schedule .schedule-events .schedule-event .event-title span:first-child {
    font-size: .9rem;
    color: #393a4f
}

.schedule .schedule-events .schedule-event .event-title span:nth-child(2) {
    color: #999;
    font-size: .85rem
}

.schedule .schedule-events .button-wrap {
    margin-top: 16px
}

.schedule .schedule-day-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    z-index: 1;
    overflow: hidden
}

.schedule .schedule-day-container.animate-out {
    -webkit-animation: day-container-out 0.15s ease-out forwards;
    animation: day-container-out 0.15s ease-out forwards;
    will-change: transform
}

.schedule .schedule-day-container.hidden {
    z-index: -100
}

.schedule .schedule-day-container .day-header {
    position: relative;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 46px;
    padding: 16px;
    overflow: hidden;
    z-index: 2;
    transition: height 0.075s linear
}

.schedule .schedule-day-container .day-header.day-header--large {
    height: 200px
}

.schedule .schedule-day-container .day-header.day-header--large .day-header-content {
    font-weight: lighter;
    padding: 16px;
    height: 200px;
    padding-top: 46px
}

.schedule .schedule-day-container .day-header.day-header--large .day-header-content .day-header-title .day-header-title-day {
    font-size: 2.4rem;
    font-weight: 600
}

.schedule .schedule-day-container .day-header.day-header--large .day-header-content .day-header-title .day-header-title-month {
    font-size: 1rem;
    text-transform: uppercase
}

.schedule .schedule-day-container .day-header.day-header--large .day-header-content .day-header-event {
    font-size: 1.2rem;
    font-weight: 600;
    padding-top: 16px
}

.schedule .schedule-day-container .day-header .day-header-bg {
    position: absolute;
    top: 166px;
    left: 55px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    will-change: transform;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.schedule .schedule-day-container .day-header .day-header-bg.primary {
    background: #ff5f59
}

.schedule .schedule-day-container .day-header .day-header-bg.pink {
    background: #fa3275
}

.schedule .schedule-day-container .day-header .day-header-bg.purple {
    background: #0062ff
}

.schedule .schedule-day-container .day-header .day-header-bg.green {
    background: #1CE589
}

.schedule .schedule-day-container .day-header .day-header-bg.animate {
    -webkit-animation: day-header-grow 0.25s 0.05s ease-in-out forwards;
    animation: day-header-grow 0.25s 0.05s ease-in-out forwards
}

.schedule .schedule-day-container .day-header .day-header-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 18px;
    height: 18px;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.15s ease-out;
    z-index: 4
}

.schedule .schedule-day-container .day-header .day-header-close svg {
    height: 20px;
    width: 20px;
    stroke: #fcfcfc
}

.schedule .schedule-day-container .day-header .day-header-close.animate {
    opacity: 1
}

.schedule .schedule-day-container .day-header .day-header-content {
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 8px;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    color: #fff;
    z-index: 3;
    opacity: 0;
    -webkit-transform: translateY(18px);
    transform: translateY(18px)
}

.schedule .schedule-day-container .day-header .day-header-content.animate-in {
    -webkit-animation: day-header-content-in 0.15s ease-out forwards;
    animation: day-header-content-in 0.15s ease-out forwards
}

.schedule .schedule-day-container .day-header .day-header-content .day-header-title {
    font-weight: normal
}

.schedule .schedule-day-container .day-header .day-header-content .day-header-title .day-header-title-day,
.schedule .schedule-day-container .day-header .day-header-content .day-header-title .day-header-title-month {
    display: inline;
    vertical-align: baseline
}

.schedule .schedule-day-container .day-header .day-header-content .day-header-title .day-header-title-day {
    font-size: 18px
}

.schedule .schedule-day-container .day-header .day-header-content .day-header-title .day-header-title-month {
    font-size: 18px
}

.schedule .schedule-day-container .day-header .day-header-content .day-header-event {
    padding-top: 2px;
    font-size: 12px;
    font-weight: normal
}

.schedule .schedule-day-container .day-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 0;
    opacity: 0;
    padding-top: 216px;
    padding-left: 16px;
    padding-right: 16px;
    -webkit-transform: translateY(35px);
    transform: translateY(35px);
    background: #fff
}

.schedule .schedule-day-container .day-content.animate-in {
    -webkit-animation: day-content-animate-in 0.2s ease-out forwards;
    animation: day-content-animate-in 0.2s ease-out forwards
}

.schedule .schedule-day-container .day-content .event-details-wrap {
    display: none;
    padding: 20px 0
}

.schedule .schedule-day-container .day-content .event-details-wrap.is-active {
    display: block
}

.schedule .schedule-day-container .day-content .event-details-wrap .meta-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px
}

.schedule .schedule-day-container .day-content .event-details-wrap .meta-block i {
    font-size: 24px;
    color: #999
}

.schedule .schedule-day-container .day-content .event-details-wrap .meta-block .meta {
    margin-left: 20px
}

.schedule .schedule-day-container .day-content .event-details-wrap .meta-block .meta span {
    display: block
}

.schedule .schedule-day-container .day-content .event-details-wrap .meta-block .meta span:first-child {
    font-weight: 500;
    font-size: .9rem
}

.schedule .schedule-day-container .day-content .event-details-wrap .meta-block .meta span:nth-child(2) {
    font-size: .8rem;
    color: #999
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap {
    padding: 16px 0
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap label {
    display: block;
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 6px
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap .participants {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap .participants img {
    display: block;
    height: 53px;
    width: 53px;
    font-size: .8rem;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #e8e8e8
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap .participants img:not(:first-child):nth-child(1) {
    margin-left: -14px
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap .participants img:not(:first-child):nth-child(2) {
    margin-left: -14px
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap .participants img:not(:first-child):nth-child(3) {
    margin-left: -14px
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap .participants img:not(:first-child):nth-child(4) {
    margin-left: -14px
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap .participants img:not(:first-child):nth-child(5) {
    margin-left: -14px
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap .participants img:not(:first-child):nth-child(6) {
    margin-left: -14px
}

.schedule .schedule-day-container .day-content .event-details-wrap .participants-wrap .participants .is-more {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 53px;
    width: 53px;
    font-weight: 500;
    font-size: .9rem;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #e8e8e8;
    margin-left: -14px
}

.schedule .schedule-day-container .day-content .event-details-wrap .event-description label {
    display: block;
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 6px
}

.schedule .schedule-day-container .day-content .event-details-wrap .event-description p {
    font-size: .9rem;
    color: #999
}

.schedule .schedule-day-container .day-content .event-details-wrap .button-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.schedule .schedule-day-container .day-content .event-details-wrap .button-wrap .button {
    width: 49%
}

.schedule .schedule-day-container .day-content .event-details-wrap .img {
    margin-top: 16px;
    margin-bottom: 16px;
    width: 100%;
    height: 150px;
    background: #2c3144
}

@-webkit-keyframes day-header-grow {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    100% {
        -webkit-transform: scale(25);
        transform: scale(25)
    }
}

@keyframes day-header-grow {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    100% {
        -webkit-transform: scale(25);
        transform: scale(25)
    }
}

@-webkit-keyframes day-container-out {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
    100% {
        -webkit-transform: translateY(45px);
        transform: translateY(45px);
        opacity: 0
    }
}

@keyframes day-container-out {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
    100% {
        -webkit-transform: translateY(45px);
        transform: translateY(45px);
        opacity: 0
    }
}

@-webkit-keyframes day-header-content-in {
    0% {
        -webkit-transform: translateY(18px);
        transform: translateY(18px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes day-header-content-in {
    0% {
        -webkit-transform: translateY(18px);
        transform: translateY(18px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes day-content-animate-in {
    0% {
        -webkit-transform: translateY(35px);
        transform: translateY(35px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes day-content-animate-in {
    0% {
        -webkit-transform: translateY(35px);
        transform: translateY(35px);
        opacity: 0
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}


/*! _buttons.scss | Friendkit | © Css Ninja. 2018-2019 */

button.button {
    line-height: 0
}

.button {
    font-size: .8rem;
    font-weight: 500;
    padding: 18px 22px;
    transition: all .3s
}

.button.is-rounded {
    padding-left: 1.5em;
    padding-right: 1.5em
}

.button.icon-button {
    width: 32px;
    height: 32px;
    padding: 0
}

.button.icon-button svg {
    height: 16px !important;
    width: 16px !important;
    stroke: #344258
}

.button.icon-button.is-solid svg {
    stroke: #fff !important
}

.button.has-icon svg {
    height: 16px;
    width: 16px;
    min-height: 16px;
    min-width: 16px;
    margin-right: 4px
}

.button.default-raised:hover {
    box-shadow: 0 14px 26px -12px rgba(0, 0, 0, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
    opacity: 0.8
}

.button.is-phantom {
    background: transparent;
    border: 2px solid transparent
}

.button.is-phantom.primary-button {
    color: #ff5f59
}

.button.is-phantom.primary-button:hover {
    border-color: #ff5f59
}

.button.is-phantom.accent-button {
    color: #0062ff
}

.button.is-phantom.accent-button:hover {
    border-color: #0062ff
}

.button.is-reversed-phantom {
    background: transparent;
    border: 1px solid transparent
}

.button.is-reversed-phantom.primary-button {
    color: #ff5f59
}

.button.is-reversed-phantom.primary-button:hover {
    border-color: transparent !important;
    background: #ff5f59;
    color: #fafafa
}

.button.is-reversed-phantom.accent-button {
    color: #0062ff
}

.button.is-reversed-phantom.accent-button:hover {
    border-color: transparent !important;
    background: #0062ff;
    color: #fafafa
}

.button.is-solid.primary-button {
    background: #ff5f59;
    border-color: #ff5f59;
    color: #fff !important
}

.button.is-solid.primary-button.raised:hover {
    box-shadow: 0 14px 26px -12px rgba(255, 95, 89, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 95, 89, 0.2) !important;
    opacity: 0.8
}

.button.is-solid.secondary-button {
    background: #757a91;
    border-color: #757a91
}

.button.is-solid.secondary-button.raised:hover {
    box-shadow: 0 14px 26px -12px rgba(117, 122, 145, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(117, 122, 145, 0.2) !important;
    opacity: 0.8
}

.button.is-solid.accent-button {
    background: #0062ff;
    border-color: #0062ff;
    color: #fff
}

.button.is-solid.accent-button.raised:hover {
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important;
    opacity: 0.8
}

.button.is-solid.red-button {
    background: #FF7273;
    border-color: #FF7273;
    color: #fff
}

.button.is-solid.red-button.raised:hover {
    box-shadow: 0 14px 26px -12px rgba(255, 114, 115, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 114, 115, 0.2) !important;
    opacity: 0.8
}

.button.is-solid.green-button {
    background: #1CE589;
    border-color: #1CE589;
    color: #fff
}

.button.is-solid.green-button.raised:hover {
    box-shadow: 0 14px 26px -12px rgba(28, 229, 137, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(28, 229, 137, 0.2) !important;
    opacity: 0.8
}

.button.is-solid.blue-button {
    background: #039BE5;
    border-color: #039BE5;
    color: #fff
}

.button.is-solid.blue-button.raised:hover {
    box-shadow: 0 14px 26px -12px rgba(3, 155, 229, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(3, 155, 229, 0.2) !important;
    opacity: 0.8
}

.button.is-solid.grey-button {
    background: #f7f7f7;
    border-color: #f7f7f7
}

.button.is-solid.grey-button svg {
    stroke: #344258 !important
}

.button.is-solid.grey-button:hover {
    background: #f2f2f2;
    border-color: #f2f2f2
}

.button.is-solid.dark-grey-button {
    background: #ededed;
    border-color: #ededed
}

.button.is-solid.dark-grey-button svg {
    stroke: #344258 !important
}

.button.is-solid.dark-grey-button:hover {
    background: #dedede;
    border-color: #dedede
}

.button.light-button {
    background: transparent;
    border-color: #fff;
    color: #fff;
    font-weight: 500
}

.button.light-button:hover {
    background: #fff;
    color: #393a4f
}

.button.light-button.raised:hover {
    box-shadow: 0 14px 26px -12px rgba(255, 95, 89, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 95, 89, 0.2) !important !important;
    opacity: 0.8
}

.like-wrapper .like-button {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 5px 43px rgba(0, 0, 0, 0.18);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    text-decoration: none;
    opacity: 1 !important;
    overflow: hidden
}

.like-wrapper .like-button .like-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ff3f40;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .4s;
    z-index: 0
}

.like-wrapper .like-button i.not-liked {
    display: block;
    color: #ff3f40;
    position: relative;
    z-index: 1
}

.like-wrapper .like-button i.is-liked {
    display: none;
    color: #fff;
    position: relative;
    z-index: 1
}

.like-wrapper .like-button.is-active {
    box-shadow: 0px 5px 43px rgba(255, 114, 115, 0.18)
}

.like-wrapper .like-button.is-active .like-overlay {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.like-wrapper .like-button.is-active i.not-liked {
    display: none
}

.like-wrapper .like-button.is-active i.is-liked {
    display: block
}

.fab-wrapper.is-share a {
    background: #1a72ff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.fab-wrapper.is-share a:hover {
    background: #3d88ff
}

.fab-wrapper.is-share a:hover svg {
    stroke: #fff
}

.fab-wrapper.is-comment a {
    background: #1a72ff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.fab-wrapper.is-comment a:hover {
    background: #3d88ff
}

.fab-wrapper.is-comment a:hover svg {
    stroke: #fff
}

.fab-wrapper .small-fab {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    color: #fcfcfc;
    opacity: 1;
    transition: all .3s
}

.fab-wrapper .small-fab svg {
    width: 18px;
    height: 18px;
    transition: all .3s
}

.fab-wrapper .small-fab.is-active {
    background: #0062ff
}

.load-more-wrap {
    padding: 40px 0
}

.load-more-wrap.narrow-top {
    padding-top: 20px 0
}

.load-more-button {
    box-sizing: border-box;
    display: inline-block;
    width: 8em;
    height: 2.25em;
    padding: 0.5em 1em;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    color: #757a91 !important;
    white-space: nowrap;
    line-height: 1;
    font-size: 1em;
    text-decoration: none;
    transition: width 0.1s ease, height 0.4s ease, border-width 0.4s ease, border-radius 0.4s ease, border-color 0.4s ease, padding 0.4s ease
}

.load-more-button:focus {
    outline: none;
    border-color: #ddd
}

.load-more-button:hover {
    background: #fafafa
}

.load-more-button.loading {
    height: 24px;
    width: 24px;
    padding: 0;
    border-width: 2px;
    border-radius: 17px;
    border-color: #eee #eee #eee #999;
    background: #fff;
    font-size: 0;
    color: transparent;
    pointer-events: none;
    -webkit-animation: spin 1.2s infinite linear;
    animation: spin 1.2s infinite linear
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}


/*! _dropdowns.scss | Friendkit | © Css Ninja. 2018-2019 */

.dropdown-divider {
    background-color: #e8e8e8
}

.dropdown .avatar-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.dropdown .avatar-button img {
    height: 22px;
    width: 22px;
    display: block;
    margin: 0 auto;
    border-radius: 50%
}

.dropdown .avatar-button svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    fill: #393a4f;
    height: 8px;
    width: 8px;
    margin: 0 4px
}

.card-heading .dropdown.is-spaced>div .button,
.about-card .header .actions .dropdown.is-spaced>div .button {
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    width: 32px;
    border: none;
    border-radius: 50%;
    transition: all .3s
}

.card-heading .dropdown.is-spaced>div .button:hover,
.about-card .header .actions .dropdown.is-spaced>div .button:hover {
    background: #f5f5f5
}

.card-heading .dropdown.is-spaced>div .button svg,
.about-card .header .actions .dropdown.is-spaced>div .button svg {
    height: 20px;
    width: 20px;
    transition: all .3s
}

.dropdown.is-spaced.is-modern.is-active .caret {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.dropdown.is-spaced.is-modern.is-active .main-icon {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
}

.dropdown.is-spaced.is-modern>div .button {
    min-width: 110px;
    border-radius: 100px
}

.dropdown.is-spaced.is-modern>div .button .caret,
.dropdown.is-spaced.is-modern>div .button .main-icon {
    transition: all .3s
}

.dropdown.is-spaced.is-modern .dropdown-menu {
    margin-top: 6px
}

.dropdown.is-spaced .dropdown-menu {
    box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.05);
    border-color: #e8e8e8;
    padding-top: 0;
    min-width: 280px
}

.dropdown.is-spaced .dropdown-menu.has-margin {
    margin-top: 10px
}

.dropdown.is-spaced .dropdown-menu .dropdown-content {
    border: 1px solid #e8e8e8;
    box-shadow: none
}

.dropdown.is-spaced .dropdown-item {
    padding-right: 1rem !important;
    padding: 0.5rem 1rem
}

.dropdown.is-spaced .dropdown-item.is-selected .checkmark {
    display: block !important
}

.dropdown.is-spaced .dropdown-item.is-header h5 {
    font-weight: 500;
    margin-bottom: 10px;
    color: #757a91
}

.dropdown.is-spaced .dropdown-item .media {
    -ms-flex-align: center;
    align-items: center
}

.dropdown.is-spaced .dropdown-item .media .media-content {
    line-height: 1.2
}

.dropdown.is-spaced .dropdown-item .media h3 {
    font-weight: 500;
    font-size: .85rem;
    transition: all .3s;
    line-height: 1.2
}

.dropdown.is-spaced .dropdown-item .media img {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 20px
}

.dropdown.is-spaced .dropdown-item .media svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    stroke-width: 1px;
    stroke: #757a91;
    transition: all .3s
}

.dropdown.is-spaced .dropdown-item .media small {
    color: #757a91
}

.dropdown.is-spaced .dropdown-item .media .checkmark {
    display: none
}

.dropdown.is-spaced .dropdown-item .media .checkmark svg {
    margin-right: 0;
    margin-left: auto
}

.dropdown.is-spaced .dropdown-item.is-title {
    background-color: transparent;
    margin-bottom: 10px
}

.dropdown.is-spaced .dropdown-item.is-active {
    background: #039BE5
}

.dropdown.is-spaced .dropdown-item.is-active svg {
    stroke: #fff
}

.dropdown.is-spaced .dropdown-item.is-active small {
    color: #fff
}

.dropdown.is-spaced .dropdown-item:hover {
    background: #fafafa
}

.dropdown.is-spaced .dropdown-item:hover h3 {
    color: #ff5f59
}

.dropdown.is-spaced .dropdown-item:hover svg {
    stroke: #ff5f59
}

.dropdown.is-spaced.is-accent .dropdown-item:hover {
    background: #fafafa
}

.dropdown.is-spaced.is-accent .dropdown-item:hover h3 {
    color: #0062ff !important
}

.dropdown.is-spaced.is-accent .dropdown-item:hover svg {
    stroke: #0062ff !important
}

.dropdown.is-spaced.is-neutral .dropdown-item:hover {
    background: #fafafa
}

.dropdown.is-spaced.is-neutral .dropdown-item:hover h3 {
    color: #393a4f !important
}

.dropdown.is-spaced.is-neutral .dropdown-item:hover svg {
    stroke: #757a91 !important
}


/*! _components-tabs.scss | Friendkit | © Css Ninja. 2018-2019 */

.nav-tabs-wrapper .tabs ul.is-faded {
    border-bottom-color: transparent !important
}

.nav-tabs-wrapper .tabs ul li a {
    color: #cecece;
    border-image-width: 2px
}

.nav-tabs-wrapper .tabs ul li:hover a {
    border-bottom-color: inherit
}

.nav-tabs-wrapper .tabs ul li.is-active a {
    color: #0062ff;
    border-bottom-color: #0062ff
}

.nav-tabs-wrapper .tab-content {
    display: none;
    overflow: hidden;
    padding: 0 10px 10px 10px;
    -webkit-animation: fadeInLeft .5s;
    animation: fadeInLeft .5s
}

.nav-tabs-wrapper .tab-content.is-active {
    display: block
}


/*! _modals.scss | Friendkit | © Css Ninja. 2018-2019 */


/*! _special-mixins.scss | Friendkit | © Css Ninja. 2018-2019 */

.modal {
    z-index: 1050
}

.modal .modal-background {
    transition: all .3s
}

.modal.is-xsmall .modal-content {
    width: 480px
}

.modal.is-small .modal-content {
    width: 540px
}

.modal.is-medium .modal-content {
    width: 720px
}

.modal.is-large .modal-content {
    width: 840px
}

.modal.is-xlarge .modal-content {
    width: 1200px
}

.modal.is-xxl .modal-content {
    width: 1340px
}

.modal.is-light-bg .modal-background {
    background: rgba(0, 0, 0, 0.4)
}

.modal .card {
    -webkit-animation: modalScale .3s;
    animation: modalScale .3s
}

.modal .card .card-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 12px
}

.modal .card .card-heading h3 {
    font-size: .95rem;
    font-weight: 500
}

.modal .card .card-heading .close-wrap {
    height: 30px;
    width: 30px
}

.modal .card .card-heading .close-wrap .close-modal {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background .3s
}

.modal .card .card-heading .close-wrap .close-modal:hover {
    background: #e8e8e8
}

.modal .card .card-heading .close-wrap .close-modal svg {
    height: 18px;
    width: 18px;
    stroke: #757a91
}

.modal .card .card-body {
    padding: 8px 12px
}

.create-group-modal .card-heading {
    border-bottom: 1px solid #e8e8e8
}

.create-group-modal .subheading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #e8e8e8
}

.create-group-modal .subheading .group-avatar {
    position: relative;
    cursor: pointer
}

.create-group-modal .subheading .group-avatar input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%
}

.create-group-modal .subheading .group-avatar .add-photo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    width: 42px;
    background: #ededed;
    border-radius: 4px
}

.create-group-modal .subheading .group-avatar .add-photo svg {
    height: 18px;
    width: 18px;
    stroke: #757a91
}

.create-group-modal .subheading .control input {
    margin: 0 10px;
    border: none !important
}

.create-group-modal .card-body {
    padding: 0 !important
}

.create-group-modal .card-body .inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: start
}

.create-group-modal .card-body .inner .left-section {
    width: 67%
}

.create-group-modal .card-body .inner .left-section .search-subheader {
    border-bottom: 1px solid #e8e8e8;
    padding: 0 12px;
    height: 57px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.create-group-modal .card-body .inner .left-section .search-subheader .control {
    width: 100%;
    position: relative
}

.create-group-modal .card-body .inner .left-section .search-subheader .control input {
    height: 32px;
    border-radius: 0;
    padding-left: 36px;
    font-size: .9rem;
    transition: all .3s
}

.create-group-modal .card-body .inner .left-section .search-subheader .control input:focus {
    border-color: #cecece
}

.create-group-modal .card-body .inner .left-section .search-subheader .control input:focus+.icon svg {
    stroke: #0062ff
}

.create-group-modal .card-body .inner .left-section .search-subheader .control .icon {
    position: absolute;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    width: 32px
}

.create-group-modal .card-body .inner .left-section .search-subheader .control .icon svg {
    width: 18px;
    height: 18px;
    stroke: #cecece;
    transition: all .3s
}

.create-group-modal .card-body .inner .left-section .user-list {
    height: 403px;
    padding: 12px 0;
    overflow-y: auto
}

.create-group-modal .card-body .inner .left-section .user-list .friend-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6px;
    padding: 6px 12px;
    border-radius: 0;
    cursor: pointer
}

.create-group-modal .card-body .inner .left-section .user-list .friend-block:hover {
    background: #f2f2f2
}

.create-group-modal .card-body .inner .left-section .user-list .friend-block .friend-avatar {
    height: 40px;
    width: 40px;
    border-radius: 50%
}

.create-group-modal .card-body .inner .left-section .user-list .friend-block .friend-name {
    font-size: .85rem;
    font-weight: 500;
    color: #393a4f;
    margin: 0 10px
}

.create-group-modal .card-body .inner .left-section .user-list .friend-block .round-checkbox {
    margin-left: auto;
    margin-right: 12px
}

.create-group-modal .card-body .inner .right-section {
    width: 33%;
    height: 460px;
    background: #f5f6f7;
    border-left: 1px solid #e8e8e8;
    overflow-y: auto
}

.create-group-modal .card-body .inner .right-section .selected-count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 12px;
    min-height: 57px
}

.create-group-modal .card-body .inner .right-section .selected-count span {
    display: block;
    font-size: .9rem;
    font-weight: 500;
    color: #999
}

.create-group-modal .card-body .inner .right-section .selected-count span:first-child {
    text-transform: uppercase;
    font-size: .7rem
}

.create-group-modal .card-body .inner .right-section .selected-list {
    padding: 12px
}

.create-group-modal .card-body .inner .right-section .selected-list .selected-friend-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 0;
    border-radius: 0
}

.create-group-modal .card-body .inner .right-section .selected-list .selected-friend-block .image-wrapper {
    position: relative
}

.create-group-modal .card-body .inner .right-section .selected-list .selected-friend-block .image-wrapper .checked-badge {
    position: absolute;
    bottom: 3px;
    right: -3px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 18px;
    width: 18px;
    border: 2px solid #f5f6f7;
    border-radius: 50%;
    background: #757a91
}

.create-group-modal .card-body .inner .right-section .selected-list .selected-friend-block .image-wrapper .checked-badge svg {
    height: 8px;
    width: 8px;
    stroke: #fafafa;
    stroke-width: 3px
}

.create-group-modal .card-body .inner .right-section .selected-list .selected-friend-block .friend-avatar {
    height: 40px;
    width: 40px;
    border-radius: 50%
}

.create-group-modal .card-body .inner .right-section .selected-list .selected-friend-block .friend-name {
    font-size: .85rem;
    font-weight: 500;
    color: #393a4f;
    margin: 0 14px
}

.create-group-modal .card-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 !important;
    padding: 8px
}

.create-group-modal .card-footer button {
    margin-left: 12px;
    line-height: 0
}

.albums-help-modal .card,
.videos-help-modal .card {
    overflow: hidden
}

.albums-help-modal .card-heading,
.videos-help-modal .card-heading {
    border-bottom: 1px solid #e8e8e8
}

.albums-help-modal .card-body .content-block,
.videos-help-modal .card-body .content-block {
    position: absolute;
    height: 248px;
    width: 454px;
    opacity: 0;
    transition: all .3s
}

.albums-help-modal .card-body .content-block:first-child,
.videos-help-modal .card-body .content-block:first-child {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.albums-help-modal .card-body .content-block:nth-child(2),
.videos-help-modal .card-body .content-block:nth-child(2) {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.albums-help-modal .card-body .content-block img,
.videos-help-modal .card-body .content-block img {
    display: block;
    height: 140px;
    margin: 20px auto
}

.albums-help-modal .card-body .content-block .help-text,
.videos-help-modal .card-body .content-block .help-text {
    text-align: center;
    max-width: 350px;
    margin: 0 auto
}

.albums-help-modal .card-body .content-block .help-text h3,
.videos-help-modal .card-body .content-block .help-text h3 {
    font-weight: 500
}

.albums-help-modal .card-body .content-block .help-text p,
.videos-help-modal .card-body .content-block .help-text p {
    color: #999;
    font-size: .9rem
}

.albums-help-modal .card-body .content-block.is-active,
.videos-help-modal .card-body .content-block.is-active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1
}

.albums-help-modal .card-body .slide-dots,
.videos-help-modal .card-body .slide-dots {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 258px 0 16px 0
}

.albums-help-modal .card-body .slide-dots .dot,
.videos-help-modal .card-body .slide-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8e8e8;
    margin: 0 3px
}

.albums-help-modal .card-body .slide-dots .dot.is-active,
.videos-help-modal .card-body .slide-dots .dot.is-active {
    background: #0062ff
}

.albums-help-modal .card-body .action,
.videos-help-modal .card-body .action {
    text-align: center;
    margin-bottom: 16px
}

.albums-help-modal .card-body .action button,
.videos-help-modal .card-body .action button {
    line-height: 0;
    width: 160px
}

.albums-modal .modal-content {
    max-width: calc(100% - 40px)
}

.albums-modal .card-heading {
    border-bottom: 1px solid #e8e8e8;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.albums-modal .card-heading .button {
    line-height: 0 !important;
    padding: 14px 18px !important;
    margin-left: auto;
    margin-right: 10px;
    cursor: pointer
}

.albums-modal .card-heading .button i {
    font-size: 18px
}

.albums-modal .card-body {
    padding: 0 !important;
    display: -ms-flexbox;
    display: flex
}

.albums-modal .card-body .left-section,
.albums-modal .card-body .right-section {
    padding: 12px;
    height: 580px
}

.albums-modal .card-body .left-section {
    width: 25%;
    background: #f5f6f7;
    border-right: 1px solid #e8e8e8
}

.albums-modal .card-body .left-section .control {
    margin-bottom: 10px
}

.albums-modal .card-body .left-section .control input {
    padding-left: 34px
}

.albums-modal .card-body .left-section .control .icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 32px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #cecece
}

.albums-modal .card-body .left-section .control .icon svg {
    width: 16px;
    height: 16px;
    transition: all .3s
}

.albums-modal .card-body .left-section .album-form {
    margin-bottom: 20px
}

.albums-modal .card-body .left-section .tagged-in-album {
    margin: 0 0 10px 0
}

.albums-modal .card-body .left-section .tagged-in-album .head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6px
}

.albums-modal .card-body .left-section .tagged-in-album .head h4 {
    font-weight: 500;
    font-size: .85rem;
    color: #393a4f
}

.albums-modal .card-body .left-section .tagged-in-album .head .button {
    height: 28px;
    width: 28px
}

.albums-modal .card-body .left-section .tagged-in-album p {
    font-size: .8rem;
    color: #999;
    margin-bottom: 8px
}

.albums-modal .card-body .left-section .album-tag-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user {
    position: relative
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(1) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(2) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(3) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(4) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(5) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(6) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(7) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(8) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(9) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(10) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(11) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(12) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(13) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(14) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(15) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(16) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(17) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(18) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(19) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(20) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(21) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(22) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(23) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(24) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(25) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(26) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(27) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(28) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(29) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(30) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(31) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(32) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(33) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(34) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(35) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(36) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(37) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(38) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(39) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(40) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(41) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(42) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(43) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(44) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(45) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(46) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(47) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(48) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(49) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(50) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(51) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(52) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(53) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(54) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(55) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(56) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(57) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(58) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(59) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(60) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(61) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(62) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(63) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(64) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(65) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(66) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(67) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(68) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(69) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(70) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(71) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(72) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(73) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(74) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(75) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(76) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(77) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(78) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(79) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(80) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(81) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(82) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(83) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(84) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(85) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(86) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(87) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(88) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(89) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(90) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(91) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(92) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(93) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(94) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(95) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(96) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(97) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(98) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:not(:first-child):nth-child(99) {
    margin-left: -12px
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user:hover .remove-tag {
    display: -ms-flexbox;
    display: flex
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    border: 3px solid #f5f6f7
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user .remove-tag {
    position: absolute;
    top: -5px;
    left: -7px;
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 2px solid #fafafa;
    background: #999;
    cursor: pointer
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user .remove-tag:hover {
    background: #FF7273
}

.albums-modal .card-body .left-section .album-tag-list .tagged-user .remove-tag svg {
    height: 12px;
    width: 12px;
    stroke: #fafafa
}

.albums-modal .card-body .left-section .shared-album,
.albums-modal .card-body .left-section .album-date {
    margin-bottom: 10px;
    margin-top: 0
}

.albums-modal .card-body .left-section .shared-album .head,
.albums-modal .card-body .left-section .album-date .head {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6px
}

.albums-modal .card-body .left-section .shared-album .head h4,
.albums-modal .card-body .left-section .album-date .head h4 {
    font-weight: 500;
    font-size: .85rem;
    color: #393a4f
}

.albums-modal .card-body .left-section .shared-album .head .button,
.albums-modal .card-body .left-section .album-date .head .button {
    height: 28px;
    width: 28px
}

.albums-modal .card-body .left-section .shared-album p,
.albums-modal .card-body .left-section .album-date p {
    font-size: .8rem;
    color: #999;
    margin-bottom: 8px
}

.albums-modal .card-body .left-section .album-date {
    margin-top: 20px
}

.albums-modal .card-body .right-section {
    width: 75%;
    overflow-y: auto
}

.albums-modal .card-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 !important;
    padding: 8px
}

.albums-modal .card-footer button {
    margin-left: 6px;
    line-height: 0
}

.albums-modal .card-footer .dropdown button {
    padding: 0 16px;
    height: 38px
}

.albums-modal .card-footer .dropdown button svg {
    height: 16px;
    width: 16px
}

.albums-modal .card-footer .dropdown button svg.main-icon {
    margin-right: 4px
}

.albums-modal .card-footer .dropdown button i {
    font-size: 18px;
    margin-right: 4px
}

.videos-modal .modal-content {
    max-width: calc(100% - 40px)
}

.videos-modal .modal-card {
    max-height: calc(100vh - 20px) !important
}

.videos-modal .card-heading {
    border-bottom: 1px solid #e8e8e8;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.videos-modal .card-heading .button {
    line-height: 0 !important;
    padding: 14px 18px !important;
    margin-left: auto;
    margin-right: 10px;
    cursor: pointer
}

.videos-modal .card-heading .button i {
    font-size: 18px;
    margin-right: 4px
}

.videos-modal .card-body {
    padding: 0 !important
}

.videos-modal .card-body .inner {
    display: -ms-flexbox;
    display: flex
}

.videos-modal .card-body .inner .left-section {
    width: 65%
}

.videos-modal .card-body .inner .right-section {
    position: relative;
    width: 35%;
    border-left: 1px solid #e8e8e8
}

.videos-modal .card-body .inner .right-section .comment-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #eff1f2;
    height: 50px;
    width: 100%;
    border-radius: 0 0 6px 0;
    border-top: 1px solid #dee2e5
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 16px
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner img {
    height: 32px;
    width: 32px;
    border-radius: 50%
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .control {
    width: 100%
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .control .textarea,
.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .control .emojionearea-editor {
    resize: none;
    height: 36px;
    max-height: 36px;
    min-height: 36px;
    border-radius: 100px;
    overflow: hidden;
    line-height: 1.6;
    font-size: .8rem;
    padding-left: 16px;
    margin: 0 6px
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .emojionearea-editor {
    padding-left: 0 !important
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .emojionearea-editor img {
    height: 18px;
    width: 18px;
    min-height: 18px;
    max-height: 18px
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .emojionearea {
    overflow: visible !important
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .emojionearea-picker {
    top: -230px;
    position: absolute;
    left: -50px;
    width: 310px
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .emojionearea-picker .emojionearea-wrapper {
    width: 310px
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .emojionearea-picker .emojionearea-wrapper img {
    height: 22px;
    width: 22px;
    min-height: 22px;
    max-height: 22px
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .emojionearea-scroll-area {
    width: 310px
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .emojionearea .emojionearea-button>div.emojionearea-button-open {
    background-position: 0 -22px
}

.videos-modal .card-body .inner .right-section .comment-controls .controls-inner .emojionearea .emojionearea-picker .emojionearea-scroll-area .emojibtn {
    width: 24px !important;
    height: 24px !important
}

.videos-modal .card-body .inner .right-section .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    width: 100%
}

.videos-modal .card-body .inner .right-section .header img {
    height: 42px;
    width: 42px;
    border-radius: 50%
}

.videos-modal .card-body .inner .right-section .header .user-meta {
    margin: 0 10px
}

.videos-modal .card-body .inner .right-section .header .user-meta span {
    display: block
}

.videos-modal .card-body .inner .right-section .header .user-meta span:first-child {
    font-size: .9rem;
    font-weight: 500
}

.videos-modal .card-body .inner .right-section .header .user-meta span:first-child small {
    color: #999
}

.videos-modal .card-body .inner .right-section .header .user-meta span:nth-child(2) {
    font-size: .8rem;
    color: #999
}

.videos-modal .card-body .inner .right-section .header .button {
    line-height: 0;
    margin-left: auto;
    padding: 14px 18px
}

.videos-modal .card-body .inner .right-section .header .dropdown .button {
    padding: 18px 6px;
    border: none;
    background: transparent
}

.videos-modal .card-body .inner .right-section .header .dropdown .button svg {
    height: 18px;
    width: 18px
}

.videos-modal .card-body .inner .right-section .header .dropdown .button img {
    border-radius: 50%
}

.videos-modal .card-body .inner .right-section .header .dropdown .dropdown-menu {
    margin-top: 10px
}

.videos-modal .card-body .inner .right-section .inner-content {
    padding: 12px
}

.videos-modal .card-body .inner .right-section .inner-content .control {
    width: 100%
}

.videos-modal .card-body .inner .right-section .inner-content .control input {
    padding-left: 34px
}

.videos-modal .card-body .inner .right-section .inner-content .control input:focus+.icon svg {
    stroke: #0062ff
}

.videos-modal .card-body .inner .right-section .inner-content .control .icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 32px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.videos-modal .card-body .inner .right-section .inner-content .control .icon svg {
    height: 18px;
    width: 18px;
    stroke: #cecece;
    transition: all .3s
}

.videos-modal .card-body .inner .right-section .live-stats {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8
}

.videos-modal .card-body .inner .right-section .live-stats .social-count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch
}

.videos-modal .card-body .inner .right-section .live-stats .social-count .shares-count,
.videos-modal .card-body .inner .right-section .live-stats .social-count .comments-count,
.videos-modal .card-body .inner .right-section .live-stats .social-count .likes-count,
.videos-modal .card-body .inner .right-section .live-stats .social-count .views-count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 3px
}

.videos-modal .card-body .inner .right-section .live-stats .social-count .shares-count span,
.videos-modal .card-body .inner .right-section .live-stats .social-count .comments-count span,
.videos-modal .card-body .inner .right-section .live-stats .social-count .likes-count span,
.videos-modal .card-body .inner .right-section .live-stats .social-count .views-count span {
    display: block;
    font-size: .8rem;
    color: #888da8;
    margin: 0 5px
}

.videos-modal .card-body .inner .right-section .live-stats .social-count .shares-count span.views,
.videos-modal .card-body .inner .right-section .live-stats .social-count .comments-count span.views,
.videos-modal .card-body .inner .right-section .live-stats .social-count .likes-count span.views,
.videos-modal .card-body .inner .right-section .live-stats .social-count .views-count span.views {
    margin: 0 2px
}

.videos-modal .card-body .inner .right-section .live-stats .social-count .shares-count svg,
.videos-modal .card-body .inner .right-section .live-stats .social-count .comments-count svg,
.videos-modal .card-body .inner .right-section .live-stats .social-count .likes-count svg,
.videos-modal .card-body .inner .right-section .live-stats .social-count .views-count svg {
    height: 14px;
    width: 14px;
    stroke: #888da8
}

.videos-modal .card-body .inner .right-section .actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 0
}

.videos-modal .card-body .inner .right-section .actions .action {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.videos-modal .card-body .inner .right-section .actions .action span {
    display: block;
    font-size: .8rem;
    margin: 0 4px;
    transition: all .3s
}

.videos-modal .card-body .inner .right-section .actions .action svg {
    height: 16px;
    width: 16px;
    stroke: #888da8;
    transition: all .3s
}

.videos-modal .card-body .inner .right-section .actions .action:hover span {
    color: #0062ff
}

.videos-modal .card-body .inner .right-section .actions .action:hover svg {
    stroke: #0062ff
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tabs {
    margin-bottom: 0 !important
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tabs li a {
    font-size: .85rem;
    color: #cecece;
    font-weight: 400
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tabs li:hover a {
    border-bottom-color: #999
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tabs li.is-active a {
    font-weight: 500;
    color: #0062ff;
    border-bottom-color: #0062ff
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content {
    background: #f5f6f7;
    height: 310px;
    padding: 20px 14px;
    overflow-y: auto
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content .is-comment {
    border: none !important;
    padding-top: 0 !important
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content .is-comment .media-left {
    margin-right: 10px
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content .is-comment .media-left img {
    border-radius: 50%
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content .is-comment .media-content {
    background: #fff;
    padding: 8px;
    border-radius: 12px
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content .is-comment .media-content .username {
    font-size: .8rem;
    font-weight: 500
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content .is-comment .media-content p {
    font-size: .75rem;
    color: #999
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content .is-comment .media-content .comment-actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 8px
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content .is-comment .media-content .comment-actions span,
.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content .is-comment .media-content .comment-actions a {
    display: block;
    font-size: .75rem
}

.videos-modal .card-body .inner .right-section .tabs-wrapper .tab-content .is-comment .media-content .comment-actions span {
    margin: 0 20px;
    color: #999
}

.share-modal .card-heading {
    padding: 8px !important
}

.share-modal .card-heading,
.share-modal .share-inputs {
    border-bottom: 1px solid #e8e8e8
}

.share-modal .card-heading .dropdown,
.share-modal .share-inputs .dropdown {
    margin-left: 0 !important
}

.share-modal .card-heading .dropdown .button,
.share-modal .share-inputs .dropdown .button {
    padding: 10px 12px;
    background: #f5f6f7;
    color: #393a4f
}

.share-modal .card-heading .dropdown .button svg,
.share-modal .share-inputs .dropdown .button svg {
    height: 16px;
    width: 16px;
    margin: 0 4px;
    stroke: #393a4f
}

.share-modal .card-heading .dropdown .button i,
.share-modal .share-inputs .dropdown .button i {
    font-size: 20px;
    margin-right: 4px
}

.share-modal .card-heading .dropdown .button img,
.share-modal .share-inputs .dropdown .button img {
    height: 20px !important;
    width: 20px !important;
    border-radius: 50% !important
}

.share-modal .card-heading .dropdown .dropdown-menu,
.share-modal .share-inputs .dropdown .dropdown-menu {
    width: 320px
}

.share-modal .card-heading .dropdown .dropdown-menu .dropdown-content .dropdown-item,
.share-modal .share-inputs .dropdown .dropdown-menu .dropdown-content .dropdown-item {
    cursor: pointer
}

.share-modal .card-heading .dropdown .dropdown-menu .dropdown-content .dropdown-item:hover,
.share-modal .share-inputs .dropdown .dropdown-menu .dropdown-content .dropdown-item:hover {
    background: #f5f5f5
}

.share-modal .card-heading .dropdown .dropdown-menu .dropdown-content img,
.share-modal .share-inputs .dropdown .dropdown-menu .dropdown-content img {
    height: 36px !important;
    width: 36px !important;
    border-radius: 50% !important;
    margin-right: 10px
}

.share-modal .card-heading .dropdown .dropdown-menu .dropdown-content i,
.share-modal .share-inputs .dropdown .dropdown-menu .dropdown-content i {
    font-size: 22px;
    margin-right: 16px;
    color: #999
}

.share-modal .card-heading .dropdown .dropdown-menu .dropdown-content .media-content h3,
.share-modal .share-inputs .dropdown .dropdown-menu .dropdown-content .media-content h3 {
    font-size: .85rem
}

.share-modal .card-heading .dropdown .dropdown-menu .dropdown-content .media-content small,
.share-modal .share-inputs .dropdown .dropdown-menu .dropdown-content .media-content small {
    color: #999
}

.share-modal .card-heading .dropdown.is-active .button,
.share-modal .share-inputs .dropdown.is-active .button {
    background: #0062ff;
    color: #fafafa
}

.share-modal .card-heading .dropdown.is-active .button svg,
.share-modal .share-inputs .dropdown.is-active .button svg {
    stroke: #fafafa
}

.share-modal .share-inputs {
    border-bottom: none !important
}

.share-modal .share-inputs .field {
    margin-bottom: 0 !important
}

.share-modal .share-inputs .field .easy-autocomplete input {
    padding-left: 85px
}

.share-modal .share-inputs .control {
    border-bottom: 1px solid #e8e8e8
}

.share-modal .share-inputs .control.no-border {
    border-bottom-color: transparent
}

.share-modal .share-inputs .control input {
    border: none;
    padding-left: 85px
}

.share-modal .share-inputs .control .input-heading {
    position: absolute;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 32px;
    width: 70px;
    padding: 0 6px;
    background: #999;
    color: #fafafa;
    font-size: .8rem
}

.share-modal .share-inputs .control .page-controls {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.share-modal .share-inputs .control .page-controls .page-selection {
    padding: 8px
}

.share-modal .share-inputs .control .page-controls .page-selection .page-selector img {
    display: block;
    position: relative;
    top: -1px;
    margin-right: 6px
}

.share-modal .share-inputs .control .page-controls .alias {
    padding: 8px
}

.share-modal .share-inputs .control .page-controls .alias img {
    display: block;
    height: 24px;
    width: 24px;
    border-radius: 50%
}

.share-modal .card-body .emojionearea {
    margin-top: 10px;
    max-height: 32px;
    min-height: 32px;
    height: 32px;
    resize: none;
    border: none
}

.share-modal .card-body .emojionearea-picker {
    right: -10px !important
}

.share-modal .card-body .shared-publication {
    margin-top: 20px
}

.share-modal .card-body .shared-publication .featured-image img {
    display: block
}

.share-modal .card-body .shared-publication .publication-meta {
    border: 1px solid #e8e8e8;
    background: #f5f6f7;
    padding: 20px
}

.share-modal .card-body .shared-publication .publication-meta .inner-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: start;
    margin-bottom: 20px
}

.share-modal .card-body .shared-publication .publication-meta .inner-flex img {
    height: 40px;
    width: 40px;
    border-radius: 50%
}

.share-modal .card-body .shared-publication .publication-meta .inner-flex p {
    font-size: .8rem;
    padding: 0 16px;
    overflow: hidden;
    position: relative;
    line-height: 1.2em;
    max-height: 3.6em;
    text-align: justify;
    margin-right: -1em;
    padding-right: 1em
}

.share-modal .card-body .shared-publication .publication-meta .inner-flex p:before {
    content: '...';
    position: absolute;
    right: 0;
    bottom: 0
}

.share-modal .card-body .shared-publication .publication-meta .inner-flex p:after {
    content: '';
    position: absolute;
    right: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.2em;
    background: #f5f6f7
}

.share-modal .card-body .shared-publication .publication-meta .publication-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.share-modal .card-body .shared-publication .publication-meta .publication-footer .stats {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.share-modal .card-body .shared-publication .publication-meta .publication-footer .stat-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px
}

.share-modal .card-body .shared-publication .publication-meta .publication-footer .stat-block i {
    margin-right: 2px;
    color: #999
}

.share-modal .card-body .shared-publication .publication-meta .publication-footer .stat-block small {
    font-size: .75rem
}

.share-modal .card-body .shared-publication .publication-meta .publication-footer .publication-origin small {
    text-transform: uppercase;
    color: #999;
    font-weight: 200;
    font-size: .65rem
}

.share-modal .bottom-share-inputs {
    border-bottom: none !important
}

.share-modal .bottom-share-inputs .field {
    margin-bottom: 0 !important
}

.share-modal .bottom-share-inputs .field .easy-autocomplete input {
    padding-left: 85px
}

.share-modal .bottom-share-inputs .control {
    border-top: 1px solid #e8e8e8
}

.share-modal .bottom-share-inputs .control.no-border {
    border-bottom-color: transparent
}

.share-modal .bottom-share-inputs .control input {
    border: none;
    padding-left: 85px
}

.share-modal .bottom-share-inputs .control .input-heading {
    position: absolute;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 32px;
    width: 70px;
    padding: 0 6px;
    background: #999;
    color: #fafafa;
    font-size: .8rem
}

.share-modal .bottom-share-inputs .control .page-controls {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.share-modal .bottom-share-inputs .control .page-controls .page-selection {
    padding: 8px
}

.share-modal .bottom-share-inputs .control .page-controls .page-selection .page-selector img {
    display: block;
    position: relative;
    top: -1px;
    margin-right: 6px
}

.share-modal .bottom-share-inputs .control .page-controls .alias {
    padding: 8px
}

.share-modal .bottom-share-inputs .control .page-controls .alias img {
    display: block;
    height: 24px;
    width: 24px;
    border-radius: 50%
}

.share-modal .card-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 !important;
    padding: 8px;
    background: #f5f6f7;
    border-radius: 0 0 6px 6px
}

.share-modal .card-footer .action-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.share-modal .card-footer .action-wrap .footer-action {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 34px;
    width: 34px;
    border-radius: 4px;
    cursor: pointer;
    transition: all .3s
}

.share-modal .card-footer .action-wrap .footer-action i {
    font-size: 18px;
    color: #999
}

.share-modal .card-footer .action-wrap .footer-action:hover {
    background: #e7e9ec
}

.share-modal .card-footer .action-wrap .footer-action.is-active {
    background: #e7e9ec
}

.share-modal .card-footer .action-wrap .footer-action.is-active i {
    color: #0062ff
}

.share-modal .card-footer button {
    line-height: 0;
    margin-left: 4px;
    height: 32px !important;
    padding: 8px 22px
}

.change-cover-modal .card .card-heading,
.change-profile-pic-modal .card .card-heading {
    padding: 16px 28px
}

.change-cover-modal .card .card-heading h3,
.change-profile-pic-modal .card .card-heading h3 {
    font-size: 1rem
}

.change-cover-modal .card .card-body .selection-placeholder,
.change-profile-pic-modal .card .card-body .selection-placeholder {
    padding: 0 20px 30px 20px
}

.change-cover-modal .card .card-body .selection-placeholder .selection-box,
.change-profile-pic-modal .card .card-body .selection-placeholder .selection-box {
    padding: 40px;
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s
}

.change-cover-modal .card .card-body .selection-placeholder .selection-box:hover,
.change-profile-pic-modal .card .card-body .selection-placeholder .selection-box:hover {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.change-cover-modal .card .card-body .selection-placeholder .selection-box:hover .box-content img,
.change-profile-pic-modal .card .card-body .selection-placeholder .selection-box:hover .box-content img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1
}

.change-cover-modal .card .card-body .selection-placeholder .selection-box:hover .box-content .box-text span:first-child,
.change-profile-pic-modal .card .card-body .selection-placeholder .selection-box:hover .box-content .box-text span:first-child {
    color: #0062ff
}

.change-cover-modal .card .card-body .selection-placeholder .selection-box .box-content,
.change-profile-pic-modal .card .card-body .selection-placeholder .selection-box .box-content {
    text-align: center
}

.change-cover-modal .card .card-body .selection-placeholder .selection-box .box-content img,
.change-profile-pic-modal .card .card-body .selection-placeholder .selection-box .box-content img {
    display: block;
    max-height: 120px;
    margin: 0 auto;
    opacity: .5;
    transition: all .3s;
    -webkit-filter: grayscale(1);
    filter: grayscale(1)
}

.change-cover-modal .card .card-body .selection-placeholder .selection-box .box-content .box-text,
.change-profile-pic-modal .card .card-body .selection-placeholder .selection-box .box-content .box-text {
    margin: 10px 0
}

.change-cover-modal .card .card-body .selection-placeholder .selection-box .box-content .box-text span,
.change-profile-pic-modal .card .card-body .selection-placeholder .selection-box .box-content .box-text span {
    display: block
}

.change-cover-modal .card .card-body .selection-placeholder .selection-box .box-content .box-text span:first-child,
.change-profile-pic-modal .card .card-body .selection-placeholder .selection-box .box-content .box-text span:first-child {
    font-weight: 500;
    color: #393a4f;
    transition: color .3s
}

.change-cover-modal .card .card-body .selection-placeholder .selection-box .box-content .box-text span:nth-child(2),
.change-profile-pic-modal .card .card-body .selection-placeholder .selection-box .box-content .box-text span:nth-child(2) {
    font-size: .9rem;
    color: #999
}

.user-photos-modal .card .card-heading {
    padding: 20px
}

.user-photos-modal .card .card-heading h3 {
    font-size: 1rem
}

.user-photos-modal .card .card-body {
    padding: 0 20px
}

.user-photos-modal .card .card-body .tabs {
    margin-bottom: 0
}

.user-photos-modal .card .card-body .tabs ul {
    border-color: transparent
}

.user-photos-modal .card .card-body .tabs ul li.is-active {
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #f2f2f2
}

.user-photos-modal .card .card-body .tabs ul li.is-active a {
    color: #393a4f;
    font-weight: 500
}

.user-photos-modal .card .card-body .tabs ul li a {
    font-size: .8rem;
    border-bottom-color: transparent !important
}

.user-photos-modal .card .card-body .tab-content {
    padding: 20px 0;
    max-height: 395px;
    overflow-y: auto
}

.user-photos-modal .card .card-body .tab-content .album-info {
    margin-bottom: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.user-photos-modal .card .card-body .tab-content .album-info h4 {
    font-weight: 600;
    color: #393a4f
}

.user-photos-modal .card .card-body .tab-content .album-info h4 small {
    font-size: .9rem;
    color: #999;
    font-weight: 400
}

.user-photos-modal .card .card-body .tab-content .album-info .close-nested-photos {
    font-size: .9rem;
    font-weight: 500
}

.user-photos-modal .card .card-body .image-grid,
.user-photos-modal .card .card-body .album-image-grid {
    -webkit-animation: fadeInLeft .5s;
    animation: fadeInLeft .5s
}

.user-photos-modal .card .card-body .image-grid .column,
.user-photos-modal .card .card-body .album-image-grid .column {
    padding: .5rem
}

.user-photos-modal .card .card-body .image-grid .grid-image,
.user-photos-modal .card .card-body .album-image-grid .grid-image {
    position: relative
}

.user-photos-modal .card .card-body .image-grid .grid-image:hover img,
.user-photos-modal .card .card-body .album-image-grid .grid-image:hover img {
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2)
}

.user-photos-modal .card .card-body .image-grid .grid-image:hover .inner-overlay,
.user-photos-modal .card .card-body .album-image-grid .grid-image:hover .inner-overlay {
    background: rgba(57, 58, 79, 0.2) !important
}

.user-photos-modal .card .card-body .image-grid .grid-image input,
.user-photos-modal .card .card-body .album-image-grid .grid-image input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1
}

.user-photos-modal .card .card-body .image-grid .grid-image input:checked+.inner .inner-overlay,
.user-photos-modal .card .card-body .album-image-grid .grid-image input:checked+.inner .inner-overlay {
    background: rgba(57, 58, 79, 0.5)
}

.user-photos-modal .card .card-body .image-grid .grid-image input:checked+.inner .indicator,
.user-photos-modal .card .card-body .album-image-grid .grid-image input:checked+.inner .indicator {
    display: -ms-flexbox;
    display: flex
}

.user-photos-modal .card .card-body .image-grid .grid-image .inner,
.user-photos-modal .card .card-body .album-image-grid .grid-image .inner {
    position: relative
}

.user-photos-modal .card .card-body .image-grid .grid-image .inner img,
.user-photos-modal .card .card-body .album-image-grid .grid-image .inner img {
    display: block;
    border-radius: 4px;
    transition: all .3s
}

.user-photos-modal .card .card-body .image-grid .grid-image .inner .inner-overlay,
.user-photos-modal .card .card-body .album-image-grid .grid-image .inner .inner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(57, 58, 79, 0.1);
    border-radius: 4px;
    transition: all .3s;
    z-index: 0
}

.user-photos-modal .card .card-body .image-grid .grid-image .inner .indicator,
.user-photos-modal .card .card-body .album-image-grid .grid-image .inner .indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    background: #0062ff;
    border: 2px solid #fff;
    z-index: 0
}

.user-photos-modal .card .card-body .image-grid .grid-image .inner .indicator svg,
.user-photos-modal .card .card-body .album-image-grid .grid-image .inner .indicator svg {
    height: 12px;
    width: 12px;
    stroke: #fafafa;
    stroke-width: 3px
}

.user-photos-modal .card .card-body .album-wrapper {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 12px;
    background: #fff;
    cursor: pointer;
    transition: all .3s
}

.user-photos-modal .card .card-body .album-wrapper:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.user-photos-modal .card .card-body .album-wrapper:hover .image-count svg {
    stroke: #0062ff !important
}

.user-photos-modal .card .card-body .album-wrapper:hover .image-count span {
    color: #0062ff !important
}

.user-photos-modal .card .card-body .album-wrapper .album-image img {
    display: block;
    border: 4px
}

.user-photos-modal .card .card-body .album-wrapper .album-meta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.user-photos-modal .card .card-body .album-wrapper .album-meta .album-title {
    margin-top: 6px
}

.user-photos-modal .card .card-body .album-wrapper .album-meta .album-title span {
    display: block
}

.user-photos-modal .card .card-body .album-wrapper .album-meta .album-title span:first-child {
    min-width: 0;
    font-size: .9rem;
    font-weight: 600;
    color: #393a4f
}

.user-photos-modal .card .card-body .album-wrapper .album-meta .album-title span:nth-child(2) {
    font-size: .8rem;
    color: #999
}

.user-photos-modal .card .card-body .album-wrapper .album-meta .image-count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 6px
}

.user-photos-modal .card .card-body .album-wrapper .album-meta .image-count svg {
    height: 20px;
    width: 20px;
    stroke: #cecece;
    transition: all .3s
}

.user-photos-modal .card .card-body .album-wrapper .album-meta .image-count span {
    display: block;
    font-size: .9rem;
    font-weight: 500;
    color: #999;
    margin: 0 4px;
    transition: .3s
}

.user-photos-modal .card .card-footer {
    padding: 20px;
    margin: 0;
    border: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center
}

.upload-crop-profile-modal .card .card-heading,
.upload-crop-cover-modal .card .card-heading {
    padding: 20px
}

.upload-crop-profile-modal .card .card-heading h3,
.upload-crop-cover-modal .card .card-heading h3 {
    font-size: 1rem
}

.upload-crop-profile-modal .card .card-body,
.upload-crop-cover-modal .card .card-body {
    padding: 0 20px
}

.upload-crop-profile-modal .card .card-body .profile-uploader-box,
.upload-crop-profile-modal .card .card-body .cover-uploader-box,
.upload-crop-cover-modal .card .card-body .profile-uploader-box,
.upload-crop-cover-modal .card .card-body .cover-uploader-box {
    display: block;
    width: 100%;
    height: 300px;
    padding: 40px;
    border: 3px dashed #e8e8e8;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.upload-crop-profile-modal .card .card-body .profile-uploader-box:hover .inner-content,
.upload-crop-profile-modal .card .card-body .cover-uploader-box:hover .inner-content,
.upload-crop-cover-modal .card .card-body .profile-uploader-box:hover .inner-content,
.upload-crop-cover-modal .card .card-body .cover-uploader-box:hover .inner-content {
    position: relative
}

.upload-crop-profile-modal .card .card-body .profile-uploader-box:hover .inner-content img,
.upload-crop-profile-modal .card .card-body .cover-uploader-box:hover .inner-content img,
.upload-crop-cover-modal .card .card-body .profile-uploader-box:hover .inner-content img,
.upload-crop-cover-modal .card .card-body .cover-uploader-box:hover .inner-content img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.upload-crop-profile-modal .card .card-body .profile-uploader-box .inner-content,
.upload-crop-profile-modal .card .card-body .cover-uploader-box .inner-content,
.upload-crop-cover-modal .card .card-body .profile-uploader-box .inner-content,
.upload-crop-cover-modal .card .card-body .cover-uploader-box .inner-content {
    display: block
}

.upload-crop-profile-modal .card .card-body .profile-uploader-box .inner-content img,
.upload-crop-profile-modal .card .card-body .cover-uploader-box .inner-content img,
.upload-crop-cover-modal .card .card-body .profile-uploader-box .inner-content img,
.upload-crop-cover-modal .card .card-body .cover-uploader-box .inner-content img {
    display: block;
    max-height: 110px;
    margin: 0 auto;
    opacity: .5;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all .3s
}

.upload-crop-profile-modal .card .card-body .profile-uploader-box .inner-content span,
.upload-crop-profile-modal .card .card-body .cover-uploader-box .inner-content span,
.upload-crop-cover-modal .card .card-body .profile-uploader-box .inner-content span,
.upload-crop-cover-modal .card .card-body .cover-uploader-box .inner-content span {
    display: block;
    text-align: center;
    color: #cecece;
    padding: 10px 0
}

.upload-crop-profile-modal .card .card-body .profile-uploader-box input,
.upload-crop-profile-modal .card .card-body .cover-uploader-box input,
.upload-crop-cover-modal .card .card-body .profile-uploader-box input,
.upload-crop-cover-modal .card .card-body .cover-uploader-box input {
    display: none
}

.upload-crop-profile-modal .card .card-body .croppie-container .cr-boundary,
.upload-crop-cover-modal .card .card-body .croppie-container .cr-boundary {
    background-image: url(../../../cdn.thedesigninspiration.com/wp-content/uploads/2014/07/Icon-Pattern-l.html);
    background-repeat: repeat;
    background-size: cover
}

.upload-crop-profile-modal .card .card-body .croppie-container .cr-viewport,
.upload-crop-cover-modal .card .card-body .croppie-container .cr-viewport {
    box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.1)
}

.upload-crop-profile-modal .card .card-body .croppie-container .cr-slider,
.upload-crop-cover-modal .card .card-body .croppie-container .cr-slider {
    cursor: pointer
}

.upload-crop-profile-modal .card .card-body .upload-help,
.upload-crop-cover-modal .card .card-body .upload-help {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.upload-crop-profile-modal .card .card-body .upload-help .profile-reset,
.upload-crop-profile-modal .card .card-body .upload-help .cover-reset,
.upload-crop-cover-modal .card .card-body .upload-help .profile-reset,
.upload-crop-cover-modal .card .card-body .upload-help .cover-reset {
    display: block;
    color: #999;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: .9rem;
    background: #e8e8e8;
    transition: all .3s
}

.upload-crop-profile-modal .card .card-body .upload-help .profile-reset:hover,
.upload-crop-profile-modal .card .card-body .upload-help .cover-reset:hover,
.upload-crop-cover-modal .card .card-body .upload-help .profile-reset:hover,
.upload-crop-cover-modal .card .card-body .upload-help .cover-reset:hover {
    background: #f0f0f0;
    color: #393a4f
}

.upload-crop-profile-modal .card .card-footer,
.upload-crop-cover-modal .card .card-footer {
    border-top: none;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px
}

.end-tour-modal .modal-content .card .card-body .image-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    background: #f5f5f5;
    margin: 0 auto 20px auto
}

.end-tour-modal .modal-content .card .card-body .image-wrap img {
    display: block;
    height: 50px;
    width: 50px
}

.end-tour-modal .modal-content .card .card-body h3 {
    font-weight: 500;
    font-size: 1.1rem;
    font-family: 'montserrat', sans-serif
}

.end-tour-modal .modal-content .card .card-body p {
    font-size: .9rem;
    color: #999;
    max-width: 330px;
    margin: 0 auto
}

.end-tour-modal .modal-content .card .card-body .action {
    margin: 20px 0
}

.end-tour-modal .modal-content .card .card-body .action .button {
    max-width: 180px;
    margin: 0 auto
}

.no-stream-modal .modal-content .card .card-body .image-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto 20px auto
}

.no-stream-modal .modal-content .card .card-body .image-wrap img {
    display: block;
    width: 200px
}

.no-stream-modal .modal-content .card .card-body h3 {
    font-weight: 500;
    font-size: 1.1rem;
    font-family: 'montserrat', sans-serif
}

.no-stream-modal .modal-content .card .card-body p {
    font-size: .9rem;
    color: #999;
    max-width: 330px;
    margin: 0 auto
}

.no-stream-modal .modal-content .card .card-body .action {
    margin: 20px 0
}

.no-stream-modal .modal-content .card .card-body .action .button {
    max-width: 180px;
    margin: 0 auto
}

@media (max-width: 767px) {
    .modal.albums-modal .card .card-heading h3,
    .modal.videos-modal .card .card-heading h3 {
        display: none
    }
    .modal.albums-modal .card .card-heading .button,
    .modal.videos-modal .card .card-heading .button {
        margin-left: 0
    }
    .modal.albums-modal .card .card-heading .close-wrap,
    .modal.videos-modal .card .card-heading .close-wrap {
        margin-left: auto
    }
    .modal.albums-modal .card .card-body,
    .modal.videos-modal .card .card-body {
        -ms-flex-direction: column;
        flex-direction: column
    }
    .modal.albums-modal .card .card-body .left-section,
    .modal.videos-modal .card .card-body .left-section {
        display: none;
        width: 100%
    }
    .modal.albums-modal .card .card-body .right-section,
    .modal.videos-modal .card .card-body .right-section {
        width: 100%
    }
    .modal.albums-help-modal img,
    .modal.videos-help-modal img {
        height: 110px !important
    }
    .modal .modal-content {
        max-width: 340px
    }
    .modal .modal-content .content-block {
        width: 314px
    }
    .modal .modal-content .content-block img {
        height: 135px
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .modal.albums-modal .card .card-body .album-date .head h4,
    .modal.albums-modal .card .card-body .tagged-in-album .head h4,
    .modal.albums-modal .card .card-body .shared-album .head h4 {
        font-size: .75rem
    }
    .modal.albums-modal .card .card-body .album-date .head p,
    .modal.albums-modal .card .card-body .tagged-in-album .head p,
    .modal.albums-modal .card .card-body .shared-album .head p {
        font-size: .7rem
    }
}


/*! _uploaders.scss | Friendkit | © Css Ninja. 2018-2019 */

.modal-uploader .button {
    line-height: 0
}

.modal-uploader .button.has-icon svg {
    height: 18px;
    width: 18px
}

.modal-uploader .file-count {
    font-size: .85rem;
    color: #999;
    height: 38px;
    vertical-align: middle;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 10px
}

.modal-uploader .file-count span {
    margin: 0 4px
}

.modal-uploader #total-progress {
    opacity: 0;
    transition: opacity 0.3s linear
}

.modal-uploader #previews .dz-success .progress {
    opacity: 0;
    transition: opacity 0.3s linear
}

.modal-uploader #previews .delete {
    display: none
}

.modal-uploader #previews .is-template.dz-success .start,
.modal-uploader #previews is-template.dz-success .cancel {
    display: none
}

.modal-uploader #previews is-template.dz-success .delete {
    display: block
}

.modal-uploader .preview-box {
    position: relative;
    background: #fff;
    width: 100%;
    border-radius: 3px
}

.modal-uploader .preview-box:hover .remove-button {
    opacity: 1;
    background: #e8e8e8
}

.modal-uploader .preview-box .remove-button {
    position: absolute;
    top: -10px;
    right: -12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: transparent;
    cursor: pointer;
    opacity: 0
}

.modal-uploader .preview-box .remove-button:hover {
    background: #FF7273
}

.modal-uploader .preview-box .remove-button:hover i {
    color: #fafafa
}

.modal-uploader .preview-box .remove-button i {
    font-size: 14px;
    color: #999
}

.modal-uploader .preview-box .preview img {
    display: block
}

.modal-uploader .preview-box .preview-body {
    padding: 8px;
    border: 1px solid #e8e8e8
}

.modal-uploader .preview-box .preview-body .name {
    display: block;
    max-width: 145px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.modal-uploader .preview-box .preview-body .item-meta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    font-size: .85rem;
    font-weight: 500
}

.modal-uploader .preview-box .preview-body .textarea {
    padding: 0;
    border: none;
    resize: none;
    color: #999
}

.modal-uploader progress {
    vertical-align: baseline
}

.modal-uploader .progress {
    display: -ms-flexbox;
    display: flex;
    height: 0.2rem;
    margin: .4rem 0;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem
}

.modal-uploader .progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #0062ff;
    transition: width 0.6s ease
}

.modal-uploader .progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem
}

.modal-uploader .progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite
}

.modal-uploader .upload-item-actions {
    margin-left: 20px
}

.modal-uploader .upload-item-progress {
    margin-left: auto;
    min-width: 120px
}


/*! _video.scss | Friendkit | © Css Ninja. 2018-2019 */

.video-wrapper .video-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto
}

.video-wrapper .video-wrap video {
    display: block;
    width: 100%;
    height: auto;
    min-height: 630px;
    border-radius: 0 0 0 6px
}

.video-wrapper .video-wrap .live {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: opacity-shift 2s infinite;
    animation: opacity-shift 2s infinite;
    display: block;
    background: #ff2e1c;
    border-radius: 3px;
    color: #fff;
    padding: 8px 16px;
    margin-top: 20px;
    margin-left: 20px;
    font-size: 10px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1052
}


/*! _datepicker.scss | Friendkit | © Css Ninja. 2018-2019 */

.datepicker-container {
    font-size: 12px;
    line-height: 30px;
    padding: 20px;
    border-radius: 5px;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 210px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    direction: ltr !important;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.datepicker-container:before,
.datepicker-container:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    content: ' ';
    border: 5px solid transparent
}

.datepicker-dropdown {
    position: absolute;
    z-index: 999999 !important;
    box-sizing: content-box;
    border: 1px solid #ccc;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.2)
}

.datepicker-inline {
    position: static
}

.datepicker-top-left:before,
.datepicker-top-left:after,
.datepicker-top-right:before,
.datepicker-top-right:after {
    top: -5px;
    left: 10px;
    border-top: 0
}

.datepicker-top-left:before,
.datepicker-top-right:before {
    border-bottom-color: #ccc
}

.datepicker-top-left:after,
.datepicker-top-right:after {
    top: -4px;
    border-bottom-color: #fff
}

.datepicker-bottom-left:before,
.datepicker-bottom-left:after,
.datepicker-bottom-right:before,
.datepicker-bottom-right:after {
    bottom: -5px;
    left: 10px;
    border-bottom: 0
}

.datepicker-bottom-left:before,
.datepicker-bottom-right:before {
    border-top-color: #ccc
}

.datepicker-bottom-left:after,
.datepicker-bottom-right:after {
    bottom: -4px;
    border-top-color: #fff
}

.datepicker-top-right:before,
.datepicker-top-right:after,
.datepicker-bottom-right:before,
.datepicker-bottom-right:after {
    right: 10px;
    left: auto
}

.datepicker-panel>ul:before,
.datepicker-panel>ul:after {
    display: table;
    content: ' '
}

.datepicker-panel>ul:after {
    clear: both
}

.datepicker-panel>ul {
    width: 102%;
    margin: 0;
    padding: 0
}

.datepicker-panel>ul:first-child li {
    line-height: 25px
}

.datepicker-panel>ul:first-child li:nth-child(2) {
    line-height: 28px !important
}

.datepicker-panel>ul>li {
    float: left;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    cursor: pointer;
    text-align: center;
    background-color: #fff
}

.datepicker-panel>ul>li:hover {
    background-color: #ededed;
    color: #444 !important;
    border-radius: 50px
}

.datepicker-panel>ul>li.muted,
.datepicker-panel>ul>li.muted:hover {
    color: #999
}

.datepicker-panel>ul>li.highlighted {
    color: #5d4394 !important;
    border-radius: 50px
}

.datepicker-panel>ul>li.highlighted:hover {
    opacity: 0.8;
    color: #5d4394 !important
}

.datepicker-panel>ul>li.picked,
.datepicker-panel>ul>li.picked:hover {
    color: #fff !important;
    background-color: #0062ff;
    border-radius: 50px
}

.datepicker-panel>ul>li.picked {
    -webkit-animation-name: gelatine;
    animation-name: gelatine;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

.datepicker-panel>ul>li.disabled,
.datepicker-panel>ul>li.disabled:hover {
    cursor: default;
    color: #ccc;
    background-color: #fff
}

.datepicker-panel>ul>li.disabled.highlighted,
.datepicker-panel>ul>li.disabled:hover.highlighted {
    background-color: #e6f2ff
}

.datepicker-panel>ul>li[data-view='years prev'],
.datepicker-panel>ul>li[data-view='year prev'],
.datepicker-panel>ul>li[data-view='month prev'],
.datepicker-panel>ul>li[data-view='years next'],
.datepicker-panel>ul>li[data-view='year next'],
.datepicker-panel>ul>li[data-view='month next'],
.datepicker-panel>ul>li[data-view='next'] {
    font-size: 18px
}

.datepicker-panel>ul>li[data-view='years current'],
.datepicker-panel>ul>li[data-view='year current'],
.datepicker-panel>ul>li[data-view='month current'] {
    width: 150px
}

.datepicker-panel>ul[data-view='years']>li,
.datepicker-panel>ul[data-view='months']>li {
    line-height: 52.5px;
    width: 52.5px;
    height: 52.5px
}

.datepicker-panel>ul[data-view='week']>li,
.datepicker-panel>ul[data-view='week']>li:hover {
    cursor: default;
    background-color: #fff
}

.datepicker-hide {
    display: none
}


/*! _forms.scss | Friendkit | © Css Ninja. 2018-2019 */

.input,
.textarea {
    box-shadow: none !important
}

.input.is-light::-webkit-input-placeholder,
.textarea.is-light::-webkit-input-placeholder {
    color: #cecece
}

.input.is-light::-moz-placeholder,
.textarea.is-light::-moz-placeholder {
    color: #cecece
}

.input.is-light:-ms-input-placeholder,
.textarea.is-light:-ms-input-placeholder {
    color: #cecece
}

.input.is-light:-moz-placeholder,
.textarea.is-light:-moz-placeholder {
    color: #cecece
}

.input.is-dark,
.textarea.is-dark {
    color: #97a7c1 !important
}

.input.is-dark::-webkit-input-placeholder,
.textarea.is-dark::-webkit-input-placeholder {
    color: #677fa5 !important
}

.input.is-dark::-moz-placeholder,
.textarea.is-dark::-moz-placeholder {
    color: #677fa5 !important
}

.input.is-dark:-ms-input-placeholder,
.textarea.is-dark:-ms-input-placeholder {
    color: #677fa5 !important
}

.input.is-dark:-moz-placeholder,
.textarea.is-dark:-moz-placeholder {
    color: #677fa5 !important
}

.input {
    transition: all .3s
}

.input:focus {
    border-color: #0062ff
}

.input.is-sm {
    height: 32px;
    font-size: .9rem
}

.input.no-radius {
    border-radius: 1px
}

.input.is-fade:focus {
    border: 1px solid #ededed
}

.input.is-bordered:focus {
    border-color: #757a91
}

.textarea.is-sm {
    font-size: .9rem;
    resize: none
}

.textarea.no-radius {
    border-radius: 1px
}

.textarea.is-fade:focus {
    border: 1px solid #ededed
}

.field label {
    font-size: .9rem;
    font-weight: 500;
    color: #393a4f
}

.control.has-icon {
    position: relative
}

.control.has-icon .form-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 36px;
    width: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.control.has-icon .form-icon svg {
    height: 20px;
    width: 20px;
    stroke: #cecece;
    transition: all .3s
}

.control.has-icon .input {
    padding-left: 40px
}

.control.has-icon .input:focus+.form-icon svg {
    stroke: #0062ff
}

.control.has-validation {
    position: relative
}

.control.has-validation .error-icon {
    position: absolute;
    top: 0;
    right: 0;
    height: 36px;
    width: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    transition: opacity .3s
}

.control.has-validation .error-icon svg {
    height: 16px;
    width: 16px;
    stroke: #FF7273
}

.control.has-validation .success-icon {
    position: absolute;
    top: 0;
    right: 0;
    height: 36px;
    width: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    transition: opacity .3s
}

.control.has-validation .success-icon svg {
    height: 16px;
    width: 16px;
    stroke: #1CE589
}

.control.has-validation.has-error input {
    border-color: #FF7273
}

.control.has-validation.has-error input+label {
    font-size: .75rem;
    color: #FF7273
}

.control.has-validation.has-error .error-icon {
    opacity: 1
}

.control.has-validation.has-error .success-icon {
    opacity: 0
}

.control.has-validation.has-success input {
    border-color: #1CE589
}

.control.has-validation.has-success .error-icon {
    opacity: 0
}

.control.has-validation.has-success .success-icon {
    opacity: 1
}

.is-combo .combo-label {
    font-weight: 500;
    font-size: .9rem;
    color: #999
}

.is-combo .combo-box,
.is-combo .image-combo-box,
.is-combo .stacked-combo-box,
.is-combo .user-combo-box {
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 40px;
    margin-top: 4px;
    cursor: pointer;
    transition: all .3s
}

.is-combo .combo-box.has-rounded-images .combo-item img,
.is-combo .combo-box.has-rounded-images .item-icon img,
.is-combo .image-combo-box.has-rounded-images .combo-item img,
.is-combo .image-combo-box.has-rounded-images .item-icon img,
.is-combo .stacked-combo-box.has-rounded-images .combo-item img,
.is-combo .stacked-combo-box.has-rounded-images .item-icon img,
.is-combo .user-combo-box.has-rounded-images .combo-item img,
.is-combo .user-combo-box.has-rounded-images .item-icon img {
    border-radius: 50%
}

.is-combo .combo-box.is-scrollable .box-dropdown .dropdown-inner,
.is-combo .image-combo-box.is-scrollable .box-dropdown .dropdown-inner,
.is-combo .stacked-combo-box.is-scrollable .box-dropdown .dropdown-inner,
.is-combo .user-combo-box.is-scrollable .box-dropdown .dropdown-inner {
    max-height: 190px;
    overflow-y: auto
}

.is-combo .combo-box .box-inner,
.is-combo .image-combo-box .box-inner,
.is-combo .stacked-combo-box .box-inner,
.is-combo .user-combo-box .box-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.is-combo .combo-box .box-inner .combo-item,
.is-combo .image-combo-box .box-inner .combo-item,
.is-combo .stacked-combo-box .box-inner .combo-item,
.is-combo .user-combo-box .box-inner .combo-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    padding-left: 8px
}

.is-combo .combo-box .box-inner .combo-item i,
.is-combo .image-combo-box .box-inner .combo-item i,
.is-combo .stacked-combo-box .box-inner .combo-item i,
.is-combo .user-combo-box .box-inner .combo-item i {
    color: #999;
    font-size: 20px;
    margin-right: 8px
}

.is-combo .combo-box .box-inner .combo-item .fa,
.is-combo .image-combo-box .box-inner .combo-item .fa,
.is-combo .stacked-combo-box .box-inner .combo-item .fa,
.is-combo .user-combo-box .box-inner .combo-item .fa {
    font-size: 14px
}

.is-combo .combo-box .box-inner .combo-item .fa.is-green,
.is-combo .image-combo-box .box-inner .combo-item .fa.is-green,
.is-combo .stacked-combo-box .box-inner .combo-item .fa.is-green,
.is-combo .user-combo-box .box-inner .combo-item .fa.is-green {
    color: #1CE589
}

.is-combo .combo-box .box-inner .combo-item .fa.is-blue,
.is-combo .image-combo-box .box-inner .combo-item .fa.is-blue,
.is-combo .stacked-combo-box .box-inner .combo-item .fa.is-blue,
.is-combo .user-combo-box .box-inner .combo-item .fa.is-blue {
    color: #039BE5
}

.is-combo .combo-box .box-inner .combo-item .fa.is-orange,
.is-combo .image-combo-box .box-inner .combo-item .fa.is-orange,
.is-combo .stacked-combo-box .box-inner .combo-item .fa.is-orange,
.is-combo .user-combo-box .box-inner .combo-item .fa.is-orange {
    color: #ff9700
}

.is-combo .combo-box .box-inner .combo-item .fa.is-red,
.is-combo .image-combo-box .box-inner .combo-item .fa.is-red,
.is-combo .stacked-combo-box .box-inner .combo-item .fa.is-red,
.is-combo .user-combo-box .box-inner .combo-item .fa.is-red {
    color: #FF7273
}

.is-combo .combo-box .box-inner .combo-item img,
.is-combo .image-combo-box .box-inner .combo-item img,
.is-combo .stacked-combo-box .box-inner .combo-item img,
.is-combo .user-combo-box .box-inner .combo-item img {
    display: block;
    height: 22px;
    width: 22px;
    object-fit: contain;
    margin-right: 8px
}

.is-combo .combo-box .box-inner .combo-item img.is-stacked,
.is-combo .image-combo-box .box-inner .combo-item img.is-stacked,
.is-combo .stacked-combo-box .box-inner .combo-item img.is-stacked,
.is-combo .user-combo-box .box-inner .combo-item img.is-stacked {
    height: 26px;
    width: 26px;
    border: 2px solid #fff;
    margin-right: 0 !important
}

.is-combo .combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(1),
.is-combo .image-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(1),
.is-combo .stacked-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(1),
.is-combo .user-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(1) {
    margin-left: -9px
}

.is-combo .combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(2),
.is-combo .image-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(2),
.is-combo .stacked-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(2),
.is-combo .user-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(2) {
    margin-left: -9px
}

.is-combo .combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(3),
.is-combo .image-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(3),
.is-combo .stacked-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(3),
.is-combo .user-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(3) {
    margin-left: -9px
}

.is-combo .combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(4),
.is-combo .image-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(4),
.is-combo .stacked-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(4),
.is-combo .user-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(4) {
    margin-left: -9px
}

.is-combo .combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(5),
.is-combo .image-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(5),
.is-combo .stacked-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(5),
.is-combo .user-combo-box .box-inner .combo-item img.is-stacked:not(:first-child):nth-child(5) {
    margin-left: -9px
}

.is-combo .combo-box .box-inner .combo-item .avatar-container,
.is-combo .image-combo-box .box-inner .combo-item .avatar-container,
.is-combo .stacked-combo-box .box-inner .combo-item .avatar-container,
.is-combo .user-combo-box .box-inner .combo-item .avatar-container {
    position: relative;
    display: block;
    height: 26px;
    width: 26px
}

.is-combo .combo-box .box-inner .combo-item .avatar-container .avatar,
.is-combo .image-combo-box .box-inner .combo-item .avatar-container .avatar,
.is-combo .stacked-combo-box .box-inner .combo-item .avatar-container .avatar,
.is-combo .user-combo-box .box-inner .combo-item .avatar-container .avatar {
    display: block;
    height: 26px;
    width: 26px;
    border-radius: 50%
}

.is-combo .combo-box .box-inner .combo-item .avatar-container .badge,
.is-combo .image-combo-box .box-inner .combo-item .avatar-container .badge,
.is-combo .stacked-combo-box .box-inner .combo-item .avatar-container .badge,
.is-combo .user-combo-box .box-inner .combo-item .avatar-container .badge {
    position: absolute;
    bottom: 0;
    right: -6px;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 0
}

.is-combo .combo-box .box-inner .combo-item span,
.is-combo .image-combo-box .box-inner .combo-item span,
.is-combo .stacked-combo-box .box-inner .combo-item span,
.is-combo .user-combo-box .box-inner .combo-item span {
    display: block;
    color: #393a4f;
    font-size: .9rem;
    font-weight: 500;
    margin-left: 8px
}

.is-combo .combo-box .box-inner .combo-item span.is-pushed,
.is-combo .image-combo-box .box-inner .combo-item span.is-pushed,
.is-combo .stacked-combo-box .box-inner .combo-item span.is-pushed,
.is-combo .user-combo-box .box-inner .combo-item span.is-pushed {
    margin-left: 18px
}

.is-combo .combo-box .box-chevron,
.is-combo .image-combo-box .box-chevron,
.is-combo .stacked-combo-box .box-chevron,
.is-combo .user-combo-box .box-chevron {
    position: absolute;
    top: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    width: 40px
}

.is-combo .combo-box .box-chevron svg,
.is-combo .image-combo-box .box-chevron svg,
.is-combo .stacked-combo-box .box-chevron svg,
.is-combo .user-combo-box .box-chevron svg {
    height: 18px;
    width: 18px;
    stroke: #393a4f;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transition: all .3s
}

.is-combo .combo-box .box-dropdown,
.is-combo .image-combo-box .box-dropdown,
.is-combo .stacked-combo-box .box-dropdown,
.is-combo .user-combo-box .box-dropdown {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 50;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    pointer-events: none;
    transition: all .3s
}

.is-combo .combo-box .box-dropdown.is-dropup,
.is-combo .image-combo-box .box-dropdown.is-dropup,
.is-combo .stacked-combo-box .box-dropdown.is-dropup,
.is-combo .user-combo-box .box-dropdown.is-dropup {
    top: -165px;
    height: 148px
}

.is-combo .combo-box .box-dropdown.is-dropup .dropdown-inner,
.is-combo .image-combo-box .box-dropdown.is-dropup .dropdown-inner,
.is-combo .stacked-combo-box .box-dropdown.is-dropup .dropdown-inner,
.is-combo .user-combo-box .box-dropdown.is-dropup .dropdown-inner {
    overflow-y: auto
}

.is-combo .combo-box .box-dropdown .dropdown-inner,
.is-combo .image-combo-box .box-dropdown .dropdown-inner,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner,
.is-combo .user-combo-box .box-dropdown .dropdown-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
    max-height: 190px;
    overflow-y: auto
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul {
    padding: 10px 0
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li {
    padding: 6px 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    width: 30px;
    margin-right: 8px
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon i,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon i,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon i,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon i {
    color: #999;
    font-size: 20px
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa {
    font-size: 16px;
    position: relative;
    top: 5px
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-green,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-green,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-green,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-green {
    color: #1CE589
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-blue,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-blue,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-blue,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-blue {
    color: #039BE5
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-orange,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-orange,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-orange,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-orange {
    color: #ff9700
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-red,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-red,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-red,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon .fa.is-red {
    color: #FF7273
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon img,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon img,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon img,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon img {
    display: block;
    height: 22px;
    width: 22px;
    object-fit: contain;
    transition: opacity .3s
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon img.faded-img,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon img.faded-img,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon img.faded-img,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon img.faded-img {
    opacity: .4
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon .avatar,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon .avatar,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon .avatar,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon .avatar {
    display: block;
    height: 22px;
    width: 22px;
    border-radius: 50%
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .item-icon .badge,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .item-icon .badge,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .item-icon .badge,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .item-icon .badge {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #fff
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .checkmark,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .checkmark,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .checkmark,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .checkmark {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 16px;
    width: 16px;
    margin-right: 8px;
    margin-left: auto;
    opacity: 0;
    transition: all .3s
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li .checkmark svg,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li .checkmark svg,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li .checkmark svg,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li .checkmark svg {
    stroke: #0062ff;
    stroke-width: 3px;
    height: 16px;
    width: 16px
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li span,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li span,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li span,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li span {
    display: block;
    color: #999;
    font-size: .9rem;
    font-weight: 500
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li:hover,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li:hover,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li:hover,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li:hover {
    background: #ededed
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li.is-active .item-icon i,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li.is-active .item-icon i,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li.is-active .item-icon i,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li.is-active .item-icon i {
    color: #393a4f
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li.is-active .item-icon .faded-img,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li.is-active .item-icon .faded-img,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li.is-active .item-icon .faded-img,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li.is-active .item-icon .faded-img {
    opacity: 1
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li.is-active span,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li.is-active span,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li.is-active span,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li.is-active span {
    color: #393a4f
}

.is-combo .combo-box .box-dropdown .dropdown-inner ul li.is-active .checkmark,
.is-combo .image-combo-box .box-dropdown .dropdown-inner ul li.is-active .checkmark,
.is-combo .stacked-combo-box .box-dropdown .dropdown-inner ul li.is-active .checkmark,
.is-combo .user-combo-box .box-dropdown .dropdown-inner ul li.is-active .checkmark {
    opacity: 1
}

.is-combo .combo-box.is-active,
.is-combo .image-combo-box.is-active,
.is-combo .stacked-combo-box.is-active,
.is-combo .user-combo-box.is-active {
    border-color: #e8e8e8
}

.is-combo .combo-box.is-active .box-chevron svg,
.is-combo .image-combo-box.is-active .box-chevron svg,
.is-combo .stacked-combo-box.is-active .box-chevron svg,
.is-combo .user-combo-box.is-active .box-chevron svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.is-combo .combo-box.is-active .box-dropdown,
.is-combo .image-combo-box.is-active .box-dropdown,
.is-combo .stacked-combo-box.is-active .box-dropdown,
.is-combo .user-combo-box.is-active .box-dropdown {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: all
}

.is-combo .help-text {
    font-size: .75rem;
    color: #999
}

.is-combo .big-combo-box {
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 58px;
    margin-top: 4px;
    cursor: pointer;
    transition: all .3s
}

.is-combo .big-combo-box .box-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    height: 100%
}

.is-combo .big-combo-box .box-inner .combo-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 58px;
    padding-left: 8px
}

.is-combo .big-combo-box .box-inner .combo-item i {
    color: #0062ff;
    font-size: 1.6rem
}

.is-combo .big-combo-box .box-inner .combo-item .combo-text {
    margin-left: 16px
}

.is-combo .big-combo-box .box-inner .combo-item .combo-text span {
    display: block
}

.is-combo .big-combo-box .box-inner .combo-item .combo-text span:first-child {
    color: #393a4f;
    font-size: .9rem;
    font-weight: 500
}

.is-combo .big-combo-box .box-inner .combo-item .combo-text span:nth-child(2) {
    color: #999;
    font-size: .8rem;
    max-width: 330px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.is-combo .big-combo-box .box-chevron {
    position: absolute;
    top: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 58px;
    width: 58px
}

.is-combo .big-combo-box .box-chevron svg {
    height: 18px;
    width: 18px;
    stroke: #393a4f;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transition: all .3s
}

.is-combo .big-combo-box .box-dropdown {
    position: absolute;
    top: 54px;
    left: 0;
    width: 100%;
    z-index: 50;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    pointer-events: none;
    transition: all .3s
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 10px;
    max-height: 190px;
    overflow-y: auto;
    overflow-x: hidden
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner ul {
    padding: 10px 0
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner ul li {
    padding: 6px 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner ul li .item-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    width: 30px;
    min-height: 30px;
    min-width: 30px;
    margin-right: 16px
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner ul li .item-icon i {
    color: #999;
    font-size: 1.6rem
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner ul li .item-name span {
    display: block
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner ul li .item-name span:first-child {
    color: #393a4f;
    font-size: .9rem;
    font-weight: 500
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner ul li .item-name span:nth-child(2) {
    color: #999;
    font-size: .8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner ul li:hover {
    background: #ededed
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner ul li.is-active .item-icon i {
    color: #0062ff
}

.is-combo .big-combo-box .box-dropdown .dropdown-inner ul li.is-active span {
    color: #393a4f
}

.is-combo .big-combo-box.is-active {
    border-color: #e8e8e8
}

.is-combo .big-combo-box.is-active .box-chevron svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.is-combo .big-combo-box.is-active .box-dropdown {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: all
}

.custom-select {
    width: 100%;
    z-index: 3
}

.custom-select.is-dropup .select-drop {
    top: -100%
}

.custom-select .select-box {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 40px 0 10px;
    height: 36px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #999;
    background: #fff;
    cursor: pointer;
    transition: all .3s
}

.custom-select .select-box:hover {
    border-color: #e8e8e8
}

.custom-select .select-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.custom-select .select-icon svg {
    height: 20px;
    width: 20px;
    stroke: #bababa !important;
    transition: all .3s
}

.custom-select .select-drop {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    min-height: 135px;
    max-height: 138px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    z-index: 5;
    transition: all .3s;
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    pointer-events: none
}

.custom-select .select-drop .drop-inner {
    position: relative;
    height: 100%;
    width: 100%;
    background: #fff
}

.custom-select .select-drop .drop-inner .option-row {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    background: #fff
}

.custom-select .select-drop .drop-inner .option-row input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer
}

.custom-select .select-drop .drop-inner .option-row input:checked+.option-meta {
    background: #f2f2f2
}

.custom-select .select-drop .drop-inner .option-row input:checked+.option-meta span {
    color: #393a4f
}

.custom-select .select-drop .drop-inner .option-row input:checked+.option-meta svg.is-purple {
    stroke: #9c2bed
}

.custom-select .select-drop .drop-inner .option-row .option-meta {
    padding: 12px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.custom-select .select-drop .drop-inner .option-row .option-meta img {
    display: block;
    max-height: 20px
}

.custom-select .select-drop .drop-inner .option-row .option-meta svg {
    height: 20px;
    width: 20px;
    stroke: #cecece
}

.custom-select .select-drop .drop-inner .option-row .option-meta svg.is-small {
    height: 14px;
    width: 14px
}

.custom-select .select-drop .drop-inner .option-row .option-meta span {
    display: block;
    font-weight: 500;
    color: #999;
    font-size: .9rem;
    margin-left: 8px
}

.custom-select.is-active .select-drop {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: all
}

.custom-select.is-active .select-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.custom-select.is-accounts .option-meta img {
    max-height: 36px !important;
    border-radius: 50%
}


/*! _radios.scss | Friendkit | © Css Ninja. 2018-2019 */

.material-radio {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.material-radio.is-accent .dot {
    background-color: #0062ff
}

.material-radio.is-accent input:checked {
    background: transparent;
    border-color: #0062ff
}

.material-radio.is-accent input:checked+.dot {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.material-radio.is-accent input:focus:checked,
.material-radio.is-accent input.focus:checked {
    background-color: transparent;
    border-color: #0062ff;
    box-shadow: 0 0 0 12px rgba(0, 98, 255, 0.1)
}

.material-radio.is-accent:active input:checked {
    background-color: transparent;
    border-color: #0062ff;
    box-shadow: 0 0 0 12px rgba(0, 98, 255, 0.1)
}

.material-radio.is-green .dot {
    background-color: #1CE589
}

.material-radio.is-green input:checked {
    background: transparent;
    border-color: #1CE589
}

.material-radio.is-green input:checked+.dot {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.material-radio.is-green input:focus:checked,
.material-radio.is-green input.focus:checked {
    background-color: transparent;
    border-color: #1CE589;
    box-shadow: 0 0 0 12px rgba(28, 229, 137, 0.1)
}

.material-radio.is-green:active input:checked {
    background-color: transparent;
    border-color: #1CE589;
    box-shadow: 0 0 0 12px rgba(28, 229, 137, 0.1)
}

.material-radio.is-blue .dot {
    background-color: #039BE5
}

.material-radio.is-blue input:checked {
    background: transparent;
    border-color: #039BE5
}

.material-radio.is-blue input:checked+.dot {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.material-radio.is-blue input:focus:checked,
.material-radio.is-blue input.focus:checked {
    background-color: transparent;
    border-color: #039BE5;
    box-shadow: 0 0 0 12px rgba(3, 155, 229, 0.1)
}

.material-radio.is-blue:active input:checked {
    background-color: transparent;
    border-color: #039BE5;
    box-shadow: 0 0 0 12px rgba(3, 155, 229, 0.1)
}

.material-radio.is-orange .dot {
    background-color: #ff9700
}

.material-radio.is-orange input:checked {
    background: transparent;
    border-color: #ff9700
}

.material-radio.is-orange input:checked+.dot {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.material-radio.is-orange input:focus:checked,
.material-radio.is-orange input.focus:checked {
    background-color: transparent;
    border-color: #ff9700;
    box-shadow: 0 0 0 12px rgba(255, 151, 0, 0.1)
}

.material-radio.is-orange:active input:checked {
    background-color: transparent;
    border-color: #ff9700;
    box-shadow: 0 0 0 12px rgba(255, 151, 0, 0.1)
}

.material-radio.is-red .dot {
    background-color: #FF7273
}

.material-radio.is-red input:checked {
    background: transparent;
    border-color: #FF7273
}

.material-radio.is-red input:checked+.dot {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.material-radio.is-red input:focus:checked,
.material-radio.is-red input.focus:checked {
    background-color: transparent;
    border-color: #FF7273;
    box-shadow: 0 0 0 12px rgba(255, 114, 115, 0.1)
}

.material-radio.is-red:active input:checked {
    background-color: transparent;
    border-color: #FF7273;
    box-shadow: 0 0 0 12px rgba(255, 114, 115, 0.1)
}

.material-radio .dot {
    position: absolute;
    top: calc(50% - 3px);
    left: 6.5px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #ff5f59;
    -webkit-transform: scale(0);
    transform: scale(0);
    z-index: 5;
    transition: all .3s
}

.material-radio input,
.material-radio input:hover,
.material-radio input.hover {
    -webkit-appearance: none;
    border: 1.4px solid #cecece;
    border-radius: 13px;
    height: 19px;
    margin: 0;
    vertical-align: top;
    width: 19px
}

.material-radio input:focus,
.material-radio input.focus {
    background-color: transparent;
    border-color: #cecece;
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.07);
    outline: none
}

.material-radio input:disabled {
    border-color: rgba(0, 0, 0, 0.26)
}

.material-radio input:disabled:focus,
.material-radio input:disabled.focus {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.26);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.07)
}

.material-radio input:checked {
    background: transparent;
    border-color: #ff5f59
}

.material-radio input:checked+.dot {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.material-radio input:focus:checked,
.material-radio input.focus:checked {
    background-color: transparent;
    border-color: #ff5f59;
    box-shadow: 0 0 0 12px rgba(255, 95, 89, 0.1)
}

.material-radio input:disabled:checked {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.26)
}

.material-radio input:disabled:focus:checked,
.material-radio input:disabled.focus:checked {
    background-color: rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.26);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.07)
}

.material-radio .radio-label {
    line-height: 30px;
    font-size: .9rem;
    margin: 0 10px
}

.material-radio .radio-label small {
    font-weight: 600;
    color: #ff5f59
}

.material-radio:active input,
.material-radio.active input {
    background-color: rgba(0, 0, 0, 0.07);
    border-color: #cecece;
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.07);
    outline: none
}

.material-radio:active input:disabled,
.material-radio.active input:disabled {
    background-color: rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.26);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.07)
}

.material-radio:active input:checked,
.material-radio.active input:checked {
    background-color: rgba(255, 95, 89, 0.1);
    border-color: #ff5f59;
    box-shadow: 0 0 0 12px rgba(255, 95, 89, 0.1)
}

.material-radio:active input:disabled:checked,
.material-radio.active input:disabled:checked {
    background-color: rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.26);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0.07)
}


/*! _switch.scss | Friendkit | © Css Ninja. 2018-2019 */

.animated-toggle {
    width: 56px;
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.animated-toggle input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.animated-toggle input:checked ~ .toggler {
    border-color: #0062ff
}

.animated-toggle input:checked ~ .toggler .dark,
.animated-toggle input:checked ~ .toggler .light {
    -webkit-transform: translateX(100%) rotate(360deg);
    transform: translateX(100%) rotate(360deg)
}

.animated-toggle input:checked ~ .toggler .dark {
    opacity: 1
}

.animated-toggle input:checked ~ .toggler .light {
    opacity: 0
}

.animated-toggle .toggler {
    position: relative;
    display: block;
    height: 31px;
    width: 53px;
    border: 2px solid #ff5f59;
    border-radius: 100px;
    transition: all .3s
}

.animated-toggle .toggler .dark,
.animated-toggle .toggler .light {
    position: absolute;
    top: 2px;
    left: 2px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: black;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateX(0) rotate(0);
    transform: translateX(0) rotate(0);
    transition: all .3s ease
}

.animated-toggle .toggler .dark svg,
.animated-toggle .toggler .light svg {
    stroke: #fff;
    height: 14px !important;
    width: 14px !important
}

.animated-toggle .toggler .light {
    background: #ff5f59;
    border-color: #ff5f59;
    opacity: 1;
    z-index: 1
}

.animated-toggle .toggler .dark {
    background: #0062ff;
    border-color: #0062ff;
    opacity: 0;
    z-index: 0
}

.f-switch {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent
}

.f-switch.is-primary input:checked+i {
    background-color: #ff5f59
}

.f-switch.is-accent input:checked+i {
    background-color: #0062ff
}

.f-switch.is-red input:checked+i {
    background-color: #FF7273
}

.f-switch.is-blue input:checked+i {
    background-color: #039BE5
}

.f-switch i {
    position: relative;
    display: inline-block;
    margin-right: .5rem;
    width: 46px;
    height: 26px;
    background-color: #e6e6e6;
    border-radius: 23px;
    vertical-align: text-bottom;
    transition: all 0.3s linear
}

.f-switch i::before {
    content: "";
    position: absolute;
    left: 0;
    width: 42px;
    height: 22px;
    background-color: #fff;
    border-radius: 11px;
    -webkit-transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
    transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
    transition: all 0.25s linear
}

.f-switch i::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 11px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
    -webkit-transform: translate3d(2px, 2px, 0);
    transform: translate3d(2px, 2px, 0);
    transition: all 0.2s ease-in-out
}

.f-switch:active i::after {
    width: 28px;
    -webkit-transform: translate3d(2px, 2px, 0);
    transform: translate3d(2px, 2px, 0)
}

.f-switch:active input:checked+i::after {
    -webkit-transform: translate3d(16px, 2px, 0);
    transform: translate3d(16px, 2px, 0)
}

.f-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.f-switch input:checked+i {
    background-color: #1CE589
}

.f-switch input:checked+i::before {
    -webkit-transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0);
    transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0)
}

.f-switch input:checked+i::after {
    -webkit-transform: translate3d(22px, 2px, 0);
    transform: translate3d(22px, 2px, 0)
}

.f-switch small {
    color: #999;
    position: relative;
    top: -4px
}


/*! _popovers.scss | Friendkit | © Css Ninja. 2018-2019 */

.webui-popover {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 10px 4px !important;
    background: #fff !important;
    color: #393a4f !important;
    border: none !important;
    margin-top: -20px !important
}

.webui-popover.top>.webui-arrow {
    border-top-color: #fff !important
}

.webui-popover.bottom-right>.webui-arrow {
    border-right-color: transparent !important;
    border-bottom-color: transparent !important
}

.webui-popover.top-right>.webui-arrow {
    border-right-color: transparent !important
}

.webui-popover.top-right>.webui-arrow:after {
    border-top-color: #fff !important
}

.webui-popover.top-left>.webui-arrow {
    border-top-color: #fff !important
}

.webui-popover.left>.webui-arrow {
    border-left-color: transparent !important
}

.webui-popover .webui-arrow {
    border-top-color: transparent !important;
    border-right-color: transparent !important
}

.webui-popover .webui-arrow:after {
    border-top-color: transparent !important
}

.webui-popover .webui-popover-title {
    background-color: #fff !important;
    border-bottom: none !important;
    font-weight: 500
}

.webui-popover .webui-popover-content {
    font-size: .75rem !important
}

.webui-popover .webui-popover-content .popover-flex-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    font-size: .85rem
}

.webui-popover .webui-popover-content .popover-flex-block .staff-avatar {
    height: 38px;
    width: 38px;
    border-radius: 50%
}

.webui-popover .webui-popover-content .popover-flex-block .content-block {
    margin-left: 4px;
    color: #999
}

.webui-popover .webui-popover-content .popover-flex-block .content-block span:first-child {
    font-weight: 500;
    color: #393a4f
}

.webui-popover .webui-popover-content .popover-flex-block .content-block label,
.webui-popover .webui-popover-content .popover-flex-block .content-block span {
    display: block
}

.webui-popover .webui-popover-content .popover-flex-block .content-block label {
    color: #8d8fad;
    text-transform: uppercase;
    font-size: 70%
}

.webui-popover .webui-popover-content .popover-flex-block .fa.fa-star,
.webui-popover .webui-popover-content .popover-flex-block .fa.fa-star-half {
    color: #FFD700
}

.webui-popover .webui-popover-content .popover-flex-block .icon-block {
    height: 38px;
    width: 38px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px
}

.webui-popover .webui-popover-content .popover-flex-block .icon-block svg {
    height: 24px;
    width: 24px;
    stroke: #999;
    stroke-width: 1.3px
}

.webui-popover .webui-popover-content .popover-flex-block .icon-block svg.is-medium {
    height: 26px;
    width: 26px
}

.profile-popover-block {
    position: relative
}

.profile-popover-block .profile-popover-wrapper {
    padding: 8px 8px 0 8px
}

.profile-popover-block .profile-popover-wrapper .popover-cover {
    position: relative;
    margin-bottom: 10px;
    min-height: 104px
}

.profile-popover-block .profile-popover-wrapper .popover-cover img {
    display: block
}

.profile-popover-block .profile-popover-wrapper .popover-cover .popover-avatar {
    position: absolute;
    right: 14px;
    bottom: -25px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    z-index: 0
}

.profile-popover-block .profile-popover-wrapper .popover-cover .popover-avatar img {
    display: block
}

.profile-popover-block .profile-popover-wrapper .popover-cover .popover-avatar .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff
}

.profile-popover-block .profile-popover-wrapper .popover-cover .popover-avatar .badge {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    border-radius: 50%
}

.profile-popover-block .profile-popover-wrapper .popover-meta span {
    display: block
}

.profile-popover-block .profile-popover-wrapper .popover-meta span.user-meta,
.profile-popover-block .profile-popover-wrapper .popover-meta span.page-meta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px
}

.profile-popover-block .profile-popover-wrapper .popover-meta span.user-meta .username,
.profile-popover-block .profile-popover-wrapper .popover-meta span.user-meta .pagename,
.profile-popover-block .profile-popover-wrapper .popover-meta span.page-meta .username,
.profile-popover-block .profile-popover-wrapper .popover-meta span.page-meta .pagename {
    display: block;
    font-size: .9rem;
    font-weight: 500
}

.profile-popover-block .profile-popover-wrapper .popover-meta span.job-title {
    font-size: .8rem;
    color: #ff5f59;
    font-weight: 500;
    margin-bottom: 8px
}

.profile-popover-block .profile-popover-wrapper .popover-meta .common-friends,
.profile-popover-block .profile-popover-wrapper .popover-meta .user-location,
.profile-popover-block .profile-popover-wrapper .popover-meta .page-activity,
.profile-popover-block .profile-popover-wrapper .popover-meta .page-followers {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px
}

.profile-popover-block .profile-popover-wrapper .popover-meta .common-friends .text,
.profile-popover-block .profile-popover-wrapper .popover-meta .user-location .text,
.profile-popover-block .profile-popover-wrapper .popover-meta .page-activity .text,
.profile-popover-block .profile-popover-wrapper .popover-meta .page-followers .text {
    margin: 0 10px;
    color: #757a91
}

.profile-popover-block .profile-popover-wrapper .popover-meta .common-friends svg,
.profile-popover-block .profile-popover-wrapper .popover-meta .user-location svg,
.profile-popover-block .profile-popover-wrapper .popover-meta .page-activity svg,
.profile-popover-block .profile-popover-wrapper .popover-meta .page-followers svg {
    stroke: #888da8;
    width: 16px;
    height: 16px
}

.profile-popover-block .popover-actions {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 10px;
    z-index: 1
}

.profile-popover-block .popover-actions .popover-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    max-width: 30px;
    margin: 0 2px;
    border-radius: 50%;
    transition: all .3s;
    cursor: pointer
}

.profile-popover-block .popover-actions .popover-icon:hover {
    background: #ff5f59
}

.profile-popover-block .popover-actions .popover-icon:hover svg {
    stroke: #fff
}

.profile-popover-block .popover-actions .popover-icon svg {
    width: 16px;
    height: 16px;
    stroke: #cecece
}

.profile-popover-block .loader-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transition: all .3s;
    z-index: 0
}

.profile-popover-block .loader-overlay.is-active {
    opacity: 1;
    z-index: 1
}

.profile-popover-block .loader-overlay .loader.is-loading {
    height: 24px;
    width: 24px;
    min-height: 24px;
    min-width: 24px
}


/*! _components-tooltips.scss | Friendkit | © Css Ninja. 2018-2019 */

.ggtooltip {
    position: absolute;
    z-index: 1030;
    display: block;
    padding: 5px;
    font-size: 11px;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: visible
}

.ggtooltip.fade {
    opacity: 0;
    transition: opacity 0.6s linear
}

.ggtooltip.fade.in {
    opacity: 1
}

.ggtooltip.in {
    opacity: 0.8;
    filter: alpha(opacity=80)
}

.ggtooltip.top {
    margin-top: -3px
}

.ggtooltip.right {
    margin-left: 3px
}

.ggtooltip.bottom {
    margin-top: 3px
}

.ggtooltip.left {
    margin-left: -3px
}

.ggtooltip .ggtooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    background-color: #000000;
    border-radius: 4px;
    border: solid 1px #000000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5)
}

.ggtooltip .ggtooltip-arrow,
.ggtooltip .ggtooltip-arrow-shadow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.ggtooltip.top .ggtooltip-arrow,
.ggtooltip.top .ggtooltip-arrow-shadow {
    bottom: 1px;
    left: 50%;
    margin-left: -5px;
    border-top-color: #000000;
    border-width: 5px 5px 0
}

.ggtooltip.top .ggtooltip-arrow-shadow {
    bottom: 0
}

.ggtooltip.right .ggtooltip-arrow,
.ggtooltip.right .ggtooltip-arrow-shadow {
    top: 50%;
    left: 1px;
    margin-top: -5px;
    border-right-color: #000000;
    border-width: 5px 5px 5px 0
}

.ggtooltip.right .ggtooltip-arrow-shadow {
    left: 0
}

.ggtooltip.left .ggtooltip-arrow,
.ggtooltip.left .ggtooltip-arrow-shadow {
    top: 50%;
    right: 1px;
    margin-top: -5px;
    border-left-color: #000000;
    border-width: 5px 0 5px 5px
}

.ggtooltip.left .ggtooltip-arrow-shadow {
    right: 0
}

.ggtooltip.bottom .ggtooltip-arrow,
.ggtooltip.bottom .ggtooltip-arrow-shadow {
    top: 1px;
    left: 50%;
    margin-left: -5px;
    border-bottom-color: #000000;
    border-width: 0 5px 5px
}

.ggtooltip.bottom .ggtooltip-arrow-shadow {
    top: 0
}


/*! _checkboxes.scss | Friendkit | © Css Ninja. 2018-2019 */

.round-checkbox {
    position: relative
}

.round-checkbox>div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.round-checkbox label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 28px;
    left: 0;
    position: absolute;
    top: 0;
    width: 28px;
    transition: all .3s
}

.round-checkbox label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 7px;
    opacity: 0;
    position: absolute;
    top: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 12px
}

.round-checkbox input[type="checkbox"] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0
}

.round-checkbox input[type="checkbox"]:checked+label {
    background-color: #0062ff;
    border-color: #0062ff
}

.round-checkbox input[type="checkbox"]:checked+label:after {
    opacity: 1
}

.round-checkbox.is-primary input[type="checkbox"]:checked+label {
    background-color: #ff5f59;
    border-color: #ff5f59
}

.round-checkbox.is-green input[type="checkbox"]:checked+label {
    background-color: #1CE589;
    border-color: #1CE589
}

.round-checkbox.is-blue input[type="checkbox"]:checked+label {
    background-color: #039BE5;
    border-color: #039BE5
}

.round-checkbox.is-orange input[type="checkbox"]:checked+label {
    background-color: #ff9700;
    border-color: #ff9700
}

.round-checkbox.is-red input[type="checkbox"]:checked+label {
    background-color: #FF7273;
    border-color: #FF7273
}

.round-checkbox.is-small {
    height: 22px;
    width: 22px
}

.round-checkbox.is-small label {
    height: 22px;
    width: 22px
}

.round-checkbox.is-small label:after {
    left: 4px;
    top: 4.5px;
    width: 13px;
    height: 8px;
    -webkit-transform: rotate(-45deg) scale(0.65);
    transform: rotate(-45deg) scale(0.65)
}

.round-checkbox.is-small span {
    position: relative;
    top: -2px;
    padding: 0 10px;
    cursor: default
}

.basic-checkbox.is-accent .styled-checkbox:hover+label:before {
    background: #0062ff
}

.basic-checkbox.is-accent .styled-checkbox:checked+label:before {
    background: #0062ff;
    border-color: #0062ff
}

.basic-checkbox.is-accent .styled-checkbox:disabled+label {
    color: #0062ff
}

.basic-checkbox.is-red .styled-checkbox:hover+label:before {
    background: #FF7273
}

.basic-checkbox.is-red .styled-checkbox:checked+label:before {
    background: #FF7273;
    border-color: #FF7273
}

.basic-checkbox.is-red .styled-checkbox:disabled+label {
    color: #FF7273
}

.basic-checkbox.is-blue .styled-checkbox:hover+label:before {
    background: #039BE5
}

.basic-checkbox.is-blue .styled-checkbox:checked+label:before {
    background: #039BE5;
    border-color: #039BE5
}

.basic-checkbox.is-blue .styled-checkbox:disabled+label {
    color: #039BE5
}

.basic-checkbox.is-green .styled-checkbox:hover+label:before {
    background: #1CE589
}

.basic-checkbox.is-green .styled-checkbox:checked+label:before {
    background: #1CE589;
    border-color: #1CE589
}

.basic-checkbox.is-green .styled-checkbox:disabled+label {
    color: #1CE589
}

.basic-checkbox.is-orange .styled-checkbox:hover+label:before {
    background: #ff9700
}

.basic-checkbox.is-orange .styled-checkbox:checked+label:before {
    background: #ff9700;
    border-color: #ff9700
}

.basic-checkbox.is-orange .styled-checkbox:disabled+label {
    color: #ff9700
}

.basic-checkbox .styled-checkbox {
    position: absolute;
    opacity: 0
}

.basic-checkbox .styled-checkbox+label {
    position: relative;
    cursor: pointer;
    padding: 0
}

.basic-checkbox .styled-checkbox+label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid #cecece;
    background: white
}

.basic-checkbox .styled-checkbox:hover+label:before {
    background: #ff5f59
}

.basic-checkbox .styled-checkbox:focus+label:before {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12)
}

.basic-checkbox .styled-checkbox:checked+label:before {
    background: #ff5f59;
    border-color: #ff5f59
}

.basic-checkbox .styled-checkbox:disabled+label {
    color: #ff5f59;
    cursor: auto
}

.basic-checkbox .styled-checkbox:disabled+label:before {
    box-shadow: none;
    background: #ddd
}

.basic-checkbox .styled-checkbox:checked+label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    background: white;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}


/*! _animations.scss | Friendkit | © Css Ninja. 2018-2019 */

@-webkit-keyframes bouncy {
    from,
    to {
        -webkit-transform: scale(1, 1)
    }
    25% {
        -webkit-transform: scale(0.9, 1.1)
    }
    50% {
        -webkit-transform: scale(1.1, 0.9)
    }
    75% {
        -webkit-transform: scale(0.95, 1.05)
    }
}

@keyframes bouncy {
    from,
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    25% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1)
    }
    50% {
        -webkit-transform: scale(1.1, 0.9);
        transform: scale(1.1, 0.9)
    }
    75% {
        -webkit-transform: scale(0.95, 1.05);
        transform: scale(0.95, 1.05)
    }
}

.bouncy {
    -webkit-animation: bouncy 0.6s;
    animation: bouncy 0.6s;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }
    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }
    to {
        background-position: 0 0
    }
}

@-webkit-keyframes opacity-shift {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0.5
    }
    100% {
        opacity: 1
    }
}

@keyframes opacity-shift {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0.5
    }
    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation: fadeIn 500ms ease-in-out;
    animation: fadeIn 500ms ease-in-out
}

@-webkit-keyframes fadeInLeft {
    from {
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
        opacity: 0
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes fadeInLeft {
    from {
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
        opacity: 0
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.preFadeInLeft {
    opacity: 0
}

.fadeInLeft {
    opacity: 0;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInUp {
    from {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes fadeInUp {
    from {
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

.preFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes wave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(4.5);
        transform: scale(4.5);
        opacity: 0
    }
}

@keyframes wave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(4.5);
        transform: scale(4.5);
        opacity: 0
    }
}

@-webkit-keyframes gelatine {
    from,
    to {
        -webkit-transform: scale(1, 1)
    }
    25% {
        -webkit-transform: scale(0.9, 1.1)
    }
    50% {
        -webkit-transform: scale(1.1, 0.9)
    }
    75% {
        -webkit-transform: scale(0.95, 1.05)
    }
}

@keyframes gelatine {
    from,
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1)
    }
    25% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1)
    }
    50% {
        -webkit-transform: scale(1.1, 0.9);
        transform: scale(1.1, 0.9)
    }
    75% {
        -webkit-transform: scale(0.95, 1.05);
        transform: scale(0.95, 1.05)
    }
}

.gelatine {
    -webkit-animation: gelatine 0.6s;
    animation: gelatine 0.6s;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes modalScale {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes modalScale {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg)
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg)
    }
}

@-webkit-keyframes gradientShift {
    0% {
        background-position: 50% 0%
    }
    50% {
        background-position: 50% 100%
    }
    100% {
        background-position: 50% 0%
    }
}

@keyframes gradientShift {
    0% {
        background-position: 50% 0%
    }
    50% {
        background-position: 50% 100%
    }
    100% {
        background-position: 50% 0%
    }
}


/*! _utils.scss | Friendkit | © Css Ninja. 2018-2019 */

a {
    color: #0058e6;
    transition: all .3s
}

a:hover {
    color: #0058e6
}

a.is-inverted {
    color: #0062ff
}

a.standard-link {
    color: #039BE5;
    text-decoration: underline
}

var {
    font-style: normal
}

code {
    word-break: break-all
}

.is-disabled {
    pointer-events: none;
    opacity: 0.4;
    cursor: default !important
}

.no-click {
    pointer-events: none
}

.is-vhidden {
    visibility: hidden !important
}

.is-hidden {
    display: none !important
}

.no-padding {
    padding: 0 !important
}

.no-margin {
    margin: 0 !important
}

.ml-auto {
    margin-left: auto !important
}

.mt-10 {
    margin-top: 10px !important
}

.mb-10 {
    margin-bottom: 10px !important
}

.has-background-image {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center
}

.has-background-image.is-top {
    background-position: top !important
}

.has-background-image.is-bottom {
    background-position: bottom !important
}

.has-slimscroll {
    overflow-x: hidden !important
}

.has-slimscroll::-webkit-scrollbar {
    width: 6px !important
}

.has-slimscroll::-webkit-scrollbar-thumb {
    border-radius: 10px !important;
    background: rgba(0, 0, 0, 0.2) !important
}

.has-slimscroll-md {
    overflow-x: hidden !important
}

.has-slimscroll-md::-webkit-scrollbar {
    width: 4px !important
}

.has-slimscroll-md::-webkit-scrollbar-thumb {
    border-radius: 10px !important;
    background: rgba(0, 0, 0, 0.2) !important
}

.has-slimscroll-xs {
    overflow-x: hidden !important
}

.has-slimscroll-xs::-webkit-scrollbar {
    width: 2px !important
}

.has-slimscroll-xs::-webkit-scrollbar-thumb {
    border-radius: 10px !important;
    background: rgba(0, 0, 0, 0.2) !important
}

.checkmark-wrapper .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #0062ff;
    fill: none;
    -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.checkmark-wrapper .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #0062ff;
    -webkit-animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

.checkmark-wrapper .checkmark.is-small {
    height: 36px;
    width: 36px
}

.checkmark-wrapper .checkmark.is-xs {
    height: 24px;
    width: 24px
}

.checkmark-wrapper .checkmark__check {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

@-webkit-keyframes stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0
    }
}

@-webkit-keyframes scale {
    0%,
    100% {
        -webkit-transform: none;
        transform: none
    }
    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1)
    }
}

@keyframes scale {
    0%,
    100% {
        -webkit-transform: none;
        transform: none
    }
    50% {
        -webkit-transform: scale3d(1.1, 1.1, 1);
        transform: scale3d(1.1, 1.1, 1)
    }
}

@-webkit-keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #0062ff
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #0062ff
    }
}

.fancybox-content {
    display: inline-block
}

.fancybox-content.hidden {
    display: none
}

.morphing-btn-wrap,
#morphing {
    width: 111.425px
}

@media all and (min-width: 600px) {
    .fancybox-custom-layout .fancybox-bg {
        background: #0062ff
    }
    .fancybox-custom-layout .fancybox-slide {
        background: #181e28;
        padding: 0 40px
    }
    .fancybox-custom-layout .fancybox-slide img {
        border-radius: 6px
    }
    .fancybox-custom-layout .fancybox-custom-layout.fancybox-is-open .fancybox-bg {
        opacity: 1
    }
    .fancybox-custom-layout .fancybox-caption {
        background: #fff;
        bottom: 0;
        color: #6c6f73;
        left: auto;
        padding: 10px 0;
        right: 44px;
        top: 0;
        width: 350px
    }
    .fancybox-custom-layout .fancybox-caption:before {
        display: none
    }
    .fancybox-custom-layout .fancybox-caption a {
        text-decoration: none
    }
    .fancybox-custom-layout .fancybox-caption a:hover {
        color: #0062ff
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls {
        position: absolute;
        bottom: 0;
        left: 0;
        background: #fbfbfc;
        height: 50px;
        width: 100%;
        border-radius: 0 0 6px 0;
        border-top: 1px solid #dee2e5
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 0 16px
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner img {
        height: 32px;
        width: 32px;
        border-radius: 50%
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .control {
        width: 100%
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .control .textarea,
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .control .emojionearea-editor {
        resize: none;
        height: 36px;
        max-height: 36px;
        min-height: 36px;
        border-radius: 100px;
        overflow: hidden;
        line-height: 1.6;
        font-size: .8rem;
        padding-left: 16px;
        margin: 0 6px
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .emojionearea-editor {
        padding-left: 0 !important
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .emojionearea-editor img {
        height: 18px;
        width: 18px;
        min-height: 18px;
        max-height: 18px
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .emojionearea {
        overflow: visible !important
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .emojionearea-picker {
        top: -230px;
        position: absolute;
        left: -50px;
        width: 310px
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .emojionearea-picker .emojionearea-wrapper {
        width: 310px
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .emojionearea-picker .emojionearea-wrapper img {
        height: 22px;
        width: 22px;
        min-height: 22px;
        max-height: 22px
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .emojionearea-scroll-area {
        width: 310px
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .emojionearea .emojionearea-button>div.emojionearea-button-open {
        background-position: 0 -22px
    }
    .fancybox-custom-layout .fancybox-caption .comment-controls .controls-inner .emojionearea .emojionearea-picker .emojionearea-scroll-area .emojibtn {
        width: 24px !important;
        height: 24px !important
    }
    .fancybox-custom-layout .fancybox-caption .header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: center;
        align-items: center;
        padding: 12px;
        width: 100%
    }
    .fancybox-custom-layout .fancybox-caption .header img {
        height: 42px;
        width: 42px;
        border-radius: 50%
    }
    .fancybox-custom-layout .fancybox-caption .header .user-meta {
        margin: 0 10px
    }
    .fancybox-custom-layout .fancybox-caption .header .user-meta span {
        display: block
    }
    .fancybox-custom-layout .fancybox-caption .header .user-meta span:first-child {
        font-size: .9rem;
        font-weight: 500
    }
    .fancybox-custom-layout .fancybox-caption .header .user-meta span:first-child small {
        color: #999
    }
    .fancybox-custom-layout .fancybox-caption .header .user-meta span:nth-child(2) {
        text-align: left;
        font-size: .8rem;
        color: #999
    }
    .fancybox-custom-layout .fancybox-caption .header .button {
        line-height: 0;
        margin-left: auto;
        padding: 14px 18px
    }
    .fancybox-custom-layout .fancybox-caption .header .dropdown .button {
        padding: 18px 6px;
        border: none;
        background: transparent
    }
    .fancybox-custom-layout .fancybox-caption .header .dropdown .button svg {
        height: 18px;
        width: 18px
    }
    .fancybox-custom-layout .fancybox-caption .header .dropdown .dropdown-menu {
        margin-top: 10px
    }
    .fancybox-custom-layout .fancybox-caption .inner-content {
        padding: 12px
    }
    .fancybox-custom-layout .fancybox-caption .inner-content .control {
        width: 100%
    }
    .fancybox-custom-layout .fancybox-caption .inner-content .control input {
        padding-left: 34px
    }
    .fancybox-custom-layout .fancybox-caption .inner-content .control input:focus+.icon svg {
        stroke: #0062ff
    }
    .fancybox-custom-layout .fancybox-caption .inner-content .control .icon {
        position: absolute;
        top: 0;
        left: 0;
        height: 32px;
        width: 32px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center
    }
    .fancybox-custom-layout .fancybox-caption .inner-content .control .icon svg {
        height: 18px;
        width: 18px;
        stroke: #cecece;
        transition: all .3s
    }
    .fancybox-custom-layout .fancybox-caption .live-stats {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 0 20px 0;
        border-bottom: 1px solid #e8e8e8
    }
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: stretch;
        align-items: stretch
    }
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .shares-count,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .comments-count,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .likes-count,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .views-count {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 3px
    }
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .shares-count span,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .comments-count span,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .likes-count span,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .views-count span {
        display: block;
        font-size: .8rem;
        color: #888da8;
        margin: 0 5px
    }
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .shares-count span.views,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .comments-count span.views,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .likes-count span.views,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .views-count span.views {
        margin: 0 2px
    }
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .shares-count svg,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .comments-count svg,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .likes-count svg,
    .fancybox-custom-layout .fancybox-caption .live-stats .social-count .views-count svg {
        height: 14px;
        width: 14px;
        stroke: #888da8
    }
    .fancybox-custom-layout .fancybox-caption .actions {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        padding: 12px 0 0 0
    }
    .fancybox-custom-layout .fancybox-caption .actions .action {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer
    }
    .fancybox-custom-layout .fancybox-caption .actions .action span {
        display: block;
        font-size: .8rem;
        margin: 0 4px;
        transition: all .3s
    }
    .fancybox-custom-layout .fancybox-caption .actions .action svg {
        height: 16px;
        width: 16px;
        stroke: #888da8;
        transition: all .3s
    }
    .fancybox-custom-layout .fancybox-caption .actions .action:hover span {
        color: #0062ff
    }
    .fancybox-custom-layout .fancybox-caption .actions .action:hover svg {
        stroke: #0062ff
    }
    .fancybox-custom-layout .fancybox-caption .comments-list {
        background: #f5f6f7;
        height: calc(100% - 200px);
        padding: 20px 14px;
        overflow-y: auto
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment {
        border: none !important;
        padding-top: 0 !important
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment.is-nested {
        margin-left: 40px
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-left {
        margin-right: 10px
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-left img {
        border-radius: 50%
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content {
        background: #fff;
        padding: 12px;
        border-radius: 8px
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content .username {
        font-size: .8rem;
        font-weight: 500
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content p {
        font-size: .75rem;
        color: #999
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content .comment-actions {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 8px
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content .comment-actions span,
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content .comment-actions a {
        display: block;
        font-size: .75rem
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content .comment-actions span {
        margin: 0 10px;
        color: #999
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content .comment-actions .likes-count {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: center;
        align-items: center;
        margin-left: auto
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content .comment-actions .likes-count span {
        display: block;
        font-size: .75rem;
        color: #888da8;
        margin: 0 5px
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content .comment-actions .likes-count span.views {
        margin: 0 2px
    }
    .fancybox-custom-layout .fancybox-caption .comments-list .is-comment .media-content .comment-actions .likes-count svg {
        height: 12px;
        width: 12px;
        stroke: #888da8
    }
    .fancybox-custom-layout .fancybox-stage {
        right: 394px
    }
    .fancybox-custom-layout .fancybox-toolbar {
        background: #0062ff;
        bottom: 0;
        left: auto;
        right: 0;
        top: 0;
        width: 44px
    }
    .fancybox-custom-layout .fancybox-button {
        background: transparent
    }
    .fancybox-custom-layout .fancybox-button div {
        padding: 2px
    }
    .fancybox-custom-layout .fancybox-button[disabled] {
        color: #fff
    }
    .fancybox-custom-layout .fancybox-button:not([disabled]) {
        color: #fff
    }
    .fancybox-custom-layout .fancybox-button--arrow_right {
        right: 308px
    }
}

.tabs.is-boxed li.is-active a {
    border-color: #e8e8e8
}

.subloader {
    position: fixed;
    top: 107px;
    left: 0;
    height: calc(100% - 107px);
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    z-index: -1;
    transition: all .3s
}

.subloader.is-active {
    opacity: 1;
    z-index: 8
}

.subloader.is-grey {
    background: #f4f4f4
}

.subloader.is-white {
    background: #fff
}

.subloader .loader {
    height: 5rem;
    width: 5rem
}

pre {
    background-color: transparent !important;
    color: unset;
    font-size: 0.875em;
    overflow-x: auto;
    padding: 0 !important;
    white-space: pre;
    word-wrap: normal
}

.hljs {
    display: block;
    overflow-x: auto;
    font-size: 0.875em;
    padding: 1.5em;
    background: #344258;
    overflow-x: auto;
    white-space: pre;
    border-radius: 8px;
    color: white
}

.hljs-name,
.hljs-strong {
    font-weight: bold;
    color: #4FC1EA
}

.hljs-code,
.hljs-emphasis {
    font-style: italic
}

.hljs-tag {
    color: #909090
}

.hljs-variable,
.hljs-template-variable,
.hljs-selector-id,
.hljs-selector-class {
    color: #ade5fc
}

.hljs-string,
.hljs-bullet {
    color: #F39200 !important
}

.hljs-type,
.hljs-title,
.hljs-section,
.hljs-attribute,
.hljs-quote,
.hljs-built_in,
.hljs-builtin-name {
    color: #ffa
}

.hljs-attr {
    color: #68BB88
}

.hljs-number,
.hljs-symbol,
.hljs-bullet {
    color: #d36363
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal {
    color: #fcc28c
}

.hljs-comment,
.hljs-deletion,
.hljs-code {
    color: #888
}

.hljs-regexp,
.hljs-link {
    color: #c6b4f0
}

.hljs-meta {
    color: #fc9b9b
}

.hljs-deletion {
    background-color: #fc9b9b;
    color: #333
}

.hljs-addition {
    background-color: #a2fca2;
    color: #333
}

.hljs a {
    color: inherit
}

.hljs a:focus,
.hljs a:hover {
    color: inherit;
    text-decoration: underline
}

#message {
    top: -200px;
    transition: all .5s
}

.fancybox-slide--current #message {
    top: 0
}

.fancybox-is-closing #message {
    top: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5)
}

@media all and (min-width: 600px) {
    .element-block .fancybox-custom-layout .fancybox-bg {
        background: #fcfaf9
    }
    .element-block .fancybox-custom-layout.fancybox-is-open .fancybox-bg {
        opacity: 1
    }
    .element-block .fancybox-custom-layout .fancybox-caption {
        background: #f1ecec;
        bottom: 0;
        color: #6c6f73;
        left: auto;
        padding: 30px 20px;
        right: 44px;
        top: 0;
        width: 256px
    }
    .element-block .fancybox-custom-layout .fancybox-caption h3 {
        color: #444;
        font-size: 21px;
        line-height: 1.3;
        margin-bottom: 24px
    }
    .element-block .fancybox-custom-layout .fancybox-caption a {
        color: #444
    }
    .element-block .fancybox-custom-layout .fancybox-caption::before {
        display: none
    }
    .element-block .fancybox-custom-layout .fancybox-stage {
        right: 300px
    }
    .element-block .fancybox-custom-layout .fancybox-toolbar {
        background: #3b3b45;
        bottom: 0;
        left: auto;
        right: 0;
        top: 0;
        width: 44px
    }
    .element-block .fancybox-custom-layout .fancybox-button {
        background: transparent
    }
    .element-block .fancybox-custom-layout .fancybox-navigation .fancybox-button div {
        padding: 6px;
        background: #fcfaf9;
        border-radius: 50%;
        transition: opacity .2s;
        box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
        opacity: .7
    }
    .element-block .fancybox-custom-layout .fancybox-navigation .fancybox-button:not([disabled]):hover div {
        opacity: 1
    }
    .element-block .fancybox-custom-layout .fancybox-navigation .fancybox-button[disabled] {
        color: #999
    }
    .element-block .fancybox-custom-layout .fancybox-navigation .fancybox-button:not([disabled]) {
        color: #333
    }
    .element-block .fancybox-custom-layout .fancybox-button--arrow_right {
        right: 308px
    }
}

.morphing-btn-wrap {
    display: inline-block;
    position: relative;
    text-align: center
}

.morphing-btn {
    box-sizing: border-box;
    transition: color .3s .2s, width .2s 0s;
    white-space: nowrap
}

.morphing-btn_circle {
    color: transparent !important;
    padding-left: 0;
    padding-right: 0;
    transition: color .2s 0s, width .3s .2s;
    width: 35.6px !important
}

.morphing-btn-clone {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #ff5268;
    border-radius: 50%;
    position: fixed;
    transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    z-index: 3
}

.morphing-btn-clone_visible {
    display: block;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important
}

.fancybox-morphing .fancybox-bg {
    background: #ff5268;
    opacity: 1
}

.fancybox-morphing .fancybox-toolbar {
    right: 40px;
    top: 20px
}

.fancybox-morphing .fancybox-button--close {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    color: #fff
}

.fancybox-morphing .fancybox-button--close:hover {
    background: rgba(0, 0, 0, 0.25)
}

#morphing-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: transparent;
    line-height: 2;
    margin: 0;
    padding: 6em 10vw;
    position: relative;
    z-index: 3
}

#morphing-content * {
    color: #fff
}

.fc-container .fancybox-bg {
    background: #eee
}

.fancybox-is-open.fc-container .fancybox-bg {
    opacity: .95
}

.fc-content {
    box-shadow: 10px 10px 60px -25px;
    max-width: 550px
}

.fancybox-fx-material.fancybox-slide--previous,
.fancybox-fx-material.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translateY(-60px) scale(1.1);
    transform: translateY(-60px) scale(1.1)
}

.fancybox-fx-material.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1)
}

.quick-view-container {
    background: rgba(10, 10, 10, 0.85)
}

.quick-view-content {
    bottom: 0;
    height: calc(100% - 40px);
    left: 0;
    margin: auto;
    max-height: 650px;
    max-width: 980px;
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 40px)
}

.quick-view-carousel {
    background: #fff;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 57%
}

.quick-view-carousel .fancybox-stage {
    bottom: 30px
}

.quick-view-aside {
    background: #fff;
    bottom: 30px;
    color: #777;
    left: auto;
    padding: 50px 0 30px 0;
    position: absolute;
    right: 0;
    top: 30px;
    width: 43%
}

.quick-view-aside::before,
.quick-view-aside::after {
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    top: 0
}

.quick-view-aside::before {
    background: #f4f4f4;
    width: 8px
}

.quick-view-aside::after {
    background: #e9e9e9;
    width: 1px
}

.quick-view-aside>div {
    height: 100%;
    overflow: auto;
    padding: 5vh 30px 0 30px;
    text-align: center
}

.quick-view-aside>div>p {
    font-size: 90%
}

.quick-view-close {
    background: #f0f0f0;
    border: 0;
    color: #222;
    cursor: pointer;
    font-family: Arial;
    font-size: 14px;
    height: 44px;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    text-indent: -99999px;
    top: 30px;
    transition: all .2s;
    width: 44px
}

.quick-view-close:hover {
    background: #e4e4e4
}

.quick-view-close::before,
.quick-view-close::after {
    background-color: #222;
    content: '';
    height: 18px;
    left: 22px;
    position: absolute;
    top: 12px;
    width: 1px
}

.quick-view-close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.quick-view-close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.quick-view-bullets {
    bottom: 0;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-align: center;
    width: 100%;
    z-index: 99999
}

.quick-view-bullets li {
    display: inline-block;
    vertical-align: top
}

.quick-view-bullets li a {
    display: block;
    height: 30px;
    position: relative;
    width: 20px
}

.quick-view-bullets li a span {
    background: #d4d2d2;
    border-radius: 99px;
    height: 10px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    text-indent: -99999px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px
}

.quick-view-bullets li.active a span {
    background: #ff4453
}

.hopscotch-bubble {
    border: 1px solid #e8e8e8 !important;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06) !important;
    border-radius: 2px !important
}

.hopscotch-bubble .hopscotch-bubble-container {
    background: #fff !important;
    position: relative !important;
    z-index: 2 !important
}

.hopscotch-bubble .hopscotch-bubble-container .hopscotch-actions .hopscotch-next {
    height: 32px;
    min-width: 80px;
    background: #fff;
    color: #393a4f;
    border-radius: 100px;
    border-color: #cecece;
    text-shadow: none !important;
    transition: all .3s
}

.hopscotch-bubble .hopscotch-bubble-container .hopscotch-actions .hopscotch-next:hover {
    background: #0062ff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important;
    border-color: #0062ff;
    color: #fff
}

.hopscotch-bubble .hopscotch-arrow.down .hopscotch-bubble-arrow-border {
    position: relative !important;
    top: -6px !important;
    border-top: 17px solid #dbdbdb !important
}

.hopscotch-bubble .hopscotch-arrow.up .hopscotch-bubble-arrow-border {
    position: relative !important;
    top: 6px !important;
    border-bottom: 17px solid #dbdbdb !important
}

.hopscotch-bubble .hopscotch-arrow.right .hopscotch-bubble-arrow-border {
    position: relative !important;
    left: -6px !important;
    border-left: 17px solid #dbdbdb !important
}

.hopscotch-bubble .hopscotch-arrow.left .hopscotch-bubble-arrow-border {
    position: relative !important;
    right: -6px !important;
    border-right: 17px solid #dbdbdb !important
}

.hopscotch-highlight {
    position: relative !important;
    z-index: 1001 !important
}


/*! _chat.scss | Friendkit | © Css Ninja. 2018-2019 */

.chat-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    pointer-events: none;
    z-index: -1;
    transition: all .3s
}

.chat-wrapper.is-active,
.chat-wrapper.is-standalone {
    pointer-events: all !important;
    z-index: 1000 !important;
    opacity: 1 !important;
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important
}

.chat-wrapper.is-standalone .chat-inner .chat-nav .close-chat {
    display: none !important
}

.chat-wrapper .chat-inner {
    position: relative;
    height: 100%;
    width: 100%
}

.chat-wrapper .chat-inner .chat-nav {
    position: absolute;
    top: 0;
    left: 60px;
    width: calc(100% - 60px);
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 16px;
    z-index: 99
}

.chat-wrapper .chat-inner .chat-nav .nav-start {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.chat-wrapper .chat-inner .chat-nav .nav-start .recipient-block {
    display: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
    -ms-flex-align: inherit;
    align-items: inherit
}

.chat-wrapper .chat-inner .chat-nav .nav-start .recipient-block .avatar-container {
    position: relative;
    height: 46px;
    width: 46px;
    border: 2px solid transparent
}

.chat-wrapper .chat-inner .chat-nav .nav-start .recipient-block .avatar-container .user-avatar {
    border-radius: 50%
}

.chat-wrapper .chat-inner .chat-nav .nav-start .recipient-block .username {
    margin-left: 8px
}

.chat-wrapper .chat-inner .chat-nav .nav-start .recipient-block .username span {
    display: block
}

.chat-wrapper .chat-inner .chat-nav .nav-start .recipient-block .username span:first-child {
    font-weight: 500;
    color: #757a91
}

.chat-wrapper .chat-inner .chat-nav .nav-start .recipient-block .username span:nth-child(2) {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.chat-wrapper .chat-inner .chat-nav .nav-start .recipient-block .username span:nth-child(2) svg {
    height: 14px;
    width: 14px;
    stroke: #888da8;
    margin-right: 4px
}

.chat-wrapper .chat-inner .chat-nav .nav-start .recipient-block .username span:nth-child(2) span {
    font-size: .9rem;
    color: #888da8
}

.chat-wrapper .chat-inner .chat-nav .nav-end {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.chat-wrapper .chat-inner .chat-nav .nav-end .dropdown {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    width: 32px
}

.chat-wrapper .chat-inner .chat-nav .nav-end .chat-nav-item.is-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    width: 32px
}

.chat-wrapper .chat-inner .chat-nav .nav-end .chat-nav-item.is-icon:last-child {
    margin-right: 4px
}

.chat-wrapper .chat-inner .chat-nav .nav-end .chat-nav-item.is-icon svg {
    height: 20px;
    width: 20px;
    stroke: #888da8
}

.chat-wrapper .chat-inner .chat-nav .nav-end .chat-nav-item.close-chat {
    border-radius: 50%
}

.chat-wrapper .chat-inner .chat-nav .nav-end .chat-nav-item.close-chat:hover {
    background: #f0f0f0
}

.chat-wrapper .chat-inner .chat-nav .nav-end .chat-nav-item.close-chat:hover svg {
    stroke: #757a91
}

.chat-wrapper .chat-inner .chat-nav .nav-end .chat-search {
    margin: 0 8px
}

.chat-wrapper .chat-inner .chat-nav .nav-end .chat-search .input:focus {
    border-color: #0062ff
}

.chat-wrapper .chat-inner .chat-nav .nav-end .chat-search .input:focus+.form-icon svg {
    stroke: #0062ff
}

.chat-wrapper .chat-inner .users-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    background: #fff;
    border-right: 1px solid #e0e0e0
}

.chat-wrapper .chat-inner .users-sidebar .header-item,
.chat-wrapper .chat-inner .users-sidebar .user-item,
.chat-wrapper .chat-inner .users-sidebar .footer-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    width: 60px
}

.chat-wrapper .chat-inner .users-sidebar .header-item img {
    height: 38px !important;
    width: 38px !important
}

.chat-wrapper .chat-inner .users-sidebar .conversations-list {
    height: calc(100% - 120px);
    overflow-y: auto
}

.chat-wrapper .chat-inner .users-sidebar .user-item {
    cursor: pointer
}

.chat-wrapper .chat-inner .users-sidebar .user-item.is-active {
    background: #f5f5f5
}

.chat-wrapper .chat-inner .users-sidebar .user-item.is-active .user-status {
    border-color: #f5f5f5 !important
}

.chat-wrapper .chat-inner .users-sidebar .user-item:hover {
    background: #ededed
}

.chat-wrapper .chat-inner .users-sidebar .user-item .avatar-container {
    position: relative;
    height: 38px;
    width: 38px;
    border: 2px solid transparent
}

.chat-wrapper .chat-inner .users-sidebar .user-item .avatar-container .user-avatar {
    border-radius: 50%
}

.chat-wrapper .chat-inner .users-sidebar .user-item .avatar-container .user-status {
    position: absolute;
    top: -3px;
    right: -1px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #999;
    border: 2px solid #fff
}

.chat-wrapper .chat-inner .users-sidebar .user-item .avatar-container .user-status.is-online {
    background: #1CE589
}

.chat-wrapper .chat-inner .users-sidebar .user-item .avatar-container .user-status.is-busy {
    background: #ff9700
}

.chat-wrapper .chat-inner .users-sidebar .user-item .avatar-container .user-status.is-away {
    background: #FF7273
}

.chat-wrapper .chat-inner .users-sidebar .footer-item {
    position: absolute;
    bottom: 0;
    left: 0
}

.chat-wrapper .chat-inner .users-sidebar .footer-item .add-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    min-height: 42px;
    width: 42px;
    max-width: 42px;
    margin: 0 auto;
    border: 1.8px dashed #999;
    border-radius: 50%;
    transition: all .3s;
    cursor: pointer
}

.chat-wrapper .chat-inner .users-sidebar .footer-item .add-button:hover {
    border: 1.8px solid #ff5f59
}

.chat-wrapper .chat-inner .users-sidebar .footer-item .add-button:hover svg {
    stroke: #ff5f59
}

.chat-wrapper .chat-inner .users-sidebar .footer-item .add-button svg {
    height: 18px;
    width: 18px;
    stroke: #999;
    transition: inherit
}

.chat-wrapper .chat-inner .chat-body {
    position: absolute;
    bottom: 0;
    left: 60px;
    height: 100%;
    width: calc(100% - 60px);
    background: #f0f0f0;
    transition: all .3s
}

.chat-wrapper .chat-inner .chat-body.is-opened {
    width: calc(100% - 460px)
}

.chat-wrapper .chat-inner .chat-body.is-opened .chat-action {
    width: calc(100% - 460px) !important
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner {
    position: relative;
    width: 100%;
    height: calc(100% - 60px);
    margin-top: 60px;
    padding: 20px 80px 60px 80px;
    overflow-y: auto;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .date-divider {
    position: relative;
    margin-bottom: 40px;
    margin-top: 20px
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .date-divider hr {
    margin: 10px 0;
    background: #ccc;
    height: 1px
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .date-divider .date-divider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 5px 10px;
    background-color: #f0f0f0;
    color: #ccc;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: start;
    margin-bottom: 30px
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message img {
    display: block;
    height: 42px;
    width: 42px;
    border-radius: 50%
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message .message-block span {
    display: block;
    width: 100%;
    font-size: .8rem;
    color: #999
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message .message-block .message-text {
    position: relative;
    display: block;
    width: auto;
    max-width: 320px;
    padding: 10px;
    border-radius: 3px;
    font-size: .9rem
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message .message-block .message-text:before {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-sent {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-sent img {
    margin-left: 20px
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-sent .message-block .message-text {
    color: #757a91;
    background-color: #fff
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-sent .message-block .message-text:before {
    right: -5px;
    border-top: 5px solid #fff
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-sent+.is-sent {
    margin-top: -16px !important
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-sent+.is-sent img {
    visibility: hidden
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-received img {
    margin-right: 20px
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-received .message-block span {
    text-align: right
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-received .message-block .message-text {
    color: #fafafa;
    background-color: #2478ff
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-received .message-block .message-text:before {
    left: -5px;
    border-top: 5px solid #2478ff
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-received+.is-received {
    margin-top: -16px !important
}

.chat-wrapper .chat-inner .chat-body .chat-body-inner .chat-message.is-received+.is-received img {
    visibility: hidden
}

.chat-wrapper .chat-inner .chat-action {
    position: fixed;
    bottom: 0;
    left: 60px;
    width: calc(100% - 60px);
    height: 60px;
    padding: 0 40px;
    background: #f0f0f0
}

.chat-wrapper .chat-inner .chat-action .chat-action-inner {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%
}

.chat-wrapper .chat-inner .chat-action .chat-action-inner .control {
    position: relative;
    width: 100%
}

.chat-wrapper .chat-inner .chat-action .chat-action-inner .control .textarea {
    resize: none;
    height: 44px;
    max-height: 44px;
    min-height: 44px;
    padding: 5px 9px;
    padding-left: 54px;
    transition: all .3s
}

.chat-wrapper .chat-inner .chat-action .chat-action-inner .control .textarea:focus {
    border-color: #e8e8e8 !important
}

.chat-wrapper .chat-inner .chat-action .chat-action-inner .control .compose-dropdown {
    position: absolute;
    top: 0;
    left: 0
}

.chat-wrapper .chat-inner .chat-action .chat-action-inner .control .add-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    width: 44px
}

.chat-wrapper .chat-inner .chat-action .chat-action-inner .control .add-button .button-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 34px;
    min-height: 34px;
    width: 34px;
    max-width: 34px;
    border: 1px solid #0062ff;
    border-radius: 4px;
    background: #0062ff;
    transition: all .3s;
    cursor: pointer
}

.chat-wrapper .chat-inner .chat-action .chat-action-inner .control .add-button:hover .button-inner {
    border-color: #ff5f59;
    background-color: #ff5f59
}

.chat-wrapper .chat-inner .chat-action .chat-action-inner .control .add-button:hover .button-inner svg {
    stroke: #fafafa
}

.chat-wrapper .chat-inner .chat-action .chat-action-inner .control .add-button svg {
    height: 18px;
    width: 18px;
    stroke: #fafafa;
    transition: inherit
}

.chat-wrapper .chat-inner .chat-panel {
    position: absolute;
    bottom: 0;
    right: 0;
    height: calc(100% - 60px);
    width: 400px;
    background: #fff;
    border-left: 1px solid #e8e8e8;
    -webkit-transform: translateX(400px);
    transform: translateX(400px);
    transition: all .3s
}

.chat-wrapper .chat-inner .chat-panel.is-opened {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.chat-wrapper .chat-inner .chat-panel .panel-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    width: 100%;
    background: #fff;
    padding: 16px
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-header h3 {
    font-size: 1.2rem;
    font-weight: 500
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-header .panel-close {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    transition: all .3s;
    cursor: pointer
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-header .panel-close:hover {
    background: #f0f0f0
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-header .panel-close:hover svg {
    stroke: #757a91
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-header .panel-close svg {
    height: 20px;
    width: 20px;
    stroke: #999;
    transition: inherit
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body {
    position: absolute;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 60px)
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner {
    padding: 16px;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .subheader {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .subheader .action-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    width: 40px;
    cursor: pointer;
    border-radius: 6px;
    transition: all .3s
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .subheader .action-icon i {
    font-size: 22px;
    color: #888da8
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .subheader .action-icon:hover {
    background: #f5f5f5
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .details-avatar {
    position: relative;
    height: 110px;
    width: 110px;
    margin: 10px auto
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .details-avatar img {
    display: block;
    border-radius: 50%
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .details-avatar .call-me {
    position: absolute;
    bottom: 0;
    right: -12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #0062ff;
    cursor: pointer;
    transition: all .3s
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .details-avatar .call-me:hover {
    background: #3d88ff
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .details-avatar .call-me i {
    font-size: 20px;
    color: #fafafa
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-meta h3 {
    text-align: center;
    color: #393a4f;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.2
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-meta h4 {
    font-size: .95rem;
    color: #999
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px 0;
    -webkit-transform: scale(0.84);
    transform: scale(0.84)
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon {
    width: 36px;
    height: 20px;
    background: #5F6062;
    position: relative;
    margin: 0 3px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease-in-out
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon:before {
    content: "";
    position: absolute;
    top: -12.2px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 12.2px solid #5F6062;
    transition: all 0.3s ease-in-out
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon:after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 12.5px solid #5F6062;
    transition: all 0.3s ease-in-out
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon:hover {
    background: #757a91 !important
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon:hover:after {
    border-top: 12.5px solid #757a91 !important
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon:hover:before {
    border-bottom: 12.5px solid #757a91 !important
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-red {
    background: #FF7273
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-red:after {
    border-top: 12.5px solid #FF7273
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-red:before {
    border-bottom: 12.5px solid #FF7273
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-green {
    background: #1CE589
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-green:after {
    border-top: 12.5px solid #1CE589
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-green:before {
    border-bottom: 12.5px solid #1CE589
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-accent {
    background: #0062ff
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-accent:after {
    border-top: 12.5px solid #0062ff
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-accent:before {
    border-bottom: 12.5px solid #0062ff
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-blue {
    background: #039BE5
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-blue:after {
    border-top: 12.5px solid #039BE5
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-blue:before {
    border-bottom: 12.5px solid #039BE5
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-orange {
    background: #ff9700
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-orange:after {
    border-top: 12.5px solid #ff9700
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-orange:before {
    border-bottom: 12.5px solid #ff9700
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-purple {
    background: #9c2bed
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-purple:after {
    border-top: 12.5px solid #9c2bed
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon.is-purple:before {
    border-bottom: 12.5px solid #9c2bed
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-badges .hexagon .mdi {
    position: relative;
    top: -2px;
    color: white;
    font-size: 18px;
    line-height: 16px
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about {
    margin: 20px 0
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about label {
    display: block;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 500;
    color: #888da8;
    margin-bottom: 16px
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about .about-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: start;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about .about-block:last-child {
    margin-bottom: 0
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about .about-block i {
    font-size: 22px;
    color: #757a91
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about .about-block .about-text {
    margin-left: 12px
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about .about-block .about-text span {
    display: block
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about .about-block .about-text span:first-child {
    font-size: .8rem;
    font-weight: 500
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about .about-block .about-text span:nth-child(2) {
    font-size: .8rem;
    color: #999
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about .about-block .about-text a {
    color: #999
}

.chat-wrapper .chat-inner .chat-panel .panel-inner .panel-body.is-user-details .panel-body-inner .user-about .about-block .about-text a:hover {
    color: #0062ff
}

.add-conversation-modal .modal-content {
    overflow: visible
}

.add-conversation-modal .modal-content img {
    height: 70px;
    width: 70px;
    display: block;
    margin: 0 auto
}

.add-conversation-modal .modal-content .help-text {
    text-align: center;
    font-size: .9rem;
    padding: 10px 50px;
    color: #999
}

.add-conversation-modal .modal-content .field {
    padding: 0 50px;
    margin-bottom: 0;
    margin-top: 16px
}

.add-conversation-modal .modal-content .action {
    padding: 10px 50px 20px 50px
}

.add-conversation-modal .modal-content .action button {
    line-height: 0
}


/*! _feed.scss | Friendkit | © Css Ninja. 2018-2019 */

.card.is-new-content .tabs-wrapper {
    border-radius: 6px
}

.card.is-new-content .tabs {
    border-radius: 6px 6px 0 0
}

.card.is-new-content .tabs ul {
    background: #fcfcfc
}

.card.is-new-content .tabs li {
    background: #fcfcfc
}

.card.is-new-content .tabs li.is-active a {
    color: #757a91;
    font-weight: 500
}

.card.is-new-content .tabs li.is-active a svg {
    stroke: #757a91
}

.card.is-new-content .tabs li.close-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center
}

.card.is-new-content .tabs li.close-wrap .close-publish {
    margin: 0 16px;
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background .3s
}

.card.is-new-content .tabs li.close-wrap .close-publish:hover {
    background: #e8e8e8
}

.card.is-new-content .tabs li.close-wrap .close-publish svg {
    height: 18px;
    width: 18px;
    stroke: #757a91
}

.card.is-new-content .tabs a {
    font-size: .9rem;
    color: #888da8;
    padding: .75em !important
}

.card.is-new-content .tabs a svg {
    stroke: #888da8
}

.card.is-new-content .compose {
    padding: 16px;
    border-bottom: 1px solid #e8e8e8
}

.card.is-new-content .compose .compose-form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: stretch;
    align-items: stretch
}

.card.is-new-content .compose img {
    height: 42px;
    width: 42px;
    border-radius: 50%
}

.card.is-new-content .compose .control {
    width: 100%;
    margin-left: 20px
}

.card.is-new-content .compose .control .textarea {
    padding: 0;
    border-color: transparent;
    resize: none
}

.card.is-new-content .compose-options {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    border-radius: 0 0 6px 6px;
    background: #fff;
    cursor: pointer
}

.card.is-new-content .compose-options .is-full {
    width: 100% !important;
    margin: 0 auto !important
}

.card.is-new-content .compose-options .is-narrower {
    padding: .3rem .5rem !important
}

.card.is-new-content .compose-options .compose-option {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 16px;
    margin-right: 10px;
    background: #f7f7f7;
    border-radius: 500px;
    font-size: .85rem;
    color: #888da8;
    transition: all .3s
}

.card.is-new-content .compose-options .compose-option.is-centered {
    margin: 0 auto
}

.card.is-new-content .compose-options .compose-option:hover {
    background: #f2f2f2
}

.card.is-new-content .compose-options .compose-option:hover svg {
    stroke: #393a4f
}

.card.is-new-content .compose-options .compose-option span {
    display: block;
    padding: 0 8px
}

.card.is-new-content .compose-options .compose-option svg {
    height: 20px;
    width: 20px;
    transition: all .3s
}

.card.is-new-content .compose-options .compose-option img {
    display: block;
    height: 20px;
    width: 20px
}

.card.is-new-content .compose-options .compose-option input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer
}

.card.is-new-content .more-wrap {
    display: none;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    border-top: 1px solid #e8e8e8;
    border-radius: 0 0 6px 6px;
    background: #fafafa
}

.card.is-new-content .more-wrap .is-more {
    line-height: 0;
    height: 38px;
    padding: 6px;
    margin-right: 6px
}

.card.is-new-content .more-wrap .is-more span {
    margin: 0 8px 0 4px
}

.card.is-new-content .more-wrap .is-more svg {
    width: 16px;
    height: 16px
}

.card.is-new-content .more-wrap .is-solid {
    line-height: 0
}

.card.is-new-content .hidden-options {
    display: none;
    background: #f5f6f7;
    padding: 8px;
    border-top: 1px solid #e8e8e8;
    height: auto
}

.card.is-new-content .hidden-options.is-opened {
    height: 350px !important;
    overflow: auto !important
}

.card.is-new-content .hidden-options.is-opened::-webkit-scrollbar {
    width: 4px
}

.card.is-new-content .hidden-options.is-opened::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2)
}

.card.is-new-content .hidden-options .target-channels .channel {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 8px;
    border-radius: 4px
}

.card.is-new-content .hidden-options .target-channels .channel:hover {
    background: #edeef0
}

.card.is-new-content .hidden-options .target-channels .channel .channel-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    width: 40px;
    margin: 0 10px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e8e8e8
}

.card.is-new-content .hidden-options .target-channels .channel .channel-icon svg {
    height: 18px;
    width: 18px;
    stroke: #999;
    stroke-width: 1px
}

.card.is-new-content .hidden-options .target-channels .channel .story-icon {
    position: relative;
    height: 40px;
    width: 40px;
    margin: 0 10px;
    border-radius: 50%;
    background: #e8e8e8;
    border: 1px solid #cecece
}

.card.is-new-content .hidden-options .target-channels .channel .story-icon .plus-icon {
    position: absolute;
    bottom: -1px;
    right: -8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 22px;
    width: 22px;
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    background: #ff5f59
}

.card.is-new-content .hidden-options .target-channels .channel .story-icon .plus-icon svg {
    height: 10px;
    width: 10px;
    stroke-width: 3px;
    stroke: #fafafa
}

.card.is-new-content .hidden-options .target-channels .channel .channel-name {
    font-size: .85rem;
    font-weight: 500;
    color: #393a4f
}

.card.is-new-content .hidden-options .target-channels .channel .dropdown {
    margin-left: auto
}

.card.is-new-content .hidden-options .target-channels .channel .dropdown button {
    line-height: 0;
    height: 36px;
    padding: 6px
}

.card.is-new-content .hidden-options .target-channels .channel .dropdown button span {
    margin: 0 4px
}

.card.is-new-content .hidden-options .target-channels .channel .dropdown button svg {
    width: 16px;
    height: 16px
}

.card.is-new-content .hidden-options .target-channels .channel .dropdown button i {
    font-size: 1.1rem
}

.card.is-new-content .hidden-options .friends-list {
    margin-top: 10px;
    border-top: 1px solid #dedede
}

.card.is-new-content .hidden-options .friends-list .list-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 10px
}

.card.is-new-content .hidden-options .friends-list .list-header span {
    color: #757a91;
    font-size: .8rem;
    font-weight: 500
}

.card.is-new-content .hidden-options .friends-list .list-header .actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.card.is-new-content .hidden-options .friends-list .list-header .actions a {
    display: block;
    margin-left: 8px;
    font-size: .8rem;
    font-weight: 500;
    color: #757a91
}

.card.is-new-content .hidden-options .friends-list .list-header .actions a:first-child {
    margin-left: auto
}

.card.is-new-content .hidden-options .friends-list .list-header .actions a:hover {
    color: #0062ff
}

.card.is-new-content .hidden-options .friends-list .list-header .actions a.search-trigger {
    height: 24px;
    width: 24px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.card.is-new-content .hidden-options .friends-list .list-header .actions a svg {
    height: 16px;
    width: 16px;
    stroke: #757a91
}

.card.is-new-content .hidden-options .friends-list .list-header .control {
    position: relative
}

.card.is-new-content .hidden-options .friends-list .list-header .control .input {
    padding-left: 36px;
    border-radius: 100px;
    transition: all .3s;
    font-size: .9rem
}

.card.is-new-content .hidden-options .friends-list .list-header .control .input:focus {
    border-color: #e8e8e8
}

.card.is-new-content .hidden-options .friends-list .list-header .control span {
    position: absolute;
    top: 0;
    left: 4px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    width: 32px
}

.card.is-new-content .hidden-options .friends-list .list-header .control span svg {
    height: 18px;
    width: 18px;
    stroke: #cecece
}

.card.is-new-content .hidden-options .friends-list .list-body {
    padding: 0 6px
}

.card.is-new-content .hidden-options .friends-list .list-body .friend-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6px;
    padding: 6px 0;
    border-radius: 4px;
    cursor: pointer
}

.card.is-new-content .hidden-options .friends-list .list-body .friend-block:hover .round-checkbox label {
    border-color: #0062ff
}

.card.is-new-content .hidden-options .friends-list .list-body .friend-block .friend-avatar {
    height: 38px;
    width: 38px;
    margin: 0 10px;
    border-radius: 50%
}

.card.is-new-content .hidden-options .friends-list .list-body .friend-block .friend-name {
    font-size: .85rem;
    font-weight: 500;
    color: #393a4f
}

.card.is-new-content.is-highlighted {
    position: relative !important;
    z-index: 1001 !important
}

.card.is-new-content.is-highlighted .close-publish {
    display: -ms-flexbox !important;
    display: flex !important
}

.card.is-new-content.is-highlighted .more-wrap {
    display: -ms-flexbox;
    display: flex
}

.card.is-new-content.is-highlighted .hidden-options {
    display: block
}

.card.is-post.is-nested {
    position: relative;
    margin-top: 20px !important;
    border-bottom-color: transparent;
    border-radius: 6px 6px 0 0
}

.card.is-post.is-simple .post-actions {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.card.is-post.is-simple .card-footer {
    padding-top: 10px
}

.card.is-post.has-nested .content-wrap .card-footer {
    margin-top: 16px
}

.card.is-post .card-heading,
.card.is-post .card-body {
    padding: 16px 16px 0 16px
}

.card.is-post .card-footer {
    border: none;
    padding: 16px;
    margin: 0
}

.card.is-post .user-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.card.is-post .user-block img {
    width: 42px;
    height: 42px;
    border-radius: 50%
}

.card.is-post .user-block a,
.card.is-post .user-block .time {
    display: block
}

.card.is-post .user-block a {
    font-size: .9rem;
    font-weight: 500;
    color: #393a4f;
    transition: color .3s
}

.card.is-post .user-block a:hover {
    color: #4a4b67
}

.card.is-post .user-block .time {
    font-size: .8rem;
    color: #999
}

.card.is-post .user-block .user-info {
    padding: 0 10px
}

.card.is-post .user-block .user-info a {
    line-height: 1.1
}

.card.is-post .user-block .user-info a span {
    color: #0062ff;
    font-weight: 500
}

.card.is-post .content-wrap .post-text p {
    color: #757a91;
    font-size: .9rem
}

.card.is-post .content-wrap .post-text p a {
    color: #393a4f;
    font-weight: 500
}

.card.is-post .content-wrap .post-text p a:hover {
    color: #0062ff
}

.card.is-post .content-wrap .action-wrap {
    position: relative;
    margin-top: -22px !important
}

.card.is-post .content-wrap .action-wrap .like-wrapper {
    position: absolute;
    bottom: -27px;
    right: 26px;
    max-height: 54px
}

.card.is-post .content-wrap .action-wrap .fab-wrapper {
    position: absolute;
    bottom: -21px;
    max-height: 43px
}

.card.is-post .content-wrap .action-wrap .fab-wrapper.is-share {
    right: 84px
}

.card.is-post .content-wrap .action-wrap .fab-wrapper.is-comment {
    right: 131px
}

.card.is-post .content-wrap .post-image {
    position: relative;
    margin: 10px 0
}

.card.is-post .content-wrap .post-image img {
    display: block;
    border-radius: 3px
}

.card.is-post .content-wrap .post-image .like-wrapper {
    position: absolute;
    bottom: -27px;
    right: 0;
    max-height: 54px
}

.card.is-post .content-wrap .post-image .fab-wrapper {
    position: absolute;
    bottom: -21px;
    max-height: 43px
}

.card.is-post .content-wrap .post-image .fab-wrapper.is-share {
    right: 58px
}

.card.is-post .content-wrap .post-image .fab-wrapper.is-comment {
    right: 105px
}

.card.is-post .content-wrap .post-image .triple-grid {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.card.is-post .content-wrap .post-image .triple-grid a.is-half {
    display: block;
    width: calc(50% - .25rem) !important;
    height: 100%
}

.card.is-post .content-wrap .post-image .triple-grid img {
    display: block;
    margin-bottom: .5rem;
    object-fit: cover;
    width: 100%;
    height: 50%
}

.card.is-post .content-wrap .post-image .triple-grid .like-wrapper {
    position: absolute;
    bottom: -18px;
    right: 18px;
    max-height: 54px
}

.card.is-post .content-wrap .post-image .triple-grid .fab-wrapper {
    position: absolute;
    bottom: -13px;
    max-height: 43px
}

.card.is-post .content-wrap .post-image .triple-grid .fab-wrapper.is-share {
    right: 76px
}

.card.is-post .content-wrap .post-image .triple-grid .fab-wrapper.is-comment {
    right: 123px
}

.card.is-post .content-wrap .post-image .masonry-grid {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.card.is-post .content-wrap .post-image .masonry-grid img {
    display: block;
    margin-bottom: .5rem;
    object-fit: cover
}

.card.is-post .content-wrap .post-image .masonry-grid .masonry-column-left {
    height: 100%;
    width: calc(61% - .5rem)
}

.card.is-post .content-wrap .post-image .masonry-grid .masonry-column-right {
    width: 39%;
    height: 100%;
    margin-left: .5rem
}

.card.is-post .content-wrap .post-image .masonry-grid .like-wrapper {
    position: absolute;
    bottom: -18px;
    right: 0;
    max-height: 54px
}

.card.is-post .content-wrap .post-image .masonry-grid .fab-wrapper {
    position: absolute;
    bottom: -13px;
    max-height: 43px
}

.card.is-post .content-wrap .post-image .masonry-grid .fab-wrapper.is-share {
    right: 58px
}

.card.is-post .content-wrap .post-image .masonry-grid .fab-wrapper.is-comment {
    right: 105px
}

.card.is-post .content-wrap .post-link {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: start;
    padding: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #f5f5f5;
    margin: 16px 0 10px 0
}

.card.is-post .content-wrap .post-link.is-video .link-image {
    position: relative
}

.card.is-post .content-wrap .post-link.is-video .link-image .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    background: rgba(52, 66, 88, 0.6)
}

.card.is-post .content-wrap .post-link.is-video .link-image .video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 46px;
    width: 46px;
    background: #ff5f59;
    border-radius: 50%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    cursor: pointer
}

.card.is-post .content-wrap .post-link.is-video .link-image .video-button img {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    left: 2px;
    z-index: 3
}

.card.is-post .content-wrap .post-link.is-video .link-image .video-button:after {
    content: '';
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #ff5f59;
    -webkit-animation: wave 1.6s infinite;
    animation: wave 1.6s infinite;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    z-index: 0
}

.card.is-post .content-wrap .post-link .link-image>img {
    display: block;
    height: 130px;
    width: 180px;
    min-width: 180px;
    border-radius: 6px;
    object-fit: cover
}

.card.is-post .content-wrap .post-link .link-content {
    margin-left: 12px
}

.card.is-post .content-wrap .post-link .link-content h4 {
    margin-bottom: 4px
}

.card.is-post .content-wrap .post-link .link-content h4 a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #757a91
}

.card.is-post .content-wrap .post-link .link-content h4 a:hover {
    color: #0062ff
}

.card.is-post .content-wrap .post-link .link-content p {
    font-size: .9rem;
    color: #999
}

.card.is-post .content-wrap .post-link .link-content small {
    text-transform: uppercase;
    font-size: .65rem;
    color: #757a91;
    margin-top: 8px
}

.card.is-post .content-wrap .post-link .like-wrapper {
    position: absolute;
    bottom: -25px;
    right: 0;
    max-height: 54px
}

.card.is-post .content-wrap .post-link .fab-wrapper {
    position: absolute;
    bottom: -20px;
    max-height: 43px
}

.card.is-post .content-wrap .post-link .fab-wrapper.is-share {
    right: 58px
}

.card.is-post .content-wrap .post-link .fab-wrapper.is-comment {
    right: 105px
}

.card.is-post .content-wrap .post-actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 10px
}

.card.is-post .content-wrap .post-actions .like-wrapper {
    margin: 0 2px
}

.card.is-post .content-wrap .post-actions .like-wrapper .like-button {
    width: 36px;
    height: 36px;
    border: none
}

.card.is-post .content-wrap .post-actions .like-wrapper .like-overlay {
    top: 0 !important;
    left: 0 !important;
    width: 36px;
    height: 36px
}

.card.is-post .content-wrap .post-actions .like-wrapper i {
    font-size: 16px
}

.card.is-post .content-wrap .post-actions .fab-wrapper {
    margin: 0 2px
}

.card.is-post .content-wrap .post-actions .fab-wrapper .small-fab {
    width: 36px;
    height: 36px;
    border: none
}

.card.is-post .content-wrap .post-actions .fab-wrapper .small-fab svg {
    height: 16px;
    width: 16px
}

.card.is-post .content-wrap .card-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.card.is-post .content-wrap .card-footer .likers-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.card.is-post .content-wrap .card-footer .likers-group img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    border: 3px solid #fff
}

.card.is-post .content-wrap .card-footer .likers-group img:not(:first-child) {
    margin-left: -12px
}

.card.is-post .content-wrap .card-footer .likers-group .no-like {
    width: 38px;
    height: 38px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.card.is-post .content-wrap .card-footer .likers-group .no-like svg {
    width: 24px;
    height: 24px
}

.card.is-post .content-wrap .card-footer .likers-text {
    margin-left: 10px;
    line-height: 1.4
}

.card.is-post .content-wrap .card-footer .likers-text p {
    font-size: .8rem;
    color: #888da8
}

.card.is-post .content-wrap .card-footer .likers-text p a {
    color: #393a4f;
    font-weight: 500
}

.card.is-post .content-wrap .card-footer .likers-text p a:hover {
    color: #0062ff
}

.card.is-post .content-wrap .card-footer .social-count {
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch
}

.card.is-post .content-wrap .card-footer .social-count .shares-count,
.card.is-post .content-wrap .card-footer .social-count .comments-count,
.card.is-post .content-wrap .card-footer .social-count .likes-count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 3px
}

.card.is-post .content-wrap .card-footer .social-count .shares-count span,
.card.is-post .content-wrap .card-footer .social-count .comments-count span,
.card.is-post .content-wrap .card-footer .social-count .likes-count span {
    display: block;
    font-size: .9rem;
    color: #888da8;
    margin: 0 5px
}

.card.is-post .content-wrap .card-footer .social-count .shares-count svg,
.card.is-post .content-wrap .card-footer .social-count .comments-count svg,
.card.is-post .content-wrap .card-footer .social-count .likes-count svg {
    height: 18px;
    width: 18px;
    stroke: #888da8
}

.card.is-post .comments-wrap .comments-heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px
}

.card.is-post .comments-wrap .comments-heading h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #757a91
}

.card.is-post .comments-wrap .comments-heading .close-comments {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background .3s
}

.card.is-post .comments-wrap .comments-heading .close-comments:hover {
    background: #e8e8e8
}

.card.is-post .comments-wrap .comments-heading .close-comments svg {
    height: 18px;
    width: 18px;
    stroke: #757a91
}

.card.is-post .comments-wrap .comments-body {
    padding: 16px;
    max-height: 450px;
    overflow-y: auto
}

.card.is-post .comments-wrap .comments-body .comments-placeholder {
    text-align: center
}

.card.is-post .comments-wrap .comments-body .comments-placeholder img {
    display: block;
    max-width: 80px;
    margin: 0 auto;
    opacity: .7
}

.card.is-post .comments-wrap .comments-body .comments-placeholder h3 {
    margin-top: 10px;
    font-weight: 500;
    font-size: 1.3rem;
    color: #393a4f
}

.card.is-post .comments-wrap .comments-body .comments-placeholder p {
    color: #999
}

.card.is-post .comments-wrap .comments-body .is-comment {
    -ms-flex-align: stretch;
    align-items: stretch
}

.card.is-post .comments-wrap .comments-body .is-comment .media-left img {
    height: 42px;
    width: 42px;
    border-radius: 50%
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content a {
    font-size: .9rem;
    font-weight: 500 !important;
    display: block;
    color: #393a4f
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content a:hover {
    color: #ff5f59
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content .time {
    display: block;
    font-size: .8rem;
    color: #888da8;
    margin-bottom: 10px
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content p {
    font-size: .9rem !important;
    color: #757a91
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls {
    padding: 8px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .like-count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .like-count span {
    display: block;
    font-size: .9rem;
    color: #888da8;
    margin: 0 5px
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .like-count svg {
    position: relative;
    top: -1px;
    height: 14px;
    width: 14px;
    stroke: #888da8
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .like-count:hover span {
    color: #ff5f59
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .like-count:hover svg {
    stroke: #ff5f59
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .reply,
.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .edit {
    margin: 0 5px
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .reply a,
.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .edit a {
    font-size: .8rem;
    color: #888da8
}

.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .reply a:hover,
.card.is-post .comments-wrap .comments-body .is-comment .media-content .controls .edit a:hover {
    color: #ff5f59
}

.card.is-post .comments-wrap .comments-body .is-comment .media-right svg {
    height: 18px;
    width: 18px;
    stroke: #757a91
}

.card.is-post .comments-wrap .comments-body .is-comment .media-right .dropdown .button {
    padding: 4px !important;
    border-color: transparent !important
}

.card.is-post .comments-wrap .comments-body .is-comment .media-right .dropdown .media {
    border: none !important;
    padding-top: 0 !important
}

.card.is-post .comments-wrap .comments-body .is-comment .is-comment .media-left {
    position: relative
}

.card.is-post .comments-wrap .comments-body .is-comment .is-comment .media-left:after {
    content: '';
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1.4px;
    height: calc(100% - 46px);
    background: #e8e8e8
}

.card.is-post .comments-wrap .comments-body .is-comment .is-comment .media-left:before {
    content: '';
    position: absolute;
    top: calc(50% + 20px);
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 13px;
    width: 13px;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    background: #fff;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06) !important;
    z-index: 1
}

.card.is-post .comments-wrap .comments-body .load-more .load-more-button {
    background: #e8e8e8;
    width: 80px;
    padding: 5px 16px;
    border-radius: 500px;
    border: none;
    cursor: pointer;
    transition: background .3s
}

.card.is-post .comments-wrap .comments-body .load-more .load-more-button:active,
.card.is-post .comments-wrap .comments-body .load-more .load-more-button:focus {
    outline: none
}

.card.is-post .comments-wrap .comments-body .load-more .load-more-button:hover {
    background: #f2f2f2
}

.card.is-post .comments-wrap .comments-body .load-more .load-more-button svg {
    width: 22px;
    height: 22px;
    stroke: #888da8
}

.card.is-post .comments-wrap .card-footer {
    margin: 0 !important;
    padding: 16px
}

.card.is-post .comments-wrap .card-footer .post-comment {
    width: 100%
}

.card.is-post .comments-wrap .card-footer .post-comment .media-left img {
    border-radius: 50%
}

.card.is-post .comments-wrap .card-footer .post-comment .media-content .field {
    margin-bottom: 0
}

.card.is-post .comments-wrap .card-footer .post-comment .media-content .textarea {
    border-color: #e8e8e8;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    resize: none
}

.card.is-post .comments-wrap .card-footer .post-comment .actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0 0 4px 4px
}

.card.is-post .comments-wrap .card-footer .post-comment .actions .action {
    margin-right: 15px;
    width: 18px;
    height: 18px;
    cursor: pointer
}

.card.is-post .comments-wrap .card-footer .post-comment .actions .action svg {
    width: 18px;
    height: 18px;
    stroke: #888da8;
    transition: all .3s
}

.card.is-post .comments-wrap .card-footer .post-comment .actions .action:hover svg {
    stroke: #ff5f59
}

.card.is-post .comments-wrap .card-footer .post-comment .actions .action.is-auto {
    margin-left: auto
}

.card.is-post .comments-wrap .card-footer .post-comment .actions .action.is-upload {
    position: relative
}

.card.is-post .comments-wrap .card-footer .post-comment .actions .action.is-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer
}

.card.is-post .comments-wrap .card-footer .post-comment .emojionearea-scroll-area::-webkit-scrollbar {
    width: 4px
}

.card.is-post .comments-wrap .card-footer .post-comment .emojionearea-scroll-area::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2)
}

.card .card-body .page-block,
.card .card-body .add-friend-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px
}

.card .card-body .page-block:not(:first-child),
.card .card-body .add-friend-block:not(:first-child) {
    border-top: 1px solid #e8e8e8
}

.card .card-body .page-block img,
.card .card-body .add-friend-block img {
    height: 40px;
    width: 40px;
    max-height: 40px;
    border-radius: 50%
}

.card .card-body .page-block .page-meta,
.card .card-body .add-friend-block .page-meta {
    padding: 0 10px;
    line-height: 1.3
}

.card .card-body .page-block .page-meta span,
.card .card-body .add-friend-block .page-meta span {
    display: block
}

.card .card-body .page-block .page-meta span:first-child,
.card .card-body .add-friend-block .page-meta span:first-child {
    font-size: .85rem;
    color: #393a4f;
    font-weight: 500
}

.card .card-body .page-block .page-meta span:nth-child(2),
.card .card-body .add-friend-block .page-meta span:nth-child(2) {
    font-size: .7rem;
    color: #757a91
}

.card .card-body .page-block .add-page,
.card .card-body .page-block .add-friend,
.card .card-body .add-friend-block .add-page,
.card .card-body .add-friend-block .add-friend {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin-left: auto;
    border-radius: 50%;
    transition: all .3s;
    cursor: pointer
}

.card .card-body .page-block .add-page svg,
.card .card-body .page-block .add-friend svg,
.card .card-body .add-friend-block .add-page svg,
.card .card-body .add-friend-block .add-friend svg {
    width: 18px;
    height: 18px;
    stroke: #888da8;
    transition: all .3s
}

.card .card-body .page-block .add-page:hover,
.card .card-body .page-block .add-friend:hover,
.card .card-body .add-friend-block .add-page:hover,
.card .card-body .add-friend-block .add-friend:hover {
    background: #f5f5f5
}

.card .card-body .page-block .add-page:hover svg,
.card .card-body .page-block .add-friend:hover svg,
.card .card-body .add-friend-block .add-page:hover svg,
.card .card-body .add-friend-block .add-friend:hover svg {
    stroke: #0062ff
}

.card .card-body .page-block .checkmark-wrapper,
.card .card-body .add-friend-block .checkmark-wrapper {
    margin-left: auto;
    margin-right: 8px
}

.card .card-body .story-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 16px
}

.card .card-body .story-block:not(:first-child) {
    border-top: 1px solid #e8e8e8
}

.card .card-body .story-block .img-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    width: 48px;
    max-height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: 1px solid #888da8
}

.card .card-body .story-block .img-wrapper img {
    height: 38px;
    width: 38px;
    border-radius: 50%
}

.card .card-body .story-block .add-story {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    width: 44px;
    max-height: 44px;
    min-width: 44px;
    border-radius: 50%;
    border: 2px dashed #e8e8e8;
    transition: all .3s
}

.card .card-body .story-block .add-story svg {
    width: 18px;
    height: 18px;
    stroke: #e8e8e8
}

.card .card-body .story-block .add-story:hover {
    border: 2px solid #ff5f59
}

.card .card-body .story-block .add-story:hover svg {
    stroke: #ff5f59
}

.card .card-body .story-block .story-meta {
    padding: 0 10px
}

.card .card-body .story-block .story-meta span {
    display: block
}

.card .card-body .story-block .story-meta span:first-child {
    font-size: .85rem;
    color: #393a4f;
    font-weight: 500
}

.card .card-body .story-block .story-meta span:nth-child(2) {
    font-size: .8rem;
    color: #757a91
}

.options-summary {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    width: auto;
    color: #888da8;
    background: #f7f7f7;
    border-radius: 500px;
    transition: all .3s
}

.options-summary:hover {
    background: #f2f2f2
}

.options-summary .tagged-friend+span small {
    display: none !important
}

.options-summary span {
    padding: 2px
}

.options-summary span a {
    font-size: .8rem
}

.options-summary .mood-display {
    padding: 0 4px;
    cursor: pointer
}

.options-summary .mood-display img {
    position: relative;
    top: 2px;
    height: 14px !important;
    width: 14px !important
}

.options-summary .mood-display span {
    font-size: .8rem;
    color: #0062ff;
    margin: 0 4px
}

.options-summary .mood-display .action-text {
    color: #393a4f;
    margin-right: 4px
}

.tag-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 8px
}

.tag-list.no-margin {
    margin: 0 !important
}

.tag-list .tag-control {
    width: auto !important;
    padding-right: 6px;
    margin: 0 0 4px 0 !important
}

.tag-list .tag-control.is-spaced {
    padding: 4px
}

.tag-list .tag-control .is-link {
    background: #888da8 !important
}

.is-autocomplete {
    -ms-flex-pack: center;
    justify-content: center
}

.is-autocomplete.is-active,
.is-autocomplete:hover {
    background: transparent !important
}

.is-autocomplete.is-dropup .easy-autocomplete-container {
    top: -260px !important;
    width: calc(100% - 40px);
    margin: 0 auto;
    right: 0
}

.is-autocomplete .control {
    margin: 0 !important;
    position: relative
}

.is-autocomplete .control.has-margin {
    margin-top: 8px !important
}

.is-autocomplete .control.is-location-wrapper input,
.is-autocomplete .control.is-gif-wrapper input {
    height: 32px;
    padding-left: 34px;
    font-size: .9rem;
    box-shadow: none;
    color: #999;
    transition: all .3s
}

.is-autocomplete .control.is-location-wrapper input:focus,
.is-autocomplete .control.is-gif-wrapper input:focus {
    border-color: #e8e8e8
}

.is-autocomplete .control.is-location-wrapper input:focus+.icon,
.is-autocomplete .control.is-gif-wrapper input:focus+.icon {
    color: #ff5f59
}

.is-autocomplete .control.is-gif-wrapper {
    position: relative
}

.is-autocomplete .control.is-gif-wrapper input:focus ~ .gif-dropdown {
    opacity: 1;
    pointer-events: all
}

.is-autocomplete .control.is-gif-wrapper .gif-dropdown {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    height: 320px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: all .3s
}

.is-autocomplete .control.is-gif-wrapper .gif-dropdown::-webkit-scrollbar {
    width: 4px
}

.is-autocomplete .control.is-gif-wrapper .gif-dropdown::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2)
}

.is-autocomplete .control.is-gif-wrapper .gif-dropdown .inner {
    position: relative;
    display: -ms-flexbox;
    display: flex
}

.is-autocomplete .control.is-gif-wrapper .gif-dropdown .gif-block {
    display: block;
    margin: 0 auto;
    width: 33.3%;
    padding: 2px
}

.is-autocomplete .control.is-gif-wrapper .gif-dropdown .gif-block img {
    display: block;
    border-radius: 0 !important;
    width: 100%;
    height: auto;
    margin-bottom: 4px
}

.is-autocomplete .control .icon,
.is-autocomplete .control .close-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 32px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #cecece
}

.is-autocomplete .control .icon svg,
.is-autocomplete .control .close-icon svg {
    width: 16px;
    height: 16px;
    transition: all .3s
}

.is-autocomplete .control .close-icon {
    left: unset !important;
    right: 0 !important;
    cursor: pointer
}

.is-autocomplete .control .close-icon:hover svg {
    color: #393a4f
}

.is-autocomplete .control .input-block {
    position: absolute;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-size: .8rem;
    color: #fafafa;
    padding: 0 10px;
    height: 32px;
    width: auto;
    border-radius: 4px 0 0 4px;
    background: #757a91;
    transition: all 0.3s;
    cursor: pointer
}

.is-autocomplete .control .input-block:hover {
    background: #83889c
}

.is-autocomplete .control .easy-autocomplete {
    width: 100% !important
}

.is-autocomplete .control .easy-autocomplete input {
    height: 32px;
    padding-left: 34px;
    font-size: .9rem;
    box-shadow: none;
    color: #999;
    transition: all .3s
}

.is-autocomplete .control .easy-autocomplete input.is-subactivity {
    padding-left: 74px !important
}

.is-autocomplete .control .easy-autocomplete input:focus {
    border-color: #e8e8e8
}

.is-autocomplete .control .easy-autocomplete input:focus+.icon {
    color: #ff5f59
}

.is-autocomplete .control .easy-autocomplete .template-wrapper {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .avatar-wrapper {
    position: relative;
    width: 36px;
    height: 36px
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .avatar-wrapper.is-smaller {
    width: 22px !important;
    height: 22px !important
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .avatar-wrapper.is-smaller .autocpl-avatar {
    width: 22px !important;
    height: 22px !important
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .avatar-wrapper .autocpl-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .avatar-wrapper .autocpl-avatar.is-squared {
    border-radius: 8px !important
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .avatar-wrapper .avatar-badge {
    position: absolute;
    bottom: 0;
    right: -7px;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 50%
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .icon-wrapper {
    position: relative;
    width: 22px;
    height: 22px
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .icon-wrapper .autocpl-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50% !important
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .entry-text {
    margin-left: 10px;
    line-height: 1.3
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .entry-text span {
    font-size: 0.8rem;
    color: #757a91
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .next-icon {
    margin-left: auto !important
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .next-icon i {
    font-size: 20px;
    color: #888da8
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .is-description {
    font-size: .7rem
}

.is-autocomplete .control .easy-autocomplete .template-wrapper .right-content {
    margin-left: auto;
    font-size: .75rem;
    color: #999
}

.is-autocomplete li {
    height: auto !important;
    padding-top: 8px;
    padding-bottom: 8px;
    border-left: none !important;
    border-right: none !important
}

.is-autocomplete .easy-autocomplete-container {
    top: 120% !important;
    border: none !important;
    z-index: 10 !important
}

.is-autocomplete .easy-autocomplete-container ul {
    border-radius: 4px !important;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06) !important
}

.feed-menu-v1 .main-menu {
    padding-right: 30px
}

.feed-menu-v1 .main-menu li {
    transition: all .3s
}

.feed-menu-v1 .main-menu li.is-active a {
    border-color: #0062ff
}

.feed-menu-v1 .main-menu li.is-active a span {
    color: #393a4f;
    font-weight: 500
}

.feed-menu-v1 .main-menu li.is-active a svg {
    stroke: #393a4f
}

.feed-menu-v1 .main-menu li.is-active a .close-icon {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    background: #e8e8e8
}

.feed-menu-v1 .main-menu li.is-active a .close-icon svg {
    stroke: #393a4f
}

.feed-menu-v1 .main-menu li:hover .close-icon {
    background: #e8e8e8
}

.feed-menu-v1 .main-menu li:hover .close-icon svg {
    stroke: #393a4f
}

.feed-menu-v1 .main-menu li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 16px;
    border-left: 2px solid transparent
}

.feed-menu-v1 .main-menu li a span {
    display: block;
    color: #393a4f;
    font-size: .9rem;
    margin-left: 10px
}

.feed-menu-v1 .main-menu li a svg {
    position: relative;
    height: 18px;
    width: 18px;
    stroke: #757a91
}

.feed-menu-v1 .main-menu li a .close-icon {
    height: 28px;
    width: 28px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    border-radius: 50%;
    transition: all .3s
}

.feed-menu-v1 .main-menu li a .close-icon svg {
    stroke: #cecece;
    height: 16px;
    width: 16px
}

.feed-menu-v1 .submenu {
    padding-left: 50px;
    margin-bottom: 10px;
    display: none
}

.feed-menu-v1 .submenu li.is-subactive a {
    color: #393a4f;
    font-weight: 500
}

.feed-menu-v1 .submenu li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px;
    font-size: .85rem;
    color: #757a91;
    border: none !important;
    transition: color .3s
}

.feed-menu-v1 .submenu li a .tag {
    margin-left: auto;
    display: inherit;
    max-height: 19px;
    font-size: .75rem;
    border-radius: 100px;
    margin-right: 10px;
    background: #0062ff;
    color: #fff !important
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .compose .compose-form img {
        height: 36px !important;
        width: 36px !important
    }
    .card .page-block img,
    .card .add-friend-block img {
        height: 32px !important;
        width: 32px !important
    }
    .card .story-block .img-wrapper {
        height: 40px !important;
        width: 40px !important;
        max-height: 40px !important;
        min-width: 40px !important
    }
    .card .story-block .img-wrapper img {
        height: 32px !important;
        width: 32px !important
    }
    .card .story-block .add-story {
        height: 38px !important;
        width: 38px !important;
        max-height: 38px !important;
        min-width: 38px !important
    }
    .list-placeload .img {
        height: 32px !important;
        width: 32px !important;
        min-width: 32px !important
    }
    .stories-placeload .img {
        height: 38px !important;
        width: 38px !important;
        max-height: 38px !important;
        min-width: 38px !important
    }
}


/*! _app-inbox.scss | Friendkit | © Css Ninja. 2018-2019 */


/*! _special-mixins.scss | Friendkit | © Css Ninja. 2018-2019 */

.inbox-wrapper .inbox-wrapper-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 16%;
    background: #f4f4f4 !important;
    border-right: 1px solid #dbdbdb;
    z-index: 1;
    transition: all .3s
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner {
    width: 100%;
    height: 100%
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner .compose {
    padding: 0 20px;
    min-height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner .compose .button {
    height: 40px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner .left-menu {
    padding: 10px 0
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner .left-menu a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 20px;
    padding: 10px;
    color: #aaa;
    font-size: .95rem;
    border-radius: 4px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner .left-menu a.is-active {
    background-color: #0062ff;
    color: #fafafa;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner .left-menu a span {
    display: block;
    margin-left: 10px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner .left-menu a svg {
    height: 18px;
    width: 18px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner .close-menu {
    padding: 20px 50px;
    text-align: center
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner .close-menu a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: #999;
    cursor: pointer
}

.inbox-wrapper .inbox-wrapper-inner .inbox-left-sidebar .inbox-left-sidebar-inner .close-menu a svg {
    height: 20px;
    width: 20px;
    margin-right: 4px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    transition: all .3s
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container.is-left-opened {
    width: calc(100% - 280px);
    left: 280px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container.is-both-opened {
    width: 34%;
    left: 16%;
    right: 50%
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .messages {
    display: block;
    background-color: #fff
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .messages .action-buttons {
    min-height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #e8e8e8
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .messages .action-buttons .button {
    max-height: 32px;
    padding: 4px 8px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .messages .action-buttons .button svg {
    height: 16px;
    width: 16px;
    stroke: #888da8
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .message-count {
    font-size: .9rem;
    color: #999;
    margin-left: 12px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 60px;
    height: calc(100% - 60px);
    max-height: calc(100% - 60px);
    overflow-y: auto
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner {
    padding: 20px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .message {
    display: block;
    background-color: #fff
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card {
    width: 100%;
    cursor: pointer;
    transition: all .3s
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card.is-active {
    background-color: #fcfcfc;
    box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.11) !important
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card.is-active .msg-from a {
    color: #0062ff
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card.is-active .msg-attachment svg {
    stroke: #0062ff
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card.has-attachment .msg-attachment svg {
    display: block;
    transition: stroke .3s
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-from {
    color: #999
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-from a {
    font-weight: 500;
    color: #999;
    transition: color .3s
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-timestamp {
    float: right;
    padding: 0 20px;
    color: #999;
    font-size: .9rem
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-attachment {
    float: right
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-attachment svg {
    display: none;
    height: 16px;
    width: 16px;
    stroke: #999
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-subject {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-subject span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: #393a4f;
    margin: 0 4px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-subject svg {
    position: relative;
    top: -1px;
    height: 16px;
    width: 16px;
    stroke: #999;
    fill: none;
    cursor: pointer;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transition: all .3s
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-subject svg.is-active {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    stroke: #ff5f59;
    fill: #ff5f59
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-snippet {
    color: #999;
    font-size: .9rem;
    padding-right: 20px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-snippet p {
    overflow: hidden;
    position: relative;
    line-height: 1.2em;
    max-height: 2.4em;
    text-align: justify;
    margin-right: -1em;
    padding-right: 1em
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-snippet p:before {
    content: '...';
    position: absolute;
    right: 0;
    bottom: 0
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .card .msg-snippet p:after {
    content: '';
    position: absolute;
    right: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.2em;
    background: #fff
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner strong {
    color: #5D5D5D
}

.inbox-wrapper .inbox-wrapper-inner .inbox-center-container .inbox-center-container-inner .inbox-messages .inbox-messages-inner .msg-check {
    padding: 0 20px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    background: #fff;
    transition: all .3s;
    border-left: 1px solid #dbdbdb
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner {
    position: relative;
    height: 100%;
    width: 100%
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-head .action-buttons {
    min-height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid #e8e8e8
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-head .action-buttons .button {
    max-height: 32px;
    padding: 4px 8px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-head .action-buttons .button svg {
    height: 16px;
    width: 16px;
    stroke: #888da8
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 60px;
    height: calc(100% - 60px);
    max-height: calc(100% - 60px);
    width: 100%;
    overflow-y: auto;
    border-left: none;
    padding: 1.25em !important
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
    transition: all .3s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner.is-active {
    display: block
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview-transition.is-first {
    margin-top: -36px !important
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview-transition .mail {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 60px auto;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #ccc
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview-transition .mail:before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 1px;
    width: 40px;
    background: #888da8;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview-transition .mail:after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 1px;
    width: 40px;
    background: #888da8;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview-transition .mail svg {
    width: 20px;
    height: 20px;
    stroke: #888da8
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview {
    margin: 0 0 20px 0;
    padding: 30px;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview .avatar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview .avatar img {
    width: 48px;
    border-radius: 50px;
    border: 2px solid #999;
    padding: 2px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview .box-inner .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview .box-inner .header .meta {
    display: block;
    padding: 0 20px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview .box-inner .header .meta .name {
    font-weight: 500;
    color: #393a4f
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview .box-inner .header .meta .date {
    font-size: .9rem;
    color: #999
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview .box-inner .header .meta-right {
    text-align: right;
    margin-left: auto
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview .box-inner .header .meta-right .tag {
    font-weight: 500;
    background: #f7f7f7;
    color: #393a4f
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview .box-inner .header .meta-right svg {
    position: relative;
    top: 2px;
    height: 16px;
    width: 16px;
    stroke: #cecece
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .message-preview .box-inner .header .meta-right small {
    color: #999;
    font-size: .95rem
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments {
    padding-bottom: 40px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-header .paperclip {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 60px auto;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #ccc
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-header .paperclip:before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 1px;
    width: 40px;
    background: #888da8;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-header .paperclip:after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    height: 1px;
    width: 40px;
    background: #888da8;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-header .paperclip svg {
    width: 20px;
    height: 20px;
    stroke: #888da8
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 380px;
    margin: 0 auto
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box {
    width: calc(50% - 20px);
    margin: 0 10px 16px 10px;
    padding: 0;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
    border-radius: 4px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box.has-file {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box.has-file .box-inner {
    text-align: center;
    padding: 22px 12px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box.has-file .box-inner svg {
    stroke-width: 1.2px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box.has-file .box-inner h5 {
    font-weight: 500;
    font-size: .9rem;
    overflow: hidden;
    text-overflow: ellipsis
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box.has-file .actions-group {
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #e8e8e8
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box.has-file .actions-group .action {
    width: 50%;
    height: 34px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box.has-file .actions-group .action:first-child {
    border-right: 1px solid #e8e8e8
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box.has-file .actions-group .action:hover {
    background: #fafafa
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box.has-file .actions-group .action:hover svg {
    stroke: #393a4f
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box.has-file .actions-group .action svg {
    height: 18px;
    width: 18px;
    stroke: #888da8;
    transition: stroke .3s
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .attachments .attachments-inner .box img {
    display: block;
    border-radius: 2px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper {
    padding: 40px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-title {
    font-size: 1.1rem;
    color: #393a4f;
    font-weight: 500;
    margin-bottom: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-title svg {
    height: 18px;
    width: 18px;
    stroke: #999;
    margin-left: 8px;
    cursor: pointer
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-wrapper-inner {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 30px;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-wrapper-inner .flex-form {
    display: -ms-flexbox;
    display: flex
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-wrapper-inner img {
    margin-top: 2px;
    height: 44px;
    width: 44px;
    border-radius: 50%
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-wrapper-inner .control {
    position: relative;
    width: 100%;
    margin-left: 10px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-wrapper-inner .control .textarea {
    border: none !important;
    margin-bottom: 20px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-wrapper-inner .control .reply-textarea {
    margin-bottom: 20px;
    min-height: 120px
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-wrapper-inner .control .reply-textarea p {
    font-style: normal;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-wrapper-inner .control .ql-editor::before {
    font-style: normal;
    font-size: 1rem;
    color: #cecece
}

.inbox-wrapper .inbox-wrapper-inner .inbox-message-container .inbox-message-container-inner .message-body .message-body-inner .reply-wrapper .reply-wrapper-inner .send-message {
    line-height: 0
}

.action-buttons .control.is-grouped {
    display: inline-block;
    margin-right: 16px
}

.action-buttons .control.is-grouped:last-child {
    margin-right: 0
}

.action-buttons .control.is-grouped .button {
    margin-right: -5px;
    border-radius: 0;
    background: #fff;
    transition: all .3s
}

.action-buttons .control.is-grouped .button:first-child {
    border-radius: 5px 0 0 5px
}

.action-buttons .control.is-grouped .button:last-child {
    border-radius: 0 5px 5px 0
}

.action-buttons .control.is-grouped .button:hover {
    background: #f5f5f5
}

.action-buttons .control.is-grouped .button.is-solo {
    border-radius: 5px !important
}

.action-buttons .control.is-grouped .button svg {
    transition: all .3s
}

@media only screen and (max-width: 1300px) {
    .inbox-wrapper .message-count {
        display: none
    }
}

@media (max-width: 767px) {
    .inbox-wrapper .action-buttons .is-grouped {
        margin-right: 0 !important;
        margin-bottom: 0 !important
    }
    .inbox-wrapper .inbox-message-container .action-buttons .is-grouped.is-hidden-landscape {
        margin-left: auto !important
    }
    .inbox-wrapper .inbox-center-container .action-buttons .is-grouped.is-hidden-landscape {
        margin-right: auto !important
    }
    .inbox-left-sidebar .inbox-left-sidebar-inner .close-menu {
        padding: 0 30px !important
    }
    .is-vhidden {
        display: none !important
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .inbox-left-sidebar {
        width: 21% !important
    }
    .inbox-message-container {
        width: 45% !important
    }
    .inbox-message-container .inbox-message-container-inner .message-body {
        padding: 1.25em !important
    }
    .inbox-message-container .inbox-message-container-inner .message-body .message-preview {
        padding: 20px !important
    }
    .inbox-center-container {
        left: 21% !important
    }
    .inbox-center-container .action-buttons .is-grouped.is-arrows {
        display: none !important
    }
}


/*! _app-profile.scss | Friendkit | © Css Ninja. 2018-2019 */

.cover-bg {
    position: relative
}

.cover-bg:hover .cover-overlay {
    background: rgba(57, 58, 79, 0.5)
}

.cover-bg:hover .cover-edit {
    border-color: #fcfcfc;
    background: rgba(252, 252, 252, 0.1)
}

.cover-bg:hover .cover-edit i {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.cover-bg:hover .cover-edit span {
    opacity: 1
}

.cover-bg .cover-image {
    display: block;
    border-radius: 3px;
    object-position: top;
    object-fit: cover;
    width: 100%;
    max-height: 328px
}

.cover-bg .avatar {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 110px;
    width: 110px;
    border-radius: 50%;
    z-index: 1
}

.cover-bg .avatar .avatar-image {
    position: relative;
    object-fit: cover;
    height: 110px;
    width: 110px;
    border-radius: 50%;
    box-shadow: 0px 15px 32px rgba(0, 0, 0, 0.18) !important;
    z-index: 1
}

.cover-bg .avatar .avatar-button {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ff5f59;
    box-shadow: 0 14px 26px -12px rgba(255, 95, 89, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 95, 89, 0.2) !important;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transition: all .3s;
    cursor: pointer;
    z-index: 1
}

.cover-bg .avatar .avatar-button:hover {
    background: #ff7c78
}

.cover-bg .avatar .avatar-button.is-active {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.cover-bg .avatar .avatar-button svg {
    height: 18px;
    width: 18px;
    stroke: #fcfcfc
}

.cover-bg .avatar .pop-button {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 34px;
    width: 34px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important;
    z-index: 0;
    -webkit-transform: translate(0, 10px) rotate(260deg);
    transform: translate(0, 10px) rotate(260deg);
    transition: all .3s;
    cursor: pointer
}

.cover-bg .avatar .pop-button .inner {
    position: relative;
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.cover-bg .avatar .pop-button.pop-shift .inactive-icon {
    display: block
}

.cover-bg .avatar .pop-button.pop-shift .active-icon {
    display: none
}

.cover-bg .avatar .pop-button.pop-shift.is-shifted .inactive-icon {
    display: none
}

.cover-bg .avatar .pop-button.pop-shift.is-shifted .active-icon {
    display: block
}

.cover-bg .avatar .pop-button.is-center,
.cover-bg .avatar .pop-button.is-far-right,
.cover-bg .avatar .pop-button.is-left,
.cover-bg .avatar .pop-button.is-far-left {
    background: #fff;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.cover-bg .avatar .pop-button.is-center:hover,
.cover-bg .avatar .pop-button.is-far-right:hover,
.cover-bg .avatar .pop-button.is-left:hover,
.cover-bg .avatar .pop-button.is-far-left:hover {
    background: #0062ff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.cover-bg .avatar .pop-button.is-center:hover svg,
.cover-bg .avatar .pop-button.is-far-right:hover svg,
.cover-bg .avatar .pop-button.is-left:hover svg,
.cover-bg .avatar .pop-button.is-far-left:hover svg {
    stroke: #fafafa
}

.cover-bg .avatar .pop-button.is-center svg,
.cover-bg .avatar .pop-button.is-far-right svg,
.cover-bg .avatar .pop-button.is-left svg,
.cover-bg .avatar .pop-button.is-far-left svg {
    stroke: #757a91
}

.cover-bg .avatar .pop-button.is-right {
    background: #ff5f59;
    box-shadow: 0 14px 26px -12px rgba(255, 95, 89, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 95, 89, 0.2) !important
}

.cover-bg .avatar .pop-button.is-right svg {
    stroke: #fafafa
}

.cover-bg .avatar .pop-button.is-active.is-far-left {
    -webkit-transform: translate(-240%, 30%) rotate(0);
    transform: translate(-240%, 30%) rotate(0)
}

.cover-bg .avatar .pop-button.is-active.is-left {
    -webkit-transform: translate(-160%, -110%) rotate(0);
    transform: translate(-160%, -110%) rotate(0)
}

.cover-bg .avatar .pop-button.is-active.is-center {
    -webkit-transform: translate(0, -170%) rotate(0);
    transform: translate(0, -170%) rotate(0)
}

.cover-bg .avatar .pop-button.is-active.is-right {
    -webkit-transform: translate(160%, -110%) rotate(0);
    transform: translate(160%, -110%) rotate(0)
}

.cover-bg .avatar .pop-button.is-active.is-far-right {
    -webkit-transform: translate(240%, 30%) rotate(0);
    transform: translate(240%, 30%) rotate(0)
}

.cover-bg .avatar .pop-button svg {
    height: 18px;
    width: 18px;
    stroke: #757a91;
    transition: all .3s
}

.cover-bg .cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1px;
    background: rgba(57, 58, 79, 0.18);
    z-index: 0;
    transition: all 0.3s
}

.cover-bg .cover-edit {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px;
    padding: 2px 8px;
    border: 1.4px solid transparent;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    transition: all .3s
}

.cover-bg .cover-edit i {
    font-size: 20px;
    color: #fcfcfc;
    transition: all .3s;
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.cover-bg .cover-edit span {
    opacity: 0;
    display: block;
    color: #fcfcfc;
    font-weight: 400;
    font-size: .85rem;
    margin: 0 10px;
    transition: all .3s
}

.cover-bg .timeline-mobile-dropdown {
    position: absolute;
    top: 10px;
    right: 10px
}

.cover-bg .timeline-mobile-dropdown div>.button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border-radius: 50%;
    border: 1.4px solid #fff;
    padding: 0
}

.cover-bg .timeline-mobile-dropdown div>.button svg {
    height: 20px;
    width: 20px;
    stroke: #fff
}

.profile-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 0 0 0
}

.profile-menu .button {
    font-size: .9rem;
    padding: 20px 22px;
    background: #fcfcfc;
    color: #999
}

.profile-menu .button.is-active {
    background: #0062ff;
    border-color: #0062ff;
    color: #fcfcfc;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.profile-menu .button.has-min-width {
    width: 140px
}

.profile-menu .dropdown>.button svg {
    height: 20px;
    width: 20px
}

.profile-subheader {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0
}

.profile-subheader .subheader-start,
.profile-subheader .subheader-end {
    width: 25%
}

.profile-subheader .subheader-start svg {
    height: 18px;
    width: 18px;
    stroke: #0062ff;
    display: none
}

.profile-subheader .subheader-start span {
    display: block;
    font-weight: 500
}

.profile-subheader .subheader-start span:first-child {
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #393a4f;
    line-height: 1.2
}

.profile-subheader .subheader-start span:nth-child(2) {
    text-transform: uppercase;
    font-size: .7rem;
    font-weight: 500;
    color: #999
}

.profile-subheader .subheader-end {
    text-align: right
}

.profile-subheader .subheader-middle {
    text-align: center
}

.profile-subheader .subheader-middle h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #393a4f;
    line-height: 1.2
}

.profile-subheader .subheader-middle span {
    display: block;
    font-size: .9rem;
    color: #999
}

.box-heading {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.box-heading h4 {
    font-weight: 500;
    padding: 0 6px
}

.box-heading .heading-search {
    position: relative;
    margin-left: 10px
}

.box-heading .heading-search input {
    padding-left: 38px
}

.box-heading .heading-search input:focus+.search-icon svg {
    stroke: #0062ff
}

.box-heading .heading-search .search-icon {
    position: absolute;
    top: 0;
    left: 2px;
    height: 36px;
    width: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.box-heading .heading-search .search-icon svg {
    height: 16px;
    width: 16px;
    stroke: #cecece;
    transition: stroke .3s
}

.box-heading .dropdown.photos-dropdown.is-active div>.button svg,
.box-heading .dropdown.friends-dropdown.is-active div>.button svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.box-heading .dropdown.photos-dropdown div>.button,
.box-heading .dropdown.friends-dropdown div>.button {
    width: auto !important;
    padding: 0 8px 0 12px;
    height: 34px;
    min-width: 110px;
    background: #f5f5f5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 100px
}

.box-heading .dropdown.photos-dropdown div>.button svg,
.box-heading .dropdown.friends-dropdown div>.button svg {
    height: 16px;
    width: 16px;
    stroke: #393a4f;
    transition: all .3s
}

.box-heading .dropdown.photos-dropdown .dropdown-menu,
.box-heading .dropdown.friends-dropdown .dropdown-menu {
    margin-top: 6px
}

.box-heading .dropdown .button {
    width: 38px !important;
    height: 38px;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-color: transparent
}

.box-heading .dropdown .button svg {
    height: 20px;
    width: 20px;
    stroke: #888da8
}

.box-heading .button-wrap .button {
    line-height: 0;
    width: 90px;
    font-weight: 500
}

.box-heading .button-wrap .button.is-active {
    color: #0062ff;
    border-color: #0062ff
}

.profile-timeline {
    padding: 10px 0
}

.profile-timeline .profile-post {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 30px
}

.profile-timeline .profile-post.is-simple .post-actions {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.profile-timeline .profile-post .time {
    padding-right: 30px;
    position: relative
}

.profile-timeline .profile-post .time .img-container {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.profile-timeline .profile-post .time .img-container:after {
    content: '';
    position: absolute;
    top: 60px;
    left: 24px;
    width: 1.4px;
    height: calc(100% - 30px);
    background: #e5e5e5
}

.profile-timeline .profile-post .time .img-container img {
    display: block;
    height: 44px;
    width: 44px;
    min-width: 44px;
    border-radius: 50%
}

.profile-timeline .profile-post .is-post {
    margin-bottom: 0;
    width: 100%
}

.basic-infos-wrapper {
    padding-top: 10px
}

.basic-infos-wrapper .is-profile-info .info-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 16px
}

.basic-infos-wrapper .is-profile-info .info-row:not(:last-child) {
    border-bottom: 1px solid #e8e8e8
}

.basic-infos-wrapper .is-profile-info .info-row span,
.basic-infos-wrapper .is-profile-info .info-row a {
    display: block
}

.basic-infos-wrapper .is-profile-info .info-row span {
    font-size: .85rem;
    font-weight: 500;
    color: #393a4f
}

.basic-infos-wrapper .is-profile-info .info-row a {
    font-size: .9rem;
    font-weight: 400;
    color: #999
}

.basic-infos-wrapper .is-profile-info .info-row i {
    font-size: 20px;
    color: #cecece;
    margin: 0 4px
}

.basic-infos-wrapper .is-community,
.basic-infos-wrapper .is-about {
    padding: 16px
}

.basic-infos-wrapper .is-community h4,
.basic-infos-wrapper .is-about h4 {
    margin-bottom: 16px;
    color: #999
}

.basic-infos-wrapper .is-community .flex-block,
.basic-infos-wrapper .is-about .flex-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 16px 0
}

.basic-infos-wrapper .is-community .flex-block a,
.basic-infos-wrapper .is-about .flex-block a {
    color: #393a4f;
    font-weight: 500
}

.basic-infos-wrapper .is-community .flex-block a:hover,
.basic-infos-wrapper .is-about .flex-block a:hover {
    color: #0062ff
}

.basic-infos-wrapper .is-community .flex-block p,
.basic-infos-wrapper .is-about .flex-block p {
    font-size: .8rem;
    margin-left: 12px
}

.basic-infos-wrapper .is-community .flex-block svg,
.basic-infos-wrapper .is-about .flex-block svg {
    height: 16px;
    width: 16px
}

.basic-infos-wrapper .is-friendkit {
    padding: 16px
}

.basic-infos-wrapper .is-friendkit .title-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px
}

.basic-infos-wrapper .is-friendkit .title-wrap img {
    display: block;
    max-width: 30px
}

.basic-infos-wrapper .is-friendkit .title-wrap h4 {
    color: #999
}

.basic-infos-wrapper .is-friendkit p {
    font-size: .8rem
}

.basic-infos-wrapper .is-friendkit .created {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px
}

.basic-infos-wrapper .is-friendkit .created svg {
    height: 16px;
    width: 16px;
    stroke: #999;
    margin-right: 8px
}

.basic-infos-wrapper .is-friendkit .created span {
    display: block;
    color: #999;
    font-size: .8rem
}

.is-photos-widget {
    padding: 10px 0 20px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.is-photos-widget img {
    display: block;
    width: calc(25% - 6px);
    margin-bottom: 12px;
    object-fit: cover;
    border-radius: 4px;
    transition: all .3s
}

.is-photos-widget img:hover {
    box-shadow: 0px 15px 32px rgba(0, 0, 0, 0.18) !important
}

.is-videos-widget {
    padding: 10px 0 20px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.is-videos-widget .video-container {
    position: relative;
    display: block;
    width: calc(33% - 6px);
    min-height: 60px;
    margin-bottom: 12px;
    border-radius: 4px;
    transition: all .3s
}

.is-videos-widget .video-container:hover img {
    box-shadow: 0px 15px 32px rgba(0, 0, 0, 0.18) !important
}

.is-videos-widget .video-container img {
    display: block;
    object-fit: cover;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    transition: all .3s
}

.is-videos-widget .video-container .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    background: rgba(52, 66, 88, 0.6)
}

.is-videos-widget .video-container .video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 34px;
    width: 34px;
    background: #ff5f59;
    border-radius: 50%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    cursor: pointer
}

.is-videos-widget .video-container .video-button img {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    left: 1px;
    z-index: 3
}

.is-videos-widget .video-container .video-button:after {
    content: '';
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #ff5f59;
    -webkit-animation: wave 1.6s infinite;
    animation: wave 1.6s infinite;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    z-index: 0
}

.friend-cards-list {
    padding-top: 10px
}

.friend-cards-list .is-friend-card .friend-item {
    padding: 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.friend-cards-list .is-friend-card .friend-item:not(:last-child) {
    border-bottom: 1px solid #e8e8e8
}

.friend-cards-list .is-friend-card .friend-item img {
    display: block;
    height: 44px;
    width: 44px;
    border-radius: 50%
}

.friend-cards-list .is-friend-card .friend-item .text-content {
    margin: 0 10px
}

.friend-cards-list .is-friend-card .friend-item .text-content span,
.friend-cards-list .is-friend-card .friend-item .text-content a {
    display: block
}

.friend-cards-list .is-friend-card .friend-item .text-content a:first-child {
    font-weight: 500;
    font-size: .9rem;
    color: #393a4f
}

.friend-cards-list .is-friend-card .friend-item .text-content a:nth-child(3) {
    font-size: .8rem;
    font-weight: 500;
    color: #0062ff
}

.friend-cards-list .is-friend-card .friend-item .text-content span {
    font-size: .75rem;
    color: #999
}

.friend-cards-list .is-friend-card .friend-item .star-friend {
    height: 44px;
    width: 44px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    cursor: pointer
}

.friend-cards-list .is-friend-card .friend-item .star-friend.is-active svg {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    stroke: #ff5f59;
    fill: #ff5f59
}

.friend-cards-list .is-friend-card .friend-item .star-friend svg {
    height: 20px;
    width: 20px;
    stroke: #999;
    transition: all .3s;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.trip-cards-list {
    padding: 10px 0 0 0
}

.trip-cards-list .is-trip-card .trip-item {
    padding: 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.trip-cards-list .is-trip-card .trip-item:not(:last-child) {
    border-bottom: 1px solid #e8e8e8
}

.trip-cards-list .is-trip-card .trip-item img {
    display: block;
    height: 42px;
    width: 42px;
    border-radius: 50%
}

.trip-cards-list .is-trip-card .trip-item .text-content {
    margin: 0 10px
}

.trip-cards-list .is-trip-card .trip-item .text-content span,
.trip-cards-list .is-trip-card .trip-item .text-content a {
    display: block
}

.trip-cards-list .is-trip-card .trip-item .text-content a:first-child {
    font-weight: 500;
    font-size: .9rem;
    color: #393a4f
}

.trip-cards-list .is-trip-card .trip-item .text-content a:nth-child(3) {
    font-size: .8rem;
    font-weight: 500;
    color: #0062ff
}

.trip-cards-list .is-trip-card .trip-item .text-content span {
    font-size: .85rem;
    color: #999
}

.profile-about {
    width: 100%;
    border-radius: 6px;
    display: -ms-flexbox;
    display: flex
}

.profile-about .left-menu {
    min-width: 260px
}

.profile-about .left-menu .left-menu-inner {
    width: 100%;
    border-radius: 6px 0 0 6px
}

.profile-about .left-menu .menu-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 6px;
    transition: all .3s;
    cursor: pointer
}

.profile-about .left-menu .menu-item.is-active .menu-icon {
    background: #0062ff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.profile-about .left-menu .menu-item.is-active .menu-icon i,
.profile-about .left-menu .menu-item.is-active .menu-icon span {
    color: #fcfcfc
}

.profile-about .left-menu .menu-item .menu-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    width: 100%;
    padding: 0 12px;
    border-radius: 6px;
    background: transparent;
    transition: all .3s
}

.profile-about .left-menu .menu-item i {
    font-size: 1.4rem;
    color: #cecece;
    transition: all .3s
}

.profile-about .left-menu .menu-item span {
    margin: 0 8px;
    display: block;
    font-size: .9rem;
    font-weight: 500;
    color: #cecece;
    transition: color .3s
}

.profile-about .right-content {
    padding-left: 30px;
    width: calc(100% - 260px);
    min-height: 420px
}

.profile-about .right-content .content-section {
    display: none;
    -webkit-animation: fadeInLeft .5s;
    animation: fadeInLeft .5s
}

.profile-about .right-content .content-section.is-active {
    display: block
}

.profile-about .right-content .content-section .flex-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    background: #fff
}

.profile-about .right-content .content-section .flex-block:hover .flex-block-meta .action-link {
    opacity: 1;
    pointer-events: all
}

.profile-about .right-content .content-section .flex-block:hover .flex-block-meta .action-link:hover {
    color: #757a91
}

.profile-about .right-content .content-section .flex-block:hover .go-button {
    -webkit-transform: scale(1) rotate(360deg);
    transform: scale(1) rotate(360deg);
    opacity: 1;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.profile-about .right-content .content-section .flex-block:hover .go-button:hover {
    opacity: .9
}

.profile-about .right-content .content-section .flex-block img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover
}

.profile-about .right-content .content-section .flex-block .flex-block-meta {
    margin-left: 10px
}

.profile-about .right-content .content-section .flex-block .flex-block-meta span,
.profile-about .right-content .content-section .flex-block .flex-block-meta .action-link {
    display: block
}

.profile-about .right-content .content-section .flex-block .flex-block-meta span {
    color: #999;
    font-size: .9rem
}

.profile-about .right-content .content-section .flex-block .flex-block-meta span a {
    color: #393a4f;
    font-size: .85rem;
    font-weight: 500
}

.profile-about .right-content .content-section .flex-block .flex-block-meta .action-link {
    font-size: .75rem;
    color: #cecece;
    pointer-events: none;
    transition: all .3s
}

.profile-about .right-content .content-section .flex-block .go-button {
    margin-left: auto;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    background: #0062ff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s;
    -webkit-transform: scale(0) rotate(0);
    transform: scale(0) rotate(0);
    opacity: 0
}

.profile-about .right-content .content-section .flex-block .go-button svg {
    height: 18px;
    width: 18px;
    stroke: #fcfcfc
}

.profile-about .about-summary {
    transition: all .3s;
    padding: 30px;
    margin-bottom: 10px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    background: #fff
}

.profile-about .about-summary h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem
}

.profile-about .about-summary p {
    font-size: .95rem;
    color: #757a91
}

.profile-about .glider-dots {
    padding: 20px 0
}

.profile-about .glider-dots .glider-dot {
    width: 8px;
    height: 8px;
    margin: 4px
}

.profile-about .glider-dots .glider-dot.active {
    background: #0062ff !important
}

.profile-about .slider-timeline {
    position: relative
}

.profile-about .slider-timeline .timeline-item {
    position: relative;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #dedede;
    margin-right: 1rem
}

.profile-about .slider-timeline .timeline-item .image-container {
    position: relative
}

.profile-about .slider-timeline .timeline-item .image-container>img {
    display: block;
    min-height: 160px;
    object-fit: cover;
    border-radius: 2px
}

.profile-about .slider-timeline .timeline-item .image-container .logo-container {
    position: absolute;
    bottom: -30px;
    right: 10px;
    height: 50px;
    width: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    border-radius: 50%
}

.profile-about .slider-timeline .timeline-item .image-container .logo-container img {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%
}

.profile-about .slider-timeline .timeline-item h3 {
    margin-top: 12px;
    font-size: .9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500
}

.profile-about .slider-timeline .timeline-item>p {
    font-size: .8rem;
    color: #999
}

.profile-about .slider-timeline .timeline-item .more {
    margin-top: 6px
}

.profile-about .slider-timeline .timeline-item .more p {
    font-size: .9rem;
    color: #595b7b
}

.profile-about .slider-timeline .timeline-item .date {
    margin-top: 6px;
    font-size: .8rem;
    color: #999
}

.friends-columns .column {
    padding: .5rem
}

.about-card {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #dedede;
    background: #fff
}

.about-card:not(:last-child) {
    margin-bottom: 30px
}

.about-card .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px
}

.about-card .header .icon-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.about-card .header .icon-title i {
    font-size: 22px;
    color: #cecece
}

.about-card .header .icon-title h3 {
    color: #393a4f;
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 8px
}

.about-card .header .actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.about-card .header .actions .button-wrapper {
    position: relative
}

.about-card .header .actions .button-wrapper .indicator {
    position: absolute;
    top: -8px;
    left: -8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 24px;
    min-width: 24px;
    padding: 0 4px;
    background: #0062ff;
    border: 2px solid #fff;
    border-radius: 50%
}

.about-card .header .actions .button-wrapper .indicator span {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #fcfcfc
}

.about-card .header .actions .button:first-child {
    margin-right: 8px
}

.about-card .header .dropdown div>.button {
    margin-right: 0 !important
}

.about-card .body {
    padding: 0 20px 20px 20px
}

.about-card .body.has-flex-list {
    padding-left: calc(20px - .5rem);
    padding-right: calc(20px - .5rem);
    padding-bottom: calc(20px - .5rem)
}

.about-card .body .friend-small-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #dedede;
    background: #fff;
    transition: all .3s
}

.about-card .body .friend-small-card:hover {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.about-card .body .friend-small-card:hover .dropdown {
    opacity: 1;
    pointer-events: all
}

.about-card .body .friend-small-card img {
    height: 40px;
    width: 40px;
    border-radius: 50%
}

.about-card .body .friend-small-card .meta {
    margin-left: 12px
}

.about-card .body .friend-small-card .meta span {
    display: block
}

.about-card .body .friend-small-card .meta span:first-child {
    font-size: .9rem;
    font-weight: 500;
    color: #393a4f
}

.about-card .body .friend-small-card .meta span:nth-child(2) {
    font-size: .9rem;
    color: #999
}

.about-card .body .friend-small-card .dropdown {
    margin-left: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s
}

.about-card .body .friend-small-card .dropdown>div .button {
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    width: 32px;
    border: none;
    border-radius: 50%;
    transition: all .3s
}

.about-card .body .friend-small-card .dropdown>div .button:hover {
    background: #f0f0f0
}

.about-card .body .friend-small-card .dropdown>div .button svg {
    height: 20px;
    width: 20px
}

.about-card .body .photo-list .photo-wrapper:hover .photo-overlay,
.about-card .body .photo-list .photo-wrapper:hover .video-overlay,
.about-card .body .photo-list .video-wrapper:hover .photo-overlay,
.about-card .body .photo-list .video-wrapper:hover .video-overlay,
.about-card .body .video-list .photo-wrapper:hover .photo-overlay,
.about-card .body .video-list .photo-wrapper:hover .video-overlay,
.about-card .body .video-list .video-wrapper:hover .photo-overlay,
.about-card .body .video-list .video-wrapper:hover .video-overlay {
    opacity: .5
}

.about-card .body .photo-list .photo-wrapper:hover .small-like,
.about-card .body .photo-list .video-wrapper:hover .small-like,
.about-card .body .video-list .photo-wrapper:hover .small-like,
.about-card .body .video-list .video-wrapper:hover .small-like {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    pointer-events: all
}

.about-card .body .photo-list .photo-wrapper .photo-overlay,
.about-card .body .photo-list .photo-wrapper .video-overlay,
.about-card .body .photo-list .video-wrapper .photo-overlay,
.about-card .body .photo-list .video-wrapper .video-overlay,
.about-card .body .video-list .photo-wrapper .photo-overlay,
.about-card .body .video-list .photo-wrapper .video-overlay,
.about-card .body .video-list .video-wrapper .photo-overlay,
.about-card .body .video-list .video-wrapper .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    background: #393a4f;
    opacity: 0;
    transition: opacity .3s
}

.about-card .body .photo-list .photo-wrapper .small-like,
.about-card .body .photo-list .video-wrapper .small-like,
.about-card .body .video-list .photo-wrapper .small-like,
.about-card .body .video-list .video-wrapper .small-like {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    transition: all .3s;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    cursor: pointer
}

.about-card .body .photo-list .photo-wrapper .small-like.is-active .inner .like-overlay,
.about-card .body .photo-list .video-wrapper .small-like.is-active .inner .like-overlay,
.about-card .body .video-list .photo-wrapper .small-like.is-active .inner .like-overlay,
.about-card .body .video-list .video-wrapper .small-like.is-active .inner .like-overlay {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.about-card .body .photo-list .photo-wrapper .small-like.is-active .inner svg,
.about-card .body .photo-list .video-wrapper .small-like.is-active .inner svg,
.about-card .body .video-list .photo-wrapper .small-like.is-active .inner svg,
.about-card .body .video-list .video-wrapper .small-like.is-active .inner svg {
    stroke: #fff;
    fill: #fff
}

.about-card .body .photo-list .photo-wrapper .small-like .inner,
.about-card .body .photo-list .video-wrapper .small-like .inner,
.about-card .body .video-list .photo-wrapper .small-like .inner,
.about-card .body .video-list .video-wrapper .small-like .inner {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 36px;
    width: 36px;
    background: #fff;
    border-radius: 50%
}

.about-card .body .photo-list .photo-wrapper .small-like .inner .like-overlay,
.about-card .body .photo-list .video-wrapper .small-like .inner .like-overlay,
.about-card .body .video-list .photo-wrapper .small-like .inner .like-overlay,
.about-card .body .video-list .video-wrapper .small-like .inner .like-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 36px;
    width: 36px;
    background: #FF7273;
    border-radius: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .3s
}

.about-card .body .photo-list .photo-wrapper .small-like .inner svg,
.about-card .body .photo-list .video-wrapper .small-like .inner svg,
.about-card .body .video-list .photo-wrapper .small-like .inner svg,
.about-card .body .video-list .video-wrapper .small-like .inner svg {
    position: relative;
    height: 14px;
    width: 14px;
    z-index: 1;
    transition: all .3s
}

.about-card .body .photo-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-top: -.5rem
}

.about-card .body .photo-list .photo-wrapper {
    position: relative;
    width: calc(20% - 1rem);
    margin: .5rem;
    overflow: hidden
}

.about-card .body .photo-list .photo-wrapper img {
    display: block;
    object-fit: cover;
    width: 100%;
    border-radius: 4px
}

.about-card .body .video-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-top: -.5rem
}

.about-card .body .video-list .video-wrapper {
    position: relative;
    width: calc(25% - 1rem);
    margin: .5rem;
    overflow: hidden
}

.about-card .body .video-list .video-wrapper img {
    display: block;
    object-fit: cover;
    width: 100%;
    border-radius: 4px
}

.about-card .body .video-list .video-wrapper .video-overlay {
    opacity: .5 !important
}

.about-card .body .video-list .video-wrapper .video-length {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fcfcfc;
    font-weight: 500;
    font-size: .8rem
}

.about-card .body .video-list .video-wrapper .video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 34px;
    width: 34px;
    background: #0062ff;
    border-radius: 50%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    cursor: pointer
}

.about-card .body .video-list .video-wrapper .video-button img {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    left: 1px;
    z-index: 3
}

.about-card .body .video-list .video-wrapper .video-button:after {
    content: '';
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #0062ff;
    -webkit-animation: wave 1.6s infinite;
    animation: wave 1.6s infinite;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    z-index: 0
}

.about-card .body .place-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-top: -.5rem
}

.about-card .body .place-list .place-wrapper {
    position: relative;
    width: calc(33% - 1rem);
    margin: .5rem;
    overflow: hidden;
    padding: 12px;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 4px;
    transition: all .3s
}

.about-card .body .place-list .place-wrapper:hover {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.about-card .body .place-list .place-wrapper img {
    display: block;
    object-fit: cover;
    width: 100%;
    border-radius: 4px
}

.about-card .body .place-list .place-wrapper .foot .place-name {
    display: block;
    margin-top: 4px;
    font-size: .9rem;
    font-weight: 500;
    color: #393a4f;
    transition: color .3s
}

.about-card .body .place-list .place-wrapper .foot .place-name:hover {
    color: #0062ff
}

.about-card .body .place-list .place-wrapper .foot .rating {
    line-height: 1
}

.about-card .body .place-list .place-wrapper .foot .rating svg {
    height: 14px;
    width: 14px;
    stroke: #cecece;
    fill: #cecece;
    transition: all .3s
}

.about-card .body .place-list .place-wrapper .foot .rating svg.is-checked {
    stroke: #ff5f59;
    fill: #ff5f59
}

.page-about-card {
    padding: 20px
}

.page-about-card .card-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px
}

.page-about-card .card-title h4 {
    font-family: 'Montserrat', sans-serif;
    color: #393a4f;
    font-size: .9rem
}

.page-about-card .about-body .about-block .block-header {
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0
}

.page-about-card .about-body .about-block .block-header h4 {
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 500;
    color: #999
}

.page-about-card .about-body .about-block .block-content {
    padding: 10px 0
}

.page-about-card .about-body .about-block .block-content .flex-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0
}

.page-about-card .about-body .about-block .block-content .flex-inner.has-meta {
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 16px 0
}

.page-about-card .about-body .about-block .block-content .flex-inner.has-meta .meta {
    margin-left: 12px
}

.page-about-card .about-body .about-block .block-content .flex-inner.has-meta .meta span {
    display: block;
    padding: 0
}

.page-about-card .about-body .about-block .block-content .flex-inner.has-meta .meta span:first-child {
    font-weight: 500;
    color: #393a4f
}

.page-about-card .about-body .about-block .block-content .flex-inner.has-meta .meta span:nth-child(2) {
    color: #999;
    font-size: .85rem
}

.page-about-card .about-body .about-block .block-content .flex-inner .mdi {
    font-size: 24px;
    color: #999
}

.page-about-card .about-body .about-block .block-content .flex-inner svg {
    height: 16px;
    width: 16px;
    stroke: #999
}

.page-about-card .about-body .about-block .block-content .flex-inner span {
    display: block;
    font-size: .9rem;
    padding: 0 10px
}

.page-about-card .about-body .about-block .block-content .flex-inner span a {
    color: #999
}

.page-about-card .about-body .about-block .block-content .flex-inner span a:hover {
    color: #0062ff
}

.page-about-card .about-body .about-block .block-content .history-block {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px
}

.page-about-card .about-body .about-block .block-content .history-block .date {
    font-weight: 500;
    font-size: .9rem;
    color: #393a4f;
    margin-left: 8px
}

.page-about-card .about-body .about-block .block-content .history-block .timeline ul {
    list-style-type: disc;
    padding-left: 30px
}

.page-about-card .about-body .about-block .block-content .history-block .timeline ul li {
    font-size: .85rem;
    color: #999;
    margin-bottom: 12px
}

.community-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.community-content .community-info {
    width: 59%
}

.community-content .community-info .page-followers {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #dedede
}

.community-content .community-info .page-followers .header {
    margin-bottom: 20px
}

.community-content .community-info .page-followers .header h3 {
    font-family: 'Montserrat', sans-serif;
    color: #393a4f;
    font-size: .9rem;
    font-weight: 600
}

.community-content .community-info .page-followers .followers {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.community-content .community-info .page-followers .followers .follower {
    width: calc(20% - 16px);
    margin: 8px
}

.community-content .community-info .page-followers .followers .follower:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1
}

.community-content .community-info .page-followers .followers .follower img {
    display: block;
    border-radius: 50%;
    -webkit-filter: grayscale(4);
    filter: grayscale(4);
    opacity: .8;
    transition: all .3s
}

.community-content .community-info .page-followers .more-followers {
    padding: 30px 0 10px 0;
    text-align: center
}

.community-content .community-info .page-followers .more-followers a {
    padding: 8px 24px;
    border-radius: 100px;
    background: #f7f7f7;
    color: #999;
    font-size: .9rem;
    transition: all .3s
}

.community-content .community-info .page-followers .more-followers a:hover {
    background: #ededed;
    color: #393a4f
}

.community-content .community-widgets {
    width: 39%
}

.community-content .community-widgets .page-counts {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #dedede;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px
}

.community-content .community-widgets .page-counts .like-count,
.community-content .community-widgets .page-counts .follow-count {
    margin: 10px 0;
    width: 50%
}

.community-content .community-widgets .page-counts .like-count:first-child,
.community-content .community-widgets .page-counts .follow-count:first-child {
    border-right: 1px solid #e8e8e8
}

.community-content .community-widgets .page-counts .like-count span,
.community-content .community-widgets .page-counts .follow-count span {
    display: block;
    text-align: center
}

.community-content .community-widgets .page-counts .like-count span:first-child,
.community-content .community-widgets .page-counts .follow-count span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #393a4f;
    font-size: 1.4rem
}

.community-content .community-widgets .page-counts .like-count span:nth-child(2),
.community-content .community-widgets .page-counts .follow-count span:nth-child(2) {
    text-transform: uppercase;
    font-size: .8rem;
    color: #999
}

.community-content .community-widgets .page-invites {
    background: #fff;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #dedede
}

.community-content .community-widgets .page-invites .header h3 {
    font-size: .9rem
}

.community-content .community-widgets .page-invites .header .control {
    margin-top: 8px;
    position: relative
}

.community-content .community-widgets .page-invites .header .control input {
    padding-left: 36px
}

.community-content .community-widgets .page-invites .header .control input:focus {
    border-color: #e8e8e8
}

.community-content .community-widgets .page-invites .header .control input:focus+.search-icon svg {
    stroke: #0062ff
}

.community-content .community-widgets .page-invites .header .control .search-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 36px;
    width: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.community-content .community-widgets .page-invites .header .control .search-icon svg {
    height: 16px;
    width: 16px;
    stroke: #cecece;
    transition: stroke .3s
}

.community-content .community-widgets .page-invites .suggestions {
    padding: 10px 0 0 0
}

.community-content .community-widgets .page-invites .suggestions .suggestion {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0
}

.community-content .community-widgets .page-invites .suggestions .suggestion:last-child {
    border-bottom: none
}

.community-content .community-widgets .page-invites .suggestions .suggestion img {
    display: block;
    height: 36px;
    width: 36px;
    border-radius: 50%
}

.community-content .community-widgets .page-invites .suggestions .suggestion .meta {
    margin-left: 10px
}

.community-content .community-widgets .page-invites .suggestions .suggestion .meta span {
    display: block;
    font-size: .85rem;
    font-weight: 500
}

.community-content .community-widgets .page-invites .suggestions .suggestion .button {
    margin-left: auto
}

.community-content .community-widgets .page-invites .suggestions .suggestion .button:hover {
    border-color: #0062ff;
    background: #0062ff;
    color: #fcfcfc;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.image-grid-wrap {
    padding: 6px 0
}

.image-grid-wrap .flex-1 {
    -ms-flex: 1;
    flex: 1
}

.image-grid-wrap .flex-2 {
    -ms-flex: 2;
    flex: 2
}

.image-grid-wrap .flex-3 {
    -ms-flex: 3;
    flex: 3
}

.image-grid-wrap .image-row {
    display: -ms-flexbox;
    display: flex
}

.image-grid-wrap .image-row>div {
    position: relative;
    margin: 4px;
    height: 280px;
    border-radius: 2px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    cursor: pointer
}

.image-grid-wrap .image-row>div:hover .overlay {
    opacity: .6;
    pointer-events: all
}

.image-grid-wrap .image-row>div:hover .image-owner .avatar {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.image-grid-wrap .image-row>div:hover .image-owner .name {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.image-grid-wrap .image-row>div:hover .photo-time {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1 !important
}

.image-grid-wrap .image-row>div:hover .photo-like {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.image-grid-wrap .image-row>div .overlay {
    position: absolute;
    top: -4px;
    left: -4px;
    height: 100%;
    width: 100%;
    margin: 4px;
    background: #393a4f;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: all .3s
}

.image-grid-wrap .image-row>div .image-owner {
    position: absolute;
    bottom: 14px;
    left: 14px;
    max-height: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2
}

.image-grid-wrap .image-row>div .image-owner .avatar {
    display: block;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    border: 1.4px solid #fff;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .3s
}

.image-grid-wrap .image-row>div .image-owner .name {
    color: #fff;
    font-size: .9rem;
    margin-left: 8px;
    opacity: 0;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    transition: all .3s
}

.image-grid-wrap .image-row>div .photo-time {
    position: absolute;
    top: 20px;
    left: 14px;
    color: #fff;
    font-size: .85rem;
    margin-left: 8px;
    opacity: 0;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    z-index: 2;
    transition: all .3s
}

.image-grid-wrap .image-row>div .photo-like {
    position: absolute;
    top: 14px;
    right: 14px;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .3s
}

.image-grid-wrap .image-row>div .photo-like:hover .inner svg {
    stroke: #FF7273
}

.image-grid-wrap .image-row>div .photo-like.is-liked {
    box-shadow: 0 14px 26px -12px rgba(255, 114, 115, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 114, 115, 0.2) !important
}

.image-grid-wrap .image-row>div .photo-like.is-liked .inner .like-overlay {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.image-grid-wrap .image-row>div .photo-like.is-liked .inner svg {
    stroke: #fff;
    fill: #fff
}

.image-grid-wrap .image-row>div .photo-like .inner {
    position: relative;
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

.image-grid-wrap .image-row>div .photo-like .inner .like-overlay {
    position: absolute;
    top: -2px;
    left: -2px;
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    border-radius: 50%;
    background: #ff494a;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .3s;
    z-index: 1
}

.image-grid-wrap .image-row>div .photo-like .inner svg {
    position: relative;
    height: 16px;
    width: 16px;
    stroke: #393a4f;
    z-index: 2;
    transition: all .3s
}

.custom-profile-lightbox {
    position: fixed;
    top: 58px;
    left: 0;
    height: calc(100% - 58px);
    width: 100%;
    background: #fff;
    z-index: -1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s
}

.custom-profile-lightbox.is-active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    z-index: 3
}

.custom-profile-lightbox .lightbox-inner {
    position: relative;
    height: 100%;
    width: 100%
}

.custom-profile-lightbox .lightbox-inner .image-side {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(100% - 380px);
    background: #181e28
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner {
    position: relative;
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap {
    position: relative;
    max-width: calc(100% - 160px)
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap:hover .meta-overlay {
    pointer-events: all;
    opacity: .6;
    z-index: 1
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap:hover .meta-block h3,
.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap:hover .meta-block p {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap:hover .action-block .action-button {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: all
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .image-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #090b0f;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: all .3s
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .image-loader.is-active {
    pointer-events: all;
    opacity: 1
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .image-loader .loader {
    height: 3rem;
    width: 3rem
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .meta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #090b0f;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: all .3s
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .meta-block {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .meta-block h3 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: .8rem;
    max-width: 440px;
    opacity: 0;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    transition: all .3s
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .meta-block p {
    padding-top: 8px;
    color: #fff;
    font-size: .8rem;
    max-width: 540px;
    opacity: 0;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    transition: all .3s;
    transition-delay: .2s
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .action-block {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .action-block .action-button {
    height: 36px;
    width: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border: 1.2px solid #fff;
    margin: 0 5px;
    opacity: 0;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    pointer-events: none;
    transition: all .3s
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .action-block .action-button:hover svg {
    stroke: #ff5f59
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .action-block .action-button:nth-child(2) {
    transition-delay: .1s
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .action-block .action-button:nth-child(3) {
    transition-delay: .2s
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .action-block .action-button:nth-child(4) {
    transition-delay: .3s
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap .action-block .action-button svg {
    height: 18px;
    width: 18px;
    stroke: #fff;
    transition: stroke .3s
}

.custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap img {
    display: block;
    border-radius: 4px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 380px;
    background: #fff
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: all .3s
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-loader.is-active {
    pointer-events: all;
    opacity: 1
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-loader .loader {
    height: 3rem;
    width: 3rem
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    width: 100%
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header img {
    height: 42px;
    width: 42px;
    border-radius: 50%
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header .user-meta {
    margin: 0 10px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header .user-meta span {
    display: block
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header .user-meta span:first-child {
    font-size: .9rem;
    font-weight: 500
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header .user-meta span:first-child small {
    color: #999
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header .user-meta span:nth-child(2) {
    font-size: .8rem;
    color: #999
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header .button {
    line-height: 0;
    margin-left: auto;
    padding: 14px 18px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header .dropdown .button {
    padding: 18px 6px;
    border: none;
    background: transparent
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header .dropdown .button svg {
    height: 18px;
    width: 18px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header .dropdown .button img {
    border-radius: 50%
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .header .dropdown .dropdown-menu {
    margin-top: 10px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .inner-content {
    padding: 12px 12px 0 12px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .inner-content .control {
    width: 100%
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .inner-content .control input {
    padding-left: 34px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .inner-content .control input:focus+.icon svg {
    stroke: #0062ff
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .inner-content .control .icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 32px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .inner-content .control .icon svg {
    height: 18px;
    width: 18px;
    stroke: #cecece;
    transition: all .3s
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e8e8e8
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .shares-count,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .comments-count,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .likes-count,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .views-count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 3px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .shares-count span,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .comments-count span,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .likes-count span,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .views-count span {
    display: block;
    font-size: .8rem;
    color: #888da8;
    margin: 0 5px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .shares-count span.views,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .comments-count span.views,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .likes-count span.views,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .views-count span.views {
    margin: 0 2px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .shares-count svg,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .comments-count svg,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .likes-count svg,
.custom-profile-lightbox .lightbox-inner .sidebar-side .live-stats .social-count .views-count svg {
    height: 14px;
    width: 14px;
    stroke: #888da8
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 0
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .actions .action {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .actions .action span {
    display: block;
    font-size: .8rem;
    margin: 0 4px;
    transition: all .3s
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .actions .action svg {
    height: 16px;
    width: 16px;
    stroke: #888da8;
    transition: all .3s
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .actions .action:hover span {
    color: #0062ff
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .actions .action:hover svg {
    stroke: #0062ff
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list {
    background: #f5f6f7;
    height: calc(100% - 232px);
    padding: 20px 14px;
    overflow-y: auto
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment {
    border: none !important;
    padding-top: 0 !important
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment.is-nested {
    margin-left: 40px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-left {
    margin-right: 10px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-left img {
    border-radius: 50%
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content {
    background: #fff;
    padding: 12px;
    border-radius: 8px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content .username {
    font-size: .8rem;
    font-weight: 500
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content p {
    font-size: .75rem;
    color: #999
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content .comment-actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 8px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content .comment-actions span,
.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content .comment-actions a {
    display: block;
    font-size: .75rem;
    color: #393a4f
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content .comment-actions span {
    margin: 0 10px;
    color: #999
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content .comment-actions .likes-count {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content .comment-actions .likes-count span {
    display: block;
    font-size: .75rem;
    color: #888da8;
    margin: 0 5px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content .comment-actions .likes-count span.views {
    margin: 0 2px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comments-list .is-comment .media-content .comment-actions .likes-count svg {
    height: 12px;
    width: 12px;
    stroke: #888da8
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fbfbfc;
    height: 50px;
    width: 100%;
    border-radius: 0 0 6px 0;
    border-top: 1px solid #dee2e5
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 16px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner img {
    height: 32px;
    width: 32px;
    border-radius: 50%
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .control {
    width: 100%
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .control .textarea,
.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .control .emojionearea-editor {
    resize: none;
    height: 36px;
    max-height: 36px;
    min-height: 36px;
    border-radius: 100px;
    overflow: hidden;
    line-height: 1.6;
    font-size: .8rem;
    padding-left: 16px;
    margin: 0 6px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .emojionearea-editor {
    padding-left: 0 !important
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .emojionearea-editor img {
    height: 18px;
    width: 18px;
    min-height: 18px;
    max-height: 18px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .emojionearea {
    overflow: visible !important
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .emojionearea-picker {
    top: -230px;
    position: absolute;
    left: -50px;
    width: 310px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .emojionearea-picker .emojionearea-wrapper {
    width: 310px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .emojionearea-picker .emojionearea-wrapper img {
    height: 22px;
    width: 22px;
    min-height: 22px;
    max-height: 22px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .emojionearea-scroll-area {
    width: 310px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .emojionearea .emojionearea-button>div.emojionearea-button-open {
    background-position: 0 -22px
}

.custom-profile-lightbox .lightbox-inner .sidebar-side .comment-controls .controls-inner .emojionearea .emojionearea-picker .emojionearea-scroll-area .emojibtn {
    width: 24px !important;
    height: 24px !important
}

.friends-grid {
    padding: 20px 0
}

.friends-grid .columns .column {
    padding: .5rem
}

.friends-grid .friend-item {
    display: block;
    width: 100%;
    padding: 30px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    transition: all .3s
}

.friends-grid .friend-item:hover {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.friends-grid .friend-item:hover .avatar-wrap .circle {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.friends-grid .friend-item:hover .avatar-wrap .chat-button {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

.friends-grid .friend-item .avatar-wrap {
    position: relative;
    height: 96px;
    width: 96px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto
}

.friends-grid .friend-item .avatar-wrap .circle {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 1.4px solid #cecece;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    transition: all .3s;
    z-index: 1
}

.friends-grid .friend-item .avatar-wrap .chat-button {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #0062ff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    transition: all .3s;
    z-index: 3
}

.friends-grid .friend-item .avatar-wrap .chat-button svg {
    height: 14px;
    width: 14px;
    stroke: #fff;
    fill: #fff
}

.friends-grid .friend-item .avatar-wrap img {
    position: relative;
    display: block;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    z-index: 2
}

.friends-grid .friend-item h3 {
    font-family: 'Montserrat', sans-serif;
    color: #393a4f;
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 6px
}

.friends-grid .friend-item p {
    color: #999;
    font-size: .8rem
}

@media (max-width: 767px) {
    .profile-about {
        padding: 20px 0
    }
    .profile-about .left-menu {
        margin-bottom: 20px
    }
    .profile-about .right-content {
        width: 100% !important
    }
    .community-content {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .community-content .community-widgets {
        margin-bottom: 20px
    }
    .community-content .community-info,
    .community-content .community-widgets {
        width: 100% !important
    }
    .custom-profile-lightbox .lightbox-inner .image-side {
        width: 100%;
        height: 180px
    }
    .custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap {
        max-width: calc(100% - 80px)
    }
    .custom-profile-lightbox .lightbox-inner .sidebar-side {
        width: 100%;
        top: 180px;
        height: calc(100% - 180px);
        z-index: 10;
        background: #fff
    }
    .image-grid-wrap .image-row>div {
        min-height: 280px
    }
}

@media screen and (max-width: 400px) {
    .image-row {
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .profile-about .right-content {
        width: calc(100% - 220px) !important
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .profile-about {
        padding: 20px 0
    }
    .profile-about .left-menu {
        margin-bottom: 20px
    }
    .profile-about .right-content {
        width: 100% !important
    }
    .custom-profile-lightbox .lightbox-inner .image-side {
        width: 100%;
        height: 340px
    }
    .custom-profile-lightbox .lightbox-inner .image-side .image-side-inner .image-wrap {
        max-width: calc(100% - 80px)
    }
    .custom-profile-lightbox .lightbox-inner .sidebar-side {
        width: 100%;
        top: 340px;
        height: calc(100% - 340px);
        z-index: 10;
        background: #fff
    }
    .friends-grid .columns {
        display: -ms-flexbox;
        display: flex
    }
    .friends-grid .columns .friend-item {
        min-height: 216px
    }
}


/*! _app-friends.scss | Friendkit | © Css Ninja. 2018-2019 */

.friends-wrapper {
    position: relative;
    margin: 0 auto;
    top: 40px;
    padding: 0 6%;
    min-height: calc(100vh - 280px)
}

.friends-wrapper.has-sidebar .card-row .friend-card {
    width: calc(33.3% - 16px)
}

.friends-wrapper .card-row-wrap {
    display: none
}

.friends-wrapper .card-row-wrap.is-active {
    display: block
}

.friends-wrapper .card-row-placeholder {
    min-height: calc(100vh - 280px);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.friends-wrapper .card-row {
    margin-top: 20px;
    padding-bottom: 60px
}

.friend-card {
    position: relative;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow .3s
}

.friend-card.has-shapes {
    overflow: hidden
}

.friend-card.has-shapes .shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 0
}

.friend-card:hover {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.friend-card .shape {
    display: none
}

.friend-card .star-friend {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 44px;
    width: 44px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: auto;
    cursor: pointer
}

.friend-card .star-friend.is-active svg {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    stroke: #ff5f59;
    fill: #ff5f59
}

.friend-card .star-friend svg {
    height: 20px;
    width: 20px;
    stroke: #cecece;
    fill: #cecece;
    transition: all .3s;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.friend-card .img-container {
    position: relative;
    height: 90px;
    width: 90px;
    margin: 10px auto;
    z-index: 1
}

.friend-card .img-container .avatar {
    display: block;
    border-radius: 50%
}

.friend-card .img-container .avatar.is-placeholder {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .3
}

.friend-card .img-container .country {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    border: 3px solid #fff
}

.friend-card .friend-info {
    text-align: center
}

.friend-card .friend-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    color: #393a4f;
    line-height: 1;
    transition: color .3s
}

.friend-card .friend-info p {
    font-family: Roboto, sans-serif;
    font-size: .85rem;
    color: #999
}

.friend-card .friend-stats {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px
}

.friend-card .friend-stats .stat-block {
    text-align: center;
    padding: 0 20px
}

.friend-card .friend-stats .stat-block:nth-child(2) {
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0
}

.friend-card .friend-stats .stat-block label {
    display: block;
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: .6rem;
    color: #999
}

.friend-card .friend-stats .stat-block .stat-number {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #393a4f
}

.friend-card .friend-actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 30px
}

.friend-card .friend-actions .button {
    margin: 0 4px
}

.friend-card .friend-actions .button:hover svg {
    stroke: #393a4f
}

.friend-card .friend-actions .button svg {
    height: 16px;
    width: 16px;
    stroke: #ddd;
    transition: stroke .3s
}

@media screen and (max-width: 1300px) {
    .friends-wrapper {
        padding: 0 !important
    }
}

@media screen and (max-width: 1100px) {
    .friends-wrapper .card-row .friend-card {
        width: calc(33.3% - 16px)
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .friends-wrapper.has-sidebar .card-row .friend-card {
        width: calc(100% - 16px) !important
    }
    .friends-wrapper .card-row .friend-card {
        width: calc(50% - 16px)
    }
    .friends-wrapper .card-row .friend-card .friend-actions {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .options-nav .is-search {
        max-width: 180px !important
    }
}

@media screen and (max-width: 767px) {
    .friends-wrapper .card-row .friend-card {
        width: calc(50% - 16px)
    }
    .friends-wrapper .card-row .friend-card .friend-actions {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }
    .options-nav .is-friends #show-filters {
        display: none !important
    }
    .options-nav .is-friends .is-page-title h2 {
        font-size: .9rem
    }
    .options-nav .is-friends .end-group {
        display: none !important
    }
}

@media screen and (max-width: 560px) {
    .friends-wrapper .card-row .friend-card {
        width: calc(100% - 16px)
    }
}


/*! _app-events.scss | Friendkit | © Css Ninja. 2018-2019 */

.events-wrapper {
    position: absolute;
    top: 58px;
    left: 0;
    width: 100%;
    height: calc(100vh - 58px);
    background: #fff
}

.events-wrapper .left-panel {
    position: fixed;
    top: 58px;
    left: 0;
    width: 260px;
    height: calc(100vh - 58px);
    background: #fff;
    border-right: 1px solid #e0e0e0
}

.events-wrapper .left-panel .left-panel-inner {
    position: relative;
    height: 100%;
    width: 100%;
    padding-bottom: 60px
}

.events-wrapper .left-panel .left-panel-inner a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #dedede;
    transition: all .3s
}

.events-wrapper .left-panel .left-panel-inner a.is-active {
    background: #f2f2f2
}

.events-wrapper .left-panel .left-panel-inner a.is-active span.tag {
    background: #0062ff !important;
    color: #fff !important
}

.events-wrapper .left-panel .left-panel-inner a.is-active span.date-block svg {
    stroke: #0062ff
}

.events-wrapper .left-panel .left-panel-inner a span {
    display: block
}

.events-wrapper .left-panel .left-panel-inner a span.date-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.events-wrapper .left-panel .left-panel-inner a span.date-block svg {
    position: relative;
    top: -1px;
    height: 18px;
    width: 18px;
    margin-right: 6px;
    stroke: #cecece;
    transition: stroke .3s
}

.events-wrapper .left-panel .left-panel-inner a span.date-block .month {
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    color: #393a4f;
    font-size: .85rem;
    line-height: 1;
    width: 75px
}

.events-wrapper .left-panel .left-panel-inner a span.meta-block {
    margin-left: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.events-wrapper .left-panel .left-panel-inner a span.meta-block .time {
    font-size: .8rem;
    color: #999;
    line-height: 1
}

.events-wrapper .left-panel .left-panel-inner a span.meta-block .type {
    display: inline-block
}

.events-wrapper .left-panel .left-panel-inner a span.meta-block .type .tag {
    display: inline-block;
    border-radius: 100px;
    line-height: 2;
    transition: all .3s;
    background: #f2f2f2;
    color: #393a4f
}

.events-wrapper .left-panel .left-panel-inner .add-event {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    background: #fff;
    transition: opacity .3s
}

.events-wrapper .left-panel .left-panel-inner .add-event .button {
    height: 42px;
    width: 100%;
    border: 2px dashed #cecece;
    color: #999
}

.events-wrapper .left-panel .left-panel-inner .add-event .button:hover {
    border: 2px solid #ff5f59;
    background: #ff5f59;
    color: #fafafa;
    box-shadow: 0 14px 26px -12px rgba(255, 95, 89, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 95, 89, 0.2) !important
}

.events-wrapper .right-panel {
    position: fixed;
    top: 58px;
    right: 0;
    width: 380px;
    height: calc(100vh - 58px);
    background: #fff;
    border-left: 1px solid #e0e0e0
}

.events-wrapper .right-panel .panel-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    width: 100%;
    padding: 0 30px
}

.events-wrapper .right-panel .panel-header h3 {
    font-size: 1rem;
    font-family: Montserrat, sans-serif;
    font-weight: 600
}

.events-wrapper .right-panel .panel-body {
    position: relative;
    height: calc(100% - 60px);
    overflow-y: auto;
    padding: 0 20px 20px 20px
}

.events-wrapper .right-panel .panel-body .activity-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 10px 0
}

.events-wrapper .right-panel .panel-body .activity-block img {
    display: block;
    height: 32px;
    width: 32px;
    min-width: 32px;
    border-radius: 50%
}

.events-wrapper .right-panel .panel-body .activity-block .activity-meta {
    margin-left: 10px
}

.events-wrapper .right-panel .panel-body .activity-block .activity-meta p {
    font-size: .85rem;
    color: #393a4f
}

.events-wrapper .right-panel .panel-body .activity-block .activity-meta p a {
    font-weight: 500;
    color: #393a4f;
    transition: color .3s
}

.events-wrapper .right-panel .panel-body .activity-block .activity-meta p a:hover {
    color: #0062ff
}

.events-wrapper .right-panel .panel-body .activity-block .activity-meta span {
    display: block;
    font-size: .85rem;
    color: #999
}

.events-wrapper .wrapper-inner {
    position: relative;
    width: calc(100% - 640px);
    height: 100%;
    margin-left: 260px;
    margin-right: 380px
}

.events-wrapper .wrapper-inner .event-list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: all .3s
}

.events-wrapper .wrapper-inner .event-list .event-item {
    position: relative;
    width: 100%;
    padding: 40px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    display: -ms-flexbox;
    display: flex
}

.events-wrapper .wrapper-inner .event-list .event-item .event-inner-wrap {
    position: relative
}

.events-wrapper .wrapper-inner .event-list .event-item .event-inner-wrap .event-options {
    position: absolute;
    top: 5px;
    right: 0
}

.events-wrapper .wrapper-inner .event-list .event-item .event-inner-wrap .event-options:hover .button svg {
    -webkit-animation: rotation 2s infinite linear;
    animation: rotation 2s infinite linear
}

.events-wrapper .wrapper-inner .event-list .event-item .event-inner-wrap .event-options .button {
    background: transparent;
    border: none;
    padding: 0;
    height: 28px;
    width: 28px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.events-wrapper .wrapper-inner .event-list .event-item .event-inner-wrap .event-options .button svg {
    color: #757a91
}

.events-wrapper .wrapper-inner .event-list .event-item .event-title {
    font-size: 2rem;
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    color: #393a4f;
    line-height: 1.1;
    max-width: 520px
}

.events-wrapper .wrapper-inner .event-list .event-item .event-subtitle {
    display: -ms-flexbox;
    display: flex;
    margin: 40px 0 10px 0
}

.events-wrapper .wrapper-inner .event-list .event-item .event-subtitle svg {
    height: 20px;
    width: 20px;
    margin-right: 6px
}

.events-wrapper .wrapper-inner .event-list .event-item .event-subtitle h3 {
    color: #999
}

.events-wrapper .wrapper-inner .event-list .event-item .event-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start
}

.events-wrapper .wrapper-inner .event-list .event-item .event-content .event-owner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-width: 80px
}

.events-wrapper .wrapper-inner .event-list .event-item .event-content .event-owner img {
    display: block;
    height: 44px;
    width: 44px;
    min-width: 44px;
    border-radius: 50%;
    margin: 0 auto
}

.events-wrapper .wrapper-inner .event-list .event-item .event-content .event-owner .owner-meta {
    margin-left: 12px
}

.events-wrapper .wrapper-inner .event-list .event-item .event-content .event-owner .owner-meta span {
    display: block
}

.events-wrapper .wrapper-inner .event-list .event-item .event-content .event-owner .owner-meta span:first-child {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: #393a4f
}

.events-wrapper .wrapper-inner .event-list .event-item .event-content .event-owner .owner-meta span:nth-child(2) {
    font-size: .9rem;
    color: #999
}

.events-wrapper .wrapper-inner .event-list .event-item .event-content .event-description p {
    color: #757a91;
    margin-bottom: 10px
}

.events-wrapper .wrapper-inner .event-list .event-item .event-content .event-description p:last-child {
    margin-bottom: 0
}

.events-wrapper .wrapper-inner .event-list .event-item .event-participants {
    margin-top: 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.events-wrapper .wrapper-inner .event-list .event-item .event-participants .participants-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center
}

.events-wrapper .wrapper-inner .event-list .event-item .event-participants .participants-group img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    border: 3px solid #fff
}

.events-wrapper .wrapper-inner .event-list .event-item .event-participants .participants-group img:not(:first-child) {
    margin-left: -12px
}

.events-wrapper .wrapper-inner .event-list .event-item .event-participants .participants-text {
    margin-left: 10px
}

.events-wrapper .wrapper-inner .event-list .event-item .event-participants .participants-text p {
    font-size: .8rem;
    color: #888da8
}

.events-wrapper .wrapper-inner .event-list .event-item .event-participants .participants-text p a {
    color: #393a4f
}

.events-wrapper .wrapper-inner .event-list .event-item .event-participants .participants-text p a:hover {
    color: #0062ff
}

@media only screen and (max-width: 1300px) {
    .events-wrapper .right-panel {
        width: 310px !important
    }
    .events-wrapper .wrapper-inner {
        width: calc(100% - 570px) !important;
        margin-right: 310px !important
    }
    .events-wrapper .wrapper-inner .event-list .event-item {
        padding: 40px
    }
}

@media only screen and (max-width: 1200px) {
    .events-wrapper .right-panel {
        display: none !important
    }
    .events-wrapper .wrapper-inner {
        width: calc(100% - 260px) !important;
        margin-right: 0 !important
    }
    .events-wrapper .wrapper-inner .event-list .event-item {
        padding: 40px 60px
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .events-wrapper .right-panel,
    .events-wrapper .left-panel {
        display: none !important
    }
    .events-wrapper .wrapper-inner {
        width: calc(100%) !important;
        margin-right: 0 !important;
        margin-left: 0 !important
    }
    .events-wrapper .wrapper-inner .event-list .event-item {
        padding: 40px 60px;
        height: auto
    }
    .events-wrapper .wrapper-inner .event-list .event-item .event-title {
        font-size: 2rem !important
    }
}

@media (max-width: 767px) {
    .events-wrapper .right-panel,
    .events-wrapper .left-panel {
        display: none !important
    }
    .events-wrapper .wrapper-inner {
        width: calc(100%) !important;
        margin-right: 0 !important;
        margin-left: 0 !important
    }
    .events-wrapper .wrapper-inner .event-list .event-item {
        padding: 40px 30px;
        height: auto
    }
    .events-wrapper .wrapper-inner .event-list .event-item .event-title {
        font-size: 1.6rem !important;
        max-width: 280px
    }
    .events-wrapper .wrapper-inner .event-list .event-item .event-inner-wrap .event-content .event-owner {
        display: none
    }
    .events-wrapper .wrapper-inner .event-list .event-item .event-inner-wrap .event-options {
        top: 0px;
        right: 0px
    }
    .events-wrapper .wrapper-inner .event-list .event-item .event-inner-wrap .event-participants {
        margin-left: 0 !important
    }
}


/*! _app-news.scss | Friendkit | © Css Ninja. 2018-2019 */

.news-header {
    position: relative;
    top: -2px;
    width: 100%;
    height: calc(100vh - 60px)
}

.news-header .news-hero-wrapper {
    position: absolute;
    height: 100%;
    width: calc(100% - 360px);
    margin-right: 360px
}

.news-header .news-hero-wrapper.is-primary .overlay-layer {
    background: rgba(255, 95, 89, 0.6)
}

.news-header .news-hero-wrapper.is-primary .overlay-layer:hover {
    background: rgba(255, 95, 89, 0.85)
}

.news-header .news-hero-wrapper.is-accent .overlay-layer {
    background: rgba(0, 98, 255, 0.6)
}

.news-header .news-hero-wrapper.is-accent .overlay-layer:hover {
    background: rgba(0, 98, 255, 0.85)
}

.news-header .news-hero-wrapper.is-blue .overlay-layer {
    background: rgba(3, 155, 229, 0.6)
}

.news-header .news-hero-wrapper.is-blue .overlay-layer:hover {
    background: rgba(3, 155, 229, 0.85)
}

.news-header .news-hero-wrapper.is-green .overlay-layer {
    background: rgba(28, 229, 137, 0.6)
}

.news-header .news-hero-wrapper.is-green .overlay-layer:hover {
    background: rgba(28, 229, 137, 0.85)
}

.news-header .news-hero-wrapper.is-red .overlay-layer {
    background: rgba(255, 114, 115, 0.6)
}

.news-header .news-hero-wrapper.is-red .overlay-layer:hover {
    background: rgba(255, 114, 115, 0.85)
}

.news-header .news-hero-wrapper .overlay-layer {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(57, 58, 79, 0.6);
    z-index: 1;
    transition: all .5s
}

.news-header .news-hero-wrapper .overlay-layer:hover {
    background: rgba(57, 58, 79, 0.85)
}

.news-header .news-hero-wrapper .overlay-layer .text-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text {
    padding: 0 60px
}

.news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text .tag {
    margin-bottom: 20px;
    text-transform: uppercase;
    height: 26px;
    border-radius: 50px;
    padding-left: 16px;
    padding-right: 16px;
    background: transparent;
    border: 1.2px solid white;
    color: white;
    margin-right: 6px
}

.news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text h2 {
    font-family: Montserrat, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 640px;
    color: #fcfcfc;
    line-height: 1
}

.news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text p {
    font-family: Montserrat, sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 640px;
    color: #fcfcfc;
    margin: 10px 0
}

.news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text .cta-wrap {
    padding: 10px 0
}

.news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text .cta-wrap .button {
    font-size: 1rem;
    height: 47px;
    background: transparent;
    color: #fff;
    border: 1.4px solid #fff;
    min-width: 140px;
    margin-right: 6px
}

.news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text .cta-wrap .button:hover {
    background: #fff;
    color: #393a4f
}

.news-header .news-hero-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 360px;
    height: 100%;
    background: #fff
}

.news-header .news-hero-menu .stories {
    position: relative;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    align-items: stretch
}

.news-header .news-hero-menu .stories .story {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 20%;
    border-right: 4px solid transparent;
    border-bottom: 1px solid #e8e8e8;
    padding: 0 20px
}

.news-header .news-hero-menu .stories .story.is-active {
    border-right-color: #393a4f
}

.news-header .news-hero-menu .stories .story.is-active:before {
    display: block
}

.news-header .news-hero-menu .stories .story:before {
    content: '';
    display: none;
    position: absolute;
    top: 47%;
    left: -21px;
    height: 24px;
    width: 24px;
    background: #fff;
    z-index: 2;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%)
}

.news-header .news-hero-menu .stories .story.is-primary.is-active {
    border-right-color: #ff5f59
}

.news-header .news-hero-menu .stories .story.is-primary.is-active .avatar-wrap {
    border-color: #ff5f59
}

.news-header .news-hero-menu .stories .story.is-accent.is-active {
    border-right-color: #0062ff
}

.news-header .news-hero-menu .stories .story.is-accent.is-active .avatar-wrap {
    border-color: #0062ff
}

.news-header .news-hero-menu .stories .story.is-blue.is-active {
    border-right-color: #039BE5
}

.news-header .news-hero-menu .stories .story.is-blue.is-active .avatar-wrap {
    border-color: #039BE5
}

.news-header .news-hero-menu .stories .story.is-green.is-active {
    border-right-color: #1CE589
}

.news-header .news-hero-menu .stories .story.is-green.is-active .avatar-wrap {
    border-color: #1CE589
}

.news-header .news-hero-menu .stories .story.is-red.is-active {
    border-right-color: #FF7273
}

.news-header .news-hero-menu .stories .story.is-red.is-active .avatar-wrap {
    border-color: #FF7273
}

.news-header .news-hero-menu .stories .story .avatar-wrap {
    height: 48px;
    width: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: 1.4px solid #cecece;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s
}

.news-header .news-hero-menu .stories .story .avatar-wrap img {
    display: block;
    height: 36px;
    width: 36px;
    border-radius: 50%
}

.news-header .news-hero-menu .stories .story .meta {
    margin-left: 20px
}

.news-header .news-hero-menu .stories .story .meta span {
    display: block
}

.news-header .news-hero-menu .stories .story .meta span:first-child {
    text-transform: uppercase;
    font-size: .85rem;
    font-weight: 500;
    color: #999
}

.news-header .news-hero-menu .stories .story .meta span:nth-child(2) {
    font-size: .92rem;
    font-family: Montserrat, sans-serif;
    color: #393a4f;
    font-weight: 600
}

.news-header .news-hero-menu .stories .story .meta span:nth-child(3) {
    font-size: .8rem;
    font-family: Montserrat, sans-serif;
    color: #999;
    font-weight: 500
}

.is-news {
    padding: 1rem
}

.news-grid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.news-grid .news-card {
    position: relative;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 6px;
    margin: 10px;
    width: calc(25% - 20px)
}

.news-grid .news-card .category {
    border-radius: 100px;
    padding-left: 0.95em;
    padding-right: 0.95em;
    background: #f0f0f0;
    color: #393a4f
}

.news-grid .news-card.is-default {
    display: block;
    -ms-flex-direction: column;
    flex-direction: column
}

.news-grid .news-card.is-default.is-inverted {
    background: #212a38
}

.news-grid .news-card.is-default.is-inverted .news-content .news-title {
    font-weight: 600;
    color: #fcfcfc
}

.news-grid .news-card.is-default.is-inverted .news-content p {
    font-weight: 400;
    color: #e8e8e8
}

.news-grid .news-card.is-default.is-inverted .news-content .button-wrap .actions .action:hover {
    background: #2c384b
}

.news-grid .news-card.is-default.is-inverted .news-content .button-wrap .actions .action:hover svg {
    stroke: #fcfcfc
}

.news-grid .news-card.is-default:hover .avatar-wrap {
    height: 44px;
    width: 44px;
    min-width: 44px;
    border-color: #ff5f59
}

.news-grid .news-card.is-default .avatar-wrapper {
    position: absolute;
    top: 20px;
    right: 30px;
    height: 44px;
    width: 44px;
    min-width: 44px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.news-grid .news-card.is-default .avatar-wrap {
    height: 36px;
    width: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1.4px solid transparent;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s
}

.news-grid .news-card.is-default .avatar-wrap img {
    display: block;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    border: 1.6px solid #fcfcfc
}

.news-grid .news-card.is-default img {
    display: block;
    border-radius: 6px 6px 0 0;
    height: 160px;
    width: 100%;
    object-fit: cover
}

.news-grid .news-card.is-default .category {
    position: absolute;
    top: 30px;
    left: 30px
}

.news-grid .news-card.is-default .news-content {
    padding: 20px 30px 30px 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: calc(100% - 160px)
}

.news-grid .news-card.is-default .news-content .news-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    color: #393a4f;
    font-size: 1rem;
    margin: 0 0 10px 0
}

.news-grid .news-card.is-default .news-content p {
    margin-top: auto;
    color: #999;
    font-size: .9rem
}

.news-grid .news-card.is-default .news-content .button-wrap {
    margin-top: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end
}

.news-grid .news-card.is-default .news-content .button-wrap .actions {
    height: 38px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.news-grid .news-card.is-default .news-content .button-wrap .actions .action {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.news-grid .news-card.is-default .news-content .button-wrap .actions .action:hover {
    background: #f5f5f5
}

.news-grid .news-card.is-default .news-content .button-wrap .actions .action:hover svg {
    stroke: #393a4f
}

.news-grid .news-card.is-default .news-content .button-wrap .actions .action.is-like.is-active svg {
    stroke: #FF7273 !important;
    fill: #FF7273 !important
}

.news-grid .news-card.is-default .news-content .button-wrap .actions .action svg {
    height: 18px;
    width: 18px;
    stroke: #999
}

.news-grid .news-card.is-wide {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px;
    width: calc(50% - 20px)
}

.news-grid .news-card.is-wide.has-absolute-image img {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 100%;
    max-width: 45%;
    object-fit: contain
}

.news-grid .news-card.is-wide.has-absolute-image .news-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 55%;
    height: 100%
}

.news-grid .news-card.is-wide.has-absolute-image .news-content .category {
    position: absolute
}

.news-grid .news-card.is-wide.has-absolute-image .news-content .news-title {
    font-family: Montserrat, sans-serif;
    font-weight: bold;
    color: #393a4f;
    font-size: 1.3rem;
    margin: 26px 0 10px 0
}

.news-grid .news-card.is-wide.has-absolute-image .news-content p {
    margin-top: auto;
    color: #999;
    font-size: .9rem
}

.news-grid .news-card.is-wide.has-absolute-image .news-content p+p {
    margin-top: 10px
}

.news-grid .news-card.is-wide.has-absolute-image .news-content .button-wrap {
    margin-top: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: end;
    align-items: flex-end
}

.news-grid .news-card.is-wide.has-absolute-image .news-content .button-wrap .actions {
    height: 38px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.news-grid .news-card.is-wide.has-absolute-image .news-content .button-wrap .actions .action {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s
}

.news-grid .news-card.is-wide.has-absolute-image .news-content .button-wrap .actions .action:hover {
    background: #f5f5f5
}

.news-grid .news-card.is-wide.has-absolute-image .news-content .button-wrap .actions .action:hover svg {
    stroke: #393a4f
}

.news-grid .news-card.is-wide.has-absolute-image .news-content .button-wrap .actions .action.is-like.is-active svg {
    stroke: #FF7273 !important;
    fill: #FF7273 !important
}

.news-grid .news-card.is-wide.has-absolute-image .news-content .button-wrap .actions .action svg {
    height: 18px;
    width: 18px;
    stroke: #999;
    transition: all .3s
}

@media (max-width: 767px) {
    .news-header .news-hero-wrapper {
        width: 100%;
        margin: 0
    }
    .news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text {
        padding: 0 30px
    }
    .news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text h2 {
        font-size: 2rem
    }
    .news-header .news-hero-menu {
        display: none
    }
    .news-grid .news-card.is-default {
        width: calc(100% - 20px)
    }
    .news-grid .news-card.is-wide {
        width: calc(100% - 20px)
    }
    .news-grid .news-card.is-wide.has-absolute-image img {
        display: none
    }
    .news-grid .news-card.is-wide.has-absolute-image .news-content {
        max-width: 100%
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .news-header .news-hero-wrapper {
        width: 100%;
        margin-right: 0
    }
    .news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text {
        padding: 0 40px
    }
    .news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text h2 {
        font-size: 3.4rem
    }
    .news-header .news-hero-menu {
        display: none
    }
    .news-grid .news-card.is-default {
        width: calc(50% - 20px)
    }
    .news-grid .news-card.is-wide {
        width: calc(50% - 20px)
    }
    .news-grid .news-card.is-wide.has-absolute-image img {
        display: none
    }
    .news-grid .news-card.is-wide.has-absolute-image .news-content {
        max-width: 100%
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .news-header .news-hero-wrapper {
        width: calc(100% - 280px);
        margin-right: 280px
    }
    .news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text {
        padding: 0 40px
    }
    .news-header .news-hero-wrapper .overlay-layer .text-layer .hero-text h2 {
        font-size: 3.4rem
    }
    .news-header .news-hero-menu {
        width: 280px
    }
    .news-header .news-hero-menu .stories .story .avatar-wrap {
        height: 40px;
        width: 40px;
        min-width: 40px
    }
    .news-header .news-hero-menu .stories .story .avatar-wrap img {
        height: 28px;
        width: 28px
    }
    .news-header .news-hero-menu .stories .story .meta {
        margin-left: 10px
    }
    .news-header .news-hero-menu .stories .story .meta span:first-child {
        font-size: .75rem
    }
    .news-header .news-hero-menu .stories .story .meta span:nth-child(2) {
        font-size: .8rem
    }
    .news-header .news-hero-menu .stories .story .meta span:nth-child(3) {
        font-size: .7rem
    }
    .news-grid .news-card.is-default {
        width: calc(33.3% - 20px)
    }
    .news-grid .news-card.is-wide {
        width: calc(66.6% - 20px)
    }
    .news-grid .news-card.is-wide.has-absolute-image img {
        max-height: 78%
    }
    .news-grid .news-card.is-wide.has-absolute-image .news-content {
        max-width: 60%
    }
}


/*! _app-questions.scss | Friendkit | © Css Ninja. 2018-2019 */

.question-tabs {
    margin-bottom: 20px !important;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
    border-radius: 8px
}

.question-tabs.is-nav {
    margin-bottom: 0 !important;
    box-shadow: none !important;
    border: none
}

.question-tabs.is-nav ul li a {
    padding: 1.25em;
    border-bottom: 2px solid transparent
}

.question-tabs ul {
    border-color: transparent
}

.question-tabs ul li.is-active a {
    color: #0062ff;
    border-bottom-color: #0062ff
}

.question-tabs ul li a {
    color: #c6c6c6;
    border-bottom: 1px solid transparent;
    font-size: .9rem;
    padding: 1em
}

.questions-wrap,
.questions-demo {
    margin: 60px 0
}

.questions-wrap.is-smaller,
.questions-demo.is-smaller {
    margin: 20px 0
}

.questions-wrap .questions-menu,
.questions-demo .questions-menu {
    margin-right: 40px;
    max-width: 250px
}

.questions-wrap .questions-menu.questions-menu-fixed,
.questions-demo .questions-menu.questions-menu-fixed {
    position: fixed;
    width: 100%;
    max-width: 250px;
    margin-top: 40px;
    opacity: 0;
    pointer-events: none;
    transition: all .5s
}

.questions-wrap .questions-menu.questions-menu-fixed.is-faded,
.questions-demo .questions-menu.questions-menu-fixed.is-faded {
    opacity: 1;
    pointer-events: all
}

.questions-wrap .questions-menu li.is-active a,
.questions-demo .questions-menu li.is-active a {
    background: #ebf2ff
}

.questions-wrap .questions-menu li.is-active a svg,
.questions-demo .questions-menu li.is-active a svg {
    stroke: #0062ff
}

.questions-wrap .questions-menu li.is-active a span,
.questions-demo .questions-menu li.is-active a span {
    color: #0062ff
}

.questions-wrap .questions-menu li a,
.questions-demo .questions-menu li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    border-radius: 100px
}

.questions-wrap .questions-menu li a svg,
.questions-demo .questions-menu li a svg {
    height: 22px;
    height: 22px;
    margin-right: 10px;
    stroke: #999;
    transition: all .3s
}

.questions-wrap .questions-menu li a span,
.questions-demo .questions-menu li a span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    color: #393a4f;
    transition: color .3s
}

.question-content {
    max-width: 640px;
    margin: 0 auto
}

.question-content.is-large {
    max-width: 840px
}

.question-content .top-single-header {
    margin: 0 0 20px 0
}

.question-content .question-block {
    border-bottom: 1px solid #e3e3e3
}

.question-content .question-block.is-top-spaced {
    margin-top: 30px
}

.question-content .question-block .question-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #393a4f;
    font-size: 1.6rem
}

.question-content .question-block .question-title.is-link {
    transition: color .3s
}

.question-content .question-block .question-title.is-link:hover {
    color: #0062ff
}

.question-content .question-block .question-author {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0
}

.question-content .question-block .question-author img {
    display: block;
    height: 38px;
    width: 38px;
    min-width: 38px;
    border-radius: 50%
}

.question-content .question-block .question-author .meta {
    margin-left: 12px
}

.question-content .question-block .question-author .meta span {
    display: block
}

.question-content .question-block .question-author .meta span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #393a4f;
    font-size: .9rem
}

.question-content .question-block .question-author .meta span:nth-child(2) {
    font-size: .85rem;
    color: #999
}

.question-content .question-block .question-text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #707298;
    font-size: .95rem;
    max-width: 680px
}

.question-content .question-block .question-text .tags {
    padding-top: 10px
}

.question-content .question-block .question-text .tags .tag {
    border-radius: 100px;
    line-height: 1
}

.question-content .question-block .question-footer {
    padding: 20px 0 0 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    max-width: 700px
}

.question-content .question-block .question-footer .likes,
.question-content .question-block .question-footer .report {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.question-content .question-block .question-footer .likes .like-icon,
.question-content .question-block .question-footer .report .like-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    width: 32px;
    background: #FF7273;
    border-radius: 50%
}

.question-content .question-block .question-footer .likes .like-icon svg,
.question-content .question-block .question-footer .report .like-icon svg {
    height: 16px;
    width: 16px;
    stroke: #fff;
    fill: #fff
}

.question-content .question-block .question-footer .likes .report-icon,
.question-content .question-block .question-footer .report .report-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    width: 32px;
    background: #f5f5f5;
    border-radius: 50%
}

.question-content .question-block .question-footer .likes .report-icon svg,
.question-content .question-block .question-footer .report .report-icon svg {
    height: 16px;
    width: 16px;
    stroke: #999
}

.question-content .question-block .question-footer .likes span,
.question-content .question-block .question-footer .report span {
    display: block;
    font-weight: 500;
    margin-left: 10px;
    font-size: .9rem
}

.question-content .question-block .answers-count {
    padding: 20px 4px
}

.question-content .question-block .answers-count span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #393a4f;
    font-size: .9rem
}

.question-content .answer-block {
    padding: 10px 0;
    border-bottom: 1px solid #e3e3e3
}

.question-content .answer-block.is-best .answer-author .avatar-wrap {
    border: 1.4px solid #1CE589
}

.question-content .answer-block.is-best .answer-author .avatar-wrap .badge {
    display: -ms-flexbox;
    display: flex
}

.question-content .answer-block.is-best .answer-footer .upvote .upvote-icon {
    background: #1CE589
}

.question-content .answer-block .answer-author {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0
}

.question-content .answer-block .answer-author .avatar-wrap {
    position: relative;
    height: 48px;
    width: 48px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border: 1.4px solid #999
}

.question-content .answer-block .answer-author .avatar-wrap .avatar {
    display: block;
    height: 38px;
    width: 38px;
    min-width: 38px;
    border-radius: 50%
}

.question-content .answer-block .answer-author .avatar-wrap .badge {
    position: absolute;
    top: -4px;
    right: -7px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 2px solid #fcfcfc;
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #1CE589
}

.question-content .answer-block .answer-author .avatar-wrap .badge svg {
    height: 12px;
    width: 12px;
    stroke: #fcfcfc;
    stroke-width: 3px
}

.question-content .answer-block .answer-author .meta {
    margin-left: 12px
}

.question-content .answer-block .answer-author .meta span {
    display: block
}

.question-content .answer-block .answer-author .meta span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #393a4f;
    font-size: .9rem
}

.question-content .answer-block .answer-author .meta span:first-child .best-tag {
    margin-left: 10px;
    padding: 4px 12px;
    border-radius: 100px;
    background: #c1f8df;
    font-weight: 400;
    font-size: .75rem;
    color: #1CE589;
    font-family: 'Roboto', sans-serif
}

.question-content .answer-block .answer-author .meta span:nth-child(2) {
    font-size: .85rem;
    color: #999
}

.question-content .answer-block .answer-text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #707298;
    font-size: .95rem;
    max-width: 680px;
    margin-bottom: 20px
}

.question-content .answer-block .answer-text p.code {
    padding: 30px;
    border-radius: 8px;
    background: #f5f5f8;
    font-size: .88rem;
    color: #5b5d7e
}

.question-content .answer-block .answer-text p a {
    display: block;
    word-break: break-all;
    color: #039BE5;
    text-decoration: underline
}

.question-content .answer-block .answer-footer {
    padding: 30px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    max-width: 700px
}

.question-content .answer-block .answer-footer .upvote,
.question-content .answer-block .answer-footer .report {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.question-content .answer-block .answer-footer .upvote .upvote-icon,
.question-content .answer-block .answer-footer .report .upvote-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    width: 32px;
    background: #ebebeb;
    border-radius: 50%
}

.question-content .answer-block .answer-footer .upvote .upvote-icon svg,
.question-content .answer-block .answer-footer .report .upvote-icon svg {
    height: 16px;
    width: 16px;
    stroke: #fff;
    stroke-width: 4px
}

.question-content .answer-block .answer-footer .upvote .report-icon,
.question-content .answer-block .answer-footer .report .report-icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    width: 32px;
    background: #f5f5f5;
    border-radius: 50%
}

.question-content .answer-block .answer-footer .upvote .report-icon svg,
.question-content .answer-block .answer-footer .report .report-icon svg {
    height: 16px;
    width: 16px;
    stroke: #999
}

.question-content .answer-block .answer-footer .upvote span,
.question-content .answer-block .answer-footer .report span {
    display: block;
    font-weight: 500;
    margin-left: 10px;
    font-size: .9rem
}

.question-content .more-answers {
    padding: 40px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 680px
}

.question-content .more-answers a {
    text-transform: uppercase;
    font-size: .75rem;
    color: #999;
    padding: 6px 20px;
    background: #f2f2f2;
    border-radius: 100px;
    padding: 12px 20px;
    min-width: 188px;
    text-align: center;
    transition: all .3s
}

.question-content .more-answers a:hover {
    background: #ff5f59;
    color: #fff;
    box-shadow: 0 14px 26px -12px rgba(255, 95, 89, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 95, 89, 0.2) !important
}

.question-content .more-answers a.is-loading {
    width: 42px
}

.other-questions .other-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #5b5d7e;
    font-size: 1.2rem
}

.other-questions .other-question {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0
}

.other-questions .other-question .avatar-wrap {
    position: relative;
    height: 58px;
    width: 58px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border: 1.4px solid #999
}

.other-questions .other-question .avatar-wrap .avatar {
    display: block;
    height: 48px;
    width: 48px;
    min-width: 48px;
    border-radius: 50%
}

.other-questions .other-question .avatar-wrap .badge {
    position: absolute;
    top: -4px;
    right: -7px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 2px solid #fcfcfc;
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #1CE589
}

.other-questions .other-question .avatar-wrap .badge svg {
    height: 12px;
    width: 12px;
    stroke: #fcfcfc;
    stroke-width: 3px
}

.other-questions .other-question .meta {
    margin-left: 12px
}

.other-questions .other-question .meta span,
.other-questions .other-question .meta a {
    display: block
}

.other-questions .other-question .meta span:first-child,
.other-questions .other-question .meta a:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #5b5d7e;
    font-size: 1rem
}

.other-questions .other-question .meta span:nth-child(2),
.other-questions .other-question .meta a:nth-child(2) {
    font-size: .9rem;
    color: #999
}

.other-questions .other-question .meta a {
    transition: color .3s
}

.other-questions .other-question .meta a:hover {
    color: #0062ff
}

.questions-nav {
    position: fixed;
    top: 58px;
    left: 0;
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #dedede;
    background: #fff;
    z-index: 18;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: all .3s
}

.questions-nav.is-active {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.questions-nav .inner {
    position: relative;
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.questions-nav .inner.is-scrollable {
    overflow-x: auto !important
}

.questions-nav .inner .question-summary {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 640px
}

.questions-nav .inner .question-summary img {
    display: block;
    height: 32px;
    width: 32px;
    min-width: 32px;
    border-radius: 50%
}

.questions-nav .inner .question-summary .meta {
    margin-left: 12px
}

.questions-nav .inner .question-summary .meta h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #393a4f;
    font-size: 1rem
}

.questions-nav .inner .question-summary .meta span {
    display: block;
    font-size: .8rem;
    color: #999
}

.questions-nav .inner .question-summary .dropdown {
    margin-left: auto
}

.questions-nav .inner .question-summary .dropdown:hover .button {
    background: #f0f0f0
}

.questions-nav .inner .question-summary .dropdown:hover .button svg {
    stroke: #393a4f
}

.questions-nav .inner .question-summary .dropdown .button {
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    transition: all .3s
}

.questions-nav .inner .question-summary .dropdown .button svg {
    height: 20px;
    width: 20px;
    stroke: #999;
    transition: stroke .3s
}

.questions-nav .inner .question-summary .dropdown .dropdown-menu {
    margin-top: 14px
}

.questions-nav .inner .questions-nav-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.questions-nav .inner .questions-nav-menu .menu-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 6px 20px 6px 16px;
    border-radius: 100px;
    transition: all .3s
}

.questions-nav .inner .questions-nav-menu .menu-item:hover svg {
    stroke: #0062ff
}

.questions-nav .inner .questions-nav-menu .menu-item:hover span {
    color: #0062ff
}

.questions-nav .inner .questions-nav-menu .menu-item.is-active {
    background: #ebf2ff
}

.questions-nav .inner .questions-nav-menu .menu-item.is-active svg {
    stroke: #0062ff
}

.questions-nav .inner .questions-nav-menu .menu-item.is-active span {
    color: #0062ff
}

.questions-nav .inner .questions-nav-menu .menu-item svg {
    height: 16px;
    width: 16px;
    stroke: #cecece;
    transition: stroke .3s
}

.questions-nav .inner .questions-nav-menu .menu-item span {
    color: #595b7b;
    font-size: .9rem;
    margin-left: 3px;
    transition: color .3s
}

.categories-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 20px
}

.categories-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #393a4f;
    font-size: 1.6rem
}

.categories-header .control {
    position: relative
}

.categories-header .control input {
    padding-bottom: 8px;
    padding-left: 36px
}

.categories-header .control input:focus {
    border-color: #ededed
}

.categories-header .control input:focus+.search-icon svg {
    stroke: #0062ff
}

.categories-header .control .search-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 36px;
    width: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.categories-header .control .search-icon svg {
    height: 20px;
    width: 20px;
    stroke: #cecece;
    transition: stroke .3s
}

.category-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid #dedede;
    border-radius: 8px;
    transition: all .3s
}

.category-box.is-row {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.category-box.is-row img {
    margin: 0;
    min-height: 160px;
    max-height: 160px
}

.category-box.is-row .box-content {
    padding-left: 40px
}

.category-box.is-taller img {
    margin: 0;
    min-height: 140px;
    max-height: 140px
}

.category-box:hover {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.category-box:hover.is-primary {
    border-color: #ff5f59
}

.category-box:hover.is-primary img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1
}

.category-box:hover.is-primary .box-content h3 {
    color: #ff5f59
}

.category-box:hover.is-accent {
    border-color: #0062ff
}

.category-box:hover.is-accent img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1
}

.category-box:hover.is-accent .box-content h3 {
    color: #0062ff
}

.category-box:hover.is-green {
    border-color: #1CE589
}

.category-box:hover.is-green img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1
}

.category-box:hover.is-green .box-content h3 {
    color: #1CE589
}

.category-box:hover.is-blue {
    border-color: #039BE5
}

.category-box:hover.is-blue img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1
}

.category-box:hover.is-blue .box-content h3 {
    color: #039BE5
}

.category-box:hover.is-red {
    border-color: #FF7273
}

.category-box:hover.is-red img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1
}

.category-box:hover.is-red .box-content h3 {
    color: #FF7273
}

.category-box img {
    display: block;
    margin: 0 auto;
    min-height: 110px;
    max-height: 110px;
    margin-bottom: 30px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .6;
    transition: all .3s
}

.category-box .box-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #393a4f;
    margin-bottom: 6px;
    transition: color .3s
}

.category-box .box-content p {
    font-family: 'Roboto', sans-serif;
    font-size: .9rem;
    color: #999
}

.stats-wrapper .stats-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    width: 100%;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 10px
}

.stats-wrapper .stats-header .avatar-wrapper {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 96px;
    width: 96px;
    min-width: 96px;
    border-radius: 50%;
    border: 2px solid #cecece
}

.stats-wrapper .stats-header .avatar-wrapper .avatar {
    display: block;
    height: 80px;
    width: 80px;
    border-radius: 50%
}

.stats-wrapper .stats-header .avatar-wrapper .badge {
    position: absolute;
    top: 1px;
    right: -1px;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #1CE589
}

.stats-wrapper .stats-header .avatar-wrapper .badge svg {
    height: 13px;
    width: 13px;
    stroke: #fff;
    stroke-width: 4px
}

.stats-wrapper .stats-header .user-info {
    margin-left: 20px
}

.stats-wrapper .stats-header .user-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #393a4f;
    font-size: 1.1rem
}

.stats-wrapper .stats-header .user-info p {
    color: #999;
    font-size: .85rem;
    font-family: 'Roboto', sans-serif
}

.stats-wrapper .stats-header .user-info .button {
    margin-top: 10px;
    height: 36px;
    min-width: 110px;
    border-radius: 100px;
    padding: 0;
    transition: all .3s
}

.stats-wrapper .stats-header .user-info .button.is-follow {
    border: 1.6px solid #0062ff;
    color: #0062ff
}

.stats-wrapper .stats-header .user-info .button.is-follow:hover {
    background: #0062ff;
    color: #fcfcfc;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.stats-wrapper .stats-header .main-stats {
    margin-left: auto;
    display: -ms-flexbox;
    display: flex
}

.stats-wrapper .stats-header .main-stats .stat-block {
    padding: 0 16px;
    text-align: center
}

.stats-wrapper .stats-header .main-stats .stat-block.is-centered {
    border-left: 1px solid #dedede;
    border-right: 1px solid #dedede
}

.stats-wrapper .stats-header .main-stats .stat-block h4 {
    text-transform: uppercase;
    font-size: .7rem;
    color: #393a4f;
    font-weight: 500
}

.stats-wrapper .stats-header .main-stats .stat-block p {
    font-weight: bolder;
    font-size: 1.4rem;
    color: #707298
}

.stats-wrapper .achievements .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px
}

.stats-wrapper .achievements .header h3 {
    font-family: 'Montserrat', sans-serif;
    color: #595b7b;
    font-size: .9rem;
    font-weight: 600;
    transition: color .3s
}

.stats-wrapper .achievements .achievements-carousel-wrap {
    position: relative;
    overflow: hidden;
    margin-top: -6px
}

.stats-wrapper .achievements .achievements-carousel-wrap .achievements-loader {
    position: absolute;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background: #fff;
    opacity: 0;
    transition: all .3s;
    z-index: -1
}

.stats-wrapper .achievements .achievements-carousel-wrap .achievements-loader.is-active {
    opacity: 1;
    z-index: 1
}

.stats-wrapper .achievements .achievements-carousel-wrap .achievements-loader .loader {
    height: 2rem;
    width: 2rem
}

.stats-wrapper .achievements .achievements-carousel {
    max-height: 250px
}

.stats-wrapper .achievements .achievements-carousel .achievement {
    padding: 30px;
    border: 1px solid #dedede;
    background: #fff;
    border-radius: 8px;
    margin: 6px;
    outline: none !important;
    cursor: -webkit-grab;
    cursor: grab;
    transition: all .3s
}

.stats-wrapper .achievements .achievements-carousel .achievement:hover {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
    border-color: #0062ff
}

.stats-wrapper .achievements .achievements-carousel .achievement img {
    display: block;
    height: 90px;
    margin: 0 auto
}

.stats-wrapper .achievements .achievements-carousel .achievement h3 {
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #595b7b;
    font-size: .85rem;
    font-weight: 500
}

.stats-wrapper .achievements .achievements-carousel .achievement p {
    color: #999;
    font-size: .8rem;
    min-height: 39px
}

.stats-wrapper .quick-activity .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e8e8e8
}

.stats-wrapper .quick-activity .header h3 {
    font-family: 'Montserrat', sans-serif;
    color: #595b7b;
    font-size: .9rem;
    font-weight: 600;
    transition: color .3s
}

.stats-wrapper .quick-activity .activity-list {
    padding: 10px
}

.stats-wrapper .quick-activity .activity-list .activity-item {
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #e8e8e8;
    padding: 16px
}

.stats-wrapper .quick-activity .activity-list .activity-item.is-best .avatar-wrap {
    border: 1.4px solid #1CE589
}

.stats-wrapper .quick-activity .activity-list .activity-item.is-best .avatar-wrap .badge {
    display: -ms-flexbox;
    display: flex
}

.stats-wrapper .quick-activity .activity-list .activity-item .avatar-wrap {
    position: relative;
    height: 48px;
    width: 48px;
    min-width: 48px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border: 1.4px solid #cecece
}

.stats-wrapper .quick-activity .activity-list .activity-item .avatar-wrap .avatar {
    display: block;
    height: 38px;
    width: 38px;
    min-width: 38px;
    border-radius: 50%
}

.stats-wrapper .quick-activity .activity-list .activity-item .avatar-wrap .badge {
    position: absolute;
    top: -4px;
    right: -7px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 2px solid #fcfcfc;
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #1CE589
}

.stats-wrapper .quick-activity .activity-list .activity-item .avatar-wrap .badge svg {
    height: 12px;
    width: 12px;
    stroke: #fcfcfc;
    stroke-width: 3px
}

.stats-wrapper .quick-activity .activity-list .activity-item .meta {
    margin-left: 16px
}

.stats-wrapper .quick-activity .activity-list .activity-item .meta span {
    display: block
}

.stats-wrapper .quick-activity .activity-list .activity-item .meta span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #393a4f;
    font-size: .9rem
}

.stats-wrapper .quick-activity .activity-list .activity-item .meta span:first-child .best-tag {
    margin-left: 10px;
    padding: 4px 12px;
    border-radius: 100px;
    background: #c1f8df;
    font-weight: 400;
    font-size: .75rem;
    color: #1CE589;
    font-family: 'Roboto', sans-serif
}

.stats-wrapper .quick-activity .activity-list .activity-item .meta span:nth-child(2) {
    font-size: .9rem;
    font-family: 'Roboto', sans-serif;
    color: #999;
    max-width: 450px
}

.stats-wrapper .quick-activity .activity-list .activity-item .meta span:nth-child(2) a {
    color: #595b7b;
    transition: color .3s
}

.stats-wrapper .quick-activity .activity-list .activity-item .meta span:nth-child(2) a:hover {
    color: #0062ff
}

.stats-wrapper .quick-activity .activity-list .activity-item .meta small {
    margin-top: 6px;
    font-size: .75rem;
    color: #999
}

.questions-settings .settings-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 30px
}

.questions-settings .settings-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #393a4f;
    font-size: 1.6rem
}

.questions-settings .settings-header .control {
    position: relative
}

.questions-settings .settings-header .control input {
    padding-bottom: 8px;
    padding-left: 36px
}

.questions-settings .settings-header .control input:focus {
    border-color: #ededed
}

.questions-settings .settings-header .control input:focus+.search-icon svg {
    stroke: #0062ff
}

.questions-settings .settings-header .control .search-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 36px;
    width: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.questions-settings .settings-header .control .search-icon svg {
    height: 20px;
    width: 20px;
    stroke: #cecece;
    transition: stroke .3s
}

.questions-settings .settings-body .switch-block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px
}

.questions-settings .settings-body .switch-block .meta {
    margin-left: 16px
}

.questions-settings .settings-body .switch-block .meta span {
    display: block
}

.questions-settings .settings-body .switch-block .meta span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #393a4f;
    font-size: .9rem
}

.questions-settings .settings-body .switch-block .meta span:nth-child(2) {
    font-size: .85rem;
    color: #999
}

.questions-side-card {
    width: 100%;
    background: #fff;
    padding: 30px;
    border: 1px solid #dedede;
    border-radius: 8px;
    margin-bottom: 20px
}

.questions-side-card img {
    display: block;
    max-width: 80px;
    margin: 0 auto 20px auto
}

.questions-side-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #393a4f;
    font-size: .9rem
}

.questions-side-card p {
    font-size: .9rem;
    color: #999
}

@media (max-width: 767px) {
    .questions-nav .question-summary {
        max-width: 340px !important
    }
    .questions-nav .question-summary .meta h4 {
        font-size: .85rem !important
    }
    .questions-nav .question-summary .meta span {
        display: none !important
    }
    .questions-nav .questions-nav-menu .menu-item {
        padding: 6px 16px !important
    }
    .questions-nav .questions-nav-menu .menu-item svg {
        height: 18px !important;
        width: 18px !important
    }
    .questions-nav .questions-nav-menu .menu-item span {
        display: none !important
    }
    .questions-wrap {
        margin: 26px 0;
        padding: 0 10px
    }
    .questions-wrap .column.is-4,
    .questions-wrap .column.is-3 {
        display: none
    }
    .categories-header h2,
    .settings-header h2 {
        font-size: 1.3rem !important
    }
    .categories-header .control,
    .settings-header .control {
        max-width: 200px
    }
    .category-box.is-row {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }
    .category-box.is-row img {
        min-height: 110px !important;
        max-height: 110px !important
    }
    .category-box.is-row .box-content {
        padding-left: 0 !important;
        padding-top: 20px
    }
    .category-box.is-taller img {
        min-height: 110px !important;
        max-height: 110px !important
    }
    .category-box.is-taller .box-content {
        padding-left: 0 !important;
        padding-top: 20px
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .questions-nav .question-summary {
        margin: 0 auto;
        width: 100%;
        max-width: 640px
    }
    .questions-wrap {
        margin: 30px 0;
        padding: 0 60px
    }
    .questions-wrap .column.is-4,
    .questions-wrap .column.is-3 {
        display: none
    }
    .category-box {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }
    .category-box img {
        margin: 0 !important;
        min-height: none !important;
        max-height: none !important;
        max-width: 120px !important;
        min-width: 120px !important
    }
    .category-box .box-content {
        padding-left: 40px !important
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .questions-nav .question-summary {
        margin: 0 auto;
        width: 100%;
        max-width: 640px
    }
    .categories-tile-grid .tile.is-parent {
        padding: .5rem !important
    }
    .category-box .box-content p {
        font-size: .8rem !important
    }
    .questions-menu-fixed {
        max-width: 190px !important
    }
    .questions-side-card {
        padding: 20px
    }
    .questions-side-card img {
        max-width: 60px
    }
    .questions-side-card p {
        font-size: .8rem
    }
}

@media (max-width: 1300px) {
    .stats-wrapper .stats-header {
        -ms-flex-direction: column;
        flex-direction: column
    }
    .stats-wrapper .stats-header .user-info {
        margin: 0
    }
    .stats-wrapper .stats-header .main-stats {
        margin: 0 auto;
        margin-top: 20px
    }
}

#questions-shadow-dom-home {
    max-width: 640px;
    margin: 0 auto
}


/*! _app-videos.scss | Friendkit | © Css Ninja. 2018-2019 */

.videos-wrapper .videos-sidebar {
    position: fixed;
    top: 57px;
    left: 0;
    height: calc(100% - 56px);
    background: #fafafa;
    border-right: 1px solid #e8e8e8;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 10;
    transition: all .3s
}

.videos-wrapper .videos-sidebar.is-active {
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner {
    position: relative;
    height: 100%;
    width: 100%
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block {
    position: relative;
    margin: 20px 20px 0 20px;
    border-bottom: 1px solid #dedede;
    text-align: center;
    height: 200px
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .close-videos-sidebar {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: none;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all .3s
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .close-videos-sidebar:hover {
    background: #fff
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .close-videos-sidebar:hover svg {
    stroke: #393a4f
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .close-videos-sidebar svg {
    height: 16px;
    width: 16px;
    color: #999;
    transition: stroke .3s
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .avatar-wrap {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 74px;
    height: 74px;
    min-width: 74px;
    border: 1.4px solid #d8d8d8;
    border-radius: 50%;
    margin: 0 auto 6px auto
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .avatar-wrap img {
    display: block;
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .avatar-wrap .badge {
    position: absolute;
    bottom: 2px;
    right: -3px;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 2px solid #fcfcfc;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #1CE589
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .avatar-wrap .badge svg {
    height: 10px;
    width: 10px;
    stroke: #fcfcfc;
    stroke-width: 4px
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    color: #393a4f
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block p {
    font-size: .8rem;
    color: #999
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .user-stats {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 20px 0
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .user-stats .stat-block {
    text-align: center
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .user-stats .stat-block span {
    display: block
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .user-stats .stat-block span:first-child {
    text-transform: uppercase;
    font-weight: 600;
    font-size: .65rem;
    color: #393a4f
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-block .user-stats .stat-block span:last-child {
    font-size: .9rem;
    color: #999
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-menu {
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: calc(100% - 230px)
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-menu .user-menu-inner {
    position: relative;
    height: 100%;
    max-height: 100%;
    width: 100%;
    overflow-y: auto
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-menu .user-menu-inner .separator {
    margin: 0 30px;
    border-bottom: 1px solid #dedede
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-menu .user-menu-inner .menu-block {
    padding: 20px 0
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-menu .user-menu-inner .menu-block ul li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 14px 40px;
    border-left: 4px solid transparent
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-menu .user-menu-inner .menu-block ul li.is-active {
    border-color: #0062ff
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-menu .user-menu-inner .menu-block ul li a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-menu .user-menu-inner .menu-block ul li a span {
    display: block;
    color: #393a4f;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 600
}

.videos-wrapper .videos-sidebar .videos-sidebar-inner .user-menu .user-menu-inner .menu-block ul li a svg {
    height: 18px;
    width: 18px;
    stroke: #cecece;
    margin-right: 20px
}

.videos-wrapper.is-home {
    padding-left: 0;
    padding-right: 0
}

.videos-wrapper.is-home .home-wrapper {
    position: relative;
    top: -2px
}

.videos-wrapper.is-home .home-wrapper .mobile-sidebar-trigger {
    position: absolute;
    z-index: 9;
    top: 10px;
    left: 30px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: none;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all .3s
}

.videos-wrapper.is-home .home-wrapper .mobile-sidebar-trigger.is-home-v2 {
    position: absolute;
    top: 23px;
    left: 34px;
    z-index: 5
}

.videos-wrapper.is-home .home-wrapper .mobile-sidebar-trigger.is-home-v2 svg {
    stroke: #999
}

.videos-wrapper.is-home .home-wrapper .mobile-sidebar-trigger:hover svg {
    stroke: #fff
}

.videos-wrapper.is-home .home-wrapper .mobile-sidebar-trigger svg {
    height: 20px;
    width: 20px;
    color: #fcfcfc;
    transition: stroke .3s
}

.videos-wrapper.is-home .home-wrapper .video-header-wrap {
    margin-bottom: 0
}

.videos-wrapper.is-home .home-wrapper .video-header-wrap .slick-dots {
    bottom: 20px !important
}

.videos-wrapper.is-home .home-wrapper .video-header-wrap .slick-dots li {
    margin: 0
}

.videos-wrapper.is-home .home-wrapper .video-header-wrap .slick-dots li button:before {
    color: #fcfcfc
}

.videos-wrapper.is-home .home-wrapper .video-header {
    position: relative;
    width: 100%;
    padding-top: 56.25%
}

.videos-wrapper.is-home .home-wrapper .video-header:hover .cover-overlay {
    background: rgba(57, 58, 79, 0.6)
}

.videos-wrapper.is-home .home-wrapper .video-header .cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    z-index: 0
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(57, 58, 79, 0.4);
    transition: all .3s;
    z-index: 1
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner {
    position: relative;
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 30px
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block {
    width: 50%
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fcfcfc
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .video-meta {
    display: -ms-flexbox;
    display: flex
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .video-meta span {
    display: block;
    color: #fcfcfc;
    padding-right: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 500
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .video-meta span.rating {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .video-meta span.rating svg {
    height: 14px;
    width: 14px;
    stroke: #fcfcfc;
    fill: #fcfcfc;
    margin: 0 2px
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .description {
    font-family: 'Roboto', sans-serif;
    font-size: .85rem;
    color: #fcfcfc;
    padding: 12px 0;
    max-width: 400px
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .caption-actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
    max-width: 400px
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .caption-actions .button {
    min-width: 130px;
    margin-right: 30px
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .caption-actions .button:hover {
    background: #0062ff;
    border-color: #0062ff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .caption-actions .trailer-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .caption-actions .trailer-button:hover svg {
    opacity: 1;
    stroke: #8fbaff
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .caption-actions .trailer-button:hover span {
    margin-left: 5px;
    color: #8fbaff
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .caption-actions .trailer-button svg {
    opacity: 0;
    stroke: #fcfcfc;
    height: 16px;
    width: 16px;
    transition: all .3s
}

.videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .caption-actions .trailer-button span {
    color: #fcfcfc;
    font-size: .85rem;
    transition: all 0.3s
}

.videos-wrapper .home-content {
    padding: 30px 40px
}

.videos-wrapper .home-content .collections-header {
    display: -ms-flexbox;
    display: flex
}

.videos-wrapper .home-content .collections-header>a {
    margin-right: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: #cecece;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all .3s
}

.videos-wrapper .home-content .collections-header>a.is-active {
    color: #393a4f;
    border-color: #0062ff
}

.videos-wrapper .home-content .collections-header .search-button {
    height: 36px;
    width: 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: start;
    align-items: flex-start;
    cursor: pointer
}

.videos-wrapper .home-content .collections-header .search-button:hover svg {
    stroke: #393a4f
}

.videos-wrapper .home-content .collections-header .search-button svg {
    position: relative;
    top: 2px;
    height: 16px;
    width: 16px;
    stroke: #cecece;
    transition: stroke .3s
}

.videos-wrapper .home-content .collections-wrap {
    display: none;
    -webkit-animation: fadeInLeft .5s;
    animation: fadeInLeft .5s;
    padding: 30px 0
}

.videos-wrapper .home-content .collections-wrap.is-active {
    display: block
}

.videos-wrapper .home-content .collections-wrap .collection .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.videos-wrapper .home-content .collections-wrap .collection .header h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #393a4f
}

.videos-wrapper .home-content .collections-wrap .collection .header a {
    padding: 0 24px;
    color: #999;
    font-size: .8rem
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0 20px 0;
    margin-left: -10px;
    margin-right: -10px
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode {
    margin: 10px;
    width: calc(25% - 20px)
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-thumbnail {
    position: relative
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-thumbnail:hover .episode-overlay {
    background: rgba(57, 58, 79, 0.4)
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-thumbnail:hover .play-button {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0)
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-thumbnail .episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    background: rgba(57, 58, 79, 0);
    transition: all .3s;
    z-index: 1
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-thumbnail .episode-duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 3px 6px;
    background: black;
    border-radius: 4px;
    color: #fcfcfc;
    font-size: .7rem;
    z-index: 2
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-thumbnail .play-button {
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    height: 40px;
    width: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 3;
    opacity: 0;
    -webkit-transform: scale(0.7) rotate(-180deg);
    transform: scale(0.7) rotate(-180deg);
    transition: all .3s
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-thumbnail .play-button svg {
    height: 38px;
    width: 38px;
    stroke-width: 1px;
    stroke: #fcfcfc
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-thumbnail img {
    display: block;
    border-radius: 6px
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-meta {
    display: -ms-flexbox;
    display: flex;
    margin-top: 8px
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-meta img {
    display: block;
    height: 32px;
    width: 32px;
    min-width: 32px;
    border-radius: 50%
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-meta .info {
    margin-left: 8px
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-meta .info span {
    display: block;
    line-height: 1.2
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-meta .info span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .85rem;
    color: #393a4f
}

.videos-wrapper .home-content .collections-wrap .collection .video-collection .episode .episode-meta .info span:last-child {
    font-family: 'Roboto', sans-serif;
    font-size: .8rem;
    color: #999
}

.videos-wrapper.has-player .player-wrapper {
    position: relative;
    top: -2px;
    display: -ms-flexbox;
    display: flex
}

.videos-wrapper.has-player .player-wrapper .video-side {
    -ms-flex-positive: 2;
    flex-grow: 2
}

.videos-wrapper.has-player .meta-box {
    padding: 30px;
    background: #fff
}

.videos-wrapper.has-player .meta-box .video-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #393a4f
}

.videos-wrapper.has-player .meta-box .video-subtitle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 6px 0
}

.videos-wrapper.has-player .meta-box .video-subtitle .views-count {
    color: #999
}

.videos-wrapper.has-player .meta-box .video-subtitle .quick-actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.videos-wrapper.has-player .meta-box .video-subtitle .quick-actions .quick-action {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 36px;
    width: 36px;
    margin: 0 3px;
    border-radius: 50%;
    transition: all .3s
}

.videos-wrapper.has-player .meta-box .video-subtitle .quick-actions .quick-action:hover {
    background: #f2f2f2
}

.videos-wrapper.has-player .meta-box .video-subtitle .quick-actions .quick-action:hover svg {
    stroke: #393a4f
}

.videos-wrapper.has-player .meta-box .video-subtitle .quick-actions .quick-action.is-mobile {
    display: none
}

.videos-wrapper.has-player .meta-box .video-subtitle .quick-actions .quick-action svg {
    height: 20px;
    width: 20px;
    stroke: #cecece;
    transition: stroke .3s
}

.videos-wrapper.has-player .meta-box .video-owner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.videos-wrapper.has-player .meta-box .video-owner img {
    display: block;
    height: 44px;
    width: 44px;
    min-width: 44px;
    border-radius: 50%
}

.videos-wrapper.has-player .meta-box .video-owner .meta {
    margin-left: 12px
}

.videos-wrapper.has-player .meta-box .video-owner .meta span {
    display: block
}

.videos-wrapper.has-player .meta-box .video-owner .meta span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: #393a4f
}

.videos-wrapper.has-player .meta-box .video-owner .meta span:nth-child(2) {
    color: #999;
    font-size: .8rem
}

.videos-wrapper.has-player .meta-box .video-owner .button {
    margin-left: auto;
    background: #0062ff;
    border-color: #0062ff;
    color: #fff;
    border-radius: 100px;
    min-width: 130px
}

.videos-wrapper.has-player .meta-box .video-owner .button:hover {
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.videos-wrapper.has-player .video-description hr {
    margin: 1rem 0
}

.videos-wrapper.has-player .video-description h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: #393a4f;
    margin-bottom: 10px
}

.videos-wrapper.has-player .video-description p,
.videos-wrapper.has-player .video-description ul li {
    font-family: 'Roboto', sans-serif;
    color: #797a9e;
    font-size: .95rem;
    max-width: 640px
}

.videos-wrapper.has-player .video-description .additional-description {
    display: none;
    padding-top: 30px
}

.videos-wrapper.has-player .video-description .video-description-more {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    transition: color .3s
}

.videos-wrapper.has-player .video-description .video-description-more:hover {
    color: #0062ff
}

.videos-wrapper.has-player .comments-wrap {
    padding: 20px 40px
}

.videos-wrapper.has-player .comments-count {
    padding: 20px 0
}

.videos-wrapper.has-player .comment-box {
    max-width: 720px
}

.videos-wrapper.has-player .comment-box .avatar-wrap,
.videos-wrapper.has-player .is-comment .avatar-wrap {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 54px;
    height: 54px;
    min-width: 54px;
    border: 1.4px solid #cecece;
    border-radius: 50%
}

.videos-wrapper.has-player .comment-box .avatar-wrap.is-smaller,
.videos-wrapper.has-player .is-comment .avatar-wrap.is-smaller {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-width: 1px
}

.videos-wrapper.has-player .comment-box .avatar-wrap.is-smaller img,
.videos-wrapper.has-player .is-comment .avatar-wrap.is-smaller img {
    width: 32px;
    height: 32px;
    min-width: 32px
}

.videos-wrapper.has-player .comment-box .avatar-wrap.is-smaller .badge,
.videos-wrapper.has-player .is-comment .avatar-wrap.is-smaller .badge {
    right: -3px;
    height: 18px;
    width: 18px
}

.videos-wrapper.has-player .comment-box .avatar-wrap.is-smaller .badge svg,
.videos-wrapper.has-player .is-comment .avatar-wrap.is-smaller .badge svg {
    height: 8px;
    width: 8px;
    stroke-width: 4px
}

.videos-wrapper.has-player .comment-box .avatar-wrap img,
.videos-wrapper.has-player .is-comment .avatar-wrap img {
    display: block;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%
}

.videos-wrapper.has-player .comment-box .avatar-wrap .badge,
.videos-wrapper.has-player .is-comment .avatar-wrap .badge {
    position: absolute;
    top: -2px;
    right: -5px;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 2px solid #fcfcfc;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #1CE589
}

.videos-wrapper.has-player .comment-box .avatar-wrap .badge svg,
.videos-wrapper.has-player .is-comment .avatar-wrap .badge svg {
    height: 10px;
    width: 10px;
    stroke: #fcfcfc;
    stroke-width: 4px
}

.videos-wrapper.has-player .comment-box .control,
.videos-wrapper.has-player .is-comment .control {
    position: relative
}

.videos-wrapper.has-player .comment-box .control .textarea,
.videos-wrapper.has-player .is-comment .control .textarea {
    padding-bottom: 58px;
    border-color: transparent;
    transition: all .3s
}

.videos-wrapper.has-player .comment-box .control .textarea:focus,
.videos-wrapper.has-player .is-comment .control .textarea:focus {
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.videos-wrapper.has-player .comment-box .control .button,
.videos-wrapper.has-player .is-comment .control .button {
    position: absolute;
    bottom: 10px;
    right: 10px
}

.videos-wrapper.has-player .comment-box .control .button:hover,
.videos-wrapper.has-player .is-comment .control .button:hover {
    background: #0062ff;
    border-color: #0062ff;
    color: #fcfcfc;
    border-radius: 100px;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.videos-wrapper.has-player .is-comment {
    padding: 16px 0;
    margin: 0 !important
}

.videos-wrapper.has-player .is-comment .comment-meta h4 a {
    color: #393a4f;
    transition: color .3s
}

.videos-wrapper.has-player .is-comment .comment-meta h4 a:hover {
    color: #0062ff
}

.videos-wrapper.has-player .is-comment .comment-meta h4 small {
    color: #999;
    font-size: .85rem
}

.videos-wrapper.has-player .is-comment .comment-meta p {
    max-width: 640px;
    font-size: .95rem;
    color: #6a6c93
}

.videos-wrapper.has-player .is-comment .comment-meta p .mention {
    color: #0062ff;
    font-weight: 500
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 640px
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-stats {
    display: -ms-flexbox;
    display: flex
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-stats .stat {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 4px
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-stats .stat.is-likes svg {
    position: relative;
    top: -2px
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-stats .stat.is-dislikes svg {
    position: relative;
    top: 2px
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-stats .stat span {
    display: block;
    font-size: .9rem;
    color: #999
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-stats .stat svg {
    height: 18px;
    width: 18px;
    min-width: 20px;
    stroke: #cecece
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    width: 96px
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-actions .comment-action {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    width: 30px;
    min-width: 30px;
    margin: 0 2px;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    transition: all .3s
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-actions .comment-action:nth-child(2) svg {
    position: relative;
    top: 2px
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-actions .comment-action.is-like:hover {
    border-color: #1CE589
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-actions .comment-action.is-like:hover svg {
    stroke: #1CE589
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-actions .comment-action.is-dislike:hover {
    border-color: #FF7273
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-actions .comment-action.is-dislike:hover svg {
    stroke: #FF7273
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-actions .comment-action.is-reply:hover {
    border-color: #393a4f
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-actions .comment-action.is-reply:hover svg {
    stroke: #393a4f
}

.videos-wrapper.has-player .is-comment .comment-stats-wrap .comment-actions .comment-action svg {
    height: 14px;
    width: 14px;
    stroke: #cecece;
    transition: stroke .3s
}

.videos-wrapper.has-player .is-comment .nested-replies .header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 4px
}

.videos-wrapper.has-player .is-comment .nested-replies .header.is-active svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.videos-wrapper.has-player .is-comment .nested-replies .header span {
    display: block;
    font-size: .9rem;
    font-weight: 500;
    color: #393a4f
}

.videos-wrapper.has-player .is-comment .nested-replies .header svg {
    height: 16px;
    width: 16px;
    margin-left: 4px;
    stroke: #393a4f;
    transition: all .3s
}

.videos-wrapper.has-player .is-comment .nested-replies .nested-comments {
    display: none;
    padding: 10px 0
}

.videos-wrapper.has-player .is-comment .nested-replies .nested-comments .is-nested {
    margin: 0
}

.videos-wrapper.has-player .related-list {
    margin: 0 !important;
    padding: 20px
}

.videos-wrapper.has-player .related-list .related-label {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #e8e8e8
}

.videos-wrapper.has-player .related-list .autoplay,
.videos-wrapper.has-player .related-list .related-label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px
}

.videos-wrapper.has-player .related-list .autoplay .autoplay-title,
.videos-wrapper.has-player .related-list .autoplay .related-title,
.videos-wrapper.has-player .related-list .related-label .autoplay-title,
.videos-wrapper.has-player .related-list .related-label .related-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #393a4f;
    text-transform: uppercase;
    font-size: .75rem
}

.videos-wrapper.has-player .related-list .autoplay .autoplay-toggle,
.videos-wrapper.has-player .related-list .related-label .autoplay-toggle {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.videos-wrapper.has-player .related-list .autoplay .autoplay-toggle span,
.videos-wrapper.has-player .related-list .related-label .autoplay-toggle span {
    position: relative;
    top: -1px;
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    color: #999
}

.videos-wrapper.has-player .related-list .autoplay .autoplay-toggle .f-switch,
.videos-wrapper.has-player .related-list .related-label .autoplay-toggle .f-switch {
    -webkit-transform: scale(0.8);
    transform: scale(0.8)
}

.videos-wrapper.has-player .related-list .autoplay .autoplay-toggle .close-related-videos,
.videos-wrapper.has-player .related-list .related-label .autoplay-toggle .close-related-videos {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: none;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all .3s
}

.videos-wrapper.has-player .related-list .autoplay .autoplay-toggle .close-related-videos:hover,
.videos-wrapper.has-player .related-list .related-label .autoplay-toggle .close-related-videos:hover {
    background: #fff
}

.videos-wrapper.has-player .related-list .autoplay .autoplay-toggle .close-related-videos:hover svg,
.videos-wrapper.has-player .related-list .related-label .autoplay-toggle .close-related-videos:hover svg {
    stroke: #393a4f
}

.videos-wrapper.has-player .related-list .autoplay .autoplay-toggle .close-related-videos svg,
.videos-wrapper.has-player .related-list .related-label .autoplay-toggle .close-related-videos svg {
    height: 16px;
    width: 16px;
    color: #999;
    transition: stroke .3s
}

.videos-wrapper.has-player .related-list .related-card+.media {
    border-top: none;
    margin-top: 0
}

.videos-wrapper.has-player .related-list .related-card .media-left {
    margin-right: .75rem
}

.videos-wrapper.has-player .related-list .related-card .media-left img {
    display: block;
    border-radius: 6px;
    object-fit: cover;
    width: 130px;
    min-width: 130px;
    height: auto;
    max-height: 88px;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.videos-wrapper.has-player .related-list .related-card .video-meta .related-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    max-width: 200px;
    color: #393a4f;
    transition: color .3s
}

.videos-wrapper.has-player .related-list .related-card .video-meta .related-title:hover {
    color: #0062ff
}

.videos-wrapper.has-player .related-list .related-card .video-meta .submeta {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.videos-wrapper.has-player .related-list .related-card .video-meta .submeta img {
    display: block;
    height: 26px;
    width: 26px;
    min-width: 26px;
    border-radius: 50%
}

.videos-wrapper.has-player .related-list .related-card .video-meta .submeta .info {
    margin-left: 6px
}

.videos-wrapper.has-player .related-list .related-card .video-meta .submeta .info span {
    display: block
}

.videos-wrapper.has-player .related-list .related-card .video-meta .submeta .info .video-views,
.videos-wrapper.has-player .related-list .related-card .video-meta .submeta .info .video-account {
    display: block;
    color: #999
}

.videos-wrapper.has-player .related-list .related-card .video-meta .submeta .info .video-account {
    font-size: .7rem
}

.videos-wrapper.has-player .related-list .related-card .video-meta .submeta .info .video-views {
    font-size: .6rem
}

@media (min-width: 1301px) {
    .videos-sidebar {
        width: 280px
    }
    .videos-wrapper.is-home .home-wrapper {
        width: calc(100% - 280px);
        margin-left: 280px
    }
    .videos-wrapper.has-player .player-wrapper {
        width: calc(100% - 280px);
        margin-left: 280px
    }
}

@media (max-width: 1300px) {
    .videos-sidebar {
        width: 250px
    }
    .videos-wrapper.is-home .home-wrapper {
        width: calc(100% - 250px);
        margin-left: 250px
    }
    .videos-wrapper.has-player .player-wrapper {
        width: calc(100% - 250px);
        margin-left: 250px
    }
}

@media (max-width: 767px) {
    .videos-sidebar .videos-sidebar-inner .user-block .close-videos-sidebar {
        display: -ms-flexbox !important;
        display: flex !important
    }
    .videos-wrapper.is-home .home-wrapper {
        width: 100% !important;
        margin: 0 !important
    }
    .videos-wrapper.is-home .home-wrapper .mobile-sidebar-trigger {
        display: -ms-flexbox;
        display: flex
    }
    .videos-wrapper.is-home .home-wrapper .mobile-sidebar-trigger.is-home-v2 {
        left: 20px
    }
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner {
        padding: 0
    }
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block {
        width: 90%
    }
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block h2 {
        font-size: 1.4rem
    }
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .video-meta span.rating {
        display: none
    }
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .description,
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .caption-actions {
        display: none
    }
    .videos-wrapper.is-home .home-content {
        padding: 30px
    }
    .videos-wrapper.is-home .home-content .collections-header.is-home-v2 {
        padding-left: 38px
    }
    .videos-wrapper.is-home .home-content .collections-wrap .collection .video-collection .episode {
        width: calc(100% - 20px)
    }
    .videos-wrapper.has-player .player-wrapper {
        width: 100% !important;
        margin: 0 !important
    }
    .videos-wrapper.has-player .player-wrapper .video-side .meta-box {
        margin: 0
    }
    .videos-wrapper.has-player .player-wrapper .video-side .meta-box.video-description p {
        font-size: .85rem
    }
    .videos-wrapper.has-player .player-wrapper .video-side .meta-box.video-meta .video-title {
        font-size: 1rem
    }
    .videos-wrapper.has-player .player-wrapper .video-side .meta-box .video-subtitle {
        -ms-flex-direction: column;
        flex-direction: column
    }
    .videos-wrapper.has-player .player-wrapper .video-side .meta-box .video-subtitle .quick-actions {
        margin-left: -10px
    }
    .videos-wrapper.has-player .player-wrapper .video-side .meta-box .video-subtitle .quick-actions .quick-action.is-mobile {
        display: -ms-flexbox;
        display: flex
    }
    .videos-wrapper.has-player .player-wrapper .video-side .meta-box .video-owner .button {
        display: none
    }
    .videos-wrapper.has-player .player-wrapper .video-side .comments-wrap {
        padding: 20px
    }
    .videos-wrapper.has-player .player-wrapper .video-side .comments-wrap .is-comment .comment-meta h4 a {
        font-size: .85rem
    }
    .videos-wrapper.has-player .player-wrapper .video-side .comments-wrap .is-comment .comment-meta p {
        font-size: .85rem
    }
    .videos-wrapper.has-player .player-wrapper .related-side {
        position: fixed;
        right: 0;
        max-height: calc(100% - 58px);
        overflow-y: auto;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        transition: all .3s
    }
    .videos-wrapper.has-player .player-wrapper .related-side.is-opened {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    .videos-wrapper.has-player .player-wrapper .related-side .close-related-videos {
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .videos-sidebar .videos-sidebar-inner .user-block .close-videos-sidebar {
        display: -ms-flexbox !important;
        display: flex !important
    }
    .videos-wrapper.is-home .home-wrapper {
        width: 100% !important;
        margin: 0 !important
    }
    .videos-wrapper.is-home .home-wrapper .mobile-sidebar-trigger {
        display: -ms-flexbox;
        display: flex
    }
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block {
        width: 65%
    }
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block h2 {
        font-size: 1.3rem
    }
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .description {
        font-size: .75rem
    }
    .videos-wrapper.is-home .home-content .collections-header.is-home-v2 {
        padding-left: 52px
    }
    .videos-wrapper.is-home .home-content .collections-wrap .collection .video-collection .episode {
        width: calc(33% - 20px)
    }
    .videos-wrapper.is-home .home-content .collections-wrap .collection .video-collection .episode:nth-last-child(4) {
        display: none
    }
    .videos-wrapper.has-player .player-wrapper {
        width: 100%;
        margin: 0
    }
    .videos-wrapper.has-player .player-wrapper .video-side .meta-box .video-subtitle .quick-actions .quick-action.is-mobile {
        display: -ms-flexbox;
        display: flex
    }
    .videos-wrapper.has-player .player-wrapper .related-side {
        position: fixed;
        right: 0;
        max-height: calc(100% - 58px);
        overflow-y: auto;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        transition: all .3s
    }
    .videos-wrapper.has-player .player-wrapper .related-side.is-opened {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    .videos-wrapper.has-player .player-wrapper .related-side .close-related-videos {
        display: -ms-flexbox !important;
        display: flex !important
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block {
        width: 60%
    }
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block h2 {
        font-size: 1.8rem
    }
    .videos-wrapper.is-home .home-wrapper .video-header .cover-caption .caption-inner .video-caption .caption-block .description {
        font-size: .75rem
    }
    .videos-wrapper.is-home .home-content .collections-wrap .collection .video-collection .episode {
        width: calc(33% - 20px)
    }
    .videos-wrapper.is-home .home-content .collections-wrap .collection .video-collection .episode:nth-last-child(4) {
        display: none
    }
    .videos-wrapper.has-player .player-wrapper .video-side .meta-box .video-subtitle .quick-actions .quick-action.is-mobile {
        display: -ms-flexbox;
        display: flex
    }
    .videos-wrapper.has-player .player-wrapper .related-side {
        position: fixed;
        right: 0;
        max-height: calc(100% - 58px);
        overflow-y: auto;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        transition: all .3s
    }
    .videos-wrapper.has-player .player-wrapper .related-side .close-related-videos {
        display: -ms-flexbox !important;
        display: flex !important
    }
    .videos-wrapper.has-player .player-wrapper .related-side.is-opened {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}


/*! _app-landing.scss | Friendkit | © Css Ninja. 2018-2019 */


/*! _special-mixins.scss | Friendkit | © Css Ninja. 2018-2019 */

.landing-hero-wrapper {
    position: relative;
    background-color: #fff;
    background-image: -webkit-linear-gradient(40deg, #fff 50%, #1a72ff 50%)
}

.landing-hero-wrapper #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.landing-hero-wrapper .landing-caption h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: bold;
    color: #fcfcfc;
    line-height: 1;
    text-shadow: 5px 5px #0052d6, 10px 10px #0052d6
}

.landing-hero-wrapper .landing-caption h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #fcfcfc;
    padding: 0 10px;
    text-shadow: 2px 2px #0052d6, 5px 5px #0052d6
}

.landing-hero-wrapper .landing-caption .button {
    margin: 20px 10px;
    height: 48px;
    text-transform: uppercase;
    font-size: .95rem;
    min-width: 190px;
    color: #0062ff
}

.landing-hero-wrapper .landing-caption .button:hover {
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.header-logo {
    height: 44px;
    width: 44px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #0062ff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important;
    background: #0062ff;
    margin: 10px auto
}

.header-logo img {
    display: block;
    height: 32px;
    width: 32px
}

.landing-wrapper.is-grey {
    background: #fafafa
}

.landing-wrapper .made-with {
    max-width: 640px;
    margin: 0 auto 3rem auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.landing-wrapper .made-with .made-block {
    width: calc(25% - 10px);
    margin: 10px
}

.landing-wrapper .made-with .made-block .block-icon {
    height: 90px;
    width: 90px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #e8e8e8;
    border-radius: 50%;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.landing-wrapper .made-with .made-block .block-icon img {
    display: block;
    max-width: 60px
}

.landing-wrapper .made-with .made-block .block-title {
    text-align: center;
    margin-top: 12px
}

.landing-wrapper .made-with .made-block .block-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #393a4f
}

.landing-wrapper .screen-wrapper {
    border-bottom: 1.4px solid #e8e8e8;
    overflow: hidden
}

.landing-wrapper .screen-wrapper img {
    display: block;
    border-radius: 8px 8px 0 0;
    border: 1px solid #e8e8e8;
    border-bottom: none;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
    max-width: 940px;
    margin: 0 auto
}

.landing-wrapper .landing-icon-box {
    text-align: center;
    margin-bottom: 20px
}

.landing-wrapper .landing-icon-box svg {
    height: 30px;
    width: 30px;
    stroke-width: 1.4px;
    margin: 0 auto
}

.landing-wrapper .landing-icon-box img {
    display: block;
    height: 54px;
    width: 54px;
    margin: 0 auto 4px auto
}

.landing-wrapper .landing-icon-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: #393a4f;
    font-weight: 500;
    font-size: .95rem
}

.landing-wrapper .landing-icon-box p {
    font-size: .9rem;
    color: #999
}

.side-feature h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #393a4f;
    font-size: 1.8rem
}

.side-feature p {
    color: #999;
    font-size: 1.1rem;
    max-width: 440px
}

.side-feature img {
    display: block;
    max-width: 460px;
    margin: 0 auto
}

.demos-wrapper {
    background: #fafafa
}

.demos-wrapper .demos-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.6rem;
    color: #393a4f
}

.demos-wrapper .demos-list {
    padding: 80px 0
}

.demos-wrapper .demos-list .demo-item {
    position: relative;
    display: block;
    overflow: hidden
}

.demos-wrapper .demos-list .demo-item:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.demos-wrapper .demos-list .demo-item:hover .go-arrow {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.demos-wrapper .demos-list .demo-item .go-arrow {
    position: absolute;
    bottom: -20px;
    right: -20px;
    height: 80px;
    width: 80px;
    background: #0058e6;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translate(80px, 80px);
    transform: translate(80px, 80px);
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important;
    transition: all .3s;
    z-index: 2
}

.demos-wrapper .demos-list .demo-item .go-arrow:hover {
    background: #ff5f59;
    box-shadow: 0 14px 26px -12px rgba(255, 95, 89, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 95, 89, 0.2) !important
}

.demos-wrapper .demos-list .demo-item .go-arrow svg {
    position: relative;
    top: -6px;
    left: -6px;
    height: 22px;
    width: 22px;
    stroke: #fff
}

.demos-wrapper .demos-list .demo-item img {
    display: block;
    border: 1px solid #e8e8e8;
    -webkit-filter: grayscale(0.8);
    filter: grayscale(0.8);
    opacity: .85;
    transition: all .3s
}

.demos-wrapper .demos-list h3 {
    padding: 16px 0;
    color: #393a4f;
    text-transform: uppercase;
    font-weight: 500;
    font-size: .8rem;
    font-family: 'Montserrat', sans-serif;
    transition: color .3s
}

.cta-wrapper .cta-title {
    text-align: center
}

.cta-wrapper .cta-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.6rem;
    color: #393a4f
}

.cta-wrapper .cta-title .custom-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px auto;
    max-width: 200px;
    border: 2px solid #D3F4ED;
    border-radius: 100px;
    transition: all .3s
}

.cta-wrapper .cta-title .custom-button:hover {
    background: #D3F4ED;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06)
}

.cta-wrapper .cta-title .custom-button:hover span {
    color: #393a4f
}

.cta-wrapper .cta-title .custom-button img {
    display: block;
    height: 50px;
    width: 50px
}

.cta-wrapper .cta-title .custom-button span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #8EDFCF;
    margin-left: 12px;
    transition: color .3s
}

.cta-wrapper .people-img {
    display: block;
    max-width: 480px;
    margin: 0 auto
}

@media (max-width: 767px) {
    .landing-hero-wrapper .landing-caption {
        text-align: center
    }
    .landing-hero-wrapper .landing-caption h2 {
        margin-top: 40px;
        font-size: 2.6rem;
        color: #0062ff;
        text-shadow: 5px 5px #e0ecff, 10px 10px #e0ecff
    }
    .landing-hero-wrapper .landing-caption h3 {
        color: #0062ff;
        text-shadow: 2px 2px #e0ecff, 4px 4px #e0ecff
    }
    .landing-hero-wrapper .landing-caption .buttons .button {
        margin-left: auto !important;
        margin-right: auto !important
    }
    .side-feature img {
        max-width: 340px
    }
    .landing-wrapper .made-with {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .landing-wrapper .made-with .made-block {
        width: calc(45% - 10px)
    }
    .landing-wrapper .screen-wrapper img {
        max-width: 100%
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .landing-hero-wrapper .landing-caption {
        text-align: center
    }
    .landing-hero-wrapper .landing-caption img {
        max-width: 580px
    }
    .landing-hero-wrapper .landing-caption h2 {
        color: #0062ff;
        text-shadow: 5px 5px #e0ecff, 10px 10px #e0ecff
    }
    .landing-hero-wrapper .landing-caption h3 {
        color: #0062ff;
        text-shadow: 2px 2px #e0ecff, 4px 4px #e0ecff
    }
    .landing-hero-wrapper .landing-caption .buttons .button {
        margin-left: auto !important;
        margin-right: auto !important
    }
    .landing-wrapper.icons-section .columns {
        display: -ms-flexbox;
        display: flex
    }
    .landing-wrapper .screen-wrapper img {
        max-width: 100%
    }
    .side-feature h3,
    .side-feature p {
        text-align: center;
        margin: 0 auto
    }
    .side-feature img {
        max-width: 450px;
        margin: 0 auto;
        display: block
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .cta-wrapper .people-img {
        max-width: 600px
    }
    #tour-start {
        display: none !important
    }
}


/*! _app-signup.scss | Friendkit | © Css Ninja. 2018-2019 */

.fake-nav {
    height: 55px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff
}

.fake-nav img {
    display: block;
    max-width: 48px
}

.signup-wrapper {
    min-height: 100vh;
    position: relative
}

.signup-wrapper .process-bar-wrap {
    padding: 30px 0 0 0
}

.signup-wrapper .process-bar {
    height: 18px;
    background: #fff;
    border-radius: 100px;
    max-width: 520px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.signup-wrapper .process-bar .progress-wrap {
    position: relative;
    margin: 0 12px;
    width: calc(100% - 24px);
    height: 6px;
    border-radius: 100px
}

.signup-wrapper .process-bar .progress-wrap .track,
.signup-wrapper .process-bar .progress-wrap .bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 100px
}

.signup-wrapper .process-bar .progress-wrap .track {
    background: #eaeaea;
    width: 100%
}

.signup-wrapper .process-bar .progress-wrap .bar {
    background: #0062ff;
    width: 0;
    transition: width .4s
}

.signup-wrapper .process-bar .progress-wrap .dot {
    position: absolute;
    top: calc(50% - 19px);
    height: 38px;
    width: 38px;
    background: #fff;
    border-radius: 50%;
    border: 1.4px solid #e8e8e8;
    box-shadow: -1px 3px 10px 0 rgba(0, 0, 0, 0.06);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    pointer-events: none
}

.signup-wrapper .process-bar .progress-wrap .dot.is-first {
    left: -19px
}

.signup-wrapper .process-bar .progress-wrap .dot.is-second {
    left: calc(25% - 19px)
}

.signup-wrapper .process-bar .progress-wrap .dot.is-third {
    left: calc(50% - 19px)
}

.signup-wrapper .process-bar .progress-wrap .dot.is-fourth {
    left: calc(75% - 19px)
}

.signup-wrapper .process-bar .progress-wrap .dot.is-fifth {
    right: -19px
}

.signup-wrapper .process-bar .progress-wrap .dot.is-active {
    border-color: #0062ff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.signup-wrapper .process-bar .progress-wrap .dot.is-active svg {
    stroke: #0062ff
}

.signup-wrapper .process-bar .progress-wrap .dot.is-current {
    border-color: #ff5f59;
    box-shadow: 0 14px 26px -12px rgba(255, 95, 89, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(255, 95, 89, 0.2) !important
}

.signup-wrapper .process-bar .progress-wrap .dot.is-current svg {
    stroke: #ff5f59
}

.signup-wrapper .process-bar .progress-wrap .dot svg {
    height: 16px;
    width: 16px;
    stroke: #cecece;
    transition: stroke .3s
}

.signup-wrapper .outer-panel {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100vh - 133px)
}

.signup-wrapper .outer-panel .outer-panel-inner {
    width: 100%
}

.signup-wrapper .process-title {
    max-width: 840px;
    margin: 0 auto;
    text-align: center
}

.signup-wrapper .process-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400 !important;
    font-size: 1.2rem
}

.signup-wrapper .process-title .step-title {
    -webkit-animation: fadeInUp .5s;
    animation: fadeInUp .5s;
    display: none
}

.signup-wrapper .process-title .step-title.is-active {
    display: block
}

.signup-wrapper .process-panel-wrap {
    display: none;
    -webkit-animation: fadeInLeft .5s;
    animation: fadeInLeft .5s;
    max-width: 940px;
    margin: 0 auto;
    padding: 20px 0
}

.signup-wrapper .process-panel-wrap.is-active {
    display: block
}

.signup-wrapper .process-panel-wrap.is-narrow {
    max-width: 540px
}

.signup-wrapper .process-panel-wrap .account-type {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px;
    text-align: center
}

.signup-wrapper .process-panel-wrap .account-type img {
    display: block;
    margin: 0 auto 20px auto;
    max-height: 140px
}

.signup-wrapper .process-panel-wrap .account-type h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400 !important;
    font-size: .9rem
}

.signup-wrapper .process-panel-wrap .account-type p {
    color: #999;
    font-size: .9rem
}

.signup-wrapper .process-panel-wrap .account-type .button {
    margin-top: 20px;
    border-width: 1.4px;
    color: #999
}

.signup-wrapper .process-panel-wrap .account-type .button:hover,
.signup-wrapper .process-panel-wrap .account-type .button.is-loading {
    border-color: #0062ff;
    background: #0062ff;
    color: #fff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.signup-wrapper .process-panel-wrap .form-panel {
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px
}

.signup-wrapper .process-panel-wrap .form-panel .field {
    border: 1px solid #e8e8e8;
    padding: 4px 8px 8px 8px;
    border-radius: 6px;
    background: #fcfcfc;
    margin-bottom: 20px
}

.signup-wrapper .process-panel-wrap .form-panel .field:last-child {
    margin-bottom: 0
}

.signup-wrapper .process-panel-wrap .form-panel .field label {
    text-transform: uppercase;
    font-size: .7rem;
    font-weight: 500;
    color: #757a91;
    padding-left: 8px
}

.signup-wrapper .process-panel-wrap .form-panel .field .control input {
    border: none;
    height: 30px;
    background: #fcfcfc
}

.signup-wrapper .process-panel-wrap .form-panel .success-image {
    display: block;
    max-width: 120px;
    margin: 0 auto
}

.signup-wrapper .process-panel-wrap .form-panel .success-text {
    text-align: center;
    margin: 12px auto;
    max-width: 370px
}

.signup-wrapper .process-panel-wrap .form-panel .success-text h3 {
    font-weight: 500;
    color: #393a4f
}

.signup-wrapper .process-panel-wrap .form-panel .success-text p {
    font-size: .9rem;
    color: #999
}

.signup-wrapper .process-panel-wrap .form-panel .success-text .button {
    margin: 20px auto 0 auto;
    max-width: 280px;
    border: 1.4px solid #0062ff;
    color: #0062ff
}

.signup-wrapper .process-panel-wrap .form-panel .success-text .button:hover,
.signup-wrapper .process-panel-wrap .form-panel .success-text .button.is-loading {
    border-color: #0062ff;
    background: #0062ff;
    color: #fff;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.signup-wrapper .process-panel-wrap .photo-upload .preview {
    position: relative;
    height: 120px;
    width: 120px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    border: 1.4px solid #cecece;
    margin: 0 auto
}

.signup-wrapper .process-panel-wrap .photo-upload .preview img {
    display: block;
    height: 100px;
    width: 100px;
    border-radius: 50%
}

.signup-wrapper .process-panel-wrap .photo-upload .preview .upload-button {
    position: absolute;
    top: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: #cecece;
    transition: all .3s
}

.signup-wrapper .process-panel-wrap .photo-upload .preview .upload-button:hover {
    background: #ff5f59
}

.signup-wrapper .process-panel-wrap .photo-upload .preview .upload-button svg {
    height: 14px;
    width: 14px;
    stroke: #fff;
    stroke-width: 3px
}

.signup-wrapper .process-panel-wrap .photo-upload .limitation {
    margin-top: 20px;
    text-align: center
}

.signup-wrapper .process-panel-wrap .photo-upload .limitation small {
    color: #999
}

.signup-wrapper .process-panel-wrap .buttons {
    padding: 20px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.signup-wrapper .process-panel-wrap .buttons .button {
    min-width: 90px
}

.signup-wrapper .process-panel-wrap .buttons .button.is-next:hover {
    border-color: #0062ff;
    background: #0062ff;
    color: #fcfcfc;
    box-shadow: 0 14px 26px -12px rgba(0, 98, 255, 0.42), 0 4px 23px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 98, 255, 0.2) !important
}

.crop-modal .modal-card {
    max-width: 100%
}

.crop-modal .modal-card-body {
    position: relative;
    min-height: 330px;
    overflow: hidden
}

.crop-modal .modal-card-body .cropper-wrapper {
    margin: 0 auto
}

.crop-modal .modal-card-body .cropper-wrapper .button {
    min-width: 70px;
    height: 34px;
    border-radius: 100px;
    outline: none !important;
    background: #ff5f59;
    border-color: #ff5f59;
    color: #fff
}

@media (max-width: 767px) {
    .signup-wrapper .outer-panel .outer-panel-inner {
        max-width: 330px;
        margin: 0 auto
    }
    .signup-wrapper .outer-panel .outer-panel-inner .account-type {
        position: relative;
        text-align: left
    }
    .signup-wrapper .outer-panel .outer-panel-inner .account-type img {
        display: none
    }
    .signup-wrapper .outer-panel .outer-panel-inner .account-type .button {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        height: 100%;
        width: 100%;
        opacity: 0
    }
    .signup-wrapper .process-bar-wrap {
        max-width: 320px;
        margin: 0 auto
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .signup-wrapper .outer-panel .outer-panel-inner {
        max-width: 740px;
        margin: 0 auto
    }
    .signup-wrapper .outer-panel .outer-panel-inner .columns {
        display: -ms-flexbox;
        display: flex
    }
    .signup-wrapper .outer-panel .outer-panel-inner .columns .account-type {
        padding: 20px
    }
    .signup-wrapper .outer-panel .outer-panel-inner .columns .account-type img {
        height: 110px
    }
}


/*! _app-login.scss | Crowdkit | © Css Ninja. 2018-2019 */

.login-wrapper .hero.is-login {
    position: relative;
    background: #0062ff;
    background: linear-gradient(180deg, #5294ff, #0062ff);
    background-size: 400% 400%;
    -webkit-animation: gradientShift 12s ease infinite;
    animation: gradientShift 12s ease infinite
}

.login-wrapper .hero.is-login .left-caption {
    max-width: 400px;
    margin: 0 auto
}

.login-wrapper .hero.is-login .left-caption h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 3.2rem;
    color: #fcfcfc;
    line-height: 1.3;
    text-shadow: 4px 4px #0052d6, 8px 8px #0052d6
}

.login-wrapper .hero.form-hero {
    position: relative
}

.login-wrapper .hero.form-hero .logo-wrap {
    position: absolute;
    top: calc(50% - 50px);
    left: -50px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: rotate(32deg);
    transform: rotate(32deg)
}

.login-wrapper .hero.form-hero .logo-wrap .wrap-inner {
    height: 86px;
    width: 86px;
    border-radius: 50%;
    background: #0062ff;
    background: linear-gradient(180deg, #5294ff, #0062ff);
    background-size: 400% 400%;
    -webkit-animation: gradientShift 45s ease infinite;
    animation: gradientShift 45s ease infinite;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.login-wrapper .hero.form-hero .logo-wrap .wrap-inner img {
    display: block;
    max-width: 54px
}

.login-wrapper .form-wrapper {
    max-width: 540px;
    min-width: 380px;
    margin: 0 auto
}

.login-wrapper .form-wrapper .avatar {
    position: relative;
    height: 110px;
    width: 110px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    border: 1.4px solid #cecece;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.login-wrapper .form-wrapper .avatar .badge {
    position: absolute;
    top: 0;
    right: 0;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #1CE589
}

.login-wrapper .form-wrapper .avatar .badge svg {
    height: 14px;
    width: 14px;
    stroke: #fff;
    stroke-width: 4px
}

.login-wrapper .form-wrapper .avatar img {
    display: block;
    height: 94px;
    width: 94px;
    border-radius: 50%
}

.login-wrapper .form-wrapper .login-form .field .control {
    position: relative
}

.login-wrapper .form-wrapper .login-form .field .control .input {
    height: 40px;
    padding-left: 40px
}

.login-wrapper .form-wrapper .login-form .field .control .input:focus {
    border-color: #0062ff
}

.login-wrapper .form-wrapper .login-form .field .control .input:focus+.input-icon svg {
    stroke: #0062ff
}

.login-wrapper .form-wrapper .login-form .field .control .input-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.login-wrapper .form-wrapper .login-form .field .control .input-icon svg {
    height: 18px;
    width: 18px;
    stroke: #cecece;
    transition: stroke .3s
}

.login-wrapper .form-wrapper .login-form .field .control button,
.login-wrapper .form-wrapper .login-form .field .control .button {
    height: 46px;
    font-size: .95rem
}

.login-wrapper .form-wrapper .forgot-password {
    padding: 1.5rem !important
}

.login-wrapper .form-wrapper .forgot-password a {
    color: #999;
    font-size: .9rem
}

.login-wrapper .form-wrapper .forgot-password a:hover {
    color: #0062ff
}

@media (max-width: 767px) {
    .login-wrapper .logo-wrap {
        display: none !important
    }
    .login-wrapper .form-wrapper {
        min-width: 320px !important
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .login-wrapper .hero.is-login .left-caption h2 {
        font-size: 2.5rem
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .login-wrapper .logo-wrap {
        display: none !important
    }
}


/*! _app-demo.scss | Friendkit | © Css Ninja. 2018-2019 */

.elements-sidebar {
    position: fixed;
    top: 58px;
    left: 0;
    width: 300px;
    height: calc(100% - 58px);
    background: #fff;
    border-right: 1px solid #e8e8e8
}

.elements-sidebar .header {
    height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px
}

.elements-sidebar .header h3 {
    text-transform: uppercase
}

.elements-sidebar .elements-list {
    position: relative;
    height: calc(100% - 60px);
    overflow-y: auto
}

.elements-sidebar .elements-list .element-menu {
    border-top: 1px solid #e8e8e8
}

.elements-sidebar .elements-list .element-menu .menu-trigger {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px
}

.elements-sidebar .elements-list .element-menu .menu-trigger:hover,
.elements-sidebar .elements-list .element-menu .menu-trigger.is-active {
    background: #f5f5f5
}

.elements-sidebar .elements-list .element-menu .menu-trigger:hover span,
.elements-sidebar .elements-list .element-menu .menu-trigger.is-active span {
    color: #393a4f
}

.elements-sidebar .elements-list .element-menu .menu-trigger:hover svg,
.elements-sidebar .elements-list .element-menu .menu-trigger.is-active svg {
    stroke: #393a4f
}

.elements-sidebar .elements-list .element-menu .menu-trigger.is-active svg {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.elements-sidebar .elements-list .element-menu .menu-trigger span {
    display: block;
    color: #999;
    transition: color .3s
}

.elements-sidebar .elements-list .element-menu .menu-trigger svg {
    height: 16px;
    width: 16px;
    stroke: #999;
    transition: all .3s
}

.elements-sidebar .elements-list .element-menu .submenu-wrap {
    display: none;
    padding: 10px 20px
}

.elements-sidebar .elements-list .element-menu .submenu-wrap ul {
    padding-left: 30px
}

.elements-sidebar .elements-list .element-menu .submenu-wrap ul li a {
    display: -ms-flexbox;
    display: flex;
    padding: 6px 0;
    color: #999;
    font-size: .9rem
}

.elements-sidebar .elements-list .element-menu .submenu-wrap ul li a.is-active {
    color: #0062ff
}

.elements-wrap {
    width: calc(100% - 300px);
    min-height: 100vh;
    margin-left: 300px;
    padding: 56px 30px 30px 30px
}

.elements-wrap .element-block {
    margin-top: 30px;
    width: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px
}

.elements-wrap .element-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    color: #393a4f
}

.elements-wrap .element-block p {
    margin: 10px 0;
    font-size: .9rem;
    color: #999
}

.elements-wrap .element-block .ui-elements {
    margin-top: 20px
}

.elements-wrap .code-block {
    margin-top: 30px;
    width: 100%;
    background: #344258;
    border: 1px solid #344258;
    border-radius: 8px
}

@media (max-width: 767px) {
    .elements-sidebar {
        display: none
    }
    .elements-wrap {
        width: 100%;
        margin-left: 0
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .elements-sidebar {
        display: none
    }
    .elements-wrap {
        width: 100%;
        margin-left: 0
    }
}


/*! _reponsive.scss | Friendkit | © Css Ninja. 2018-2019 */

@media screen and (min-width: 1297px) {
    .container.is-custom {
        max-width: 1240px;
        width: 1240px
    }
}

@media screen and (min-width: 1088px) {
    .container.is-custom {
        max-width: 1140px;
        width: 1140px
    }
}

@media (max-width: 767px) {
    .view-wrap.is-headless {
        padding-top: 10px !important
    }
    .column.no-padding-left {
        padding-left: .75rem
    }
    .column.no-padding-right {
        padding-right: .75rem
    }
    .column.no-side-padding-mobile {
        padding-left: 0 !important;
        padding-right: 0 !important
    }
    .mobile-navbar .nav-drop {
        position: fixed !important;
        top: 58px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important
    }
    .explorer-menu .explorer-container {
        padding: 0 20px
    }
    .explorer-menu .explorer-container .explorer-header .control {
        max-width: 200px
    }
    .explorer-menu .explorer-container .explore-list {
        max-height: 528px
    }
    .explorer-menu .explorer-container .explore-list .explore-item {
        padding: 4px 0;
        width: calc(33.3% - 16px)
    }
    .explorer-menu .explorer-container .explore-list .explore-item img {
        height: 50px;
        width: 50px
    }
    .card.is-post .likers-text {
        display: none
    }
    .card.is-post .post-link {
        -ms-flex-direction: column;
        flex-direction: column
    }
    .card.is-post .post-link .link-image {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        max-height: 180px
    }
    .card.is-post .post-link .link-image>img {
        width: 100% !important;
        height: 100% !important;
        max-height: 180px;
        object-fit: cover
    }
    .card.is-post .post-link .link-content {
        margin-left: 0 !important;
        padding: 16px 6px
    }
    .chat-wrapper .chat-search {
        display: none !important
    }
    .chat-wrapper .chat-body {
        width: calc(100% - 60px) !important
    }
    .chat-wrapper .chat-body-inner {
        padding: 20px 10px 60px 10px !important
    }
    .chat-wrapper .chat-action {
        padding: 0 10px !important
    }
    .chat-wrapper .chat-panel {
        width: calc(100% - 60px) !important
    }
    .modal-content {
        max-height: calc(100vh - 80px) !important
    }
    .inbox-wrapper {
        overflow: hidden
    }
    .inbox-wrapper .reply-wrapper {
        padding: 20px 10px !important
    }
    .inbox-wrapper .reply-wrapper .reply-wrapper-inner {
        padding: 10px !important
    }
    .control.is-grouped {
        margin-bottom: 8px
    }
    .inbox-left-sidebar {
        width: 260px !important;
        -webkit-transform: translateX(-260px);
        transform: translateX(-260px)
    }
    .inbox-left-sidebar.is-opened-mobile {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    .inbox-center-container {
        width: 100% !important;
        left: 0 !important
    }
    .inbox-center-container .action-buttons {
        padding: 10px 20px !important
    }
    .inbox-message-container {
        width: 100% !important;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
    .inbox-message-container.is-opened-mobile {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    .inbox-message-container .message-body {
        padding: 1.25em .5em !important
    }
    .inbox-message-container .message-body .message-preview .header {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        text-align: center !important
    }
    .inbox-message-container .message-body .message-preview .header .meta-right {
        margin: 10px 0 !important;
        text-align: center !important
    }
    .cover-bg .cover-image {
        min-height: 180px !important
    }
    .profile-subheader {
        -ms-flex-pack: center !important;
        justify-content: center !important;
        margin-top: 50px !important
    }
    .profile-about {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: -30px
    }
    .profile-about .left-menu {
        width: 100%;
        max-width: 100%;
        min-width: 100%
    }
    .profile-about .left-menu .left-menu-inner {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center
    }
    .profile-about .left-menu .left-menu-inner .menu-item {
        padding: 0 10px
    }
    .profile-about .left-menu .left-menu-inner .menu-item .menu-icon {
        padding: 0 16px
    }
    .profile-about .left-menu .left-menu-inner .menu-item span {
        display: none
    }
    .profile-about .right-content {
        padding: 0
    }
    .about-timeline .timeline-item .button {
        display: none
    }
    .about-card .video-wrapper {
        width: calc(50% - 8px) !important
    }
    .about-card .place-wrapper {
        width: calc(100% - 8px) !important
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .container {
        max-width: 100%
    }
    .container .column {
        padding: .5rem
    }
    .is-hidden-landscape {
        display: none !important
    }
    .mobile-navbar .navbar-brand .navbar-item:nth-child(2) {
        margin-left: auto !important
    }
    .explorer-menu .explorer-container .explorer-header {
        padding-left: 40px;
        padding-right: 40px
    }
    .chat-wrapper .chat-body-inner {
        padding: 20px 20px 60px 20px !important
    }
    .chat-wrapper .chat-action {
        padding: 0 20px !important
    }
    .reply-wrapper {
        padding: 20px 0 !important
    }
    .reply-wrapper .reply-wrapper-inner {
        padding: 10px !important
    }
    .inbox-left-sidebar .compose {
        padding: 20px 10px !important
    }
    .inbox-left-sidebar .left-menu a {
        margin: 0 10px !important;
        padding: 10px !important
    }
    .action-buttons .button {
        margin-bottom: 4px !important
    }
    .profile-about .left-menu {
        max-width: 220px;
        min-width: 220px
    }
    .friend-cards-list .is-friend-card .friend-item .text-content a {
        font-size: .8rem !important
    }
    .friend-cards-list .is-friend-card .friend-item .text-content span {
        font-size: .65rem !important
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .columns.has-portrait-padding {
        padding: 0 40px
    }
    .column.no-padding-left {
        padding-left: .75rem
    }
    .column.no-padding-right {
        padding-right: .75rem
    }
    .mobile-navbar .navbar-brand .navbar-item:nth-child(2) {
        margin-left: auto !important
    }
    .explorer-menu .explorer-container .explorer-header {
        padding-left: 40px;
        padding-right: 40px
    }
    .chat-wrapper .chat-body {
        width: calc(100% - 60px) !important
    }
    .chat-wrapper .chat-body-inner {
        padding: 20px 40px 60px 40px !important
    }
    .inbox-wrapper {
        overflow: hidden
    }
    .inbox-left-sidebar {
        width: 260px !important;
        -webkit-transform: translateX(-260px);
        transform: translateX(-260px)
    }
    .inbox-left-sidebar.is-opened-mobile {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    .inbox-center-container {
        width: 100% !important;
        left: 0 !important
    }
    .inbox-center-container .action-buttons {
        padding: 10px 20px !important
    }
    .inbox-message-container {
        width: 100% !important;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
    .inbox-message-container.is-opened-mobile {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    .cover-bg .cover-image {
        min-height: 180px !important
    }
    .profile-subheader {
        -ms-flex-pack: center !important;
        justify-content: center !important;
        margin-top: 50px !important
    }
    .profile-about {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: -30px
    }
    .profile-about .left-menu {
        width: 100%;
        max-width: 100%;
        min-width: 100%
    }
    .profile-about .left-menu .left-menu-inner {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center
    }
    .profile-about .left-menu .left-menu-inner .menu-item {
        padding: 0 10px
    }
    .profile-about .left-menu .left-menu-inner .menu-item .menu-icon {
        padding: 0 16px
    }
    .profile-about .right-content {
        padding: 0
    }
}

