@keyframes widgetIn {
    from {
        opacity: 0;
        right: -1000px;
    }
    to {
        opacity: 1;
        right: 30px;
    }
}

div.widget-form {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    animation: 1s widgetIn ease;
    z-index: 999999999;
}

div.image-widget {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    border-color: #1bc8b0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #1bc8b0;
    transition: opacity 150ms ease-in-out, box-shadow 250ms ease-in-out;
}

div.image-widget i {
    font-size: 40px;
    color: #fff;
    text-shadow: 2px 2px #1BC8B0, -2px -2px #1BC8B0;
}
div.image-widget:hover {
    cursor: pointer;
    opacity: 0.8;
    box-shadow: #1bc8b0 0 0 5px;
}

div.widget-form-top {
    width: 90%;
    height: 45%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
div.widget-form-bottom {
    width: 90%;
    height: 45%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: white;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

div.widget-form-square {
    width: 15px;
    height: 15px;
    border-style: solid;
    border-width: 2px;
    border-color: #1bc8b0;
    border-radius: 1px;
}

div.show-section {
    position: absolute;
    height: 180px;
    max-width: 300px;
    min-width: 250px;
    bottom: 115%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #008f7c;
    border-radius: 12px;
    box-shadow: #008f7ca1 0 0 15px;
}

div.show-section form {
    width: 100%;
}
img.position-abs-image,
div.show-section i {
    width: 40px;
    position: absolute;
    height: 40px;
    padding: 7px;
    left: 5%;
    border-radius: 10px;
    border-style: solid;
    border-color: white;
    border-width: 1px;
    color: #fff;
    font-size: 25px;
}

div.div-btn-layout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    background-color: #1bc8b0;
}
div.div-btn-layout-second {
    position: relative;
}

div.div-info-about-error {
    position: absolute;
    bottom: 120%;
    background-color: black;
    box-shadow: black 0 0 5px;
    border-radius: 4px;
    color: rgb(255, 0, 0);
    width: 95%;
    min-height: 30px;
    font-size: 14px;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

div.div-info-about-error::after {
    width: 0;
    height: 0;
    content: "";
    position: absolute;
    top: 100%;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid black;
    cursor: default;
}

div.div-btn-layout:nth-child(1) {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
div.div-btn-layout-last {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
input.email-input {
    width: 100%;
    min-height: 60px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 18px;
    font-family: "Karla", Arial, Helvetica, sans-serif !important;
}

@keyframes blur {
    from {
        backdrop-filter: blur(0px);
    }
    to {
        backdrop-filter: blur(10px);
    }
}

div#backdrop-image {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    backdrop-filter: blur(10px);
    z-index: 999999;
    animation: 150ms blur ease;
}

input.send-form-data-btn {
    min-height: 60px;
    padding: 5px;
    width: 100%;
    border-style: none !important;
    background: transparent !important;
    font-size: 18px;
    font-family: "Karla", Arial, Helvetica, sans-serif !important;
    font-weight: 500;
    color: white;
}

span.href-copy-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    width: 100%;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    color: white;
    padding: 5px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    cursor: pointer;
}

div.div-btn-layout:hover {
    background-color: #1bc8b1c7 !important;
}