.hide {
    display: none;
}

.text-center {
    text-align: center;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0; /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;

    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

#content {
    max-width: 100%;
}

#profile-left-column {
    width: 310px;
}

#profile-box-header {
    position: relative;
    margin-bottom: 20px;
}

#profile-info {
    height: 64px;
    position: absolute;
    left: 80px;
    right: 40px;
}

#profile-info-login {
    color: #444;
    font-family: "Trebuchet MS";
    font-size: 16px;
    font-style: italic;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 64px;
}

#profile-info-login a {
    text-decoration: none;
}

#profile-options-button {
    cursor: pointer;
	margin-right: 5px;
    margin-top: 16px;
    text-align: center;
}

#profile-options-ico {
    background-position: -65px -75px;
    height: 34px;
    width: 33px;
}

#profile-options-button:hover #profile-options-ico {
    opacity: .8;
}

#profile-options-menu {
    right: -93px;
    top: 68px;
    width: 230px;
    z-index: 999;
}

.profile-box {
    margin-bottom: 10px;
}

.profile-box-ico-container {
    height: 24px;
    margin-left: 1px;
    text-align: center;
    width: 24px;
}

.profile-box-ico {
    display: inline-block;
    height: 24px;
    margin-top: 2px;
    width: 24px;
}

.profile-box-ico-person {
    background-position: -207px -137px;
    height: 14px;
    width: 12px;
    margin-top: 1px;
}

.profile-box-ico-location {
    background-position: -207px -152px;
    height: 17px;
    width: 11px;
    margin-top: 0;
}

.profile-box-ico-age {
    background-position: -220px -152px;
    height: 15px;
    width: 14px;
    margin-top: 1px;
}

.profile-box-ico-activity {
    background-position: -292px -137px;
    height: 15px;
    width: 20px;
}

.profile-box-ico-contacts {
    background-position: -221px -137px;
    height: 14px;
    width: 22px;
}

.profile-box-ico-groups {
    background-position: -245px -137px;
    height: 14px;
    width: 24px;
}

.profile-box-ico-appearance {
    background-position: -270px -138px;
    height: 13px;
    width: 20px;
}

.profile-box-ico-lifestyle {
    background-position: -236px -152px;
    height: 14px;
    width: 22px;
}

.profile-box-ico-personality {
    background-position: -314px -137px;
    height: 19px;
    width: 19px;
}

.profile-box-ico-ideal {
    background-position: -260px -152px;
    height: 14px;
    width: 16px;
}

.profile-box-ico-favourites {
    background-position: -278px -152px;
    height: 16px;
    width: 17px;
}

.profile-box-ico-gifts {
    background-position: -297px -153px;
    height: 15px;
    width: 17px;
}

.profile-box-content {
    font-size: 13.2px;
    margin-bottom: 16px;
    margin-left: 38px;
}

.profile-box-content-avatars {
    margin-top: 13px;
}

.avatar-rounded {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.profile-box-content .avatar-container.av-48,
.profile-box-more-button {
    margin-bottom: 3px;
    margin-right: 3px;
}

.profile-box-content-header,
.profile-box-header-link {
    color: #222;
    font-size: 14px;
}

.profile-box-content-header {
    margin-bottom: 2px;
    margin-left: 38px;
}

.profile-box-content-header a {
    text-decoration: none;
}

.menu-box {
    background-color: #fff;
    border: 1px solid #d7d8d9;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.1);
    display: none;
    padding: 20px 20px 17px 18px;
    position: absolute;
    text-align: left;
}

.menu-box-arrow {
    background-position: -392px -135px;
    height: 12px;
    left: 50%;
    margin-left: -16px;
    position: absolute;
    top: -12px;
    width: 32px;
}

.menu-box .menu-box-item {
    display: block;
    text-decoration: none;
    color: #666;
    margin-top: 5px;
    line-height: 19.5px;
}

.menu-box .menu-box-item:hover {
    color: #4996ba;
}

.menu-box .menu-box-item:first-of-type {
    margin-top: 0;
}

.menu-box-ico-container {
    display: inline-block;
    height: 24px;
    margin-right: 8px;
    text-align: center;
    vertical-align: middle;
    width: 34px;
}

.menu-box .menu-box-ico-container .sprites {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.menu-box .menu-box-ico-container .sprites.ico-friend-add-m,
.menu-box .menu-box-ico-container .sprites.ico-friend-add-f {
    left: -4px;
}

.menu-box .menu-box-item:hover .sprites {
    opacity: .9;
}

#content-tabs {
    position: relative;
    top: 11px;
}

#content-tabs-container {
    display: table;
    margin: auto;
}

.shadow-box.profile-box {
    padding-bottom: 5px;
    padding-top: 19px;
}

#profile-box-contacts-container .av-48,
#profile-box-groups-container .av-48 {
    float: left;
}

.av-64 .online-icon {
    margin-left: 2px;
    margin-top: 0px;
	bottom: 2px;
}

.av-64 .gTlo {
    bottom: -14px;
    right: -20px;
}

.av-64 .gwiazda-tlo {
    bottom: -10px;
    right: -12px;
}

.photo-video-item {
    position: absolute;
}
.play_button {
    position: absolute;
    width: 71px;
    height:71px;
    top: 50%;
    left: 50%;
    margin-left: -35px;
    margin-top: -35px;
    opacity: 1;
    z-index: 2;
}
.play_button:hover + .black_layer{
    opacity: 0.25;
}

.black_hover:hover .black_layer{
    opacity: 0.25;
}
.black_layer {
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom: 0;
    margin-bottom: 5px;
    background-color: black;
    opacity: 0.1;
    z-index: 1;
}
.progress_circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-left: -18px;
    margin-top: -18px;
}
.black_layer:hover {
    opacity: 0.25;
}

.black_hover {
    position: relative;
}

.photo-container {
    display: block;
    margin: auto;
    overflow: hidden;
    text-align: center;
}

.photo-container img {
    /*width: 100%;*/
}

.photo-info {
    padding-top: 8px;
    padding-bottom: 3px;
    text-align: center;
    word-wrap: break-word;
}

#add-photos {
    height: 173px;
    padding: 9px;
}

#add-photos-border {
    border: 2px dashed #e2e4e7;
    padding: 24px 0px 24px;
    text-align: center;
}

#add-photos-browse-button {
    color: #444;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 24px;
}

#add-photos-button-ico {
    background-position: -253px -33px;
    display: inline-block;
    height: 23px;
    margin-right: 13px;
    vertical-align: bottom;
    width: 31px;
}

#add-photos-form:hover #add-photos-browse-button {
    color: #4996ba;
}

#add-photos-form:hover #add-photos-button-ico {
    opacity: .8;
}

#add-photos-tip,
#add-photos-tip-uploading {
    color: #999;
    line-height: 20px;
    margin: auto;
    width: 180px;
}

#add-photos-tip-uploading {
    display: none;
    margin-bottom: 15px;
}

#add-photos-tip-additional a {
    border-bottom: 1px solid #bfdae7;
    padding-bottom: 3px;
    text-decoration: none;
}

.add-photos-progress {
    background-image: url('/img/upload/progress_background.png');
}

#add-photos-progress {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: none;
    height: 21px;
    margin: 22px auto;
    overflow: hidden;
    text-align: left;
    width: 220px;
}

#add-photos-progress-bar {
    background-image: url('/img/upload/progress_forward.gif');
    -webkit-border-radius: 3px;
    border-radius: 3px;
    height: 21px;
    width: 0;
}

.galcolumn #add-photos {
    display: block;
}

#profile-photos-columns .photo, #add-photos {
    margin-bottom: 10px;
}

#profile-right-column-albums-container {
    height: 22px;
    margin-bottom: 5px;
    position: relative;
}

#profile-right-column-albums {
    bottom: 0;
    left: 0;
    margin-top: 0;
    overflow: hidden;
    position: absolute;
    right: 30px;
    text-overflow: ellipsis;
    top: 0;
    white-space: nowrap;
}

.albums-tab {
    color: #666;
    line-height: 20px;
    padding: 0 10px;
    text-decoration: none;
    white-space: nowrap;
}

.albums-tab:hover {
    color: #4996ba;
}

.album-tab-current {
    font-weight: bold;
}

.albums-tab-separator {
    background-position: 0px -118px;
    display: inline-block;
    height: 20px;
    vertical-align: middle;
    width: 2px;
}

#albums-more {
    background-position: -335px -135px;
    cursor: pointer;
    height: 27px;
    margin-top: -14px;
    position: absolute;
    right: 0;
    top: 50%;
    width: 27px;
}

#albums-more:hover {
    background-position: -363px -135px;
}

.invert-colors {
	-moz-filter: invert(100%);
	-webkit-filter: invert(100%);
    filter: invert(100%);
}

#albums-list-menu {
    padding: 15px 15px 17px 13px;
    right: -7px;
    top: 40px;
    z-index: 11;
}

#albums-list-menu .menu-box-arrow {
    left: auto;
    margin-left: 0;
    right: 3px;
}

#albums-list-menu .albums-tab {
    display: block;
}

#profile-friend-relation-chooser {
    display: none;
    margin-left: 44px;
}

#profile-right-column {
    position: relative;
    width: 650px;
}

.profile-photos-column {
    float: left;
    width: 50%;
    padding-left: 10px;
}

.popup-overlay {
    background-color: rgba(227, 229, 230, 0.90);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 225;
    -webkit-backface-visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#E5E3E5E6', EndColorStr='#E5E3E5E6');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#E5E3E5E6', EndColorStr='#E5E3E5E6')";
}

.popup-close {
    border: 5px solid #f2f3f4;
    cursor: pointer;
    height: 24px;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 24px;
    z-index: 2;
}

.popup-close:hover .ico-close-cross {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.popup-box-container {
    overflow: hidden;
    position: relative;
	width: 800px;
	height: 600px;
}

.popup-container-holder {
    border: 1px solid #a4cadc;

    background-color: #f2f3f4;

    -moz-box-shadow: 0px 0px 7px 0 rgba(0, 0, 1, 0.15);
    -webkit-box-shadow: 0px 0px 7px 0 rgba(0, 0, 1, 0.15);
    box-shadow: 0px 0px 7px 0 rgba(0, 0, 1, 0.15);

    position: relative;
	
	width: 100%;
	height: 100%;
}

#pwObscure,
#cechyObscure {
    background-color: rgba(227, 229, 230, 0.90);
    -webkit-backface-visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#E5E3E5E6', EndColorStr='#E5E3E5E6');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#E5E3E5E6', EndColorStr='#E5E3E5E6')";
	z-index: 200;
}

#pwContainer .fotkaLightBorder,
#cechyContainer .fotkaLightBorder {
    border: 1px solid #a4cadc;
    border-radius: 0;
    -moz-box-shadow: 0px 0px 7px 0 rgba(0, 0, 1, 0.15);
    -webkit-box-shadow: 0px 0px 7px 0 rgba(0, 0, 1, 0.15);
    box-shadow: 0px 0px 7px 0 rgba(0, 0, 1, 0.15);
    padding: 0;
}

#pwContainer .fotkaLightContent,
#cechyContainer .fotkaLightContent {
    background-color: #f2f3f4;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

#cechyContainer .fotkaLightBox {
    width: 720px;
}

#fotkaLightBoxClose.no-suggest {
    background-position: -641px -91px;
    border: 5px solid #f2f3f4;
    height: 24px;
    right: 5px;
    top: 5px;
    width: 24px;
}

#pwContainer #pw-container {
    background: none;
}

#pwContainer #pw-next-messages-container {
    background: transparent linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fefefe 50%);
    background: transparent -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fefefe 50%);
    background: transparent -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fefefe 50%);
    background: transparent -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fefefe 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#00ffffff', EndColorStr='#fefefe'); /* IE6,IE7 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#00ffffff', EndColorStr='#fefefe')"; /* IE8 */
    margin-left: -25px;
}

#profile-box-data, #profile-box-members, #profile-box-additional {
    display: block;
}

#profile-box-data {
    padding-top: 10px;
    overflow: visible;
}

#profile-box-members {
	padding-right: 5px;
}

#profile-box-members.hide {
    display: none;
}

#content-yesno-container {
    display: none;
    text-align: center;
}

#content-yesno {
    line-height: 53px;
}

#content-filter-container {
    display: none;
    text-align: left;
    margin-top: 20px;
}

#yesno-buttons {
    display: inline-block;
    white-space: nowrap;
    overflow: visible;
    vertical-align: middle;
}

.yesno-button,
.yesno-button-small {
    display: inline-block;
    color: #666;
    cursor: pointer;
}

.yesno-button {
    position: relative;
    top: -1px;
}

.yesno-button-small:hover {
    color: #666;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.yesno-button:hover {
    color: #666;
}

.yesno-button-small {
    width: 37px;
    height: 38px;
    margin: 0 15px;
    vertical-align: middle;
}

#yesno-answer-yes {
    margin-right: 1px;
}

#yesno-answer-no {
    margin-left: 1px;
}

.yesno-button-left {
    display: inline-block;
    background-position: -72px -297px;
    width: 26px;
    height: 52px;
    float: left;
}

.yesno-button:hover .yesno-button-left {
    background-position: -134px -297px;
}

.yesno-button-right {
    display: inline-block;
    background-position: -106px -297px;
    width: 26px;
    height: 52px;
    float: left;
}

.yesno-button:hover .yesno-button-right {
    background-position: -168px -297px;
}

.yesno-button-center {
    background-position: 0 -669px;
    display: inline-block;
    height: 52px;
    line-height: 52px;
    float: left;
}

.yesno-button:hover .yesno-button-center {
    background-position: 0 -723px;
}

.yesno-button-content {
    font-size: 15px;
    margin-left: -10px;
    margin-right: -4px;
    position: relative;
    white-space: nowrap;
}

.yesno-button-yes,
.yesno-button-no {
    display: inline-block;
    position: relative;
    top: 8px;
    margin-right: 12px;
}

.yesno-button-yes {
    background-position: -675px -51px;
    width: 32px;
    height: 26px;
}

.yesno-button-no {
    background-position: -676px -80px;
    width: 27px;
    height: 27px;
    margin-left: 2px;
}

.yesno-decision-label {
    font-size: 17px;
    vertical-align: middle;
    margin-right: 30px;
    white-space: nowrap;
}

#yesno-next-profile-button {
    background-position: -219px -265px;
}

#yesno-next-profile-button.yesno-button {
    margin-left: -2px;
    vertical-align: middle;
}

#yesno-next-profile-button .yesno-button-content {
    margin-left: 0;
}

.yesno-next-profile-button-ico {
    display: inline-block;
    background-position: -45px -79px;
    width: 13px;
    height: 24px;
    vertical-align: middle;
    margin-left: 15px;
    margin-top: -2px;
}

#yesno-filter-button {
    background-position: -258px -265px;
}

#yesno-filter-button.pressed {
    background-position: -259px -305px;
}

.yesno-ico {
    display: inline-block;
    margin-left: 30px;
    margin-right: 7px;
    vertical-align: middle;
    margin-top: -1px;
}

.yesno-ico-no {
    background-position: -555px -192px;
    width: 20px;
    height: 20px;
}

.yesno-ico-yes {
    background-position: -577px -192px;
    width: 24px;
    height: 20px;
}

.yesno-ico-mutually {
    background-position: -603px -192px;
    width: 34px;
    height: 20px;
}

.yesno-button-rwd-yes,
.yesno-button-rwd-no {
    display: none;
    width: 74px;
    height: 74px;
    vertical-align: middle;
}

.yesno-button-rwd-yes {
    background-position: -4px -71px;
}

.yesno-button-rwd-no {
    background-position: -80px -71px;
}

#content-tabs,
#content-tabs-filter-placeholder,
#content-yesno-container {
    margin-bottom: 26px;
    margin-top: 16px;
}

#content-yesno,
#yesno-buttons,
#content-tabs,
#content-tabs-filter-placeholder {
    height: 53px;
}

#content-filter-region .select-begin,
#content-filter-region #content-filter-region-content,
#content-filter-region .select-end {
    z-index: auto !important;
}

#content-tabs,
#content-filter-container,
#profile-box-gifts {
    display: none;
}

#content-tabs,
#content-filter-container,
#profile-columns,
#content-yesno-container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

#profile-background {
    width: 100%;
    height: 100%;
}

.gift, #profile-box-gifts .profile-box-more-button {
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
}

.gift-greatings {
	word-break: break-word;
	white-space: normal;
}

.profile-box-more-button {
	background-color: #fff;
    cursor: pointer;
	text-align: center;
	display: inline-block;
}

.av-more {
    background-position: 0 -138px;
    cursor: pointer;
	width: 34px;
	height: 30px;
	margin-top: 9px;
}

.profile-box-more-button:hover .av-more {
	background-position: -33px -138px;
}

.profile-box-more-button b {
	color: #999;
	font-size: 20px;
}

.avatar-border {
	border: 1px solid #ededed;
}

#abuse-report {
    height: 150px;
}

#abuse-report-text {
    height: 100px;
    width: 350px;
}

#abuse-report-error {
    color: #f00;
    display: none;
    left: 0;
    position: absolute;
    width: 100%;
}

#profile-gotop {
    display: none;
    position: fixed;
    z-index: 20;
    cursor: pointer;
    bottom: -4px;
    right: 20px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(34, 34, 34, 0.5);
    border-radius: 4px;
    border: 1px solid rgba(153, 153, 153, 0.5);
    text-align: center;
}

#profile-gotop-header {
    padding: 10px 10px 8px;
}

#profile-gotop-footer {
    padding: 0 10px 8px;
}

#profile-gotop-separator {
    margin-bottom: 8px;
    border-top: 1px solid rgba(153, 153, 153, 0.5);
}

#profile-gotop-header:hover, #profile-gotop-footer:hover {
    color: #4996ba;
}

.profile-properties {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.profile-properties td {
    padding: 0;
    vertical-align: top;
}

.profile-properties .value {
	vertical-align: bottom;
}

.profile-properties-label {
    color: #999;
    width: 98px;
}

.properties-fill-label {
    float: left;
    margin: 5px 5px 0 0;
}

.properties-progress-container {
    float: left;
    width: 128px;
    height: 11px;
    margin-top: 10px;
    margin-right: 18px;
    background-position: -494px -225px;
    position: relative;
}

.properties-progress-value {
    width: 36px;
    height: 22px;
    background-position: -623px -215px;
    position: absolute;
    top: -21px;
    margin-left: -18px;
    line-height: 18px;
    text-align: center;
    z-index: 101;
    font-size: 11px;
    color: #555;
}

.properties-progress-value.vert {
    width: 39px;
    height: 20px;
    background-position: -570px -199px;
    margin-left: 0;
    top: -5px;
    right: -39px;
}

.properties-progress {
    width: 128px;
    height: 11px;
    background-position: -494px -214px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-border-radius: 0 6px 6px 0;
    -moz-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
}

.properties-progress-value:after {
    content: '%';
    font-weight: bold;
    color: #888;
}

.properties-value-container {
    margin: 0 5px;
    position: relative;
    padding: 5px;
}

.properties-log-in {
    margin-bottom: 14px;
}

.color-gray {
    color: #999;
}

/* Znajomi popup */

#contacts-popup-header {
    padding: 10px;
}

#contacts-popup-header h2 {
    float: left;
    color: #666;
    font-style: normal;

    margin: 0 0 10px;
    text-shadow: 0 1px 0 #fff;
    font-size: 17px;
    border: none;
}

#contacts-popup-filter {
    margin-left: 6px;
}

#contacts-box-contacts-list {
    position: absolute;
    bottom: 0;
    top: 35px;
    left: 0;
    right: 0;
    overflow: auto;
    padding: 10px;
}

#contacts-box-contacts-list .resizable-shadow-box {
    height: 175px;
    width: 113px;
    box-sizing: content-box;
}

#contacts-box-contacts-list .resizable-shadow-box .shadow-box {
    text-align: center;
    height: 136px;
    width: 114px;
    padding: 10px 0;
    box-sizing: content-box;
}

#contacts-box-contacts-list .resizable-shadow-box:not(.resize-disabled):hover .shadow-box {
    height: 154px;
    left: -5px;
    top: -10px;
    padding: 20px 5px;
}

#contacts-box-contacts-list .resizable-shadow-box .ico-delete {
    cursor: pointer;
    display: none;
    position: absolute;
    right: 0;
    top: -11px;
    z-index: 15;
    float: none;
    background-position: -288px -78px;
    width: 23px;
    height: 23px;
}

#contacts-box-contacts-list .resizable-shadow-box:hover .ico-delete {
    display: block;
}

#contacts-box-contacts-list .friend-box-login {
    overflow: hidden;
    text-align: center;
    display: table;
    margin: auto;
    margin-top: 6px;
    white-space: nowrap;
}

#contacts-box-contacts-list .friend-box-login a,
#contacts-box-contacts-list .friend-box-login span {
    text-decoration: none;
    font-weight: normal !important;
}

#contacts-box-contacts-list .friend-box-login-grayed a:visited span {
    color: #999 !important;
}

#contacts-box-contacts-list .friend-box-login-grayed a,
#contacts-box-contacts-list .friend-box-login-grayed span {
    color: #666 !important;
}

#contacts-box-contacts-list .friend-profile-box-details {
    line-height: 13px;
    position: relative;
    opacity: 0;
}

#contacts-box-contacts-list .resizable-shadow-box:not(.resize-disabled):hover .friend-profile-box-details {
    opacity: 1;
    -webkit-transition: opacity 200ms linear;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

#contacts-box-contacts-list .resizable-shadow-box-details-info {
    font-size: 11px;
    margin-bottom: 7px;
    width: 114px;
}

.friend-avatar-box {
    position: relative;
}

#contacts-box-contacts-list .friend-avatar-box .lover {
    position: absolute;
    top: -6px;
    margin-left: 48px;
    background-position: -350px -33px;
    width: 18px;
    height: 16px;
}

#contacts-box-contacts-list .resizable-shadow-box .nowy {
    top: -3px;
    right: -3px;
}

#contacts-box-contacts-list .resizable-shadow-box:hover .nowy {
    top: -13px;
    right: -8px;
}

#photos-order-container {
    overflow: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 46px;
}

#photos-order-form {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px;
}

#photos-order-header-container {
    font-size: 17px;
	padding: 20px;
}
#photos-order-box-photos-list {
	padding: 0 10px;
	text-align: center;
}

#photos-order-box-photos-list .photos-order-photo {
    cursor: move;
    display: inline-block;
    height: 72px;
    margin-right: 10px;
    text-align: center;
    width: 96px;
}

#photos-order-header-container,
#photos-order-box-photos-list,
#photos-order-save-button,
#photos-order-save-ajax {
    display: none;
}

#photos-order-save-ajax {
    margin: 1px 0 1px 10px;
    vertical-align: middle;
}

.profile-iframe-container {
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 0;
    right: 0;
}

.profile-iframe {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
}

/* Brak profilu */
#error-profile-message {
    display: table;
    margin: 50px auto 60px auto;
}

#error-profile-message.hide {
	display: none;
}

#error-profile-leftColumn {
    width: 160px;
    float: left;
    margin-right: 10px;
    position: relative;
    height: auto;
}

#error-profile-leftColumn img {
    width: 160px;
    height: 160px;
}

#error-profile-centerColumn {
    width: 670px;
    margin-bottom: 30px;
    float: left;
    position: relative;
    height: auto;
}

.error-profile-item-arrow {
    border-color: #fff;
    border-top-color: transparent !important;
    border-left-color: transparent !important;
    border-style: solid;
    font-size: 0;
    height: 0;
    position: absolute;
    width: 0;
    z-index: 2;
    border-width: 10px;
    left: -18px;
    top: 35px;
}

.error-profile-item-arrow-border {
    border-color: #C9D3d5;
    border-top-color: transparent !important;
    border-left-color: transparent !important;
    border-style: solid;
    font-size: 0;
    height: 0;
    position: absolute;
    width: 0;
    z-index: 1;
    border-width: 10px;
    left: -20px;
    top: 36px;
}

.error-profile-box {
    height: 160px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.error-profile-box-container {
    margin: 10px 10px;
    padding: 25px;
    position: relative;
}

.error-profile-box-container h1 {
    color: #666;
    font-style: normal;
    margin: 0;
    padding: 0 0 20px 0;
}

.error-profile-box-container p {
    font-size: 14px;
}

.error-profile-box-container-options {
	text-align: center;
}

#error-profile-box-container-options-abuse .ico-abuse {
	display: inline-block;
	position: relative;
	top: 4px;
	right: 3px;
}

#profile-box-data-about {
    word-break: break-word;
}

#profile-box-data-warning,
#profile-box-data-warning a {
	color: #cb0000;
	font-weight: bold;
}

#placeholder-profile-box-header {
    height: 64px;
    margin-bottom: 20px;
	position: relative;
}

#customizer-iframe {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-top: 0;
    background-color: transparent;
    z-index: 999;
}

#profile-box-tv {
    background-color: #fff;
    position: fixed;
    z-index: 200;
    width: 404px;
    top: 50%;
    left: 50%;
    margin-top: -160px;
    margin-left: -202px;
    border: 0 none !important;
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#profile-box-tv-header {
    text-align: center;
}

#profile-box-tv-close {
    cursor: pointer;
    position: absolute;
    right: -9px;
    top: -9px
}

#profile-box-tv-thumbnail {
    display: block;
    max-width: 320px;
    max-height: 240px;
    position: relative;
}

#profile-box-tv-live {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 13px;
    line-height: 14px;
    z-index: 5;
    font-weight: bold;
    color: #ffffff;
    -moz-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    -webkit-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#profile-box-tv-dot {
    position: relative;
    top: -1px;
    display: inline-block;
}

#profile-box-tv-play {
    left: 84px;
    top: 44px;
    width: 149px;
    height: 150px;
    display: block;
    position: absolute;
	background-image: url('/img/fotkatv/play.png');
	background-repeat: no-repeat;
}

#profile-box-tv-av {
    width: 100%;
    height: 100%;
    min-height: 221px;
    display: block;
    margin: auto;
}

#spolecznosci-30, #spolecznosci-31 {
    width: 100%;
    max-width: 960px;
    margin: auto;
    text-align: center;
}

#profile-info-age-location {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	position: absolute;
	right: 5px;
	left: 87px;
    display: none;
}

#profile-info-folder {
    display: none;
}

.profile-info-expandable-arrow {
    display: inline-block;
    margin-left: 10px;
}

.no-break {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#photo-box-profile-avatar {
	box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
	overflow: visible;
	padding: 4px;
}

#profile-avatar {
	position: relative;
}

#profile-avatar-cover {
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	width: 64px;
	height: 64px;
}

#profile-avatar-change {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.7);
	color: #666;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
}

.menu-box-item.moderate,
.moderate {
    display: none;
}

.contact-couple {
	position: absolute;
	display: inline-block;
	left: 50%;
	margin-left: -9px;
	top: -6px;
}

.avatar-container-couple-border {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	border: 2px solid #f00;
}

.photo-box-comments-count {
	position: absolute;
	top: 25px;
	right: 25px;
}

.photo-box-comments-count-value {
	position: relative;
	left: 8px;
	top: -1px;
}

.photo-box-comments-count-left {
	height: 23px;
	background-position: -615px -240px;
	float: left;
	color: #666;
	font-size: 11px;
	line-height: 20px;
}

.photo-box-comments-count-right {
	width: 15px;
	height: 23px;
	background-position: -636px -240px;
	float: left;
}

.big-infobox {
	margin: 0 auto 20px;
	max-width: 960px;
}

.big-infobox-link {
	margin: 2.1em 2em 1.4em;
}

#profile-infobox-friend-invite .buttons {
	margin-top: 13px;
}

.ico-fotka-team,
.ico-fotka-przyjaciel {
	display: inline-block;
	vertical-align: middle;
}

#sugestia_imie.editpodstawowe {
    position: absolute;
    top: 23px;
    left: 5px;
    width: 200px;
    background-color: white;
    z-index: 2;
}

#date_ur_rok._edycja {
    width: 95px;
}

#date_ur_miesiac._edycja {
    width: 45px;
}

#date_ur_dzien._edycja {
    width: 45px;
}

#sugestia_imie {
    position: absolute;
    top: 50px;
    left: 0px;
    display: none;
    margin-left: 0px;
    overflow-y: auto;
    background-color: white;
    width: 100%;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.7);
}

#sugestia_imie .imie_podpowiedz {
    background-color: white;
    color: #299cd1;
    padding: 2px;
}

#sugestia_imie .imie_podpowiedz:hover {
    background-color: #299cd1;
    color: white;
    padding: 2px;
}



@media only screen and (max-width: 1200px) {
    #profile-box-data, #profile-box-members, #profile-box-additional {
        display: block;
    }
}

@media only screen and (max-width: 992px) {
    #profile-box-tv-av {
        min-height: 0;
    }
	#profile-background {
		padding: 0 10px;
	}
	
    #profile-left-column {
        width: 30%;
    }

    #profile-right-column {
        width: 70%;
    }

    #profile-box-data, #profile-box-members, #profile-box-additional {
        display: block;
    }
	
	#content-filter-age-label-min {
		margin-left: 5px;
	}
	
	#content-filter-age-label-max {
		margin-right: 5px;
	}
}

@media only screen and (max-width: 850px) {
	#error-profile-centerColumn {
		float: none;
		width: 100%;
	}
	
	.error-profile-box {
		height: auto;
	}
	
	.error-profile-item-arrow {
		left: 152px;
	}
	
	.error-profile-item-arrow-border {
		left: 150px
	}
}

@media only screen and (max-width: 768px) {
    body {
        overflow-y: scroll;
    }

    #content.hasTheme {
        padding-left: 0;
        padding-right: 0;
    }

    #profile-background {
        margin-top: 10px;
    }

    #content.hasTheme #profile-background {
        margin-top: 0;
        padding-left: 6px;
        padding-right: 6px;
    }
    #profile-right-column-albums-container {
        margin-left: 0 !important;
    }

    .profile-photos-column:first-child {
        padding-left: 0;
    }

    #profile-left-column, #profile-right-column, #profile-photos-columns {
        width: 100%;
    }

    #profile-right-column {
        padding-left: 0;
    }

    #profile-boxes {
        display: none;
        margin-top: 20px;
    }

    #profile-box-header {
        margin-bottom: 0;
    }

    #profile-box-data {
        padding-bottom: 10px;
    }

    #profile-box-members, #profile-box-additional {
        display: none;
    }

    #profile-options-menu {
        top: 57px;
    }

    #profile-options-menu,
    #albums-list-menu {
        right: 0 !important;
    }

    #profile-options-menu .menu-box-arrow {
        left: auto;
        right: 5px;
    }

    #albums-list-menu .menu-box-arrow {
        right: -2px;
    }

    #msgBoxBody .msgBoxBodyContainer {
        width: 98% !important;
    }
	#msgBoxBody {
		width: 100% !important;
		width: -moz-calc(100% - 22px) !important;
		width: -webkit-calc(100% - 22px) !important;
		width: calc(100% - 22px) !important;
		margin-left: 0 !important;
		left: 0;
	}

    #content-filter {
        display: block;
        padding-bottom: 0;
        padding-top: 20px;
        margin-top: 0;
    }

    #content-filter-container {
        background: none;
        border-bottom: none;
        margin-top: 0;
    }

    #content-tabs-filter-placeholder,
    #content-yesno-container {
        margin-top: 26px;
    }

	#content-tabs-filter-placeholder {
        height: 53px;
	}

	#content-tabs {
		display: none !important;
	}

    #profile-options-button {
        margin-top: 5px;
    }

	#profile-options-button:hover #profile-options-ico,
	#photo-box-close:hover,
	.ico-close-cross:hover,
	#fotkaLightBoxClose:hover {
		opacity: 1 !important;
	}
	
	#fotkaLightBoxClose {
		top: 0;
		right: 0;
		border: 15px solid #f2f3f4;
		height: 44px;
		width: 44px;
	}

    #profile-info {
        cursor: pointer;
    }

    #profile-info-login {
        line-height: normal;
        margin-top: 12px;
    }

    #profile-info-age-location {
        display: block;
        left: 0;
        right: -40px;
        margin-top: 8px;
    }

    #placeholder-profile-box-header {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 570px) {
    #content-tabs-container .content-tabs-tab-label {
        margin-left: 0;
        margin-right: 0;
    }

    #content-tabs-container .pill-widget-begin {
        margin-left: -2px;
    }

    #content-tabs-container .pill-widget-end {
        width: 6px;
    }

    #add-photos-progress, #add-photos-tip-uploading {
        width: 100%;
    }

    #add-photos-button-ico {
        display: none !important;
    }
}

@media only screen and (max-width: 466px) {
    #content-yesno {
        height: 74px;
        line-height: 74px;
    }

    #content-tabs-filter-placeholder,
    #content-yesno-container {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    #yesno-buttons,
    #content-tabs-filter-placeholder {
        height: 74px;
    }

    #yesno-filter-button {
        margin-left: 0;
    }

    #yesno-next-profile-button {
        margin-right: 0;
    }

    .yesno-button-left,
    .yesno-button-center,
    .yesno-button-right {
        display: none;
    }

    #yesno-next-profile-button .yesno-button-left,
    #yesno-next-profile-button .yesno-button-center,
    #yesno-next-profile-button .yesno-button-right {
        display: inline-block;
    }

    .yesno-button-rwd-yes,
    .yesno-button-rwd-no {
        display: inline-block;
    }
}

@media only screen and (max-width: 460px) {
	#error-profile-leftColumn {
		width: 48px;
	}
	
	#error-profile-leftColumn img {
		width: 48px;
		height: 48px;
	}
	
	.error-profile-item-arrow {
		left: 40px;
		top: 15px;
	}
	
	.error-profile-item-arrow-border {
		left: 38px;
		top: 16px;
	}
}

@media only screen and (max-width: 430px) {
	.big-infobox > a {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		text-align: center;
	}
	
	#add-photos {
		height: auto;
	}
	
	#add-photos-tip {
		display: none;
	}
}

@media only screen and (max-width: 420px) {
	#profile-box-tv {
		width: 100%;
		margin-left: 0;
		left: auto;
    }
	
	#profile-box-tv-close {
		right: 0;
	}
	
	#profile-box-tv-live {
		right: 32px;
	}
	
	#profile-box-tv-thumbnail {
		max-width: 100%;
		max-height: none;
		padding: 0 20px;
	}
	
	#profile-box-tv-av {
		max-width: 100%;
		width: 100%;
		height: auto;
	}
	
	#profile-box-tv-play {
		margin-top: -75px;
		margin-left: -75px;
		left: 50%;
		top: 50%;
	}

    .yesno-ico {
        margin-left: 0;
    }

    .yesno-decision-label {
        margin-right: 0;
    }

    #yesno-filter-button {
        margin-right: 10px;
    }

    #yesno-next-profile-button {
        margin-left: 10px;
    }
}
