.widget_wrap {
    width: 100%;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 9998;
}
.widget_in {
    margin: 0 auto;
    background-color: #333333;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
}
.widget_in > .logo {
    width: 20%;
    padding: 0px 40px;
    position: absolute;
}
.widget_form {
    width: 100%;
}
.widget_form > form {
    display: flex;
    align-items: center;
    height: 44px;
    justify-content: center;
}
.form-control {
    height: 100%;
    width: 250px;
    padding: 1px 12px;
    border-radius: 5px;
    margin: 0px 20px;
    border: none;
    box-sizing: border-box;
}
.cs_form_btn {
    height: 75px;
    background-color: #6400ff;
    width: 200px;
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
}

@media screen and (max-width: 1200px) {
    .widget_in > .logo {
        display: none;
    }
    .widget_form {
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    .form-control {
        width: 145px;
    }
}
@media screen and (max-width: 768px) {
    .form-control {
        width: 120px;
        margin: 0px 2px;
    }
    .cs_form_btn {
        top: initial;
        bottom: 0px;
        transform: none;
        width: 100%;
        height: 40px;
        font-size: 20px;
    }

    .widget_form > form {
        justify-content: center;
    }

    .widget_in {
        width: 100%;
        height: 110px;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}
