#message {
    opacity: 0.92;
    width: auto;
    position: fixed;
    max-width: 222px;
    top: 2rem;
    right: 2.7rem;
    text-align: center;
    z-index: 999;
}

#message div {
    margin: 10px auto;
}

@media (max-width: 750px) {
    #message {
        opacity: 1 !important;
        bottom: 0;
        left: 0;
        top: unset !important;
        max-width: unset !important;
        width: 100vw;
    }

    #message div {
        margin: 0 auto !important;
    }
}

.modal-window {
    position: fixed;
    background-color: #00000080;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.modal-window:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal-close {
    color: #ededed;
    font-size: 80%;
    line-height: 50px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    text-decoration: none;
}

@media screen and (max-width: 750px) {
    .modal-close {
        padding-right: 2em;
        font-size: 90%;
        color: #aaa;
    }
}

#quote-estimate {
    transition: all 0.3s;
}

.tooltiptext {
    visibility: hidden;
    font-size: 10pt;
    width: 230px;
    background-color: #50525fe3;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: fixed;
    top: 60%;
    left: 28%;
    opacity: 0;
    transition: all 0.3s;
}

@media screen and (max-width: 750px) {
    .tooltiptext {
        top: 68% !important;
    }
}

#quote-estimate-info:hover+.tooltiptext {
    opacity: 1;
    visibility: visible;
}

.bg-gradient-fv {
    background-image: linear-gradient(310deg, #7928ca 0%, #27b1df 100%);
}

.text-fv {
    background-image: linear-gradient(310deg, #7928ca 0%, #27b1df 100%);
}

#canvas {
    margin: 0 auto;
    display: block;
    filter: url("#shadowed-goo");
    opacity: 0.15;
    position: absolute;
}