.pretty_checkbox {
    display: none;
}
.pretty_checkbox + label {
    cursor: pointer;
    /*padding-left: 50px;*/
    padding-left: 64px;
    position: relative;
    font-family: tahoma, sans-serif, arial;
    /*line-height: 23px;*/
    line-height: 32px;
    font-size: 19px;
}
.pretty_checkbox + label::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    vertical-align: middle;
    padding: 0;
    /*height: 24px;*/
    height: 32px;
    /*width: 36px;*/
    width: 60px;
    margin: 0 5px 0 0;
    /*border: 1px solid #dadada;*/
    border: 1px solid #737373;
    /*border-radius: 12px;*/
    border-radius: 15px;
    background: #dddddd;
}
.pretty_checkbox + label::before,
.pretty_checkbox + label::after {
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.pretty_checkbox + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    /*width: 22px;*/
    width: 30px;
    /*height: 22px;*/
    height: 30px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #dadada;
    box-shadow: 0 3px 3px rgba(140, 140, 140, .1);
}
.pretty_checkbox:checked + label::before {
    background: #e08f40;
    border-color: #e08f40;
}
.pretty_checkbox:checked + label::after {
    /*left: 13px;*/
    left: 29px;
}
.row_flex-end{
    display: flex;
    justify-content: flex-end;
}