@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff"), url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff"), url("../fonts/OpenSans-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ubuntu";
    src: url("../fonts/Ubuntu-Medium.woff2") format("woff2"), url("../fonts/Ubuntu-Medium.woff") format("woff"), url("../fonts/Ubuntu-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
/*--------------------------------------------html,body-----------------------------------*/
html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans";
    font-weight: 400;
    background: #F5F5F5;
    font-style: normal;
    line-height: normal;
}
:root {
    --main: #0D74BB;
    --bg: #ECECEC;
    --hover: #E7F1F8;
    --white: #FFF;
    --table_line: #F8F8FA;
    --lines: #D9D9D9;
    --table_bg: #F6F9FA;
    --text-inactive: #6C6D70;
    --common-placeholder: #6C6D70;
    --text-inactive-border: #A8A8A8;
    --common-primary: #0A1729;
    --Secondary-Red: #DC3445;
    --Primary-Dark: #181939;
    --red-text: #DC0032;
    --red-border: #DC0032;
}
/*--------------------------------------------wrapper-------------------------------------*/
.wrapper {
    min-height: 100vh;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
}
/*--------------------------------------------header----------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 150;
    background: var(--common-primary);
}

.header__wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding: 22px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.menu-item a {
    padding: 15px;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 0.021px;
    text-decoration: none;
    -webkit-transition: color 0.3s ease-in;
    transition: color 0.3s ease-in;
}

.menu-item:hover a {
    color: var(--main);
    -webkit-transition: color 0.3s ease-in;
    transition: color 0.3s ease-in;
}

.menu-item.current a {
    color: var(--main);
}

.header__right-box.--estimate-style{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 8px;
}

.--estimate-style .header__help-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-image: url("../img/icons/help.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.--estimate-style .user-profile {
    position: relative;
}

.--estimate-style .user-profile__user {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    cursor: pointer;
    gap: 8px;
}

.--estimate-style .user-profile__user-name {
    color: var(--white);
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.021px;
}

.--estimate-style .user-profile__chevron-icon {
    width: 20px;
    height: 20px;
    background-image: url("../img/icons/chevron-icon.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}

.--estimate-style .user-profile__chevron-icon.active {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}

.--estimate-style .user-profile__window {
    display: none;
    position: absolute;
    top: 45px;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 200px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 6px;
    background: var(--white);
    -webkit-box-shadow: 3px 6px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 3px 6px 20px 0px rgba(0, 0, 0, 0.15);
    z-index: 160;
    list-style: none;
}

.--estimate-style .user-profile__window.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.--estimate-style .user-profile__window-top {
    padding: 15px 14px;
    border-bottom: 0.5px solid #C4C4C4;
}

.--estimate-style .user-profile__window-bottom {
    padding: 15px 14px;
}

.--estimate-style .user-profile__window-top a, .user-profile__window-bottom a {
    color: var(--common-primary);
    font-family: Ubuntu;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.021px;
    text-decoration: none;
    cursor: pointer;
}
/*--------------------------------------------footer----------------------------------------*/
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--common-primary);
  }
  
  .footer__wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding: 12px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 99px;
    height: 29px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background-image: url("../img/logo.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
  }
/*--------------------------------------------page----------------------------------------*/
.page {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-top: 66px;
    padding-bottom: 55px;
}
/*--------------------------------------------container-----------------------------------*/
.--estimate-style .container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1199.98px) {
    .--estimate-style .container {
        padding: 0 15px;
    }
}
/*--------------------------------------------breadcrumbs----------------------------------*/
.breadcrumbs-wrapper.--estimate-style {
    position: relative;
    margin: 0 auto;
    width: 100%;
    padding: 12px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--white);
}

.breadcrumbs.--estimate-style{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 16px;
}

@media (max-width: 1199.98px) {
    .breadcrumbs-wrapper.--estimate-style{
        padding: 12px 0 0 0;
    }
    .breadcrumbs.--estimate-style {
        padding-bottom: 12px;
        overflow-x: auto;
    }
}

.breadcrumbs * {
    line-height: 1;
}

.breadcrumbs.--estimate-style li {
    white-space: nowrap;
    display: inline;
    font-size: 18px;
    margin-right: 8px;
}

.breadcrumbs.--estimate-style li:last-child {
    color: var(--common-primary);
    font-size: 13.3px;
    font-style: normal;
    font-weight: 400;
    line-height: 150.376%;
}

.breadcrumbs.--estimate-style li a {
    text-decoration: none;
    color: var(--common-primary);
    font-size: 12.365px;
    font-style: normal;
    font-weight: 700;
    line-height: 161.749%;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.breadcrumbs.--estimate-style li a:hover {
    color: var(--main);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.breadcrumbs.--estimate-style li:not(:first-child)::before {
    display: inline;
    content: "/";
    text-decoration: none;
    color: #6C757D;
    font-size: 13.3px;
    font-style: normal;
    font-weight: 300;
    line-height: 150.376%;
    margin-right: 8px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.content {
    position: relative;
    max-width: 100%;
}

.content__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.control-block.--estimate-style{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
    gap: 15px;
    padding-left: 5px;
}
@media (max-width:991px){
    .control-block.--estimate-style{
        flex-wrap: wrap;
        padding-left: 0px;
    }
}
.control-block__filters.--estimate-style{
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 480px;
    width: 100%;
}
.--estimate-style .control-block__label{
    color: #000;
    font-size: 13.3px;
    font-style: normal;
    font-weight: 400;
    line-height: 150.376%;
    white-space: nowrap;
}
.--estimate-style .field {
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.38);
    background: var(--white);
    outline: none;
    width: 100%;
    min-width: 115px;
    height: 40px;
    padding: 10px 8px;
    color: rgba(0, 0, 0, 0.87);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.021px;
}
.--estimate-style .field::placeholder{
    color: rgba(0, 0, 0, 0.87);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.021px;
}
.--estimate-style .field.--select{
    display: flex;
    align-items: center;
    max-width: 380px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../img/icons/expand_more_black.svg");
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center right calc(5px);
    cursor: pointer;
}
.--estimate-style .field.--select.--select-text-style{
    color: var(--main);
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: 12%;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.--estimate-style .field.--select.--select-td{
    min-width: 80px;
    max-width: 100%;
}
.--estimate-style .field.--select.--max-width-50{
    max-width: 50%;
}
.control-block__buttons.--estimate-style {
    display: flex;
    align-items: center;
    gap: 10px;
}
.--estimate-style .button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 40px;
    padding: 16px 13px;
    white-space: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--main);
    color: var(--white);
    border: 1px solid var(--main);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0.175px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.--estimate-style .button:disabled {
    background-color: rgba(13, 116, 187, 0.50);
    border-color: rgba(13, 116, 187, 0.50);
}

@media (max-width: 1399.98px) {
    .--estimate-style .button {
        min-width: 20%;
    }
}

@media (max-width: 1199.98px) {
    .--estimate-style .button {
        min-width: 30%;
    }
    .control-block__buttons.--estimate-style .button{
        min-width: 20%;
    }
}

@media (max-width: 767.98px) {
    .--estimate-style .button {
        min-width: 48%;
    }
    .control-block__buttons.--estimate-style .button{
        min-width: 48%;
    }
}

@media (max-width: 575.98px) {
    .--estimate-style .button {
        min-width: 100%;
    }
    .control-block__buttons.--estimate-style .button{
        min-width: 100%;
    }
}

.--estimate-style .button:hover {
    color: var(--main);
    background: var(--white);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.--estimate-style .button.--cancel {
    background: var(--Secondary-Red);
    border: 1px solid var(--Secondary-Red);
}
.--estimate-style .button.--cancel:hover{
    color: var(--Secondary-Red);
    background: var(--white);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.--estimate-style .button.--send {
    color: var(--Primary-Dark);
    background: var(--white);
    border: 1px solid var(--Primary-Dark);
}
.--estimate-style .button.--send:hover{
    color: var(--white);
    background: var(--Primary-Dark);
    border: 1px solid var(--Primary-Dark);
}
.--estimate-style .button.--add {
    color: var(--Primary-Dark);
    background: var(--white);
    border: 1px solid var(--Primary-Dark);
    padding-left: 40px;
    background-image: url("../img/icons/add.svg");
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center left calc(8px);
}
.--estimate-style .button:disabled:hover {
    background-color: rgba(13, 116, 187, 0.50);
    border-color: rgba(13, 116, 187, 0.50);
    color: var(--white);
    cursor: auto;
}
.content-row.--estimate-style {
    display: flex;
    width: 100%;
    gap: 20px;
}
.--estimate-style .content-row__item {
    display: flex;
    width: 100%;
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.06);
    margin-bottom: 40px;
}
@media (max-width:1199.98px){
    .--estimate-style .content-row__item{
        margin-bottom: 20px;
    }
    .--estimate-style .content-row__item.--small .table{
        width: 100%;
    }
}
.--estimate-style .content-row__item.--big {
    display: flex;
    max-width: 1485px;
}
.--estimate-style .content-row__item.--big.--max-width-100{
    max-width: 100%;
}
.--estimate-style .content-row__item.--small.--display-none{
    display: none;
}
.--estimate-style .table-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.--estimate-style .table-title {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    color: #002333;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.024px;
    padding: 18px;
    border-radius: 6px;
    background: var(--white);
}
@media (max-width:575px){
    .--estimate-style .table-title{
        flex-direction: column;
    }
    .--estimate-style .content-row__item.--small .table{
        width: 100%;
    }
}
.--estimate-style .table {
    height: 100%;
    width: 100%;
    color: var(--common-primary);
    font-size: 13.196px;
    font-style: normal;
    font-weight: 400;
    line-height: 151.56%;
    text-align: left;
    border-collapse: collapse;
}
.--estimate-style .table thead th{
    padding: 23px;
    color: #6C6D70;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.048px;
    border-top: 0.8px solid rgba(0, 0, 0, 0.12);
    border-bottom: 0.8px solid rgba(0, 0, 0, 0.12);
}
.--estimate-style .table tbody td{
    padding: 28px 23px;
    white-space: nowrap;
    vertical-align: middle;
}
.--estimate-style .--big .table tbody td:nth-child(2){
    white-space: wrap;
}
.--estimate-style .table tbody tr:nth-child(even) {
    background: #F8F8FA;
}
.--estimate-style .table tbody tr:last-child {
    background: #DCDCDC;
}
.--estimate-style .--big .table tbody tr:last-child td:nth-child(2){
    font-weight: 700;
}
.--estimate-style .--small .table tbody td{
    white-space: wrap;
}
@media (max-width:1485px){
    .--estimate-style .content-row__item.--big.--add-scroll {
        max-width: 65%;
    }
    .--estimate-style .content-row__item.--big.--add-scroll .table-container{
        overflow-x: auto;
    }
    .--estimate-style .content-row__item.--big.--add-scroll .table-container .table{
        width: 1485px;
    }
}
@media (max-width: 1199.98px){
    .content-row.--estimate-style.--responsive-wrap{
        flex-direction: column;
        align-items: flex-start;
    }
    .--estimate-style .content-row__item.--big {
        max-width: 100%;
    }
        .--estimate-style .content-row__item.--big.--add-scroll {
        max-width: 100%;
    }
    .--estimate-style .content-row__item.--big.--add-scroll .table-container{
        overflow-x: auto;
    }
    .--estimate-style .content-row__item.--big.--add-scroll .table-container .table{
        width: 1200px;
    }
}
@media (max-width: 1199.98px){
    .--estimate-style .content-row__item .table-container{
        overflow-x: auto;
    }
    .--estimate-style .content-row__item .table{
        width: 1200px;
    }
}
.--estimate-style .--long .table thead tr:first-child th:first-child{
    width: 20%;
}
.--estimate-style .--long .table thead tr:first-child th:last-child{
    width: 40%;
}
.--estimate-style .--long .table tbody tr:last-child td:nth-child(1){
    font-weight: 700;
}
.--estimate-style .--long.--double-th .table thead tr:first-child th:nth-child(1) {
    width: 25%;
}
.--estimate-style .--long.--double-th .table thead tr:first-child th:nth-child(2){
    width: 40%;
}
.--estimate-style .--long.--double-th .table thead tr:first-child th:nth-child(3){
    width: 20%;
}
.--estimate-style .--long.--double-th .table thead tr:first-child th:nth-child(4){
    width: 15%;
}
.--estimate-style .--long.--double-th .table tbody td:first-child{
    white-space: wrap;
}
.--estimate-style .alert.--alert-green{
    color: #008000;
}
.--estimate-style .alert.--alert-red{
    color: #DC3445;
    font-size: 14px;
    font-weight: 400;
}
/*--------------------------------------------modal----------------------------------*/
.modal-overlay.--estimate-style {
    display: none;
    position: fixed;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -5;
}

.modal-overlay.--estimate-style.active {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    z-index: 250;
}

.--estimate-style .popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
    max-width: 570px;
    width: 100%;
    min-height: 190px;
    max-height: 80vh;
    gap: 30px;
    padding: 25px 35px;
    border-radius: 6px;
    background: #FFF;
    overflow-y: initial;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

@media (max-width: 575.98px) {
    .--estimate-style .popup {
        max-width: 90%;
    }
}

.--estimate-style .popup.popup-oy-auto {
    overflow-y: auto;
}
.--estimate-style .modal-title{
    text-align: center;
    color: var(--common-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.048px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
@media (max-width: 767.98){
        .--estimate-style .modal-title{
            font-size: 14px;
        }
}
.--estimate-style .modal-body {
    color: var(--common-primary);
    text-align: left;
    font-size: 14px;
    line-height: 130%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.--estimate-style .modal-body label{
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--common-placeholder);
    font-family: "Open Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.048px;
    gap: 8px;
}

.--estimate-style .modal-body textarea{
    height: 87px;
    padding: 10px 5px;
    color: #002333;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.021px;
    border-radius: 4px;
    border: 1px solid var(--common-placeholder);
    background: var(--white);
    resize: none;
    outline: none;
}
.--estimate-style .modal-body textarea::placeholder{
    opacity: 0.5;
    color: #002333;
}
.--estimate-style .modal-body .modal-body__item{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
@media (max-width:575px){
    .--estimate-style .modal-body .modal-body__item{
        flex-direction: column;
        align-items: flex-start;
    }
}
.--estimate-style .modal-bottom {
    margin-top: auto;
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
}

.--estimate-style .modal-bottom .buttons-block {
    display: flex;
    gap: 35px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.--estimate-style .modal-bottom .buttons-block .button {
    min-width: 15%;
}

.--estimate-style .--max-width-100{
    max-width: 100%;
}
.--estimate-style .--max-width-50{
    max-width: 50%;
}
.--estimate-style .--display-none{
    display: none;
}
.--estimate-style .--red{
    color: #DC0032;
}
.--estimate-style .modal-body .--label{
    display: flex;
    flex-direction: row;
    gap: 5px;
    width: max-content;
}
.--estimate-style .modal-body .modal-body__item .--label{
    justify-content: flex-end;
    width: 50%;
}
@media (max-width:575px){
    .--estimate-style .modal-body .modal-body__item .--label{
        justify-content: flex-start;
        width: 100%;
    }
}
.--estimate-style .--checkbox{
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.--estimate-style .content-row__item.--long .table tbody tr:last-child td:last-child{
    position: relative;
}
.--estimate-style .content-row__item.--long .table tbody tr:last-child td:last-child span{
    position: absolute;
    bottom: 3.5px;
    left: 23px;
    white-space: wrap;
    line-height: normal;
}
@media (max-width:1400px){
    .--estimate-style .content-row__item.--long .table tbody tr:last-child td:last-child span{
        font-size: 12px;
    }
}
@media (max-width:575px){
    .--estimate-style .modal-body .modal-body__item .field.--select{
        max-width: 100%;
    }
    .--estimate-style .modal-body .modal-body__item.--row{
        flex-direction: row;
        align-items: center;
    }
    .--estimate-style .modal-body .modal-body__item.--row .--label{
        width: max-content;
    }
}
.--estimate-style .modal-body.modal-body--img{
    overflow-y: auto;
}
.--estimate-style .modal-body .--docs-img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width:1199.98px){
    .control-block.--estimate-style{
        flex-wrap: wrap;
    }
}
@media (max-width:767.98px){
    .--estimate-style .table tbody td{
        padding: 10px 15px;
    }
    .--estimate-style .content-row__item.--long .table tbody tr:last-child td:last-child span{
        left: 10px;
        bottom: 2.5px;
    }
    .--estimate-style .table thead th{
        padding: 10px 15px;
    }
    .control-block__buttons.--estimate-style{
        width: 100%;
        flex-wrap: wrap;
    }
}
@media (max-width: 575px) {
    .--estimate-style .modal-bottom .buttons-block {
        flex-wrap: wrap;
        gap: 15px;
    }
    .--estimate-style .modal-bottom .buttons-block .button{
        min-width: 100%;
    }
}