/*
Subscription Profile Page
'spp' - global prefix
*/

#vue_subscription_profile {
    padding-top: 60px;
    background-color: #F2F2F2;
    min-height: 100vh;
}

.spp-section {
    margin: 0 auto;
    max-width: 767px;
    background-color: #fff;
}

.spp-title__section {
    background-color: transparent;
}

.spp-title__name, .spp-title__username {
    margin: 0;
    padding: 8px 10px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.spp-title__username {
    color: rgba(0, 148, 244, 0.9);
    font-weight: 400;
    text-align: right;
}

.spp-title__name:hover, .spp-title__username:hover {
    cursor: pointer;
}


.spp-slider__section {
    position: relative;
    width: 100%;
    height: calc(100vw);
    max-height: 450px;
}

.spp-slider__bg {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-background-size:cover;
    background-size:cover;
    transition: all 0.3s ease;
}

.spp-slider__bg:hover {
    cursor: pointer;
}

.spp-slider__controls {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    z-index: 2;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.spp-slider__current {
    display: inline-block;
    line-height: 6px;
    margin: 0 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #999;
    opacity: 0.4;
}

.spp-slider__current.active {
    opacity: 1;
}

.spp-tabs__block {
    background-color: #141517;
}

.spp-tab {
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    padding: 14px 0;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.37;
    transition: all 0.3s ease;
}

.spp-tab:hover {
    cursor: pointer;
    opacity: 1;
}

.spp-tab.activeTab {
    opacity: 1;
}

.spp-stats__block {
    padding: 15px 0;
    border-bottom: 1px solid #E8E8E8;
}
.spp-stats__data {
    text-align: center;
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
}

.spp-stats__data:first-child {
    border-right: 1px solid #E8E8E8;
}

.spp-stats__data strong {
    font-weight: 600;
    font-size: 20px;
}

.spp-bio__section {
    margin: 7px auto;
    padding: 20px 15px;
    border-radius: 2px;
}

.spp-bio__userbio {
    font-size: 16px;
    text-align: left;
    line-height: 18px;
    color: #000;
    transition: all 0.4s ease;
    margin: 0;
    padding: 15px 0;
}

.spp-bio__marker {
    width: 15px;
    height: auto;
    vertical-align: text-bottom;
    margin: 0 5px 0 0;
}

.spp-bio__location {
    color: #404C54;
    font-size: 16px;
    line-height: 19px;
    margin: 0;
}

.spp-bio__lock {
    width: 20px;
    height: auto;
}

.spp-post__block {
    padding: 12px 0 0 0;
    border-bottom: 1px solid rgba(64, 76, 84, 0.1);
}

.spp-post__avatar {
    float: left;
    width: 50px;
    height: 50px;
    /*background-image: url(../img/subscription/avatar.png);*/
    background-repeat: no-repeat;
    -webkit-background-size:cover;
    background-size:cover;
    background-position: top center;
    border-radius: 50%;
}

.spp-post__name {
    float: left;
    color: #2F3B43;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    margin: 0 0 0 15px;
    padding: 10px 0;
}

.spp-post__date {
    color: #909090;
    font-size: 14px;
    font-weight: 400;
}

.spp-post__image {
    position: relative;
}

.spp-post__background {
    background-color: #E1E8ED;
    width: 100%;
    height: calc(100vw - 110px);
    max-height: 400px;
    margin: 15px 0;
}

.spp-post__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.spp-post__lock {
    display: block;
    margin: 0 auto;
    width: 38px;
    height: auto;
}

.spp-post__text {
    color: #000;
    opacity: 0.7;
    font-size: 14px;
    margin: 10px 0 12px 0;
    text-align: center;
}

.spp-post__cta {
    background-color: #F74A96;
    color: #fff;
    border: 1px solid #F74A96;
    border-radius: 7px;
    font-size: 14px;
    padding: 10px 0 11px 0;
    text-align: center;
    min-width: 200px;
    font-weight: 600;
}

.spp-post__message {
    padding: 15px 10px 25px 10px;
    color: #000;
    font-size: 14px;
}












