#omniChannelWidgetButton {
    display: none;
}

.footer-widget {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    font-size: 12px;
}

.OpenClose_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    line-height: 0px !important;
    z-index: 9999 !important;
    border: 0;
    border-radius: 99px;
    background-color: #febf00;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: 0.3s ease-out;
    padding: 12px 12px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

@media screen and (max-width: 740px) {
    .OpenClose_btn {
        bottom: 85px;
        right: 15px;
    }
}

.form_widget {
    position: fixed;
    background-color: #fdf1cc;
    width: calc(100% - 60px);
    left: 30px;
    border: 1px solid #80808080;
    right: 30px;
    border-radius: 8px;
    bottom: 100px;
    transition: 0.3s ease-out;
    z-index: 10000;
    font-family: 'Roboto', sans-serif;

}
@media screen and (max-width: 740px) {
    .form_widget {
        bottom: 155px;
        right: 15px;
        left: 15px;
        width: calc(100% - 30px);
    }
}

@media (min-width: 768px) {
    .form_widget {
        left: auto;
        right: 30px;
        width: 300px;
    }
}

.form_widget .form_header {
    padding: 15px;

    border-radius: 10px;
    border-bottom-left-radius: 100% 100%;
    border-bottom-right-radius: 100% 100%;
    padding-bottom: 50px;
    padding-bottom: 50px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    line-height: 1.1;
    color: white;
    background-color: #febf00;
}

.form_widget .form_body {
    padding: 20px 25px 0 25px;
}

.form_btn:first-child {
    margin-top: -50px;
}

.form_widget .form_btn {
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: 54px;
    justify-content: space-between;
    background-color: #ffffff;
    border: 1px solid #80808080;
    margin-bottom: 5px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    border-radius: 25px;
}

.form_widget .form_btn:hover {
    background-color: #e7e5e5;
}

.form_widget .btn_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: #131313;
    margin: 0;
    margin-bottom: 2px;
}

.form_widget.form_closed {
    bottom: -600px !important;
    transition: 2s;
}

.animate_UpLeft {
    -webkit-animation-name: UpLeft;
    animation-name: UpLeft;
}

.animate_downLeft {
    -webkit-animation-name: downLeft;
    animation-name: downLeft;
}

.transitionup {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@-webkit-keyframes downLeft {
    to {
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0);
    }

    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes downLeft {
    to {
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0);
    }

    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes UpLeft {
    from {
        -webkit-transform: translate3d(50%, 100%, 0);
        transform: translate3d(50%, 100%, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes UpLeft {
    from {
        -webkit-transform: translate3d(50%, 100%, 0);
        transform: translate3d(50%, 100%, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}