@charset "UTF-8";

html, body {
    width: 100%;
    height: 100%;
}

body {
    height: auto;
    min-height: 100%;
    min-width: 320px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-attachment: fixed;
}
body.modal-open { 
    overflow: hidden;
}
body::selection {
    background-color: #0d38b8;
    color: #fff;
}

html[data-bs-theme="dark"] > body {
    background-color: #B36D32;
    background-image:  url('../images/bg-body-dark.webp');
}

html:not([data-bs-theme="dark"]) > body {
    background-color: #f2c589;
    background-image:  url('../images/bg-body.webp');
}

math {
    font-family: var(--bs-body-font-family);
}

#season-bg {
    background-size: cover;
    background-repeat: no-repeat;
     -webkit-mask-image: linear-gradient(#000, transparent);
    mask-image: linear-gradient(#000, transparent);
}

#main-header a.home {
    font-family: 'Spectral SC', serif;
    background-color: #0d38b8;
    -webkit-box-shadow: 0 0.375rem 0.625rem -0.313rem rgba(0,0,0,0.45);
    -moz-box-shadow: 0 0.375rem 0.625rem -0.313rem rgba(0,0,0,0.45);
    box-shadow: 0 0.375rem 0.625rem -0.313rem rgba(0,0,0,0.45);
}

#sub-header-bottom, #sub-header-bottom > span {
    border-radius: 50% / 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    line-height: 0.8;
}

#sub-header-bottom {
    margin-top: calc(-0.5rem + -3px);
}

#sub-header-bottom::before,
#sub-header-bottom::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 0.8rem;
    height: 3px;
    background-color: #fff;
}
#sub-header-bottom::before {
    left: 0;
}
#sub-header-bottom::after {
    left: auto;
    right: 0;
}

#main-nav::before, 
#main-nav .dropdown-menu {
    background-color: rgba(var(--bs-body-bg-rgb), 0.75);
    backdrop-filter: blur(0.625rem);
}
#main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
#main-nav .dropdown-menu {
    /*top: calc(100% + 0.5rem); */
}

*[class^="ymaps-"] {
    box-sizing: content-box;
}

[v-cloak] {
    visibility: hidden;
}
[v-cloak="display"] {
    display: none;
}

label {
    cursor: pointer;
}

input[type="date"], input[type="month"] {
    position: relative;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="month"]::-webkit-calendar-picker-indicator
{
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.bi {
    display: inline-block;
    vertical-align: -0.125rem;
}

ol.nested {
    list-style-type: none;
    counter-reset: item;
}
ol.nested > li {
    counter-increment: item;
}
ol.nested > li::before {
    content: counters(item, '.') ': ';
}

li.breadcrumb-item::before {
    float: none !important;
}

@media screen and (max-width: 767px) {
    
    main > div {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
