/*-----HELP-----*/
#button-help {
    background: #2689ca !important;
    color: #fff;
    position: fixed;
    bottom: 6rem;
    right: 20px;
    display: block;
    /* visibility: hidden; */
    text-align: center;
    -o-border-radius: 2px;
    z-index: 999;
    height: 4rem;
    width: 4rem;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color 0.1s linear;
    -moz-transition: background-color 0.1s linear;
    -webkit-transition: background-color 0.1s linear;
    -o-transition: background-color 0.1s linear;
    border-radius: 50px;
    cursor: pointer;
    transition: 1s;
}

#button-help i {
    font-size: 22px;
}

#button-help:hover {
    background: linear-gradient(to bottom right, #fff, #fff) !important;
    color: #2689ca;
    border: 2px solid #2689ca;
}

#show-help {
    position: fixed;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #2689ca;
    background-clip: border-box;
    box-shadow: -8px 12px 18px 0 rgb(25 42 70 / 13%);
    border-radius: 10px;
    border: 1px solid transparent;
    margin-bottom: 1.5rem;
    width: 25%;
    right: 1rem;
    padding: 0.5rem 0;
    bottom: 16%;
    z-index: 9999;
}

.arrow-down {
    border-bottom: 5px solid #2689ca;
}

.arrow-down:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 2em;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 10px solid #2689ca;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

/*-----end help button-----*/

/*-----Back to Top-----*/
#back-to-top {
    background: #2689ca !important;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 7rem;
    z-index: 99;
    display: none;
    text-align: center;
    -o-border-radius: 2px;
    z-index: 1000;
    height: 50px;
    width: 50px;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color 0.1s linear;
    -moz-transition: background-color 0.1s linear;
    -webkit-transition: background-color 0.1s linear;
    -o-transition: background-color 0.1s linear;
    border-radius: 3px;
}
#back-to-top i {
    padding-top: 15px;
    font-size: 16px;
}
#back-to-top:hover {
    background: linear-gradient(to bottom right, #fff, #fff) !important;
    color: #5964ff;
    border: 2px solid #5964ff;
}
/*-----Back to Top-----*/

@media (min-width: 1000px) and (max-width: 1599px) {
    #button-help {
        bottom: 7em;
    }

    #show-help {
        width: 50%;
        bottom: 11em;
    }
}

@media (min-width: 700px) and (max-width: 999px) {
    #button-help {
        right: 22px;
    }

    #show-help {
        width: 60%;
        bottom: 11.5em;
    }
}


@media (max-width: 699px) {
    #button-help {
        right: 22px;
    }

    #show-help {
        width: 80%;
        bottom: 11.5em;
    }
} 