@media screen and (min-width: 960px){
    .call{
        display: none;
    }

    #contentConsultant{
        z-index: 1;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 300px;
        background-color: rgb(188, 170, 255);
    }

    #menuConsultant{
        padding-top: 6px;
        padding-bottom: 6px;
        background-color: blue;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: row;
    }
}

@media screen and (min-width: 760px) and (max-width: 959px){
    .call{
        display: none;
    }

    #contentConsultant{
        z-index: 1;
        position: fixed;
        bottom: 0;
        right: 6;
        width: 300px;
        background-color: rgb(141, 133, 250);
    }

    #menuConsultant{
        padding-top: 6px;
        padding-bottom: 6px;
        background-color: blue;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: row;
    }

}

@media screen and (max-width: 759px){
    .call{
        z-index: 1;
        position: fixed;
        top: 100px;
        right: 6px;
        width: 150px;
    }

    .aCall{
        font-size: 40px;
        color: red;
    }

    #contentConsultant{
        z-index: 1;
        position: fixed;
        bottom: 0;
        right: 0;
        width: 70%;
        background-color: rgb(188, 170, 255);
    }

    #menuConsultant{
        padding-top: 2px;
        padding-bottom: 2px;
        background-color: blue;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: row;
    }
}

#titleConsultant{
    width: 92%;
    padding-top: 10px;
    color: white;
    font-size: 20px;
    text-align: center;
}

#closeConsultant{
    float: right;
    padding-right: 15px;
    color: red;
    font-size: 35px;
    width: 8%;
}

#closeConsultant:focus {
  color: black;
  text-decoration: none;
}

#consultantAjax{
    width: 100%;
    padding-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
}

.bold{
    font-weight: bold;
}

.pointer{
    cursor: pointer;
}