﻿@import url("https://fonts.googleapis.com/css?family=Roboto|Sriracha&display=swap");


.profile-pic-dashboard {
    height: 130px;
    width: 130px;
    position: relative;
    margin-top: -60px;
    border-radius: 25px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.pet-card {
    text-align: center;
    margin: 50px 20px 20px 0px;
}
.pointer-ph {
    cursor: pointer;
}
    .pet-card h4 {
        font-family: "Sriracha", arial, sans-serif;
        text-align: center;
        color: #008E99;
        text-decoration: underline;
        margin-top: 20px;
        line-height: 0.5;
    }


    .pet-card h6 {
        color: lightslategray;
        /*font-size: 1vw;*/
    }

    .hr-ph {
        margin-top: -0.5em !important;
        margin-bottom: 0.8em !important;
        margin-left: 20px;
        width: 90%;
    }

.pet-details {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
    align-content: center;
    color: lightslategray;
}

.icon-box {
    color: #008E99;
    font-size: 12px;
    height: 80px;
    width: 80px;
    padding: 3px 3px 3px 3px;
    display: inline-block;
    margin: 5px;
    text-align: center;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border-radius: 10px;
    background: #F7F7F7;
    box-shadow: 0 0 10px gray;
}

    .icon-box span {
        font-size: 33px;
    }

    .icon-box:hover {
        box-shadow: 0 0 10px gray;
        color: #000 transparent;
    }


.clickable-detail {
    background: #FFF;
}

.add-pet-button {
    width: 110px;
    position: fixed;
    bottom: 90px;
    right: 0px;
    padding: 16px;
    cursor: pointer;
    z-index: 1000;
}


.add-branch-button {
    width: 110px;
    position: fixed;
    bottom: 190px;
    right: 0px;
    padding: 16px;
    cursor: pointer;
    z-index: 1000;
}


.add-company-button {
    width: 110px;
    position: fixed;
    bottom: 280px;
    right: 0px;
    padding: 16px;
    cursor: pointer;
    z-index: 1000;
}



@media only screen and (max-width: 460px) {
    .add-pet-button {
        width: 85px;
        bottom: 63px;
    }
    .add-branch-button {
        width: 85px;
        bottom: 130px;
    }
    .add-company-button {
        width: 85px;
        bottom: 190px;
    }
}