/*_______________________________ CORE */

/* Cormorant Infant */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300;400;700&display=swap');

/* Poppins*/
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/*_______________________________ DEFAULT OVERRIDE */
h1{
    font-size: 48px;
    font-weight: 400;
}
h2{
    font-family: 'Poppins', sans-serif;
}
sub{
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}
p{
    font-family: 'Poppins', sans-serif;
}
span{
    font-family: 'Poppins', sans-serif;
}

/*_______________________________ ERROR */
.error_highlight {
    border: none;
    border-bottom: solid 1px red;
    background: none;
    height: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: red;
}
.error{
    padding: 5px 10px;
    border-radius: 15px;
    background: red;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #FFF;    
}
#error_message{
    padding: 5px 10px;
    border-radius: 15px;
    background: red;
    color: #FFF;    
    position:absolute;
    top: 85vh;
    left: 50vw;
    transform: translateX(-50%);
}
.disabled_button{
    margin-top: 20px;
    border: none;
    background: #CCC;
    color: #F4F4F4;
    text-transform: uppercase;
    padding: 15px;
    font-family: 'Cormorant Infant', serif;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}
/*_______________________________ HELP */
.help_container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 85vh;
}
.help_container img{
    height: 25px;
    width: auto;
    margin-right: 10px;
}
.help_container span{
    text-decoration: underline;
}
/*_______________________________ BUTTONS */
.button{
    margin-top: 20px;
    border: none;
    background: #121212;
    color: #F4F4F4;
    text-transform: uppercase;
    padding: 15px;
    font-family: 'Cormorant Infant', serif;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}
.secondary_button{
    margin-top: 20px;
    border: solid 1px #121212;
    background: none;
    color: #121212;
    text-transform: uppercase;
    padding: 15px;
    font-family: 'Cormorant Infant', serif;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}
.small_button{
    height: 20px;
    background: #000;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}
.small_button_disabled{
    height: 20px;
    background: #0BB461;
    color: #F4F4F4;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}
.back_button{
    position: absolute;
    left: 20px;
    top: 20px;
    background: none;
    border: none;
    color: #827A73;
    font-family: 'Poppins', sans-serif;
}

.back_button a{
    text-decoration: none;
    color: #827A73;
    font-family: 'Poppins', sans-serif;
}
.back_button_free{
    background: none;
    border: none;
    color: #827A73;
    font-family: 'Poppins', sans-serif;
}
.back_button_free a{
    text-decoration: none;
    color: #827A73;
    font-family: 'Poppins', sans-serif;
}

.warning_button{
    width: 150px;
    border: none;
    background: #F4DCDB;
    color: #DF3C2F;
    padding: 10px;
    border-radius: 20px;
    font-size: 15px;
    text-align: center;
    cursor: pointer; 
}
.top_right_button{
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    color: #827A73;
    font-family: 'Poppins', sans-serif;
}
.top_right_button a{
    text-decoration: none;
    color: #827A73;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: row;
}
.button_icon{
    height: 15px;
    width: auto;
    position: absolute;
    left: 75%;
}
.row_button{
    position: absolute;
    left: 90%;
}
.copy_icon{
    height: 20px;
    width: auto;
    padding: 0 10px;
}
.call_icon{
    height: 20px;
    width: auto;
}
.blue_text{
    color:#5E94FF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}
.warning_text{
    color: #DF3C2F;
}
.mid_text{
    font-size: 14px;
}
.small_text{
    font-size: 12px;
}
.no_style{
    text-decoration: none;
}
/*_______________________________ NAVIGATION*/
#bottom_nav{
    background: #E7E7E7;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    position: fixed;
    top: 82vh;
}
#bottom_nav a{
    margin: 0 12px;
}
#bottom_nav a img{
    border-radius: 20px;
}
/*_______________________________ INPUTS & FORMS*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px #F4F4F4 inset !important;
}

input:focus{
    outline: none;
}
select:focus{
    outline: none;
}
textarea:focus{
    outline:none;
}
.input_underline{
    border: none;
    border-bottom: solid 1px #827A73;
    background: none;
    height: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
.form_separator{
    margin: 2.5vh 0 1vh;
}
/*_______________________________ TEXT */
.accent_text{
    font-family: 'Cormorant Infant', serif;
    text-align: center;
}
.medium_text{
    font-size: 14px;
}
.light_text{
    color: #AAA;
    font-size: 12px;
}
.regular_text{
    font-size: 15px;
}
.left{
    text-align: left;
}
.top_submit_nav{
    background: #F4F4F4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
#editPet_submit{
    background: #5E94FF;
    color: #F4F4F4;
}
/*_______________________________ SIZES */
.w100{
    width: 100%;
}
.w90{
    width: 90%;
}
.w70{
    width: 80%;
}
.w77{
    width: 70%;
}
/*_______________________________ MARGINS & PADDINGS */
.t15{
    margin-top: 15vh;
}
.t7{
    margin-top: 7.5vh;
}
.t5{
    margin-top: 5vh;
}
.t2{
    margin-top: 2.5vh;
}
.b2{
    margin-bottom: 2.5vh;
}
.b5{
    margin-bottom: 5vh;
}
.b7{
    margin-bottom: 7.5vh;
}
.no_margin{
    margin: 0;
}
/*_______________________________ DISPLAYS & CONTAINERS*/
.hidden_element{
    display: none;
}
.visible_element{
    display: flex;
}
.row{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.row_left{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.column{
    position: relative;
    display: flex;
    flex-direction: column;
}
.center_elements{
    align-items: center;
}
.centered_text{
    text-align: center;
}
.medium_icon{
    height: 40px;
    width: auto;
    margin-right: 5%;
}
.medium_small_icon{
    height: 25px;
    width: auto;
    margin-right: 5%;
}
.small_icon{
    height: 15px;
    width: auto;
    margin-right: 5%;
}
.reset_position{
    position: relative;
}
/*_______________________________ POP-UPS*/
.generic_pop_up{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.90);
    backdrop-filter: blur(5px); 
    z-index: 1;
}
/*_______________________________ SWITCH*/
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #827A73;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #000;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 28px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }



/*_______________________________ INTERFACE CONNEXION*/
#section_connexion{
    padding: 15vh 2.5% 0 2.5%;
    height: 85vh;
    text-align: center;
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#connexion_logo{
    margin-bottom: 100px;
    width: 60vw;
}
#form_connexion{
    display: flex;
    flex-direction: column;
    width: 70%;
}
#form_connexion input{
    margin-bottom: 30px;
}
#connect_button{
    margin-top: 20px;
    border: none;
    background: #121212;
    color: #F4F4F4;
    text-transform: uppercase;
    padding: 15px 0;
}
#password_row{
    display: flex;
    flex-direction: row;
}
.visibility_button{
    height: 20px;
    width: auto;
    position: absolute;
    left: 90%;
    top: 20%;
}

/*_______________________________ INTERFACE GESTION DE PROFIL*/
#section_pet_management{
    padding: 5vh 2.5%;
    min-height: 90vh;
    text-align: center;
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
#section_pet_management h1{
    margin: 5vh 0 7vh;
}
.profile_element{
    position: relative;
    width: 80%;
    padding: 5px;
    margin: 0 0 10px;
    background: #000;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.profile_mini_photo{
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 40px;
    margin: 0 10% 0 5%;
}
.profile_info{
    color: #EDE7E1;
    text-align: left;
}
.profile_info h3{
    margin: 5px 0 0;
    font-size: 20px;
    font-weight: 500;
}
.profile_info p{
    margin: 0;
    font-size: 12px;
}
.profile_element .button_icon{
    position: absolute;
    left: 90%;
}

/*_______________________________ INTERFACE INFORMATIONS USER*/
#section_account_management{
    padding: 5vh 2.5%;
    min-height: 90vh;
    text-align: center;
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
/*_______________________________ INTERFACE RETRIEVAL*/
#section_retrieval{
    padding: 5vh 2.5%;
    min-height: 90vh;
    text-align: center;
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
/*_______________________________ INTERFACE ENREGISTREMENT MÉDAILLE*/
.regular_section{
    background: #F4F4F4;
    padding: 10vh 2.5vw 0 2.5vw;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#medal_image{
    height: 200px;
    width: auto;
}
/*_______________________________ INTERFACE ENREGISTREMENT ANIMAL*/
#section_pet_register{
    background: #F4F4F4;
    padding: 10vh 2.5vw 2.5vh 2.5vw;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#pet_register_form{
    width: 80%;
    padding-top: 5vh;
}
#pet_register_form label{
    font-size: 17px;
    margin-bottom: 5px;
    color: #444;
}
#pet_register_form input{
    margin-bottom: 30px;
    height: 40px;
}
#pet_register_form select{
    height: 40px;
    margin-bottom: 30px;
    color: #000;
}
#pet_register_form select option{
    font-size: 15px;
    color: #000;
}
.pet_register_input_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}
#pet_notes{
    margin: 30px 0;
    padding: 15px;
    border: none;
    border-radius: 15px;
    background: #FFF;
}
.form_title{
    margin: 7.5vh 0 2vh;
    font-size: 32px;
    font-family: 'Cormorant Infant', serif;
    text-align: center;
    font-weight: 400;
}
.form_subtitle{
    margin: 0 0 5vh;
    font-family: 'Cormorant Infant', serif;
    text-align: center;
    font-size: 18px;
    color: #827A73;
}

/*_______________________________ INTERFACE PROFIL ANIMAL*/
#section_pet_profile{
    padding: 5vh 2.5%;
    min-height: 90vh;
    text-align: center;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
#profile_logo{
    width: 50%;
    height: auto;
    margin-bottom: 10vh;
}
.profile_photo{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 75px;
}
/*______________________ class only to duplicate id #profile_name style*/
.profile_name{
    margin: 10px 0 0;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
}
#profile_name{
    margin: 10px 0 0;
    font-size: 30px;
    font-weight: 400;
}
#profile_race{
    margin: 0 0 3vh;
}
#signal_button{
    width: 25%;
    margin: 0 0 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#signal_button img{
    margin-right: 5%;
}
#info_container{
    padding: 15px;
    background: #E7E7E7;
    border-radius: 20px;
}
.pet_info_row{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 15px 0;
}
.info_icon{
    height: 25px;
    width: auto;
    margin: 0 8% 2% 0;
}
.mail_fade_out{
    width: 55%;
    overflow: hidden;
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pet_info_row p{
    text-align: left;
    font-size: 12px;
    margin: 0;
}
.pet_info_row .small_button{
    position: absolute;
    left: 75%;
    width: 20%;
}
.pet_note{
    text-align: left;
}
.pet_note h3{
    margin: 3vh 0 1vh;
    color: #827A73;
    font-weight: 500;
    font-size: 18px;
}
.pet_note p{
    margin: 0;
    color: #888;
}
#profile_address{
    width: 50%;
}
.profile_phones{
    margin: 0;
}
.profile_mail{
    margin: 0;
}
#profile_mail1{
    width: 80%;
    margin-right: 5%;
    overflow: hidden;
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#profile_mail2{
    width: 80%;
    margin-right: 5%;
    overflow: hidden;
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#mail1{
    overflow: hidden;
}
#mail2{
    overflow: hidden;
}

/*_______________________________ Phone Pop-UP */
#phone_pop_up{
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 80vh;
    padding: 10vh 10vw;
    align-items: center;
    background-image: linear-gradient(to bottom, #FFF, rgba(255,255,255,0.7));
    backdrop-filter: blur(5px);
}
.pop_up_middle_elements{
    width: 100%;
    padding: 5% 10px;
    background: #E7E7E7;
    border-radius: 20px;
}
.phone_row{
    position: relative;
    display: flex;
    flex-direction: row;
    font-size: 20px;
    align-items: center;
}
.phone_row .small_button{
    position: absolute;
    left: 75%;
    padding-left: 25px;
    padding-right: 25px;
}
.phone_row p{
    margin-left: 5%;
}

/*_______________________________ Mail Pop-UP */
#mail_pop_up{
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 80vh;
    padding: 10vh 10vw;
    align-items: center;
    background-image: linear-gradient(to bottom, #FFF, rgba(255,255,255,0.7));
    backdrop-filter: blur(5px);
}

/*_______________________________ Welcome */
#welcome_section{
    padding: 0 2.5%;
    min-height: 90vh;
    text-align: center;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
#welcome_div{
    position: relative;
    padding: 10vh 2.5vw 0 2.5vw;
    height: 90vh;
    width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F4F4F4;;
}
#welcome_div p{
    padding: 0 10%;
    font-size: 20px;
    margin-bottom: 40px;
}

/*_______________________________ Edit options */
#section_edit_options{
    padding: 10vh 2.5%;
    min-height: 90vh;
    text-align: center;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

#update_image_button{
    height: 20px;
    width: 50%;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    text-align: center;
    transform: translateY(-70%);
}
#image_selection{
    transform: scale(2);
    opacity: 0;
}
/*_______________________________ Rest pwd section */
#section_reset_pwd{
    padding: 5vh 2.5%;
    min-height: 90vh;
    text-align: center;
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

/*_______________________________ Rest pwd section */
#section_404{
    padding: 5vh 2.5%;
    min-height: 90vh;
    text-align: center;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}