/* CSS */

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1000;
}

.livix-logo {
    min-width: 10vw;
    max-width: 30vw;
    z-index: 500;
    position: relative;
}

.clip1 {
    max-width: 70%;
    clip-path: ellipse(40% 50% at center);
    transition: clip-path 0.5s;
}

.clip1:hover {
    clip-path: ellipse(50% 50% at center);
}

.grow {
    transition: all .2s ease-in-out;
}

.grow:hover {
    transform: scale(1.4);
}


.button-86 {
    all: unset;
    width: 80% !important;
    height: 80px;
    background: transparent;
    border: none;
    position: relative;
    color: rgba(240, 240, 240, 0.815);
    font-weight: bold;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1;
    padding: 10px 20px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-86::after,
.button-86::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
}

.button-86::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.button-86-quote::before {
    background: hsla(221, 90%, 24%, 0.781);
}

.button-86-work::before {
    background: hsla(138, 61%, 51%, 0.699);
}

.button-86::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
}

.button-86:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
}

.button-86:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
}

.button-86:active::after {
    transition: 0s;
    transform: translate(0, 5%);
}

dialog::backdrop {
    background: hsla(0, 0%, 0%, 0.7);
}

dialog {
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    height: 80%;
}

#quoteDialog {
    background: hsla(214, 76%, 30%, 0.699);
}

#quoteDialogError {
    color: orange;
    font-weight: bold;
    margin: 10px;
    justify-content: center;
}

#closeQuoteDialog {
    background-color: lightsalmon;
}

#sendQuoteEmail {
    background-color: lightgreen;
}

#workDialog {
    background: hsla(155, 61%, 47%, 0.753);
}
#workDialogError {
    color: red;
    font-weight: bold;
    margin: 10px;
    justify-content: center;
}

#closeWorkDialog {
    background-color: lightsalmon;
}

#sendWorkEmail {
    background-color: lightgreen;
}


#mailconfirm {
    color: skyblue;
    font-size: 2rem;
    font-weight: bold;
    margin: 10px;
    justify-content: center;
}