@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

.petEventsListTab {
    display: none;
}
.petEventsListTab.current {
    display: block;
}

.petFakeActions {
    background-color: rgba(255, 255, 255, .9);
    border-radius: 7px;
    position: absolute;
    left: 350px;
    top: 105px;
    padding-bottom: 5px;
    text-align: center;
    color: #333333;
    -webkit-animation: rotateInUpLeft .4s ease 2s forwards;
    animation: rotateInUpLeft .4s ease 2s forwards;
    opacity: 0;
}
.petFakeActions:after {
    content: "";
    background: url(img/tail.png) 0 0 no-repeat;
    width: 29px;
    height: 29px;
    bottom: 20px;
    left: -29px;
    position: absolute;
}
.petFakeActionsTitle {
    font-size: 15px;
    background-color: rgba(206, 240, 255, .7);
    border-radius: 7px 7px 0 0;
    font-style: italic;
    line-height: 30px;
}
.petFakeActionsList {
    margin: 10px 15px;
}
.petFakeActionsItem {
    display: inline-block;
    vertical-align: top;
    width: 80px;
}
.petFakeActionsIcoWrap {
    background-color: #bcced6;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: inline-block;
    line-height: 60px;
    transition: background-color .1s ease 0;
}
.petFakeActionsIcoWrap.disabled {
    opacity: .5;
}
.petFakeActionsIcoWrap:not(.disabled):hover {
    background-color: #d6bcbc;
    cursor: pointer;
}
.petFakeActionsIco {
    display: inline-block;
    vertical-align: middle;
}
.petFakeActionsName {
    font-size: 12px;
    line-height: 15px;
    margin-top: 5px;
}
.petGetBtn {
    background: url(img/getPetBtn.png) 0 0 no-repeat;
    width: 287px;
    height: 53px;
    display: block;
    font-size: 0;
    text-indent: -9999;
}
.petGetBtn:hover {
    background-position: 0 -53px;
    cursor: pointer;
}
.petGetBlock {
    margin: 25px 20px;
}

/* top */
.noPetPage .petTopNavigation {
    height: 75px;
    padding-top: 10px;
}
.petUserInfoBlock {
    color: #fff;
    float: left;
    width: 400px;
}
.petUserInfoBlock .petUserImg {
    float: left;
    width: 60px;
    height: 60px;
    margin-right: 10px;
}
.petUserName {
    font-size: 17px;
    line-height: 28px;
    max-width: 325px;
}
.petUserDescription {
    font-size: 14px;
    font-style: italic;
    color: #cce1ea;
}
.petName {
    font-size: 16px;
    font-style: normal;
    color: #fff;
    margin-left: 2px;
    max-width: 220px;
    display: inline-block;
    vertical-align: bottom;
    line-height: 20px;
}
.petTopBtnBlock {
    float: right;
    margin-top: 10px;
}
/* friends */
#petFriendsPanel2 .petFriendsContainer {
    padding-right: 15px;
}
#petFriendsPanel2 .petFriendsListWrap {
    width: 548px;
}
#petFriendsPanel2 {
    width: 582px;
    margin: 0 auto;
}

.petNavigationButton {
    margin: 0 0 3px 0;
}
.petNavigationButton:last-child {
    margin-bottom: 0;
}

#pet_breadcrumbs .non-link {
    color: #008bc8;;
}

#app_fs2pet_homeNoPet_css{display:none}