body.ucet .btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: white;
    background: black;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
}

body.ucet .btn::before {
    margin-left: 0;
}

body.ucet .btn:hover::before {
    width: 100%;
}

body.ucet .btn.red {
    background: #CB0044;
}

body.ucet .btn.red:before {
    background: black;
}

body.ucet .btn.small {
    padding: 5px 10px;
    line-height: 24px;
}

body.ucet button {
    border: none;
    cursor: pointer;
    transition: 0.3s;
    background: #CB0044 !important;
}

body.ucet button:hover {
    background: black !important;
}

body.ucet h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 16px;
    color: black;
}

body.ucet .link {
    font-size: 16px;
    color: black;
    /*text-decoration: none;*/
    /*font-weight: bold;*/
}

body.ucet input:not([type="submit"]) {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #BDBDBD;
    margin: 0 0 15px 0;
    min-width: 350px;
}

body.ucet .debt {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
    background: white;
}

body.ucet .debt .amount {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 8px 10px;
}

body.ucet .debt .amount i {
    color: #62DE00;
}

body.ucet .debt .amount.red i {
    color: #CB0044;
}

body.ucet .list {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 15px 0;
}

body.ucet .list.edit .row {
    line-height: 40px;
}

body.ucet .list .row {
    display: flex;
    align-items: center;
    line-height: 28px;
    width: 100%;
}

body.ucet .list .row .caption {
    min-width: 120px;
}

body.ucet label.checkbox,
body.ucet label.radio {
    font-size: 16px;
    margin-right: 16px;
    padding: 6px 0;
    line-height: 20px;
    display: inline-flex;
    position: relative;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 580px){
    body.ucet label.checkbox,
    body.ucet label.radio {
        flex-wrap: wrap;
        margin-bottom: 5px;
    }
    body.ucet label.checkbox .desc,
    body.ucet label.radio .desc {
        width: 100%;
        margin: -5px 0 0 34px;
        font-size: 14px;
    }
}

body.ucet label.checkbox input,
body.ucet label.radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

body.ucet label.checkbox:hover input ~ span,
body.ucet label.radio:hover input ~ span {
    background: #AAA;
}

body.ucet label.checkbox input:checked ~ span,
body.ucet label.radio input:checked ~ span {
    background: #CB0044;
}

body.ucet label.checkbox input:checked ~ span:after,
body.ucet label.radio input:checked ~ span:after {
    opacity: 1;
}

body.ucet label.checkbox span,
body.ucet label.radio span {
    margin-right: 10px;
    position: relative;
    height: 24px;
    width: 24px;
    min-width: 24px;
    transition: 0.3s;
    outline: none;
    background: #D9D9D9;
}

body.ucet label.checkbox span:after,
body.ucet label.radio span:after {
    background-image: url("/images/check.svg");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: 0.3s;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

body.ucet label.checkbox .name{
    min-width: 100px;
    font-weight: bold;
}
body.ucet label.checkbox .price{
    min-width: 64px;
    font-weight: bold;
    margin-right: 20px;
    text-align: right;
}

body.ucet .delete{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
}

body.ucet .delete:hover::before{
    width: 100%;
    margin: 0;
}

body.ucet .submit-box{
    display: flex;
    align-items: center;
}
body.ucet .submit-box .message{
    display: flex;
    align-items: center;
    padding-left: 20px;
    color: red;
}
body.ucet .submit-box .message.success{
    color: green;
}

body.ucet tr{
    position: relative;
}

body.ucet .warning{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #E7E7E7;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 44;
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}
body.ucet .warning.visible{
    opacity: 1;
    pointer-events: all;
}

body.ucet .warning button{
    padding: 0;
    color: white;
}
.button.special {
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between;
}

.button.special svg{
    width: 60px;
    margin-right: 10px;
}

.button.special:hover::before{
    width: 37px;
}

body.ucet #main .navbutton {
    position: absolute;
    top: 0;
    z-index: 999;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    background: #CB0044;
    color: white;
    height: 48px;
    transition: 0.5s;
    cursor: pointer;
    display: none;
}

@media (max-width: 767px){
    body.ucet #main .navbutton {
        display: flex;
    }
}

body.ucet #main .navbutton h3{
    color: white;
    margin: 0;
}

body.ucet #main .navbutton .close{
    display: none;
}

body.ucet #main .navbutton.active{
    background: #666;
}

body.ucet #main .navbutton.active .close{
    display: block;
}

body.ucet #main .navbutton.active .arrow{
    display: none;
}
