/*
This css is related to https://cdn.jsdelivr.net/npm/intl-tel-input
The goal is to redefine some of the imported class 
    1) Because we want to customize some of the view to match the rest of our display logic ex : input field width
    2) So it does not break our logic because we have conflict with bootstrap styling
*/

/*Force input to take full width of the parent container */
.iti {
    display: block;
}

/* Fix a display problem for z-index with form-control-placeholder and bootstrap input-group focus*/
.iti--inline-dropdown:not(.iti--container) .iti__dropdown-content {
    z-index: 5;
}