.contact-text {
    position: fixed;
    bottom: 35px;
    left: 85px;
    font-size: 1vw;
    max-width: 15vw;
    color: #ffffff;
}

.contact-box {
    display: flex;
    align-items: center;
    padding: 1.04vw;
    border: 0.10vw solid #4b85ab;
    border-radius: 0.52vw;
    background: #1e1e1e;
    animation: box-shake-interval 5s infinite;
    position: fixed;
    bottom: 1.41vw;
    left: 1.41vw;
    transform: scale(2);
}

@keyframes box-shake-interval {
    0%, 1% {
	transform: scale(2) rotate(0deg);
    }
    2%, 3% {
	transform: scale(2) rotate(-20deg);
    }
    4%, 5% {
	transform: scale(2) rotate(20deg);
    }
    6%, 7% {
	transform: scale(2) rotate(-20deg);
    }
    8%, 9% {
	transform: scale(2) rotate(0deg);
    }
    10%, 100% {
	transform: scale(2) rotate(0deg);
    }
}
#contact-widget {
    position: fixed;
    bottom: 1.04vw;
    left: 1.04vw;
    max-width: 20.83vw;
    background: white;
    border: 0.05vw solid #ddd;
    border-radius: 0.42vw;
    box-shadow: 0 0.10vw 0.42vw rgba(0, 0, 0, 0.2);
    padding: 2.60vw;
    display: none;
    z-index: 999;
}
#contact-widget h2 {
    margin-top: 0;
    color: #4b85ab;
    text-align: center;
}
#contact-widget label {
    display: block;
    margin-top: 0.52vw;
    font-weight: bold;
}
#contact-widget input, #contact-widget textarea, #contact-widget select, #contact-widget button {
    width: 95%;
    margin-top: 0.26vw;
    padding: 0.52vw;
    font-size: 0.73vw;
    border: 0.05vw solid #ccc;
    border-radius: 0.26vw;
}
#contact-widget button {
    background-color: #4b85ab;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 0.78vw;
}
#contact-widget button:hover {
    background-color: #3a6a8a;
}
#contact-button {
    position: fixed;
    bottom: 18px;
    left: 18px;
    background-color: #4b85ab;
    color: white;
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0.21vw 0.31vw rgba(0, 0, 0, 0.1);
    font-size: 18px;
    z-index: 1000;
}
#contact-button:hover {
    background-color: #3a6a8a;
}
#contact-button svg {
    width: 36px;
    height: 36px;
    fill: white;
    #stroke: black;
    #stroke-width: 0.5px;
}
