@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');

:root {

    --branco: #fff;
    --preto: #4e4e4e;
    --cinza: #aaaaaa;
    --azul: #0477bf;
    --azulClaro: #eef5f7;
    --poppins: 'Poppins', sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: var(--poppins);
}

.branco {
    color: var(--branco);
}

.azul {
    color: var(--azul);
}

.bgCinza {
    background-color: #fbfbfb;
}

.bgBranco {
    background-color: var(--branco);
}

.bgAzul {
    background-color: var(--azul);
}

.btnAzul {
    background-color: var(--azul);
    color: var(--branco);
    transition: .5s;
}

.btnAzul:hover,
.btnAzul:disabled {
    background-color: #2d8fcc;
    color: var(--branco);
}

.btnOutlineAzul {

    background-color: transparent;
    color: var(--azul);
    border: 1px solid var(--azul);
    transition: .5s;

}

.btnOutlineAzul:hover {

    background-color: var(--azul);
    color: var(--branco);

}

.form-label {
    font-weight: 400;
    color: var(--preto);
}

.inputForm {
    border: 2px solid rgb(0, 0, 0, 0.1);
}

.form-control:focus {
    box-shadow: none;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.form-check-input:checked {
    background-color: var(--azul);
    border: 1px solid var(--azul);
}

.form-check-input,
.form-check-input:checked:focus {
    box-shadow: none;
}

.form-check-label {
    font-size: 12px;
}

.linha {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--cinza);
}

.imgCadastroPet {
    width: 100%;
}

.wPrefixo {
    width: 4.7rem;
    border-right: 1px solid var(--cinza) !important;
    border-radius: 0px;
}

/*HEADER*/
.logoNavbar {
    width: 70px;
}

.bgHeader {

    background-color: var(--azulClaro);

}

/*INFORMAÇÕES PET*/

.croppie-container {
    width: auto !important;
    height: auto !important;
}

.ftPetPerfil {
    max-width: 250px;
    border-radius: 50%;
    border: 3px solid var(--azul);
}

.bordaAzul {
    border-left: 2px solid #3eaff0;
}

.nomePetPerfil {
    font-size: 2.7rem;
}

.ftPErfilPet {
    position: relative;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    clip-path: circle(50% at 50% 50%);
    border: 2px solid var(--preto);
}

.ftPErfilPetInvalid {

    border: 2px solid rgb(255, 34, 34);
    background-color: rgba(255, 0, 0, 0.103);
    animation: vibrar 0.3s linear;

}

.hoverfotPErfil {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.hoverfotPErfil::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.2);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
    transition: .5s;
}

.hoverfotPErfil:hover::before {
    opacity: 1;
}

.verdeWhatsapp {
    color: #25d366;
}

.verdeWhatsapp:hover {
    color: #25d366;
}

.btnWhatsapp {
    background-color: #25d366;
    color: var(--branco);
}

.btnWhatsapp:hover {
    background-color: #26c05e;
    color: var(--branco);
}

.btnWhatsappFixo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25d366;
    color: var(--branco);
    text-decoration: none;
}

#formNovaSenha {
    margin: 0 auto;
    width: 50%;
}

.containerInput {
    padding: .5rem;
    border: 1px solid var(--cinza);
}

/*PAINEL*/
.imgPerfilPet {
    width: 35%;
}

#ftPerfilPet {
    width: 250px;
    height: 250px;
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
}

.preto {
    color: var(--preto);
}

[data-pet] {
    cursor: pointer;
}

.inputCliente,
.inputCliente:disabled {
    background-color: transparent;
    border: none;
    border-radius: 0px;
    padding: .5rem 0;
}

.dTitle {
    position: relative;
}

.dTitle::before {

    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--azul);
    left: -10px;
}

.nav-tabs .nav-link.active {

    background-color: var(--azul);
    color: var(--branco);
    font-weight: 500;
    border: none;

}

.counter {
    margin-top: .5rem;
    background-color: var(--azul);
    color: var(--branco);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 25px;
    border-radius: 50px;
    font-size: .9rem;
}

@keyframes vibrar {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    60% {
        transform: translate(-2px, -2px);
    }

    80% {
        transform: translate(2px, 2px);
    }

    100% {
        transform: translate(0);
    }
}

@media screen and (min-width: 0px) and (max-width: 767px) {

    .ftPetPerfil {
        max-width: 150px;
    }

    .imgCadastroPet {
        width: 70%;
    }

}