@charset "UTF-8";

.jppi_filtersave {
    display: flex;
    max-width: 100%;
    padding: 30px;
    background-color: #f8f8f8;
}

.jppi_filtersave__save {
    color: #ffffff;
    /*
    display: flex;
    width: 60px;
    */
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: #505050;
    transition: all 0.2s;
}

.jppi_filtersave__save:hover {
    background-color: var(--color-secondary);
}

.jppi_filtersave__cancel {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 40px;
    background-color: #505050;
    transition: all 0.2s;
}

.jppi_filtersave__cancel:hover {
    background-color: var(--color-secondary);
}

.jppi_filtersave__buttonArea {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.jppi_filtersave__buttonArea>*+* {
    margin-left: 20px;
}

.jppi_filtersave__title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.nd_tooltip {
    position: relative;
}

.nd_tooltip .nd_tooltiptext {
    visibility: hidden;
    width: 110px;
    background-color: #505050;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 120%;
    font-size: 1.2rem;
}

.nd_tooltip .nd_tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: 100%;
    /* At the top of the tooltip */
    left: 50%;
    margin-left: -15px;
    border-width: 15px;
    border-style: solid;
    border-color: transparent transparent #505050 transparent;
}

.nd_tooltip:hover .nd_tooltiptext {
    visibility: visible;
}


.nd_p_comment {
    /*
    width: 80%;
    */
    width: 450px;
    height: 50px;
    padding: 10px 44px 10px 10px;
    background-color: #ffffff;
    border: solid #cccccc 1px;
    transition: all 0.2s;
}

@media screen and (max-width: 768px) {
    .nd_p_comment {
        width: 300px;
    }
}

.nd_p_comment:focus {
    border: solid var(--color-secondary) 1px;
}

