:root {
    --primary: #111;
    --secondary: #fd0;
}
body {
    font-family: Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace; 
}
.wrap-home-maison {
    margin: 0 auto;
    width: 100%;
    max-width: 768px;
}
.logo-maison {
    margin: 30px auto 15px;
    text-align: center;
}
.title-maison {
    margin: 0 auto 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}
.banner img {
    width: 100%;
}
.form-maison-container .form-title {
    max-width: 400px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.form-maison-container .form-control {
    background-color: #ced4da;
    max-height: 40px;
}
#infoHelp {
    max-width: 415px;
    margin: 40px auto 0;
    font-size: 14px;
    text-align: center;
}
.form-maison-container .btn-maison {
    border-color: #000 !important;
    background-color: #000 !important;
    text-transform: uppercase;
    margin: 30px auto 0;
    text-align: center;
    width: 150px;
    height: 50px;
    cursor: pointer;
}
.btn-maison-container {
    position: relative;
}
.form-maison-container .wpcf7-spinner {
    position: absolute;
    top: 40px;
}
.form-maison-container .wpcf7-not-valid-tip {
    font-size: 0.8em;
}
.form-maison-container  .wpcf7 form.invalid .wpcf7-response-output{
    border-color: #dc3232;
    text-align: center;
}
.form-maison-container .wpcf7 form.sent .wpcf7-response-output {
    text-align: center;
}
.form-maison-container .btn-primary.focus, .form-maison-container .btn-primary:focus,
.form-maison-container .btn-primary:active:focus {
    box-shadow: none !important;
}
.form-maison-container .maison-phone .wpcf7-form-control-wrap {
    position: relative;
}
.form-maison-container .phone-flag-maison {
    position: absolute;
    width: 70px;
    height: 30px;
    top: 5px;
    left: 10px;
    vertical-align: middle;
}
.form-maison-container .tel-maison {
    padding-left: 85px;
}
.form-maison-container .phone-flag-maison img {
    width: 30px;
    height: 30px;
}
.title-discover {
    font-size: 25px;
    margin: 0 auto;
    font-weight: 700;
    text-align: center;
}
.banner-discover img {
    width: 100%;
}
.store-title {
    font-weight: 700;
    font-size: 16px;
}
.store-address {
    font-size: 14px;
}
.socialmedia {
    text-align: center;
}
.socialmedia a img {
    width: 100%;
}
.socialmedia a:hover {
    text-decoration: none;
}
.socialmedia a {
    display: inline-block;
    width: 30px;
    height: 30px;
}

/* Country dropdown */
.select-box {
    position: relative;
    width: 100%;
    /* margin: 7rem auto; */
}
.select-box input {
    width: 100%;
    /* padding: 1rem .6rem; */
    font-size: 1.1rem; 
    background-color: #ced4da;
    border: .1rem solid transparent;
    outline: none;
}
.select-box .input-country {
    border: .1rem solid #ced4da;
}
input[type="tel"] {
    border-radius: 0 .5rem .5rem 0;
}
.select-box input:focus {
    border: .1rem solid var(--primary);
}
.selected-option {
    background-color: #ced4da;
    border-radius: .25rem;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.selected-option div{
    position: relative;
    width: 130px;
    padding: 0 2.8rem 0 .5rem;
    text-align: center;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.selected-option div svg{
    margin-right: 10px;
}
.selected-option div::after{
    position: absolute;
    content: "";
    right: .5rem;
    top: 10px;
    transform: translateY(-50%) rotate(45deg);
    width: .5rem;
    height: .5rem;
    border-right: .12rem solid var(--primary);
    border-bottom: .12rem solid var(--primary);
    transition: .2s;
}
.selected-option div.active::after{
    transform: translateY(0) rotate(225deg);
}
.select-box .options {
    position: absolute;
    top: 4rem;
    width: 50%;
    background-color: #fff;
    border-radius: .5rem;
    display: none;
    z-index: 1;
}
.select-box .options.active {
    display: block;
}
.select-box .options::before {
    position: absolute;
    content: "";
    left: 1rem;
    top: -1.2rem;
    width: 0;
    height: 0;
    border: .6rem solid transparent;
    border-bottom-color: var(--primary);
}
input.search-box {
    background-color: var(--primary);
    color: #fff;
    border-radius: .5rem .5rem 0 0;
    padding: 0.5rem 1rem;
}
.select-box ol {
    list-style: none;
    max-height: 23rem;
    overflow: overlay;
    padding-left: 0;
}
.select-box ol::-webkit-scrollbar {
    width: 0.6rem;
}
.select-box ol::-webkit-scrollbar-thumb {
    width: 0.4rem;
    height: 3rem;
    background-color: #ced4da;
    border-radius: .4rem;
}
.select-box ol li {
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.select-box ol li div {
    display: flex;
    align-items: center;
}
.select-box ol li.hide {
    display: none;
}
.select-box ol li:not(:last-child) {
    border-bottom: .1rem solid #ced4da;
}
.select-box ol li:hover {
    background-color: #ccc;
}
.select-box ol li .country-name {
    margin-left: .4rem;
}
@media only screen and (max-width: 767px) {
    .select-box .options {
        width: 100%;
    }
}