:root {
    --main: #D22127;
}

.mySwiper {
    border-radius: 12px;
    margin: 15px 0;
}

@media (min-width: 768px) {
    header .logo img {
        max-height: 70px;
        height: 100%;
    }
}

.garland .line {display: flex;flex-wrap: wrap;column-gap: 22px;height: 30px;overflow: hidden;margin-top: 5px;}
.garland .line:before {content: '';position: absolute;top: -4px;left: -11px;width: 25px;height: 19px;border-bottom: solid #222 2px;border-radius: 30%;}

.garland .line div {position: relative;width: 18px;height: 18px;top: 6px;background: #fff;border-radius: 50%;-webkit-border-radius:63px 63px 63px 63px / 108px 108px 72px 72px;border-radius:50% 50% 50% 50%/60% 60% 40% 40%;margin-bottom: 15px;}

.garland .line div:before {content: '';position: absolute;top: -6px;left: 4px;width: 10px;height: 9px;background: #222;border-radius: 3px;}
.garland .line div:after {content: '';position: absolute;top: -14px;left: 5px;width: 49px;height: 19px;border-bottom: solid #222 2px;border-radius: 30%;}

.garland .line .red {background-color: #fb4545;animation: lightningRed 1s infinite;}

.garland .line .green {background-color: #24D024;animation: lightningGreen 1s infinite;}
.garland .line .yellow {background-color: #fff952;animation: lightningYellow 1s infinite;}
.garland .line .blue {background-color: #0A53DE;animation: lightningBlue 1s infinite;}

@keyframes lightningRed {
	0% {background-color: #fb4545;}
	50% {background-color: #fff952;}
	100% {background-color: #fb4545;}
}

@keyframes lightningGreen {
	0% {background-color: #24D024;}
	50% {background-color: #0A53DE;}
	100% {background-color: #24D024;}
}

@keyframes lightningYellow {
	0% {background-color: #fff952;}
	50% {background-color: #fb4545;}
	100% {background-color: #fff952;}
}

@keyframes lightningBlue {
	0% {background-color: #0A53DE;}
	50% {background-color: #24D024;}
	100% {background-color: #0A53DE;}
}

.toasts_wrapper {position: fixed;z-index: 999;}

@media (max-width: 767px) {
	.toasts_wrapper {left: 0;bottom: 0;width: 100%;}
}
@media (min-width: 768px) {
	.toasts_wrapper {right: 16px;bottom: 16px;min-width: 250px;max-width: 250px;}
}

.toasts_wrapper .toast {
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
	width: 100%;
	min-height: 54px;
	background: var(--sticky);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
	padding: 10px 15px;
	border: none;
    border-radius: 0;
	z-index: 1000;
}
.toasts_wrapper .toast.show {
    display: -ms-flexbox;
    display: flex;
}
.toasts_wrapper .toast .text {
    color: var(--color);
    font-size: 14px;
    font-weight: var(--text_medium);
    line-height: 18px;
	margin-right: 30px;
}
.toasts_wrapper .toast .text a {
	position: relative;
    display: inline-block;
	color: var(--color);
}
.toasts_wrapper .toast .text a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--color);
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
.toasts_wrapper .toast .text a:hover:after {
    width: 0;
}
.toasts_wrapper .toast .btn-close {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 10px;
    background: var(--main);
    color: #fff;
    font-size: 13px;
    line-height: 16px;
	border: none;
    border-radius: 64px;
	opacity: 1;
    cursor: pointer;
}

@media (max-width: 767px) {
	.toasts_wrapper .show {border-bottom: 1px solid var(--secondary);box-shadow: none;}
	.toasts_wrapper .show:last-child {border: none;}
}

@media (min-width: 768px) {
	.toasts_wrapper .show {border-radius: 6px;margin-bottom: 5px;}
}

.section_legal ul {
    font-size: 12px;
    line-height: 14px;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.section_legal ul li {
    margin-right: 0px;
}

.section_legal ul li:first-child {
    flex: 0 0 100%;
}

.section_legal ul li a {
    text-decoration: underline;
}

.section_legal ul li a:hover, .section_legal ul li a:active, .section_legal ul li a:focus {
    color: var(--main);
}

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1110px;
}

.swiper-button-prev, .swiper-button-next {
    display: none;
}