:root {
  --primary-dark: #1a2a3a;       /* Основной темный цвет */
  --primary-light: #f8f9fa;      /* Светлый фон */
  --accent-color: #2a5a78;      /* Акцентный синий */
  --accent-light: #e1f0f8;      /* Светлый акцент */
  --text-dark: #333;            /* Основной текст */
  --text-light: #f8f9fa;        /* Светлый текст */
}

body {
  background-color: var(--primary-light);
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-image: 
    linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="50" height="50" x="0" y="0" fill="none" stroke="%232a5a78" stroke-width="0.5"/><rect width="50" height="50" x="50" y="50" fill="none" stroke="%232a5a78" stroke-width="0.5"/></svg>');
  background-size: 100px 100px;
  overflow-x: hidden;
}

.content-wrapper {
  max-width: 1200px;
  min-height: 83vh;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.gradient-header {
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 1) 100%);
}

.headers {
    font-family: "Noto Sans", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.regularText {
    font-family: "DotGothic16", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: large;
}
.compact {
    line-height: 1.5em
}
.logo {
    width: 20%;
    height: 20%;
}
.messeger-logo {
    width: 18%;
    height: 18%;
}

a.customNav {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    min-width: 80px;
    text-align: center;
    border-right: 1px solid #e55c69;
    padding: 14px 18px;
}

a.active,
a.customNav:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: transparent
}

.tag {
    opacity: 0.25;
}

.tag:hover {
    opacity: 1;
}

.form-check-input:checked{
    background-color: red !important;
    border: 0;
}
.form-check-input:focus, .label::after, label.form-check-label:focus, .form-check-input::after, .form-check-input:not(:disabled):not(.disabled):active:focus {
    color: black;
    outline: 0;
    border: 0;
    box-shadow: 0 0 0 0.1rem red !important;
}

.cursor-pointer{
    cursor: pointer;
}

.text-wrap-break {
    white-space: normal !important;
    word-wrap: break-word !important;
}

@media screen and (min-width:797px) {
    #bottomNavbar.collapse {
        display: block
    }
}

@media screen and (max-width:796px) {
    #bottomNavbar {
        padding: 14px;
    }

    #bottomNavbar a.customNav {
        display: block !important;
        border: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 4px;
        margin-bottom: 4px;
        margin-left: -5px;
        margin-right: -5px;
    }

    #removeFlex {
        display: block !important;
        text-align: center
    }
}

@media only screen and (max-width: 1200px) {
    .normalScreen {
        display: none;
    }
}

@media only screen and (min-width: 1199px) {
    .smallScreen {
        display: none;
    }
}