.app-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.12);      
    transition: 0.3s;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.app-card--flat {
    box-shadow: none;
}

.app-card--primary {
    background: #fff;
}

.app-card--secondary {
    background: #f6f6f9;
}
 
.app-card::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0; right: 0;
    width: 250px;
    height: 190px;
    background: center/cover no-repeat url("../../assets/img/app-image.png");
    opacity: 0.10;
    z-index: -10;
    filter: 
        brightness(0)
        saturate(100%)
        invert(54%)
        sepia(93%)
        saturate(1223%)
        hue-rotate(344deg)
        brightness(98%)
        contrast(89%);
    transition: opacity 0.3s ease;
}

.app-card__content {
    padding: 24px;        
}

.app-card__content-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.app-card__content-main {
    display: flex;
    flex-direction: column; 
    gap: 16px;
}

.app-card__content-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.app-card__counterparty {
    font-weight: 600;
}

.app-card__city {
    text-align: center;
}

.app-card__price {
    color: var(--color-text-black);
    font-size: 18px;
    font-weight: 600;
}

.app-card__title {
    color: var(--color-text-black);
    font-size: 20px;
    font-weight: 600;
}

.app-card__title--primary {
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
}

.app-card__title--secondary {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 600;
}

.app-card__subtitle {
    color: var(--color-text-black);
    font-size: 18px;
    font-weight: 600;
}

.app-card__text {
    color: var(--color-text-black);
    font-size: 16px;
    font-weight: 500;
}

.app-card__text--secondary {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 500;
}


.app-card__meta {
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 500;
}

@media(min-width: 992px) {

    .app-card::before {
        width: 300px;
        height: 220px;
    }
    
    .app-card__content-top {
        flex-direction: row;
        align-items: center;    
    }
    
    .app-card__city {
        text-align: start;
    }
}
.auth-bg,
.auth-bg-gif,
.auth-bg-video {
    position: relative;  
    overflow: hidden;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease; 
}

.auth-bg {
    background-image: url('/assets/img/auth-bg-static.jpg'); 
}

.auth-bg-gif {
    background-image: url('/assets/img/auth-bg.gif'); 
}


.auth-bg::before,
.auth-bg-gif::before,
.auth-bg-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.2) 100%
    );
    pointer-events: none;  
    z-index: 1;
}

.auth-bg-video::before {
    background: rgba(255, 255, 255, 0.45);
}


.auth-bg-video video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: transparent;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

.bottom-nav-margin {
    margin-bottom: 55px;
}


.offcanvas-bottom {
    height: 85vh;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.offcanvas-header .btn-close {
    filter:
        brightness(0) 
        saturate(100%)
        invert(32%) 
        sepia(4%)
        saturate(8%)
        hue-rotate(339deg)
        brightness(95%) 
        contrast(87%);
        
    
}

.drag-handle-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.drag-handle-wrapper .drag-handle {
    width: 15%;
    height: 6px;
    border-radius: 32px;
    background: var(--bs-gray-500);
    margin-top: 8px;
    margin-bottom: 8px;
}

.base-btn {
    padding: 8px 16px;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    gap: 8px;
    overflow: hidden;
    position: relative;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    box-sizing: border-box;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.primary-button {
    background-color: var(--bs-primary);
    color: #fff;
}

.secondary-button {
    background-color: #f3f4f6;
    color: #4b5563;
}

.secondary-button:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.error-button {
    background-color: var(--color-error);
    color: white;
}

.error-button:hover {
    background-color: color-mix(in srgb, var(--color-error) 90%, white);
}

.error-button-secondary {
    background-color: var(--color-error-button-secondary);
    color: var(--color-error);
}

.error-button-secondary:hover {
    background-color: color-mix(in srgb, var(--color-error-button-secondary) 90%, white);
}

.base-btn.uppercase {
    text-transform: uppercase;
}

.success-button {
    max-width: 180px;
    width: 100%;
    padding: 8px 12px;
    background-color: var(--color-success-button);
    text-transform: uppercase;
    color: #fff;
    border-radius: 14px;
}

.success-button-full {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--color-success-button);
    text-transform: uppercase;
    color: #fff;
    border-radius: 12px;
}

.success-button-secondary {
    max-width: 160px;
    width:100%;
    padding: 8px 12px;
    text-transform: uppercase;
    color: var(--color-success-button-secondary-text);
    border-radius: 14px;
    background-color: var(--color-success-button-secondary);
}

.icon-button {
    --icon-button-size: 40px;
    width: var(--icon-button-size);
    height: var(--icon-button-size);
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: none;
    box-sizing: border-box;
    overflow: hidden;
}

.icon-button--primary {
    color: #fff;
    background-color: var(--bs-primary);
}

.icon-button--primary:hover {
    background-color: var(--bs-primary-dark);
    color: #fff;
}

.icon-button--secondary {
    color: var(--bs-primary);
    background-color: var(--bs-secondary);
}

.icon-button--secondary:hover {
    color: var(--bs-primary-dark);
}

.base-btn:hover {
    text-decoration: none;
}

.primary-button:hover {
    background-color: color-mix(in srgb, var(--bs-primary) 90%, white);
    color: #fff;
}

.success-button:hover {
    background-color: color-mix(in srgb, var(--color-success) 90%, white);
}

.success-button-full:hover {
    background-color: color-mix(in srgb, var(--color-success) 90%, white);
}

.success-button-secondary:hover {
    background-color: var(--color-success-button-secondary-hover);
    color: var(--color-success-button-secondary-text);
}


.text-button {
    color: var(--bs-primary);
    background: none;
    border: none;
    display: inline-flex;
    gap: 8px;
    position: relative;
    text-align: center;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    box-sizing: border-box;
    padding: 8px 0;
    text-decoration: none;
    align-self: flex-start; 
}

.btn-font-medium {
    font-size: 16px;
}

.btn-font-big {
    font-size: 18px;
}

.text-button:hover {
    color: var(--bs-primary-dark);
    cursor: pointer;
}

.btn-scroll-up {
    border-radius: 100%;
    border: none;
    background: var(--bs-primary) url("/assets/img/icons/move-up.svg") 50% center no-repeat;
    width: 45px;
    height: 45px;
    position: fixed;
    left: 5%;
    bottom: 72px;
    z-index: 100;
    
}

/* Общие стили для disabled состояния */
.base-btn:disabled,
.base-btn.disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

.btn-full-mobile {
    width: 100%;
}

@media (min-width: 768px) {
    .btn-full-mobile {
        width: auto;
    }
}

canvas {
    max-width: 100%;
}

.chip {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 3px 8px;
    border-radius: 8px;
    color: #fff;
    background: var(--color-secondary);
    font-weight: 600;
    text-overflow: ellipsis;
    border: none;
    text-align: center;
}


.chip-success {
    background-color: var(--color-success-button-secondary);
    color: var(--color-success);
}

.chip-error {
    background-color: var(--color-error-button-secondary);
    color: var(--color-error);
}

.chip.chip-secondary {
    background-color: #B0B0B0;
    color: #FFFFFF;
}

.context-menu {
    position: absolute;
    display: inline-block;
    overflow: hidden;
    width: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 20px #0000001a;
}

.context-menu__content {
    display: flex;
    flex-direction: column;
}

.context-menu__item {
    display: flex;
    padding: 8px 16px;
    min-height: 36px;
    box-sizing: border-box;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    border-bottom: 1px solid rgba(204, 214, 228, .6);
    gap: 16px;
}

.context-menu__item:hover {
    cursor: pointer;
    background-color: #f6f6f9;
}

.context-menu__item-label {
    font-weight: 500;
    line-height: normal;
}

.dialog__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.dialog {
    position: relative;
    width: 100%;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* animation: dialogSlideIn 0.2s ease; */
    /* opacity: 0; */
    /* visibility: hidden; */
    /* transition: opacity 0.2s ease, visibility 0.2s ease; */
}

.dialog--visible {
    opacity: 1;
    visibility: visible;
}

.dialog__content {
    padding: 24px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

@keyframes dialogSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dialog__title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    text-align: start;
    color: #1f2937;
}

.dialog__message {
    margin-top: 24px;
    font-size: 16px;
    color: var(--color-secondary);
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    margin-top: 24px;
}

.dialog__actions-wrapper {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.dialog__close-button {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 12px;
    right: 12px;
    border-radius: 100%;
    color: #9ca3af;
    background-color: rgba(0, 0, 0, 0.05);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}
.dialog__close-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #374151;
}


.dialog-button {
    padding: 8px 32px;
}

.hr-divider {
  border: 0;
  height: 1px;
  background: rgba(204, 214, 228, .6);
  margin: 20px 0;
}

.hr-divider-primary {
    background: var(--bs-primary);
}

.hr-divider-black {
    background: #000;
}

.driver-hint {
    position: relative;
    display: inline-block;
}

.driver-hint .driver-hint-text {
    visibility: hidden;
    font-size:1rem;
    font-weight: 500;
    text-transform: none;
    width: 190px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 10%;
    left: -270%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.driver-hint .driver-hint-text::after {
    content: "";
    position: absolute;
    top: 5%;
    left: 102%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #555;
}

.driver-hint:hover .driver-hint-text {
    visibility: visible;
    opacity: 1;
}

.empty-view {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
    padding: 16px;
}

.empty-view__image {
    max-width: 300px;
    max-height: 300px;
}

.empty-view__text {
    color: #000;
    text-align: center;
    font-weight: 300;
    line-height: 1.5;
    font-size: clamp(16px, calc(16px + 0.25vw), 20px);
}

.empty-view__image-small {
    max-width: 150px;
    max-height: 150px;
}
.error__active {
   color: red;
   border: 1px solid red!important;
}

.error__none {
   color: black;
   border: 1px solid black;
}

.error {
   color: red;
   padding: 0;
   margin: 0;
}

.hidden {
   display: none;
}

.executor-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.12);      
    transition: 0.3s;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.executor-card--flat {
    box-shadow: none;
}

.executor-card--primary {
    background: #fff;
}

.executor-card--secondary {
    background: #f6f6f9;
}

.executor-card::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0; right: 0;
    width: 250px;
    height: 190px;
    background: center/cover no-repeat url("../../assets/img/person-card.png");
    opacity: 0.10;
    z-index: -10;
    filter: 
        brightness(0)
        saturate(100%)
        invert(54%)
        sepia(93%)
        saturate(1223%)
        hue-rotate(344deg)
        brightness(98%)
        contrast(89%);
    transition: opacity 0.3s ease;
}

.executor-card__content {
    padding: 24px;        
}

.executor-card__content-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.executor-card__content-main {
    display: flex;
    flex-direction: column; 
    gap: 16px;
}

.executor-card__content-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}


.executor-card__user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #f6f6f9;;
}
#upload {
    display: block;
    min-width: 200px;
    width: 43%;
    padding: 0 0.25rem 0 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 50px 0 0 50px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important;
}
#changeImg {
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .25rem;
    font-size: 1rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-width: 0 1px 4px 1px;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary-border);
    border-radius: 0 50px 50px 0;
    white-space: normal;
    width: 130px;
}
::-webkit-file-upload-button {
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .25rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-style: solid;
    border-width: 0 1px 4px 1px;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary-border);
    white-space: normal;
    width: 100px;
}

.floating-button {
    --floating-btn-size: 55px;
    
    position: fixed;
    color: white;
    right: 5%;
    bottom: 72px;
    width: var(--floating-btn-size);
    height: var(--floating-btn-size);
    border: none;
    background-color: var(--bs-primary);
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 100;
    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.floating-button:hover {
    color: white;
    background-color: var(--bs-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.floating-button-icon-big {
    font-size: 1.5rem; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.floating-button-icon-standard {
    font-size: 1.25rem; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

@media(min-width: 992px) {
    .floating-button {
        --floating-btn-size: 65px;
    }
    
    .floating-button-icon-big {
        font-size: 1.75rem; 
    } 

    .floating-button-icon-standard {
        font-size: 1.5rem; 
    }
}
.footbutton {
  position: fixed;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(transparent 21%, var(--bs-primary) 21%);
}

.footbutton-dialogs {
  position: fixed;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(transparent 0%, var(--bs-primary) 0%);
}

.footbutton a, .footbutton-dialogs a {
  padding: 0;
  border: none;
  font-size: small;
  background: var(--bs-primary);
  color: var(--bs-white);
  border-radius:0;
}
/*****************************************************************/
@media (min-width: 1100px) {
  .max-widthabs {
    max-width: 1100px;
    margin: 0px calc((100vw - 1100px)/2);
  }
}
.info-client {
  position: sticky;
  top: 50px;
  width: 100vw;
  /*margin-left: 3vw;*/
  z-index: 5;
}

.info-clientview {
  /*height: 63px;*/
  /*border-bottom-right-radius: 25px;*/
  /*border-bottom-left-radius: 25px;*/
  background-color: var(--bs-white);
  overflow: hidden;
  color: var(--bs-primary);
  border: solid 2px var(--bs-primary);
}

#clientbutton {
  height: 11px;
  width: 80px;
  margin-left: calc((100% - 80px)/2);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 0;
  margin-top: -2px;
  background-color: var(--bs-white);
  border: solid 2px var(--bs-primary);
  border-top: none;
}

.map {
  position: fixed;
  height: calc(100vh - 63px - 105px);
  width: 100vw;
  margin-top: -9px;
}

.btnchat {
  position: fixed;
  bottom: 81px;
  right: 7px;
  border-radius: 25px;
}

/****************************************************************/
.max-width {
  max-width: 1100px;
  margin: 0px auto;
}

.circle-button {
    height: 45px;
    width: 45px;
    /* border-radius: 50%; */
    border-style: hidden;
    padding: 0px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.round1-button {
  height: 50px;
  width: 95px;
  border-radius: 50px;
  border-style: hidden;
  background-color: transparent;
}

.round-button {
  background-color: transparent;
  height: 50px;
  border-style: hidden;
}

@media (min-width: 767px) {
  #display {
    width: 100%;
    border-radius: 50%;
  }
}

@media (max-width: 767px) {
  #display {
    width: calc((100vw - 300px)/(760 - 300) * (150 - 70) + 70px);
    height: calc((100vw - 300px)/(760 - 300) * (150 - 70) + 70px);
    border-radius: 50%;
  }
}

.img-load::-webkit-file-upload-button {
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  padding: 0.575rem 0.45rem;
  white-space: normal;
  border-width: 0 1px 0 0;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border-color: var(--bs-primary-border)!important;
}

.img-load {
  max-width: calc(100vw - 148px);
  border-width: 1px;
  border-color: var(--bs-primary-border)!important;
  border-style: solid;
  border-radius: 30px;
  font-size: calc( (100vw - 300px)/(850 - 300) * (14 - 11) + 11px);
}

.img-change {
  max-width: calc(100vw - 148px);
  border-width: 1px;
  border-color: var(--bs-primary-border)!important;
  border-style: solid;
  border-radius: 30px;
  font-size: calc( (100vw - 300px)/(850 - 300) * (14 - 11) + 11px);
  color: var(--bs-white);
}

.form-profile {
  border-radius: 15px;
  border: 1px solid var(--bs-gray-500);
  margin-bottom: 9px;
}
.profile_imageedit{
    height: 370px;
}

/*color*/
#header {
  background-color: var(--bs-primary);
  z-index: 1;
}

#header svg {
  color: var(--bs-white);
}

#header button {
  color: white;
}

#footer {
  background: linear-gradient(transparent 21%, var(--bs-primary) 21%);
}

#footer button {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.info-clientview {
  color: var(--bs-primary);
  border: solid 2px var(--bs-primary);
  /*border-width: 2px 2px 0px 2px;*/
}
.info-clientview-end {
  color: var(--bs-primary);
  border: solid 2px var(--bs-primary);
  border-width:0px 2px 2px 2px;
}
.clientview-hidden{
    display: none;
}
form.register #password-input, form.register #password-input1, form.register #password-input2{
    border: 0px;
    outline:none;
}
.form-control-pass{
	color:#222;
	background-color:#fff;
	border-color:#8ac6dd;
	outline:0;
	box-shadow:0 0 0 .25rem rgba(var(--bs-primary-rgb),.25)
}
.img-border{
    cursor: pointer;
    border-radius: 50%;
    border: 1px groove #555!important;
    background-image: linear-gradient(to bottom right, #f83600, #f9d423);
}
.w-90{
    width: 90%!important;
}
.reveal {
    /*position: relative;*/
    opacity: 0;
}
.reveal.active {
  opacity: 1;
  /*position: relative;*/
}
.reveal.active2 {
  opacity: 1;
  /*position: relative;*/
}
.active.logoname {
    animation: logoname 1s ease-out;
}
.active2.logoname {
    animation: logoname 2s ease-out;
    animation-delay: 1s;
}
.active.cursordDown{
    animation: show 0.5s ease-out;
}
.active.cursordDown.cursorEnd{
    animation: hide 0.5s ease-out;
}
.active.cursordUp{
    animation: show1 0.5s ease-out;
}
.active.cursordUp.cursorEnd{
    animation: hide1 0.5s ease-out;
}
.active.cursordLeft{
    animation: show2 0.5s ease-out;
}
.active.cursordLeft.cursorEnd{
    animation: hide2 0.5s ease-out;
}
.active.box-1 {
  animation: box-1 1s ease-in-out;
}
.active.box-2 {
  animation: box-2 1s ease;
}
@keyframes logoname {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes box-1 {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes box-2 {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes show {
  0% {
    transform: translateY(-35px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes hide {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-35px);
    opacity: 0;
  }
}
@keyframes show1 {
  0% {
    transform: translateY(35px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes hide1 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(35px);
    opacity: 0;
  }
}
@keyframes show2 {
  0% {
    transform: translateX(35px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes hide2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(35px);
    opacity: 0;
  }
}
.active.bell {
  animation: bell 1s linear;
}
@keyframes bell {
  0% {
     transform: rotate(0deg);
  }
  7% {
     transform: rotate(-25deg); 
  }
  14% {
     transform: rotate(25deg); 
  }
  28% {
     transform: rotate(-25deg); 
  }
  43% {
     transform: rotate(25deg); 
  }
  57% {
     transform: rotate(-25deg); 
  }
  71% {
     transform: rotate(25deg); 
  }
  86% {
     transform: rotate(-25deg); 
  }
  93% {
     transform: rotate(25deg); 
  }
  100% {
    transform: rotate(0deg);
  }
}
#target {
	width: 100%;
	height: 100%;
}
#anim-canvas {
    position: absolute;
	display: block;
}
.form-navigation{
    padding: 10px 5px;
    border-radius: 15px;
}
.arrow-nav{
    animation: arrow 2s ease-in-out;
    animation-iteration-count: infinite;
}
@keyframes arrow{
    0% {
        transform: translateY(0px);
    }
    25%{
        transform: translateY(-7px);
    }
    75%{
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0px);
    }
}
.arrow-nav-left{
    animation: arrow-left 2s ease-in-out;
    animation-iteration-count: infinite;
}
@keyframes arrow-left{
    0% {
        transform: translateX(0px);
    }
    25%{
        transform: translateX(-7px);
    }
    75%{
        transform: translateX(8px);
    }
    100% {
        transform: translateX(0px);
    }
}
.bordered-icon{
  text-shadow: -2px 0 #000, 0 2px #000, 2px 0 #000, 0 -2px #000;
}
.bordered-icon-1x{
  text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}
.text-shadow-1px-black{
    text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}
.text-shadow-1px-white{
    text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}
.fade-in-left {
    animation: fade-in-left 1s ease-out;
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-right {
    animation: fade-in-right 1s ease-out;
}
@keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.opacityElem{
    opacity: 0;
}
/*пульсация кнопки*/
.pulse {
  position: relative; 
  text-align: center; 
  padding: 20px; 
  border-radius: 50rem; 
}
.pulse::after,
.pulse::before {
  content: '';
  position: absolute;
  border: 2px solid white;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50rem;
  animation: pulse 2.5s linear infinite;
}

.pulse::after {
  animation-delay: 1.25s;
}

@keyframes pulse {
  0% {
    transform: scale(0.62);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.rpt-bcg {
    background: rgba(0, 0, 0, 0.6);
    background-image: url(../../assets/img/repeat4.png);
    background-repeat: repeat;
}
.icon {
    --icon-size: 1em;
    width: var(--icon-size);
    height: var(--icon-size);
    display: inline-block; 
    vertical-align: middle; 
    flex-shrink: 0; 
    object-fit: contain; 
}

.icon-xs { width: 12px; height: 12px; }

.icon-sm { width: 16px; height: 16px; }

.icon-md { width: 24px; height: 24px; }

.icon-lg { width: 32px; height: 32px; }

.icon-xl { width: 48px; height: 48px; }

.icon-full { width: 100%; height: 100%; } 

.icon-auto { width: auto; height: auto; } 

.icon-primary {
    filter: invert(64%) sepia(95%) saturate(2468%) hue-rotate(343deg) brightness(98%) contrast(90%);
}

.icon-success {
    filter: invert(61%) sepia(64%) saturate(3661%) hue-rotate(97deg) brightness(93%) contrast(80%);
}

.icon-error {
    filter: invert(35%) sepia(75%) saturate(5823%) hue-rotate(356deg) brightness(102%) contrast(92%);
}

.icon-secondary {
    filter: invert(50%) sepia(11%) saturate(410%) hue-rotate(179deg) brightness(95%) contrast(81%);
}

.icon-white {
    filter: brightness(0) invert(1);
}

.image-uploader {
    display: block;
}

.image-uploader__dropzone {
    max-width: 100%;
    height: 300px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-uploader__dropzone:hover {
    background-color: #fff4e8;
}

.image-uploader__dropzone-title {
    font-size: 22px;
}

.image-uploader_active {
    border: 2px solid #ccc;
    border-color: #fd7e14;
}

.image-uploader-progress {
    display: flex;
    min-height: 200px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

.image-uploader-progress .progress-indicator {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bs-primary);
    border-top: 4px solid #f5f5f5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-uploader-progress .progress-text {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.preview-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.preview {
    position: relative;
    max-width: 300px;
    min-width: 200px;
    min-height: 200px;
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    overflow: hidden; 
    text-align: center;
    border-radius: 8px;
}

.preview__image {
    max-width: 100%;
    max-height: 50vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.preview__next-btn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: calc(50% - 16px);
    right: 8px;
    color: #99a2ad;
    background-color: rgba(255, 255, 255, 0.7);
}

.preview__prev-btn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: calc(50% - 16px);
    left: 8px;
    color: #99a2ad;
    background-color: rgba(255, 255, 255, 0.7);
}

.preview__next-btn:hover,
.preview__prev-btn:hover {
    background-color: rgba(255, 255, 255, 1) !important;
    color: #323232 !important;
}


.preview__delete-btn {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
    color: #323232;
    background-color: rgba(255, 255, 255, 0.7);
}

.preview__delete-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}

.preview__edit-btn {
    
}

.preview__counter {
    position: absolute;
    bottom: 0;
    right: 8px;    
    color: #99a2ad;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
}

@media(min-width: 768px) {
    .preview {
        max-width: 400px;
        min-width: 200px;
        min-height: 200px;
    }
}

/*
  Круг иконки
*/
.tooltip-circle {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 2px solid var(--color-text-secondary);
    color: black;
}

/*
  Доп селекторы к tooltip-circle для переопределения размера
*/
.tooltip-circle--small {
    width: 16px;
    height: 16px;
}

.tooltip-circle--large {
    width: 24px;
    height: 24px;
}

/* 
  Селектор для i внутри tooltip-circle
*/
.tooltip-circle__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-secondary);
    width: 100%;
    height: 100%;
}

/*
  Вариации размера символа i в иконке
*/
.tooltip-circle--small .tooltip-circle__icon {
    font-size: 12px;
}

.tooltip-circle--large .tooltip-circle__icon {
    font-size: 18px;
}

.info-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.info-tooltip::after {
    content: attr(tip); 
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 100%;
    margin-bottom: 10px;
    min-width: clamp(200px, 30vw, 300px);
    max-width: min(300px, calc(100vw - 40px));
    
    background-color: #fff;
    color: black;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: 500;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    
    word-break: break-word;
    word-wrap: break-word; 
    overflow-wrap: break-word;
    hyphens: auto;
}

.info-tooltip:hover::after {
    visibility: visible;
    opacity: 1;
}

.info-tooltip.tooltip-right::after {
    left: 0;
    transform: none;
    right: auto;
}

.info-tooltip.tooltip-left::after {
    min-width: clamp(300px, 30vw, 400px);  
    left: auto;
    right: 0;
    transform: none;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
}

.input-wrapper .error-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-error);
}

.input-container {
    position: relative;
    max-width: 100%;
    border: 2px solid #b3bcc5;
    border-radius: 6px;
    box-sizing: border-box;
    text-overflow: ellipsis;
    transition: border-color 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
}

.input-container:focus-within { 
    outline:none;
    border:2px solid var(--bs-primary);	
}

.input-container:hover{ 
    outline: none;
    border: 2px solid var(--bs-primary);	
}

.input-container input {
    width: 100%;
    background-color: transparent;
    box-sizing: border-box;
    border: 0;
    caret-color: var(--bs-primary);
    text-align: inherit;
    padding: 18px 10px 6px;
    font-size: 16px;
}

.input_checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--bs-primary);
      box-shadow: 
          0 -2px 4px rgba(0, 0, 0, 0.05),
          0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Доп стиль для инпута с единицой измерения */
.input-container:has(.unit-label) input {
    padding-right: 34px;
}

.input-container input:focus { 
    outline: none;
    border: none;
}

.input-container.input-error {
    border: 2px solid var(--color-error);
}

.input-container .unit-label {
    position: absolute;
    align-items: center;
    bottom: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    pointer-events: none;
    right: 0;
    padding: 6px 8px 12px; 
    font-size: 16px;
    color: var(--color-secondary);
    font-weight: 500;
    text-align: inherit;
}

.input-container .input-placeholder {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    
    margin: 0;
    padding: 0 4px;
    text-align: left;
    pointer-events: none;
    background-color: transparent;
    color: #b3bcc5;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 16px;
    white-space: nowrap;     
}

/* Для input нужно добавить required */
/* Состояние когда input в фокусе или имеет значение */
.input-container:has(input:focus) .input-placeholder,
.input-container:has(input:valid) .input-placeholder {
    top: 0;
    left: 8px;
    transform: translateY(0);
    font-size: 14px;
}

/* Убираем стрелочки справа для type="number" */
.input-container input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}
.input-container input[type="number"]::-webkit-outer-spin-button,
.input-container input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-full-mobile {
    width: 100%;
}

/* Инпут даты */

/* Убирает нативный текст даты (дд.мм.гггг) */
.input-container input[type="date"]::-webkit-datetime-edit-text,
.input-container input[type="date"]::-webkit-datetime-edit-month-field,
.input-container input[type="date"]::-webkit-datetime-edit-day-field,
.input-container input[type="date"]::-webkit-datetime-edit-year-field {
    display: none;
}

/* Показываем текст когда дата выбрана */
.input-container input[type="date"]:valid::-webkit-datetime-edit-text,
.input-container input[type="date"]:valid::-webkit-datetime-edit-month-field,
.input-container input[type="date"]:valid::-webkit-datetime-edit-day-field,
.input-container input[type="date"]:valid::-webkit-datetime-edit-year-field {
    display: inline-block;
    color: inherit;
}

.input-container input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    caret-color: transparent;
}

.input-container input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    left: 0;
    top: 0;
}

.input-container:has(input[type="date"])::after {
    content: "📅";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 16px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.input-container:has(input[type="date"]:hover)::after,
.input-container:has(input[type="date"]:focus)::after {
    opacity: 1;
}

.input-container:has(.unit-label)::after {
    right: 40px;
}

@media (min-width: 768px) {
    .input-full-mobile {
        width: auto;
        min-width: 300px;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.pagination-loader {
    display: flex;
    min-height: 75px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
}

.pagination-loader .progress-indicator {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bs-primary);
    border-top: 4px solid #f5f5f5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
    pointer-events: none;
}


.map-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
}

.map-loader .map-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bs-primary);
    border-top: 4px solid #f5f5f5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    pointer-events: none;
}



.default-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;  
    pointer-events: none;
}

.default-loader .progress-indicator {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bs-primary);
    border-top: 4px solid #f5f5f5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    pointer-events: none;
}

/*[class*="ymaps-2"][class*="-ground-pane"] {
  -webkit-filter: invert(100%) url(/path-to-svg/yellowfilter.svg#yellowfilter);
          filter: invert(100%);
    	-ms-filter: invert(100%);
    	-moz-filter: invert(100%);
    	-o-filter: invert(100%);
}*/
.ymaps-2-1-79-float-button{
    background-color:var(--bs-primary);
    color: var(--bs-secondary);
    border-radius: 25px;
    height: 40px;
    padding: 0 20px;
}
.ymaps-2-1-79-float-button-icon+.ymaps-2-1-79-float-button-text {
    padding-top: 6px!important;
    padding-left: 14px!important;
}
.ymaps-2-1-79-traffic {
    box-shadow: none;
    border-radius: 0;
}
.ymaps-2-1-79-float-button.ymaps-2-1-79-_disabled,
.ymaps-2-1-79-float-button.ymaps-2-1-79-_pressed,
.ymaps-2-1-79-listbox__button.ymaps-2-1-79-_pressed,
.ymaps-2-1-79-listbox__button:active,
.ymaps-2-1-79-float-button:active{
    background-color:var(--bs-primary);
    color: var(--bs-secondary);
}

.ymaps-2-1-79-float-button.ymaps-2-1-79-_checked,.ymaps-2-1-79-float-button.ymaps-2-1-79-_checked.ymaps-2-1-79-_pressed, .ymaps-2-1-79-float-button.ymaps-2-1-79-_checked:active{
    background-color:var(--bs-warning);
}

.ymaps-2-1-79-float-button-icon{
    width: 30px;
    height: 28px;
}
.ymaps-2-1-79-zoom__plus {
    top: -12px;
}
.ymaps-2-1-79-zoom__minus {
    bottom: -2px;
}
.ymaps-2-1-79-zoom__scale {
    left: 16px;
    width: 8px;
}
.ymaps-2-1-79-zoom__runner {
    left: -16px;
    height: 40px!important;
    padding-top: 12px!important;
}
.ymaps-2-1-79-zoom {
    padding: 40px 0;
}
.ymaps-2-1-79-float-button-icon_icon_expand,
.ymaps-2-1-79-float-button-icon_icon_routes,
.ymaps-2-1-79-float-button-icon_icon_geolocation,
.ymaps-2-1-79-zoom__plus .ymaps-2-1-79-zoom__icon,
.ymaps-2-1-79-zoom__minus .ymaps-2-1-79-zoom__icon,
.ymaps-2-1-79-listbox__button-icon.ymaps-2-1-79-_icon_layers,
.ymaps-2-1-79-zoom__runner .ymaps-2-1-79-zoom__icon,
.ymaps-2-1-79-listbox__button-arrow
{
    filter: brightness(0%) contrast(200%) invert(100%);
}
.ymaps-2-1-79-listbox{
    height: 40px;
    width: 104px;
}
.ymaps-2-1-79-listbox__button{
    border-radius: 9999px;
    background-color:var(--bs-primary);
    color: var(--bs-secondary);
    height: 40px;
    padding: 0 10px;
}
.ymaps-2-1-79-listbox__button-icon{
    height: 27px;
}
.ymaps-2-1-79-listbox__button-text{
    padding: 6px 12px 0 2px;
}
.ymaps-2-1-79-listbox__button-arrow{
    height: 40px;
}
.ymaps-2-1-79-gototaxi__container,
.ymaps-2-1-79-gotoymaps__container,
.ymaps-2-1-79-gototech,
.ymaps-2-1-79-copyright__content,
.ymaps-2-1-79-copyright__link{
    background-color:var(--bs-primary)!important;
    color: var(--bs-secondary)!important;
}
.ymaps-2-1-79-copyright__fog{
    background-color:var(--bs-primary)!important;
    color: var(--bs-secondary)!important;
}
.ymaps-2-1-79-balloon__content{
    padding: 0!important;
}
.ymaps-2-1-79-balloon__layout{
    padding: 5px;
    border-radius: 10px;
}
.ymaps-2-1-79-islets_card{
    background-color:var(--bs-secondary)!important;
    padding: 6px!important;
}
.ymaps-2-1-79-islets_card__route-button{
    display: inline-block;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0px solid transparent;
    padding: 0.375rem 0.55rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-color:var(--bs-primary)!important;
    border-radius: 999px;
    text-transform: uppercase;
    color: #fff!important;
    width: auto;
    height: auto;
}
.ymaps-2-1-79-islets_card__buttons-cell{
    width: auto!important;
    padding:2px!important;
}
.ymaps-2-1-79-islets_card__stop-buttons{
    height: auto!important;
}

.ymaps-2-1-79-islets_card__stop-info-button{
    display: inline-block;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0px solid transparent;
    padding: 0.375rem 0.55rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-radius: 999px;
    text-transform: uppercase;
    width: auto;
    height: auto;
}
.ymaps p{
    margin-bottom: 0;
}
.ymaps-2-1-79-islets_card__business-buttons{
    margin-bottom: -14px!important;
    padding-bottom: 14px!important;
}
.ymaps-2-1-79-islets_card__row-links{
        padding-bottom: 61px;
}



/*
04.05.2026 перекрывало события на кластерах карты
.ymaps-2-1-79-places-pane {
    z-index: 5000 !important;
} */



/*.ymaps-2-1-79-map .ymaps-2-1-79-i-ua_js_yes .ymaps-2-1-79-map-bg .ymaps-2-1-79-islets_map-lang-ru {*/
/*    width: 465px;*/
/*    height: 355px;*/
/*}*/


.dialogs__item {
    border-radius: 10px;
    --bs-bg-opacity: 1;
    box-shadow: 0px 0px 5px;
    background: rgba(128,128,128, .07);   
}

.group__chat {
    margin: 0.5rem;
    opacity: 55%;
    /*max-width: 884px;*/
    padding: 8px;
}

#chat-messages {
    /*margin-bottom: 55px;*/
}

.count__message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
}

.finished__sentence {
     border-radius: 10px;
    --bs-bg-opacity: 1;
    box-shadow: 0px 0px 5px;
    background: rgba(0,128,0, .3)   
}

.senders__message  {
    position: relative;
    border-radius: 10px;
    --bs-bg-opacity: 1;
    /*box-shadow: 0px 0px 5px;*/
    background: var(--bs-gray-400);
}

.senders__message::before, .senders__message::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 0%;
    bottom: 0em;
    width: 1.8em;
    height: 1.8em;
    border: .5em solid white;
    border-radius: 50%;
    background: white;
    margin-left: -1.8em;
}

.senders__message::before {
    line-height: 1.5em;
    border-top: none;
    height: .9em;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    background: var(--bs-gray-400);
    border-color: var(--bs-gray-400);
    margin-left: -.9em;
}

.message__to-sender {
    position: relative;
    border-radius: 10px;
    --bs-bg-opacity: 1;
    /*box-shadow: 0px 0px 5px;*/
    background: var(--bs-primary)!important;
}

.message__to-sender::before, .message__to-sender::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 100%;
    bottom: 0em;
    width: 1.8em;
    height: 1.8em;
    border: .5em solid white;
    border-radius: 50%;
    background: white;
}

.message__to-sender::before {
    line-height: 1.5em;
    border-top: none;
    height: .9em;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    margin-left: -.9em;
}

.message__system {
    border-radius: 10px;
    border: groove;
    --bs-bg-opacity: 1;
    background: rgba(128,128,128, .07);
}

.message-menu {
    border-radius: 10px;
    --bs-bg-opacity: 1;
    box-shadow: 0px 0px 5px;
    background: var(--bs-light)!important;
    z-index: 50;
}

.username {
    color: #696969;
}

.message-time {
    color: #696969;
}

.btn{
    display: flex;
    justify-content: center;
    align-items: center;
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + label {
    font-size: 1.2em;
    font-weight: 700;
    color: white;
    background-color: #ed812b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
      align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
      justify-content: center;
}

.inputfile:focus + label,
.inputfile + label:hover {
    cursor: pointer;
}

.ymaps-2-1-79-map-copyrights-promo {
    display: none;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.sel-text {
    -webkit-user-select: text;
    -moz-user-select: text;
    user-select: text;
    line-height: inherit;
    font: inherit;
    font-size: 100%;
    vertical-align: initial;
    outline: none;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.mes-white-div {
    padding: 9px;
    margin: 5px 8px;
    background-color: white;
    outline: none;
    will-change: width;
    display: flex;
    box-sizing: border-box;
    flex: 1 1 150px;
    /*width: inherit;*/
    vertical-align: initial;
    min-width: 0;
    min-height: 20px;
}

.message-placeholder {
    color: var(--bs-gray-700);
    left: 0.5ch;
    pointer-events: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

audio::-webkit-media-controls-panel {
  background-color: var(--bs-inactive);
}

audio::-webkit-media-controls-mute-button {
  background-color: var(--bs-inactive-dark);
  border-radius: 50%;
}

audio::-webkit-media-controls-play-button {
  background-color: var(--bs-inactive-dark);
  border-radius: 50%;
}

audio::-webkit-media-controls-play-button:hover {
  background-color: rgba(177,212,224, .7);
}

.recording{
    border-radius: 50%;
    background: var(--bs-red)!important;
    animation: recordingSound 2s ease;
    animation-iteration-count: infinite;
}

@keyframes recordingSound {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

#send-img {
    pointer-events: none;
}

.offers-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f6f6f9;
    border-radius: 8px;
    padding: 8px 16px;
}

.offer-card__user {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}


.offer-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.offer-card__username {
    color: #000;
    font-weight: 500;
}

.offer-card__price {
    color: #000;
    font-weight: 600;
}

.form-ref {
  display:flex;
  flex-direction:row;
  border:1px solid grey;
  border-radius: 10px;
  padding:1px;
}

.input-ref {
  flex-grow:2;
  border:none;
}

input:focus {
  outline: none;
}

form:focus-within { 
  outline: 1px solid #ed812b 
}

.tooltip-ref {
  position: relative;
  display: inline-block;
  opacity: 1!important;
  z-index: 0!important;
}

.tooltip-ref .tooltiptext-ref {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip-ref .tooltiptext-ref::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip-ref:hover .tooltiptext-ref {
  visibility: visible;
  opacity: 1;
}

.preloader {
  position: fixed;
  left: 0;
  top: 50px;
  right: 0;
  bottom: 55px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  z-index: 9;
}

.preloader__image {
  position: relative;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -32px;
  margin-left: -32px;
  background: url('/assets/img/logo_empty7.gif') no-repeat 100% 100%;
  /*расположение (url) изображения gif и др. параметры*/
}

.loaded_hiding .preloader {
  transition: 1s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}

.downloaded_hinding .preloader {
  transition: 1s opacity;
  opacity: 1;
}

.search-container {
    display: flex;
    width: 200px;
    line-height: 1.5;
}

.search-container .search-input {
    background-color: white;
    caret-color: var(--bs-primary);
    padding: .375rem .75rem .375rem .75rem;
    outline: none;
    border-radius: 25rem 0 0 25rem;
    border: 2px solid var(--bs-primary);
    width: 100%;
    font-size: 1rem;
    border-right: none;
}

.search-container .search-button {
    background-color: var(--bs-primary);
    border: none;
    padding: .375rem .75rem .375rem .75rem;
    border-radius: 0 25rem 25rem 0;
    border: 2px solid var(--bs-primary);
}

.search-container .search-button:hover {
    background: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
}

.section-card {
    border-radius: 16px;
    padding: 16px;
    box-shadow:        
        0 -4px 8px 0 rgba(0,0,0,0.1), /*Тень сверху*/
        0 4px 8px 0 rgba(0,0,0,0.2);  
    transition: 0.3s;
}

.section-card__content {
    padding: 12px 16px;
}

/*
.section-card__content + .section-card__content {
    margin-top: 12px;
}
*/

.section-card__title {
    color: var(--bs-primary);
    font-size: 1.5rem;
    font-weight: bolder;
}

.section-card__subtitle {
    color: var(--color-text-black);
    font-size: 1rem;
    font-weight: 600;
}

.section-card__text {
    color: var(--color-text-black);
    font-weight: 500;
    font-size: 1rem;
}

.section-card__text-large {
    color: var(--color-text-black);
    font-weight: 500;
    font-size: 1.125rem;
}

.section-card__text-secondary {
    color: var(--color-text-secondary);
    font-weight: bolder;
    font-size: 1rem;
}

.textarea-primary {
    caret-color: var(--bs-primary-dark);
    border-radius: 6px;
    box-sizing: border-box;
    text-align: inherit;
    padding: 8px;
    resize: none;
    outline: none;
    border: 2px solid var(--bs-gray-500);
    width: 100%;

}

.textarea-primary:focus  {
    border: solid 2px var(--bs-primary);
}

.textarea-primary:hover {
    border: solid 2px var(--bs-primary);
}

.textarea-primary::placeholder {
    color: var(--color-text-secondary-light);
}

.textarea-primary.hidden {
    display: none;
}

[tip].tooltip {
  position: fixed;
  font-size: 16px;
  line-height: 20px;
  padding: 5px;
  background: #444;
  border: 1px solid #222;
  visibility: hidden;
  opacity: 0;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, visibility 0s;
  color: white;
  min-width: 200px;
}

[tip]:hover .tooltip {
  visibility: visible;
  opacity: 1;
}