/*
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 */

/* réglages du bouton contact */
.contact-btn{
    display:inline-block;
    background-color:#2377A8;
    padding:6px 16px;
    border-radius:6px;
    margin-top: 22px;
    font-size: 15px;
    vertical-align: baseline;
    color: #fff;
}
@media (max-width: 850px) {
  .contact-btn {
  background-color:#fff ;
  color: #333;
  padding-left: 40px;
  margin-top: 0px;
  padding-top: 11px;
  padding-bottom: 11px;
  }
}
@media (max-width: 850px) {
  .contact-btn:hover {
  color: #3e79e8 !important;
  }
}

@media (max-width: 850px) {
#mobile-dropdown ul {
  border-bottom: 1px solid rgba(0,0,0,.035);
  }
}

.contact-btn:hover{
 color:#5fddc8;
}
.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;
}
