.navbar-fixed-top {
	z-index:999;
}

/*сообщение про куки*/
.cc_banner-wrapper {
    z-index: 9001;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .cc_banner-wrapper.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .cc_container {
    background: #00285D;
    box-shadow: 0 7px 8px 4px rgba(0, 0, 0, 0.16),
      0 7px 8px 4px rgba(0, 0, 0, 0.23);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    margin: 0 auto;
  }
  
  .cc_btn_accept_all {
    background: #fff;
    color: #00285D;
    padding: 10px 60px !important;
    font-weight: 600 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    cursor: pointer;
    border: none;
  }
  
  .cc_btn_accept_all:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .cc_message {
    color: #fff;
    font-size: 18px;
    margin: 0;
    margin-right: 30px;
  }
  
  .cc_message a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
  }
  @media (max-width: 576px) {
    .cc_container {
        flex-direction: column;
    }
    .cc_message {
        font-size: 16px;
        margin: 0;
        margin-bottom: 15px;
      }
}
