/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */


.contact-btn{
    display:inline-block;
    background-color:white;
    padding:6px 16px;
    border-radius:6px;
    margin-top: 25px;
}

#mobile-dropdown .contact-btn{
    display: flex;
    justify-content: left; /* Centrer horizontalement les éléments dans le conteneur */
    margin-left: 24px;
}

.popup-overlay{
    position:fixed;
    width:100%;
    height:100%;
    background:#00000060;
    display:flex;
    justify-content: center;
    align-items:center;
    z-index: 999; /* à enlever */
    top:0;
    left:0;
}
.popup-salon{
    background:white;
    border-radius:20px;
    max-width:680px;
    padding:30px;
    position:relative;
}
.popup-address p{
    margin:0;
    font-size:12px;
}
.popup-details{
    display:flex;
    width:100%;
    margin-top:10px;
}
.popup-details>div{
    flex:1
}
.popup-link{
    color: #28babf;
    text-decoration:underline;
}
.popup-link:hover{
    color:#2377a8;
    text-decoration:underline;
}
.popup-btn, .popup-salon .wpcf7-submit{
    display:inline-block;
    background-color:#28babf;
    line-height: 20px;
    padding:6px 16px;
    color:white;
    border-radius:6px;
    transition:all 0.4s ease;
}
.popup-btn:hover, .popup-salon .wpcf7-submit:hover{
    background:#2377a8;
    color:white;
}
.popup-header{
    border-bottom:1px solid #28babf;
    margin-bottom:20px;
}
.popup-header h3{
    margin-bottom:5px;
}
.popup-close{
    position:absolute;
    top:-5px;
    right:-5px;
    border-radius:20px;
    height:20px;
    width:20px;
    border:1px solid black;
    background:white;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:all 0.4s ease;
}

.popup-close:hover{
    transform:rotate(180deg);
}

.popup-informations{
    font-weight:bold;
    margin-top:20px;
    margin-bottom:10px;
    border-bottom: 1px solid #28babf;
}
