/* STYLE CSS */
@font-face{
	font-family:'Futura';
	src:url('/fonts/FuturaBookC.ttf') format('truetype');
	font-weight:400;
	font-style:normal
}
@font-face{
	font-family:'Futura';
	src:url('/fonts/FuturaDemiC.ttf') format('truetype');
	font-weight:700;
	font-style:normal
}
@font-face{
	font-family:'Futura';
	src:url('/fonts/FuturaLightC.ttf') format('truetype');
	font-weight:300;
	font-style:normal
}
@font-face{
	font-family:'Futura';
	src:url('/fonts/FuturaMediumC.ttf') format('truetype');
	font-weight:500;
	font-style:normal
}



:root{
    --dark: #444;
    --wh: #fff;
    --l-grey: #F3F4F6;
    --grey: #C2C0C0;
    --d-grey: #777676;
    --a-blue: #2574BC;
    --blue: #5E97CC;
    --red: #F00;
}

::placeholder {
    font-size: inherit;
}

input, select, textarea {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    border-radius: 3px;
}

body {
    font-family: 'Futura';
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

section {
    width: 100%;
    align-self: flex-start;
}

.error{
    border: 1px solid var(--red) !important;
}

.std_btn {
    display: block;
    width: max-content;
    padding: 6px 30px;
    border: 1px solid var(--a-blue);
    border-radius: 3px;
    margin-right: 20px;
    font-weight: 700;
    background: var(--wh);
    color: var(--a-blue);
    transition: 0.3s;
}

.std_btn.active, .std_btn:hover {
    background: var(--a-blue);
    color: var(--wh);
}

img, svg{
    max-width: 100%;
}

.docode_loader {
    position: fixed;
    z-index: 100;
    width: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /*display: none;*/
}

.flex-column {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

/* Header */
header {
    background: var(--l-grey);
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--grey);
}

.user_status {
    margin-right: 20px;
    font-weight: 500;
}

.user_name {
    margin-right: 20px;
}

.user_logout{
    cursor: pointer;
}

.user_logout svg,
.user_logout img{
    width: 15px;
}

.user_logout svg path {
    transition: 0.3s;
    stroke: var(--dark);
    fill: var(--dark);
}

.user_logout:hover svg path {
    stroke: var(--a-blue);
    fill: var(--a-blue);
}

.user_status {
    color: var(--dark);
}

.admin_name {
    margin: 0 40px;
    align-self: center;
}

.user_status {
    margin-left: auto;
    align-self: center;
}
/* END Header */

/* Sidebar */
.admin_sidebar_arrow {
    display: none;
}

.admin_sidebar ul {
    padding: 0;
    list-style: none;
}

.admin_sidebar {
    border-right: 1px solid var(--grey);
    border-left: 1px solid var(--grey);
    padding: 20px;
    position: relative;
    height: calc(100vh - 51px);
    overflow: auto;
}

main.admin_main {
    flex: 1 0 auto;
    display: flex;
}

.admin_sidebar ul li {
    margin-bottom: 10px;
}

.admin_sidebar ul li a {
    color: var(--dark);
    border-bottom: 1px solid transparent;
}

.admin_sidebar ul li a:hover, 
.admin_sidebar ul li a.active {
    color: var(--blue);
    border-bottom: 1px solid;
}
/* END Sidebar */

/* Dashboard */
.dashboard_wrap {
    display: flex;
    flex-wrap: wrap;
}

.dash_item {
    color: var(--blue);
    border: 1px solid var(--grey);
    padding: 10px;
    border-radius: 4px;
    margin: 10px;
    flex: 20%;
    text-align: center;
}

.main_area {
    flex: 1;
    border-right: 1px solid var(--grey);
    padding: 20px;
    height: calc(100vh - 51px);
    overflow: auto;
}

.dash_item_icon {
    position: relative;
    height: 100px;
    margin-bottom: 20px;
}

.dash_item_icon img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.dash_item:hover {
    border-color: transparent;
    box-shadow: 0 0 2px 2px rgb(0 0 0 / 10%);
}
/* END Dashboard */

/* Role Editor */
.main_tab_wrap {
    border: 1px solid var(--grey);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.main_tab_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.orders_filter,
.documents_filter,
.recomend_filter{
    font-size: 14px;
    font-weight: 400;
    flex: 1;
    display: flex;
    margin-left: auto;
    justify-content: flex-end;
}

.orders_filter label, 
.documents_filter > div,
.recomend_filter label{
    margin-left: 20px;
}

.added_new_order_all .order_row:last-child {
    margin-bottom: 0;
}

table {
    width: 100%;
    border-left: 1px solid var(--grey);
    border-top: 1px solid var(--grey);
}

table td {
    border-right: 1px solid var(--grey);
    padding: 5px;
    border-bottom: 1px solid var(--grey);
}

.pos_admin_icon {
    position: relative;
    height: 50px;
    width: 50px;
    margin-right: 10px;
    border: 1px solid var(--grey);
}

.pos_admin_icon img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
}

.pos_roles_writer label {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
}

.pos_roles_writer label input {
    margin-right: 5px;
    margin-bottom: 3px;
}

.pos_icon_writer {
    display: flex;
    align-items: center;
}

.pos_icon_writer input[type="text"] {
    width: auto;
    flex: 1;
}

.add_doctor, .add_service {
    float: right;
}

.upload_services_xls {
    /* margin-bottom: 40px; */
}
/* END Role Editor */

/* User Editor */
.user_row,
.order_row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    position: relative;
}

.old_child {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: all;
    font-weight: 600;
    background: rgba(0,0,0,0.2);
    color: var(--wh);
}

.list_user_born {
    margin-left: auto;
}

.ok_child{
    display: none;
}

.user_col,
.order_col{
    padding: 0 10px;
    width: 33.33%;
    margin-bottom: 20px;
    position: relative;
}

.user_row_outer,
.user_row_outer1,
.order_row_outer,
.order_row_outer1{
    width: 100%;
    cursor: pointer;
    background: var(--l-grey);
    padding: 10px 40px 5px 20px;
    transition: 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    min-height: 35px;
}

.user_row_inner,
.order_row_inner{
    width: 100%;
    border: 1px solid var(--l-grey);
    transition: 0.3s;
    overflow: hidden;
    height: 0;
    padding: 0;
    position: relative;
}

.user_row_outer:hover, 
.user_row_outer.active,
.order_row_outer:hover, 
.order_row_outer.active{
    background: var(--grey);
}

.user_row_inner.open, .order_row_inner.open, 
.calendar_order_place.order_row .calendar_order_row.open{
    padding: 20px 0 0;
    overflow: visible;
    height: auto;
}

.disabler {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 1;
    opacity: 0.1;
    top: 0;
}

.ur_in,
.or_in{
    display: flex;
    flex-wrap: wrap;
}

.users_table .user_row,
.order_table .order_row{
    margin: 0 0 10px;
}

.add_new_user,
.add_new_order,
.add_new_order_all,
.add_new_document{
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid var(--grey);
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.add_new_user:hover,
.add_new_order:hover,
.add_new_order_all:hover,
.add_new_document:hover{
    background: var(--l-grey);
}

.user_row_outer img, 
.user_row_outer svg,
.order_row_outer img, 
.order_row_outer svg{
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    transition: 0.3s;
}

.user_row_outer svg path,
.order_row_outer svg path{
    stroke: var(--dark);
    fill: var(--dark);
    transition: 0.3s;
}

.user_row_outer.active svg path, 
.user_row_outer:hover svg path,
.order_row_outer.active svg path, 
.order_row_outer:hover svg path{
    stroke: var(--wh);
    fill: var(--wh);
}

.user_row_outer.active img, 
.user_row_outer.active svg,
.order_row_outer.active img, 
.order_row_outer.active svg{
    transform: rotate(180deg);
}

.user_subtitle {
    font-size: 20px;
    text-align: center;
    width: 100%;
    border-top: 1px solid var(--l-grey);
    padding: 10px 0;
}

a.hide_user {
    margin: 0 0 10px 10px;
    display: flex;
    color: var(--blue);
    border-bottom: 1px solid;
    width: max-content;
}

a.hide_user:hover {
    color: var(--dark);
}

.user_actions {
    width: 100%;
    justify-content: flex-start;
}

.user_hidden {
    color: var(--red);
    position: absolute;
    z-index: 1;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 600;
    background: rgba(0,0,0,0.2);
    left: 0;
    top: 0;
}

a.restore_user {
    margin-left: 20px;
    border-bottom: 1px solid;
}

a.restore_user:hover {
    color: var(--wh);
}
/* END Users Editor */

/* ORDERS */
.order_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
}

.order_status {
    width: 100%;
}

.add_order_date_time {
    display: flex;
}

input.add_order_date {
    flex: 2;
    border: 1px solid var(--grey);
    border-radius: 4px 0 0 4px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    padding-top: 3px;
}

input.add_order_time {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--grey);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    border-left: none;
    padding-top: 3px;
    text-align: center;
}

.order_col_2 {
    padding: 0 10px;
    width: 66.66%;
    margin-bottom: 20px;
    position: relative;
}

.order_id {
    margin-left: 5px;
}

.col_order_actions {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    padding: 10px;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.order_btn {
    color: var(--dark);
    margin-left: 20px;
    border-bottom: 1px solid;
    pointer-events: all;
}

.order_btn:hover {
    color: var(--blue);
}

.order_date_container {
    position: relative;
}

.order_date_container .order_date_calendar {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: var(--wh);
    min-height: 40px;
    display: none;
}

.calendar_alert {
    padding: 5px;
    width: 300px;
    border: 1px solid;
}

.calendar_alert_wrap {
    padding: 10px;
    border: 1px solid var(--grey);
    border-radius: 4px;
}

.order_date_container .order_date_calendar.open {
    display: block;
}

.order_time_container {
    position: relative;
}

.order_time_container .order_time_calendar {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--wh);
    z-index: 10;
    border-radius: 4px;
    display: none;
}

.order_time_container .order_time_calendar.open {
    display: block;
}

.order_time_container .order_time_calendar .time_wrap {
    margin: 0;
}

.order_row:last-child {
    margin-bottom: 300px;
}

.od_calendar_closer {
    position: absolute;
    z-index: 10;
    background: var(--l-grey);
    padding: 5px;
    border-radius: 0;
    right: -24px;
    top: 0;
    cursor: pointer;
}

.od_calendar_closer svg {
    transform: rotate(45deg);
}

.od_calendar_closer svg path {
    fill: var(--red);
    transition: 0.3s;
}

.od_calendar_closer:hover svg path {
    fill: var(--dark);
}

.any_comment {
    padding: 5px;
    border: 1px solid var(--grey);
    border-radius: 4px;
    margin-top: 10px;
}

.comment_title {
    border-bottom: 1px solid var(--grey);
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-size: 14px;
}

.recomend_title {
    margin: 10px;
}

.child_row .user_row_inner.open {
    height: auto !important;
}

.added_new_order .order_row:last-child {
    margin-bottom: 0;
}

.order_user_name {
    width: 40%;
}

.order_doctor_name {
    width: 30%;
    margin-right: auto;
}
/* END ORDERS */





/* CALENDAR */
.calendar_select {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--l-grey);
    padding-bottom: 10px;
    justify-content: space-between;
}

.calendar_select_wrap {
    display: flex;
    align-items: center;
}

.calendar_select_title {
    flex: 1;
    text-align: right;
    margin-right: 10px;
}

.date-wrap {
    width: 300px;
    border: 1px solid var(--grey);
    border-radius: 4px;
}

.month-container {
    position: relative;
    background: var(--grey);
    color: var(--wh);
    height: 30px;
}

span.prev-month, span.next-month {
    position: absolute;
    cursor: no-drop;
    display: block;
    transform-origin: top;
    top: 50%;
    z-index: 2;
}

span.prev-month {
    transform: rotate(90deg) translateY(-50%);
    left: 5px;
}

span.next-month {
    transform: rotate(-90deg) translateY(-50%);
    right: 5px;
}

span.prev-month path, 
span.next-month path {
    fill: var(--l-grey);
    transition: 0.3s;
}

span.prev-month.active:hover path, 
span.next-month.active:hover path {
    fill: var(--dark);
}

span.curr-month {
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: -1;
}

span.curr-month.active {
    z-index: 1;
}

span.prev-month.active path, 
span.next-month.active path {
    fill: var(--wh);
}

span.prev-month.active, 
span.next-month.active {
    pointer-events: all;
    cursor: pointer;
}

.thead {
    padding: 5px 5px 0;
}

.col-1_7 {
    width: calc(100% / 7);
}

.date-table {
    text-align: center;
}

.tbody {
    padding: 5px;
}

.offset-date-1 {
    margin-left: calc(100% / 7);
}
.offset-date-2 {
    margin-left: calc(2 * 100% / 7);
}
.offset-date-3 {
    margin-left: calc(3 * 100% / 7);
}
.offset-date-4 {
    margin-left: calc(4 * 100% / 7);
}
.offset-date-5 {
    margin-left: calc(5 * 100% / 7);
}
.offset-date-6 {
    margin-left: calc(6 * 100% / 7);
}
.offset-date-7 {
    margin-left: calc(7 * 100% / 7);
}

.date-cell {
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    height: 40px;
    position: relative;
}

.date-cell:hover {
    background: var(--l-grey);
}

.calendar_doctor_name {
    margin-bottom: 10px;
    width: 100%;
}

.date-cell > span {
    display: flex;
    border: 1px solid var(--l-grey);
    flex: 1;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
}

.del_date {
    position: absolute;
    height: 11px;
    width: 11px;
    background: var(--grey);
    border-radius: 50%;
    top: 2px;
    right: 2px;
    transition: 0.3s;
    pointer-events: all;
}

.del_date:hover {
    background: var(--red);
}

.del_date span {
    display: block;
    transform-origin: top;
    height: 1px;
    width: 6px;
    background: var(--wh);
    position: absolute;
}

.del_date span:first-child {
    transform: rotate(45deg);
    top: 5px;
    left: 3px;
}

.del_date span:last-child {
    transform: rotate(-45deg);
    top: 5px;
    left: 2px;
}

.date-cell.rest,
.date-cell.rest.last{
    background: var(--red);
    pointer-events: none;
}

.date-cell.last {
    background: var(--l-grey);
    pointer-events: none;
    opacity: 0.5;
}

.date-cell.now > span {
    border-color: var(--blue);
}

.time_wrap {
    width: 300px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--grey);
    border-radius: 4px;
    padding: 10px;
}

.time-cell {
    padding: 8px 5px 5px;
    border: 1px solid var(--l-grey);
    margin: 1px;
    transition: 0.3s;
    cursor: pointer;
    flex: 20%;
    text-align: center;
}

.time-cell:hover {
    border-color: var(--blue);
}

.time_title {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.calendar_order_chooser {
    margin: 0 0 10px;
}

.calendar_order_row {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--l-grey);
    /* padding: 10px 0; */
    border-radius: 4px;
    height: auto;
    background: var(--wh);
}

.calendar_order_place.order_row .calendar_order_row {
    height: 0;
    overflow: hidden;
}

.co_col {
    flex: 30%;
    margin: 0 10px 20px;
}

.co_col-3 {
    margin: 0 10px 20px;
    flex: 80%;
}

.co_col-2 {
    margin: 0 10px 20px;
    flex: 40%;
    position: relative;
}

.co_col-1 {
    margin: 0 10px 20px;
    flex: 30%;
    position: relative;
}

.calendar_order_place {
    margin: 0 -10px;
}

.co_responce {
    width: 100%;
}

.co_actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin: 10px;
    position: relative;
    z-index: 1;
}

textarea.add_order_output {
    position: relative;
    z-index: 1;
}

.co_col-recomend {
    position: relative;
    z-index: 2;
}

select.calendar_choose_spec, 
.calendar_choose_doc_wrap {
    width: 300px;
}

.calendar_all_answer {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.calendar_order_wrap {
    flex: 1;
    margin-right: 40px;
    padding-top: 27px;
}

.binded__new {
    border: 1px solid var(--red);
}
.binded__pre {
    border: 1px solid var(--a-blue);
}

.binded__confirm,
.binded__fail,
.binded__complete{
    border: 1px solid var(--l-grey);
    background: var(--l-grey);
}

.add_order_date_time .binded__new,
.add_order_date_time .binded__confirm,
.add_order_date_time .binded__fail,
.add_order_date_time .binded__complete{
    border: 1px solid var(--l-grey);
    background: var(--l-grey);
    pointer-events: none;
}

.time-cell.ac_time {
    background: var(--blue);
    color: var(--wh);
}

.worktime {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.worktime input {
    width: 84px;
    margin-left: 10px;
    text-align: center;
    padding: 0;
}

.calendar_table .date-cell.last {
    pointer-events: all;
}
/* END CALENDAR */


/* SELECTOR */
.select_list_mode ul, 
.service_list,
.add_multidoctor{
    padding: 0;
    list-style: none;
    border: 1px solid;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: #fff;
    display: none;
    max-height: 250px;
    overflow: auto;
}

.select_list_mode {
    position: relative;
    min-width: 200px;
}

.select_list_mode ul li, 
.service_list li,
.add_multidoctor li{
    cursor: pointer;
    transition: 0.3s;
    padding: 5px;
}

.select_list_mode ul li:hover, 
.service_list li:hover,
.add_multidoctor li:hover{
    background: var(--l-grey);
}

.add_multidoctor li input {
    margin-right: 10px;
}

ul.add_multidoctor {
    width: calc(100% - 20px);
}
/* END SELECTOR */

/* DOCUMENTS */
form.upload_form {
    border: 1px solid var(--grey);
    border-radius: 4px;
    padding: 10px;
}

.document_data {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: space-between;
}

.upload_order_wrap {
    width: 300px;
    margin-right: 20px;
}

.upload_user_wrap, .upload_child_wrap {
    width: 300px;
}

input.file_uploader {
    height: 30px;
    width: 300px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    /* border: 1px solid var(--grey); */
}

.document_uploader {
    display: flex;
    justify-content: flex-end;
}

input.action_upload_document, 
input[type="file"]::-webkit-file-upload-button {
    height: 30px;
    padding: 0 30px;
}

.docements_wrap {
    border: 1px solid var(--grey);
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
}

.doc_order_who {
    flex: 40%;
    font-weight: 600;
}

.doc_order_num {
    flex: 40%;
    font-weight: 600;
}

.doc_order_list {
    flex: 100%;
}

.any_doc_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.any_doc_container a {
    color: var(--blue);
}

.any_doc_container a:hover {
    color: var(--dark);
}

.doc_order_num a {
    color: var(--blue);
}

.doc_order_num a:hover {
    color: var(--dark);
}
/* END DOCUMENTS */

/* RECOMENDS */
.rec_col {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 20px;
    flex: 27%;
}

.rec_title {
    font-weight: 600;
    margin-right: 5px;
}

.recomend_title_t {
    font-weight: 600;
    width: 100%;
    margin-bottom: 10px;
}

.any_rec_wrap {
    width: 100%;
    display: flex;
}
/* END RECOMENDS */

/* Services List */
.service_ans {
    position: absolute;
    width: 100%;
}

.service_list {
    display: block;
}
/* Services List */

@media(max-width: 1200px){
    .user_row_outer, .user_row_outer1, .order_row_outer, .order_row_outer1 {
        flex-wrap: wrap;
        border-bottom: 1px solid var(--d-grey);
    }
    
    .order_user_name {
        width: 65%;
    }
    
    .order_info {
        width: 100%;
        margin-top: 10px;
        justify-content: flex-start;
    }
    
    .order_status {
        width: auto;
        margin-left: 10px;
    }
}

@media(max-width: 1023px){
    .dash_item {
        flex: 25%;
    }
    
    .user_col {
        width: 50%;
    }
    
    .table_wrapper {
        overflow: auto;
    }
    
    .table_wrapper table {
        min-width: 600px;
    }
    
    .calendar_select {
        flex-wrap: wrap;
    }
    
    .calendar_select_wrap {
        justify-content: space-between;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .calendar_order_wrap {
        flex: 100%;
        margin-bottom: 40px;
        margin-right: 0;
        padding-top: 0;
    }
}

@media(max-width: 600px){
    .admin_sidebar_arrow {
        display: flex;
        position: absolute;
        top: 0;
        left: 100%;
        z-index: 10;
        width: 20px;
        height: 20px;
        background: var(--grey);
        align-items: center;
        justify-content: center;
    }
    
    .admin_sidebar {
        overflow: visible;
        position: absolute;
        background: #fff;
        transition: 0.3s;
        z-index: 10;
        transform: translateX(-100%);
    }
    
    .admin_sidebar_arrow svg {
        transform: rotate(-90deg);
        transition: 0.3s;
    }
    
    .open .admin_sidebar_arrow svg {
        transform: rotate(90deg);
    }
    
    .admin_sidebar_arrow svg path {
        fill: var(--dark);
    }
    
    .admin_sidebar.open {
        transform: translateX(0);
    }
    
    .dash_item {
        flex: 51%;
    }
    
    .user_col {
        width: 100%;
    }
    
    .calendar_select_wrap {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .calendar_select_title {
        text-align: left;
    }
    
    select.calendar_choose_spec, 
    .calendar_choose_doc_wrap {
        width: 100%;
    }
    
    .co_col-1 {
        flex: 100%;
    }
    
    .order_user_name {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .orders_filter, 
    .documents_filter,
    .recomend_filter{
        flex: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .orders_filter label, 
    .documents_filter > div,
    .recomend_filter label{
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    
    .rec_col {
        flex: 100%;
    }
}






