.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    width: 25px;
    height: 25px;
    border: 1px solid #ADB2BB;
    border-radius: 0.27em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox:checked+label::before {
    border-color: #ADB2BB;
    background-color: white;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%494C51' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: #ADB2BB;
}

.custom-checkbox:not(:disabled):active+label::before {
    background-color: white;
}

.custom-checkbox:focus+label::before {}

.custom-checkbox:focus:not(:checked)+label::before {
    border-color: #ADB2BB;
}

.custom-checkbox:disabled+label::before {
    background-color: black;
}



input.error {
    background: #FAF6F5 !important;
    border-left: 1px solid #E63912;
}

input.disabled {
    background: #EBEEEF !important;
}


.btn-round.red {
    display: flex;
    min-height: 52px;
    padding: 9px 18px;
    align-items: center;
    gap: 6px;
    color: #FFF;
    font-family: "Gotham Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 21.6px */
    border-radius: 32px;
    background: #E63912;
    align-items: center;
}

.btn-round.red.small {
    min-height: 30px;
    padding: 0px 18px;
    width: 100%;
    justify-content: center;
}

.btn-round.red:hover {
    background: #96250CFF;
}

.btn-round.red .plus {
    background-image: url('/local/templates/tnss/img/svg/plus.svg');
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: cover;
}

.btn-round.red.small .plus {
    width: 12px;
    height: 12px;
}




.fs-wrap {
    display: inline-block;
    cursor: pointer;
    line-height: 1;
    width: 100%;
    position: relative;
}

.fs-label-wrap {
    position: relative;
    cursor: pointer;
    transition: border 200ms, background 200ms;
    height: 51px;
    line-height: 16px;
    font-family: "Gotham Pro";
    font-size: 16px;
    color: #6F767F;
}

.fs-label-wrap:hover {}

.fs-label-wrap,
.fs-dropdown {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fs-label-wrap .fs-label {
    padding: 18px 100px 18px 17px;
    border-radius: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    background: #F8F8F9;
}

.fs-arrow {
    width: 38px;
    height: 38px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/local/templates/tnss/img/svg/select-arrow.svg');
    background-size: 40px;
    top: 3px;
    right: 2px;
    bottom: 0;
    margin: auto;
    transition: border 200ms;
    position: absolute;
}

.fs-wrap:hover .fs-arrow {}

.fs-dropdown {
    position: absolute;
    border: 0;
    margin-top: 0px;
    z-index: 1000;
    box-sizing: border-box;
    width: calc(100% - 0px);
    margin: 3px 0 10px 0;
    padding: 0;
    border-radius: 3px;
    background: #ffffff;
    box-shadow: 0 5px 17px 5px rgba(173, 178, 187, 0.18);
    font-family: "Gotham Pro";
    font-size: 16px;
    color: #6F767F;
}

.fs-dropdown .fs-options {
    max-height: 200px;
    overflow: auto;
    padding: 0px 10px 0px 10px;
}

.fs-search {
    padding: 20px 20px 10px 20px;
    cursor: auto;
    border-bottom: 0;
}

.fs-search input {
    box-shadow: none !important;
    outline: none;
    width: 100%;
    height: 48px;
    line-height: 48px;
    padding: 0 20px 0 20px;
    color: #101010;
    border-radius: 8px;
    font-size: 14px;
    transition: border 200ms, background 200ms;
}

.fs-search input:hover {}

.fs-options {
    margin: 0;
    padding: 10px 0 10px 0;
}

.fs-optgroup-label {
    border-bottom: 0;
    padding: 15px 20px 15px 20px;

}

.fs-option:hover {}

.fs-option:last-child {
    border-bottom: none;
}

.fs-no-results {
    padding: 20px 20px 20px 20px;
    cursor: auto;
}

.fs-option {
    cursor: pointer;
    word-break: break-all;
    transition: background 200ms;
    min-height: 18px;
    padding: 13px 20px 13px 20px;
    border-bottom: 1px solid #E7E9ED;
    color: #6F767F;
    font-family: "Gotham Pro";
    font-size: 16px;

}

.fs-option.disabled {
    opacity: 0.4;
    cursor: default;
}

.fs-option.hl {
    background-color: #f4f4f4;
}

.fs-wrap.multiple .fs-option {
    position: relative;
    padding-left: 45px;
}

.fs-wrap.multiple .fs-checkbox {
    position: absolute;
    display: block;
    width: 30px;
    top: 0;
    left: 11px;
    bottom: 0;
}

.fs-wrap.multiple .fs-option .fs-checkbox i {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #cfcfcf;
    border-radius: 3px;
    background-color: #fff;
}

.fs-wrap.multiple .fs-option.selected .fs-checkbox i {

    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/local/templates/tnss/img/svg/check-alt.svg');
    background-size: 24px;
    border: 1px solid #252C37;
}

.fs-wrap.multiple .fs-option .fs-option-label {
    font-family: "Gotham Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 20.8px */
    letter-spacing: 0.16px;
}

.fs-wrap.multiple .fs-option.selected .fs-option-label {
    color: #252C37;
    font-family: "Gotham Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 20.8px */
    letter-spacing: 0.16px;
}

.fs-optgroup-label {
    font-weight: bold;
    text-align: center;
}

.fs-trigger {
    transition: border 200ms;
    position: absolute;
    top: 4px;
    right: 10px;
    width: 42px;
    height: 42px;
    border-radius: 42px;
    background-color: #fff;

}

.fs-wrap:hover .fs-trigger {}


.ui-datepicker {
    padding: 16px;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0px 4px 33px 0px rgba(0, 0, 0, 0.13);
}


.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button {
    border: none;
    background: #fff;
    font-weight: normal;
    color: #ADB2BB;
    text-align: center;
    font-family: "Gotham Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 19.5px */
    letter-spacing: 0.15px;
}

html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    font-weight: 600;
}

.ui-datepicker-week-end .ui-state-default {
    color: #E63912;
}

.ui-widget {
    font-family: "Gotham Pro";
    font-size: 1em;
}

.ui-datepicker .ui-datepicker-title {
    color: #252C37;
    font-family: "Gotham Pro";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 115%;
    /* 19.55px */
}

.ui-widget-header {
    border: none;
    background: #fff;
    color: #252C37;
    font-weight: bold;
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    border: 0;
    color: #252C37;
    font-family: "Gotham Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 19.5px */
    letter-spacing: 0.15px;
}

.ui-widget.ui-widget-content {
    border: none;
}

.ui-datepicker-today {
    color: #252C37;
}

.ui-datepicker-today .ui-state-default {
    color: #252C37;
}

.ui-state-default:hover {
    color: #252C37;
}

.actions {
    cursor: pointer;
}


.notify-order {
    display: flex;
    position: absolute;
    bottom: 0;
    width: 40px;
    height: 30px;
    justify-content: center;
    align-items: center;
    border-radius: 0px 14px;
}

.notify-order-block {
    display: flex;
    position: absolute;
    bottom: 0;
    height: 30px;

    justify-content: center;
    align-items: center;
    border-radius: 0px 0px;
}

.notify-order-block .notify-order {
    position: relative;
    border-radius: 0px 0px;
}

.notify-order-block .notify-order.red {
    border-radius: 0px 0px 0px 14px;
}

.notify-order-block .notify-order.yellow {
    border-radius: 0px 14px 0px 0px;
}

.notify-order.red {
    background-color: #E63912;
}

.notify-order.yellow {
    background-color: #E6C412;
}

.notify-order .eye {
    background-image: url(/local/templates/tnss/img/svg/eye.svg);
    width: 19px;
    height: 19px;
    background-repeat: no-repeat;
    background-size: cover;
}

.notify-order .compas {
    background-image: url(/local/templates/tnss/img/svg/compas.svg);
    width: 19px;
    height: 19px;
    background-repeat: no-repeat;
    background-size: cover;
}


#mapContainer {
    width: 100%;
    height: 680px;
    border-radius: 15px;
    display: flex;
    margin-top: 5px;
    overflow: hidden;
    position: relative;
}

[class*=ymaps][class*=-ground-pane] {
    filter: grayscale(0.7);
    -ms-filter: grayscale(0.7);
    -webkit-filter: grayscale(0.7);
    -moz-filter: grayscale(0.7);
    -o-filter: grayscale(0.7);
}

.map-address-selected {
    position: absolute;
    display: inline-flex;
    padding: 13px 16px;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    border-radius: 40px;
    background: #FFF;
    z-index: 99999;
    margin: 20px 10px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.map-address-selected span {
    padding: 5px 0px 0px 0px;
}

.map-objects {
    position: absolute;
    display: flex;
    min-width: 344px;
    height: 670px;

    flex-direction: column;
    background: #FFF;
    border-radius: 15px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    z-index: 2;
    margin-left: 5px;
    margin-top: 5px;
    padding: 10px;
    gap: 5px;
    overflow-y: scroll;
}

.map-objects::-webkit-scrollbar {
    width: 14px;
    padding-right: 2px;
      border-radius: 20px;
}

.map-objects::-webkit-scrollbar-track {
    background: #E9ECEF;
    padding-right: 2px;
      border-radius: 20px;
}

.map-objects::-webkit-scrollbar-thumb {
    background-color: #D0D3D7;
    border-radius: 20px;
    border: 3px solid #D0D3D7;
    padding-right: 2px;
}

.map-objects .item {
    background-color: #F8F8F9;
    border-radius: 9px;
    display: flex;
    width: 100%;
    flex-direction: column;
    max-height: 166px;
    justify-content: space-between;
    padding: 10px 0px;
}

.map-objects .item .item-head {
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding: 10px;
    align-items: center;

}

.map-objects .item .item-head .name {
    font-family: Gotham Pro;
    font-weight: 400;
    font-style: Medium;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 1%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;

}

.map-objects .item .item-body {
    display: flex;
    flex-direction: row;
    justify-content: right;
    padding: 10px;
    align-items: center;
    gap: 10px;

}

.map-objects .item .item-body .adr {
    font-family: Gotham Pro;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 1%;
    color: #6F767F;

}

.map-objects .item .item-body .type {
    background-color: #fff;
    border-radius: 30px;
    padding: 0px 20px;
    font-family: Gotham Pro;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;

}

.map-objects .item .item-footer {
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding: 10px;
    align-items: center;
    gap: 10px;
}

.map-objects .item .item-footer .popup-open {
    font-family: Gotham Pro;
    font-weight: 400;
    font-style: Medium;
    font-size: 17px;
    line-height: 130%;
    letter-spacing: 1%;
    width: fit-content;
}

.map-objects .item .item-footer .tab {
    display: flex;
    width: 16px;

}

.map-objects .item .item-footer .date {
    font-family: Gotham Pro;
    font-weight: 400;
    font-style: Regular;
    font-size: 17px;

    line-height: 130%;
    letter-spacing: 1%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    color: #6F767F;
    width: fit-content;
}

.map-objects .item .item-footer .user {
    display: flex;
    justify-content: end;
    width: 100%;
}



.map-objects .item .item-footer .user-data .photo {
    display: inline-flex;
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 43px;
    border: 2px solid #E63912;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.map-objects .item .item-footer .user-data {
    align-items: center;
    display: flex;
    gap: 10px;
    padding: 5px 20px 5px 0px;
    border-radius: 80px;

    font-family: Gotham Pro;
    font-weight: 400;
    font-style: Regular;
    font-size: 17px;
    line-height: 130%;
    letter-spacing: 1%;

}

.map-objects .item .item-footer .user-data .desc {
    display: inline-flex;
    position: relative;
    margin-left: 40px;
}



  .fs-label-wrap .fs-label {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .fs-option-label {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .cell {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;

  }