.widget {
    background: #1e2026;
    -webkit-box-shadow: 0 4px 4px rgb(0 0 0 / 20%);
    box-shadow: 0 4px 4px rgb(0 0 0 / 20%);
    border-radius: 9px;
    margin-bottom: 20px;
    color: #fff;
    padding: 10px;
    min-height: 60px;
}

.widget_body {
    min-height: 75px;
    border-radius: 9px 9px 0 0;
    /*border-bottom: 1px solid #30333e;*/
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.text-wrapper {
     min-width: 55px !important;
}

.select-wrapper,.text-wrapper {
    height: 40px;
    min-width: 115px;
    position: relative;
    background: rgba(43,47,54,.5);
    -webkit-box-shadow: 0 4px 4px rgb(0 0 0 / 20%);
    box-shadow: 0 4px 4px rgb(0 0 0 / 20%);
    border-radius: 3px;
    margin-left: 15px;
    margin-right: 15px;
    cursor: pointer;
}

select, input[type="number"],input[type="text"],input[type="password"]{
    height: 100%;
    display: block;
    background: rgba(43,47,54,.5);
    padding: 0 15px;
    font-weight: 700;
    font-size: 19px;
    line-height: 23px;
    color: #fff;
    border: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
    border-radius: 0;
}
select{
    width: 100%;
}

input[type="button"].bttn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 30px;
    background-color: #28292f;
    background: #28292f;
    -webkit-box-shadow: 0 4px 4px rgb(37 37 37 / 25%), 3px 3px 3px -1px rgb(0 0 0 / 16%);
    box-shadow: 0 4px 4px rgb(37 37 37 / 25%), 3px 3px 3px -1px rgb(0 0 0 / 16%);
    height: 60px;
    border-radius: 30px;
    min-width: 170px;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: .2s linear;
    -o-transition: .2s linear;
    transition: .2s linear;
    border: 2px solid transparent;
    outline: 0!important;
    float:left;
}