:root {
    --yellow: #ffe400;
}

.preloader {
    display: none;
    /*фиксированное позиционирование*/
    position: fixed;
    /* координаты положения */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* фоновый цвет элемента */
    background: #e0e0e0;
    /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
    z-index: 1001;
}

.preloader__row {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: #337ab7;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}

.header-phones {
    color: black;
    display: flex;
    justify-content: space-between;
    text-align: center;
    z-index: 3;
}

.manager-feedback {
    margin-top: 10px;
    display: flex;
    z-index: 3;
}

ul.social_chats {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style: none;
    flex-wrap: nowrap;
    align-items: center;
}

ul.social_chats li {
    padding-left: 5px;
    max-width: 50%;
}

.phone-main {
    display: block;
    margin-top: 32px;
}

.phone-main a {
    display: block;
    margin-top: 10px;
}

.all-works-table {
    position: relative;
}

.all-works-table .table-head {
    padding-right: 68px;
    display: grid;
    grid-template-columns: 3fr 2fr;
}

.all-works-table .head-column-group {
    display: grid;
    grid-template-columns: 88px auto;
}

.all-works-table .work-item {
    display: grid;
    grid-template-columns: 3fr 2fr 68px;
}

.all-works-table .work-item-content {
    grid-template-columns: 88px auto;
    padding-right: 0;
}

.all-works-table .work-item-progress {
    white-space: nowrap;
    display: flex;
    gap: 5px;
}

main#all_works {
    padding-top: 100px;
}

@media screen and (max-width: 768px) {
    .all-works-table .table-head {
        grid-template-columns: auto 0px;
        align-items: center;
        position: sticky;
        top: 96px;
    }

    .all-works-table .table-head > .head-column:nth-child(2) {
        /* display: none; */
        text-align: center;
    }

    .all-works-table .work-item {
        display: grid;
        /* flex-wrap: wrap; */
        grid-template-columns: auto 60px;
    }

    .all-works-table .work-item-progress {
        /* width: 100%; */
        /* padding-bottom: 10px; */
        /* order: 1; */
        text-align: center;
        justify-content: center;
        padding-top: 30%;
    }

    /* .all-works-table .work-item-content {
        width: calc(100% - 68px);
        order: 2;
    }
    .all-works-table .work-item button {
        order: 3;
    } */
}

.modal-body .form-check {
    padding-left: 0;
    display: flex;
    justify-content: space-around;
}

.modal-body .form-check .form-check-input {
    margin-left: 5px;
}

.show-more {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 15px auto;
}

.block-no-result {
    display: block;
    margin: 15px auto;
    text-align: center;
    font-weight: 500;
}

/* 30.09.22 RS*/
.wrapper {
    overflow: initial;
}

.block-head-controls {
    position: sticky;
    top: 64px;
    margin-top: 0;
    padding-top: 16px;
    z-index: 2;
    background: #f7f7f7;
}

.block-all-works .wrap {
    display: flex;
    flex-direction: column;
    position: relative;
}

.all-works-table .work-item .work-name {
    word-break: break-word;
}

.all-works-table .work-item .work-name.first-row {
    padding-right: 20px;
}

.all-works-table .work-item .work-name.first-row button {
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
    .all-works-table .table-head {
        top: 130px;
        background: #f7f7f7;
        padding-bottom: 15px;
    }

    .all-works-table .table-head > .head-column {
        white-space: nowrap;
    }
}

.cart {
    position: fixed;
    width: 100vw;
    max-width: 480px;
    top: 0;
    bottom: 0;
    right: -480px;
    background-color: #fff;
    transition: 0.3s;
    border-left: 1px solid transparent;
    z-index: 4;
    padding-top: 64px;
}

@media screen and (max-width: 768px) {
    .cart {
        max-width: 100vw;
        right: -100vw;
        border: 0;
        padding-top: 110px;
    }
}

.cart.open {
    right: 0;
    border-color: rgba(154, 154, 154, 0.5);
}

@media screen and (max-width: 768px) {
    .cart.open .cart-btn {
        right: 11px;
        top: 75px;
        bottom: initial;
        width: 50px;
        height: 50px;
        background-color: transparent;
        font-size: 0;
        background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='25' width='25'%3E%3Cg transform='translate(3.9661017,3.5677966)'%3E%3Cpath d='M -2.5783352e-4,-0.00146808 17.435473,18.212367' stroke='%23f16311' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M -2.5783352e-4,18.212367 17.435473,-0.00146808' stroke='%23f16311' stroke-width='2' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E%0A");
        background-size: 28px;
        background-position: center;
        background-repeat: no-repeat;
    }

    .cart.open .cart-btn span,
    .cart.open .cart-btn svg {
        display: none;
    }
}

.cart.open .cart-inner {
    opacity: 1;
    pointer-events: auto;
}

.cart-btn {
    background: var(--yellow);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    cursor: pointer;
    top: 90%;
    right: calc(100% + 10px);
}

.cart-btn svg {
    width: 32px;
    height: 32px;
}

@media screen and (max-width: 768px) {
    .cart-btn {
        top: initial;
        bottom: 16px;
        right: calc(100% + 16px);
    }
}

.cart-btn span {
    position: absolute;
    right: 20px;
    bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    font-size: 12px;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .cart-btn span {
        right: 12px;
        bottom: 8px;
    }
}

.cart-inner {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px 16px;
}

@media screen and (max-width: 768px) {
    .cart-inner {
        padding: 0;
    }
}

.cart-summary {
    width: 100%;
}

.cart-submit {
    margin-top: 16px;
    margin-left: auto;
    align-self: flex-end;
    width: 100%;
    border-radius: 0;
    height: 60px;
    background-color: var(--yellow);
}

.cart-table {
    width: 100%;
    margin-bottom: auto;
    border-collapse: collapse;
}

.cart-table th {
    height: 40px;
    font-size: 14px;
    text-align: center;
    vertical-align: bottom;
}

.cart-table td {
    padding: 16px 0;
    border-bottom: 1px solid rgba(154, 154, 154, 0.5);
}

@media screen and (max-width: 768px) {
    .cart-table td {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .cart-table td:first-child {
        padding-left: 10px;
    }

    .cart-table td:last-child {
        padding-right: 10px;
    }
}

.cart-product-info {
    display: flex;
    align-items: center;
}

.cart-product-info button {
    width: 36px;
    height: 36px;
    margin-right: 16px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='25' width='25'%3E%3Cg transform='translate(3.9661017,3.5677966)'%3E%3Cpath d='M -2.5783352e-4,-0.00146808 17.435473,18.212367' stroke='%23f16311' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M -2.5783352e-4,18.212367 17.435473,-0.00146808' stroke='%23f16311' stroke-width='2' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .cart-product-info button {
        width: 24px;
        height: 24px;
        background-size: 16px;
        margin-right: 10px;
    }
}

.cart-product-price {
    text-align: center;
    color: #f16311;
    font-size: 18px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .cart-product-price {
        white-space: nowrap;
        padding: 0 16px;
    }
}

.cart-product-price span {
    font-size: 12px;
}

.cart-product-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-product-quantity button {
    color: #f16311;
    font-weight: 300;
    width: 36px;
    height: 36px;
    font-size: 32px;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .cart-product-quantity button {
        width: 30px;
        height: 30px;
    }
}

.cart-product-quantity input {
    appearance: textfield;
    text-align: center;
    height: 36px;
    border: 0;
    border-bottom: 1px solid transparent;
    width: 40px;
    transition: 0.3s;
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    .cart-product-quantity input {
        font-size: 20px;
    }
}

.cart-product-quantity input:focus {
    border-color: var(--yellow);
}

.cart-summary {
    margin-top: 48px;
}

.cart-total {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .cart-total:not(:only-child) {
        margin-top: 16px;
    }
}

.cart-total span {
    color: #f16311;
    margin-left: 10px;
}

.btn.btn-warning {
    background: #ffe400;
}

.blue {
    color: #2e91f6;
}

.green {
    color: #2ab27b;
}

.w-100 {
    width: 100%;
}

.p-0 {
    padding: 0;
}

.block-one-act.online-job .act-head {
    margin-top: 0;
    padding-bottom: 12px;
}

.block-one-act.online-job .act-head-group-value {
    margin-top: 0;
}

.block-one-act.online-job .act-head-group:not(:last-child) {
    margin-bottom: 0;
}

.block-one-act.online-job .act-category {
    margin-top: 12px;
}

.block-one-act.online-job .act-category-title {
    font-size: 16px;
}

.block-one-act.online-job .act-category-table td:first-child {
    width: 60%;
}

.telegram-connect-block svg {
    width: 31px;
}

.telegram-connect-block .links-block {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
}

/* 20.11.22 RS */
.block-work-acts .act-item {
    min-width: 250px;
}

.a5eca5 {
    background-color: #a5eca5 !important;
}

.d8e2d8 {
    background-color: #d8e2d8 !important;
}

.logo {
    max-width: 100px;
}

.font-size-18 {
    font-size: 18px;
}

.font-size-14 {
    font-size: 14px!important;
}

.font-color-blue {
    color: #17a2b8!important;
}

/* .block-work-acts .list-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 3fr));
	gap: 16px;
}
.block-work-acts .act-item:not(:last-child) {
	margin-right: 0;
} */