@import url("https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap&subset=cyrillic");


.nav-box-btn {
    height: 40px;
    width: 40px;
}
.nav-box-btn2 {
    height: 40px;
}
body {
    color: #65638f;
    background-color: #f0f2f5;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #454360;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
}
.text {
		 margin-top: 0em;
		 margin-bottom: 0em;
		 font-size: 13px;
	}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

.card {
    border-radius: 0.9em;
    background-color: #fefefe8b;
}

@media (min-width: 768px) {
    .filter {
        margin-top: 50px;
        position: fixed;
        top: 35.65%;
        transform:translateY(-50%)!important
    }
}
@media (max-width: 768px) {
    .filter {
        margin-bottom: 20px;
        max-width: 400px;
    }
}

/* filters */
.filter-box {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    max-width: 100%;
    background-color: white;
}
.filter-section {
    max-width: 350px;
}
.btnhover-clear,
.btn-primary-custom {
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
}
.btn-clear {
    margin-left: 80%;
}
.btn-primary-custom {
    width: 100%;
    margin-top: 10px;
}
.dropdown-menu-c {
    max-height: 200px;
    overflow-y: auto;
    margin-top: 5px;
}
.input-multiple {
    position: relative;
}
.input-multiple .selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    cursor: pointer;
    min-height: 38px;
}
.input-multiple .dropdown-menu-c {
    display: none;
}
.input-multiple.open .dropdown-menu-c {
    display: block;
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 1;
}
.dropdown-menu-c li {
    padding: 8px;
    cursor: pointer;
}
.dropdown-menu-c li:hover {
    background-color: #f0f0f0;
}
.dropdown-menu-c input[type="checkbox"] {
    display: none;
}
.dropdown-menu-c.empty:before {
    content: "ничего не найдено";
    display: block;
    padding: 8px;
    color: #999;
    text-align: center;
}
.selected-item {
    background-color: #fff;
    color: black;
    padding: 5px 10px;
    border-radius: 10px;
    border: solid 1px #999;
    display: flex;
    align-items: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0);
    cursor: default;
}
.selected-item .remove-item {
    margin-left: 5px;
    font-weight: bold;
    cursor: pointer;
}
.selected-item .remove-item:hover {
    color: red;
}


.reg-box {
    margin: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 500px;
    min-height: 10vh;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.main-box {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 3px;
    padding-right: 3px;

    min-height: 10vh;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.box {
    padding: 10px;
    background-color: #fff;
    border: 1px solid #d9dee2;
    border-radius: 10px;
    min-height: 25.4vh;
    width: 100%;
}

.info {
    color: #1662f9;
    text-decoration: underline;
}

.body {
    background-color: #f0f8ff;
    padding: 15px;
}

.td-right {
    text-align: right;
    white-space: nowrap;
    width: 1%;
}
.bdr {
    border: 1px solid rgba(0, 0, 0, 0.175);
    border-radius: 15px;
    overflow: hidden;
    margin: 5px;
}

@media (min-width: 1600px) {
    .col-extra-1 {
        width: 10%;
    }
    .col-extra-11 {
        width: 90%;
    }
}

.table {
    margin-bottom: -1px;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    z-index: 9999;
    position: fixed;
    width: fit-content;
    top: 10px;
    right: 10px;
    display: block;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 10px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 10px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 10px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 10px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}
.col-cus-sm {
    width: 0px;
}
td {
    background-color: #f0f2f5 !important
}

.content {
    flex: 1 !important;
}
.carousel {
    position: relative;
    max-width: 1288px;
    margin: auto;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.event-info {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
}

.event-info h2 {
    margin-top: 0;
}

.event-info p {
    margin-bottom: 10px;
}

.event-info a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.event-info a:hover {
    background-color: #0056b3;
}
