#helpmeForm {
    position: absolute;
    z-index: 5;
    border-radius: 2vmin;
    top: 10vh;
    left: calc((100vw - 595px) / 2);
    width: 595px;
    min-height: 100px;
    background-color: #ffffff;
    overflow-y: hidden;
    overflow-x: hidden;
    box-shadow: 0px 0px 18px rgba(52, 52, 52, 0.2);
}

#formHelpNameFirst,
#formHelpNameLast,
#formHelpEmail,
#formHelpPhone,
#formHelpMessage {
    border-color: #b5bdc7;
    border-width: 1px;
    border-style: solid;
    padding-left: 16px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    height: 46px;
}

#formHelpMessage {
    width: 100%;
    padding: 10px 16px;
    height: auto;
}

#formHelpMessage:active {
    border-color: #b5bdc7;
    border-width: 1px;
    border-style: solid;
}

#formHelpContainer {
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    padding: 20px 30px;
}

#formHelpText {
    flex-basis: 100%;
    margin: 10px 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#formHelpMijTitle {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
}

#formHelpMijDescription {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}

#inputFormHelpMijHulpNodig {
    flex-basis: 100%;
    margin-right: 0;
}

#checkBoxtextHelpForm {
    color: rgba(131, 145, 163, 1);
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}

#formHelpButton {
    width: 238px;
    height: 48px;
    text-align: center;
    color: white;
    margin-top: 20px;
    cursor: pointer;

    background-color: #17181b;

    border: none;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 45px;

    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

#formHelpRequest {
    width: 100%;
    padding: 30px;
    text-align: center;
}

#formHelpRequestButton {
    cursor: pointer;
    position: relative;
    margin: 20px auto;
    text-align: center;
    width: 80%;
    color: white;
    background-color: #17181b;
    border: none;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 35px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

#closeCrossHelp {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 22px;
    width: 22px;
    background-image: url("../css/cross.png");
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    z-index: 100;
}

@media screen and (max-width: 768px) {
    #helpmeForm {
        width: 90%;
        left: 5%;
    }
}

@media screen and (max-width: 520px) {
    #helpmeForm {
        width: 100%;
        left: 0;
    }

    #formHelpContainer {
        padding: 20px;
    }
}