        /* Основные стили для скроллбара */
        ::-webkit-scrollbar {
            width: 12px; /* Ширина вертикального скроллбара */
            height: 12px; /* Высота горизонтального скроллбара */
        }

        /* Дорожка скроллбара */
        ::-webkit-scrollbar-track {
            background: #f1f1f1; /* Цвет фона дорожки */
            border-radius: 10px; /* Закругленные углы */
        }

        /* Ползунок скроллбара */
        ::-webkit-scrollbar-thumb {
            background: #4d73fc; /* Основной цвет ползунка */
            border-radius: 10px; /* Закругленные углы */
            border: 3px solid #f1f1f1; /* Отступ вокруг ползунка */
        }

        /* Ползунок при наведении */
        ::-webkit-scrollbar-thumb:hover {
            background: #3a5bd9; /* Цвет при наведении */
        }

        /* Для Firefox */
        * {
            scrollbar-width: thin; /* "auto" или "thin" */
            scrollbar-color: #4d73fc #f1f1f1; /* ползунок и дорожка */
        }
body {
    color: #4a4a4a;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    background: #ececf2;
}

.navbar {
    background-color: #ececf2;
}

.navbar-item img {
    max-height: 3.75rem;
}

@media screen and (min-width: 1024px) {
    .navbar .navbar-end .navbar-link, .navbar .navbar-end>.navbar-item, .navbar .navbar-start .navbar-link, .navbar .navbar-start>.navbar-item {
        color: #0041a0;
    }
}

@media screen and (min-width: 1024px) {
    .navbar .navbar-end .navbar-link.is-active, .navbar .navbar-end .navbar-link:focus, .navbar .navbar-end .navbar-link:hover, .navbar .navbar-end>a.navbar-item.is-active, .navbar .navbar-end>a.navbar-item:focus, .navbar .navbar-end>a.navbar-item:hover, .navbar .navbar-start .navbar-link.is-active, .navbar .navbar-start .navbar-link:focus, .navbar .navbar-start .navbar-link:hover, .navbar .navbar-start>a.navbar-item.is-active, .navbar .navbar-start>a.navbar-item:focus, .navbar .navbar-start>a.navbar-item:hover {
        color: #0041a0;
    }
}

.navbar-link.is-active, .navbar-link:focus, .navbar-link:focus-within, .navbar-link:hover, a.navbar-item.is-active, a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover {
    background-color: #ececf2;
    color: #485fc7;
}

.button.is-primary {
    background-color: #4d73fc;
    border-color: transparent;
    color: #fff;
}

.button.is-primary.is-hovered, .button.is-primary:hover {
    background-color: #393185!important;
    border-color: transparent;
    color: #fff;
}

.box {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 .5em 1em -.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
    color: #4a4a4a;
    display: block;
    padding: 1.25rem;
}

.input, .select select, .textarea {
    background-color: #e7ebff;
    border-radius: 4px;
    color: #363636;
    border: none;
    font-size: 14px;
}

.button, .file-cta, .file-name, .input, .pagination-ellipsis, .pagination-link, .pagination-next, .pagination-previous, .select select, .textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: none;
    display: inline-flex
;
    font-size: 14px;
    height: 2.5em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(.5em - 1px);
    padding-left: calc(.75em - 1px);
    padding-right: calc(.75em - 1px);
    padding-top: calc(.5em - 1px);
    position: relative;
    vertical-align: top;
}

section.section.search {
    padding-top: 10px;
    padding-bottom: 20px;
}

section.section.blocks {
    padding-top: 0px;
}

section.section.news {
    padding-top: 0px;
}

.box h2 {
    color: #4d73fc;
}

.is-256x256 {
    width: 200px;
}

/* Float для изображения */
.news-image.is-pulled-left {
    float: left;
    margin-right: 1rem;  /* Отступ между текстом и картинкой */
    margin-bottom: 1rem;
    max-width: 200px;   /* Опционально: ограничить ширину */
}

/* Clearfix (чтобы контейнер не "схлопывался") */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.ad-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #999;
}

	.ad-unit {
	  transition: transform 0.2s;
	}

	.ad-unit:hover {
	  transform: scale(1.01);
	}

	  .navbar-dropdown .columns {
		margin: 0;
	  }
	.navbar-dropdown .column {
		padding: 0.5rem 1rem;
		min-width: 280px;
	}
  @media screen and (max-width: 1023px) {
    .navbar-dropdown .columns {
      display: block;
    }
    .navbar-dropdown .column {
      width: 100%;
    }
  }
  
  
  
@media screen and (min-width: 1024px) {
    .navbar-item.has-dropdown.is-active .navbar-link, .navbar-item.has-dropdown:focus .navbar-link, .navbar-item.has-dropdown:hover .navbar-link {
        background-color: #3f5ecf;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
}

@media screen and (min-width: 1024px) {
    .navbar-dropdown {
        background-color: #3f5ecf;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        border-top: none;
        box-shadow: 0 8px 8px rgba(10, 10, 10, .1);
        display: none;
        font-size: .875rem;
        left: 0;
        min-width: 100%;
        position: absolute;
        top: 100%;
        z-index: 20;
    }
}

@media screen and (min-width: 1024px) {
    .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover {
        background-color: #3f5ecf;
        color: #0a0a0a;
    }
}

@media screen and (min-width: 1024px) {
    .navbar-dropdown .navbar-item {
        padding: .200rem 1rem;
        white-space: nowrap;
        color: #fff;
    }
}

@media screen and (min-width: 1024px) {
    .navbar-dropdown a.navbar-item:focus, .navbar-dropdown a.navbar-item:hover {
        background-color: #3f5ecf;
        color: #ffffff;
        text-decoration: revert;
    }
}

@media screen and (min-width: 1024px) {
    .navbar .navbar-end .navbar-link.is-active, .navbar .navbar-end .navbar-link:focus, .navbar .navbar-end .navbar-link:hover, .navbar .navbar-end>a.navbar-item.is-active, .navbar .navbar-end>a.navbar-item:focus, .navbar .navbar-end>a.navbar-item:hover, .navbar .navbar-start .navbar-link.is-active, .navbar .navbar-start .navbar-link:focus, .navbar .navbar-start .navbar-link:hover, .navbar .navbar-start>a.navbar-item.is-active, .navbar .navbar-start>a.navbar-item:focus, .navbar .navbar-start>a.navbar-item:hover {
        color: #fdfdfd;
    }
}

a.news-link:hover {
	color: #0041a0!important;
}

.navbar-dropdown {
    left: -300px;
}

.navbar-item.has-dropdown.is-active .navbar-link,
.navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
	color: #fff;
}

.navbar-item.has-dropdown.is-active .navbar-link:not(.is-arrowless)::after,
.navbar-item.has-dropdown.is-hoverable:hover .navbar-link:not(.is-arrowless)::after {
		border-color: #ffffff;
		margin-top: -.375em;
		right: 1.125em;
	}

@media screen and (max-width: 1023px) {
	.navbar-item.has-dropdown.is-active .navbar-link {
		color: #fff; 
	}
	.navbar-item.has-dropdown.is-active  .navbar-link:not(.is-arrowless)::after {
		border-color: #ffffff;
		margin-top: -.375em;
		right: 1.125em;
	}
}

.navbar-start {
    padding-top: 25px;
}

.is-primary2 {
	color:#393185!important;
}

        .check-item {
            color: #009933;
            margin-right: 8px;
        }
        

        
        
        .steps li {
            counter-increment: step-counter;
            margin-bottom: 15px;
            position: relative;
            padding-left: 35px;
        }
        
        .steps li:before {
            content: counter(step-counter);
            background-color: #0066cc;
            color: white;
            font-weight: bold;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: inline-block;
            text-align: center;
            position: absolute;
            left: 0;
            line-height: 25px;
        }
		

        .quote {
            font-style: italic;
            color: #555;
            border-left: 3px solid #0066cc;
            padding-left: 15px;
            margin: 25px 0;
        }
		

        .service-icon {
            width: 50px;
            height: 50px;
            background-color: #0066cc;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 20px;
        }
		

        .check-item {
            color: #0066cc;
            margin-right: 8px;
        }
		
        .service-card {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .service-icon {
            width: 50px;
            height: 50px;
            background-color: #0066cc;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 20px;
        }
		
.menu-list li.active {
    background: #ececf2;
}

.dropdown-item {
    color: #4a4a4a;
    display: block;
    font-size: .875rem;
    line-height: 1.5;
    padding: .375rem 1rem;
    position: relative;
    border: none;
	cursor:pointer;
}

.label {
    color: #363636;
    display: block;
    font-size: 1rem;
    font-weight: 300;
}

li.ql-indent-1 {
    margin-left: 30px;
}

.column.fly {
    background-image: url(/img/fly.png);
    background-repeat: no-repeat;
    background-position-y: bottom;
    height: 85px;
    background-position-x: center;
}

.otp, .prib {
	font-size:13px;
}

hr.result_hr {
    height: 1px;
    background: #e4e4ea;
}

.table {
    background-color: #f8f8ff;
    color: #363636;
}

.table td, .table th {
    border: none;
    border-width: 0 0 1px;
    padding: .5em .75em;
    vertical-align: top;
}

.data_reis .table td, .data_reis .table th {
    border: none;
    border-width: 0 0 1px;
    padding: 0px .75em;
    vertical-align: top;
}

.data_reis h2{
	margin-bottom:10px;
}

.order-buy .label {
    color: #363636;
    display: block;
    font-size: 12px;
    font-weight: 300;
}

#passenger-dropdown .dropdown-trigger button.button {
    background: #e7ebff;
}


.navbar-item select {
    background-color: #f8f8ff;
}

#swapButton {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: all 0.3s;
    margin-top: 25px;
}

#swapButton:hover {
  color: #000;
  transform: scale(1.1);
}

#swapButton:active {
  transform: scale(0.95);
}

.field0 {
    margin-right: 15px;
}

.number-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.number-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  transition: all 0.2s;
}

.number-btn:hover {
  background: #e0e0e0;
}

.number-input {
  width: 44px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  -moz-appearance: textfield;
  cursor: default; /* Изменяем курсор для читаемого поля */
}

.number-input::-webkit-outer-spin-button,
.number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.disabled {
	opacity: 0.5;
	pointer-events: none;
}

.number-btn.disabled {
	cursor: not-allowed;
}

.dropdown-item {
	margin-bottom: 12px;
}

.dropdown-item label {
	display: block;
	margin-bottom: 6px;
	font-weight: 500;
}

.scroll-to-top {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	background-color: #4d73fc;
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px; 
	height: 50px; 
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
	transition: background-color 0.3s ease, opacity 0.3s ease; 
}

.scroll-to-top:hover {
	background-color: #3b5bbf;
}

.scroll-to-top.show {
	display: block;
}

span.step_order {
    color: #888;
    margin-right: 20px;
}

span.step_order.active {
    color: #4d73fc;
    margin-right: 20px;
}

.table {
    background-color: #ffffff;
    color: #363636;
}

.column-buy div {
    top: 20px;
    position: relative;
    font-size: 22px;
    color: #3a51bb;
}

.passenger-form h2 {
    font-size: 20px;
}

.translit-result {
    background: #4d73fc;
    color: #fff;
    padding: 5px;
    text-transform: uppercase;
}

.order-buy h5 {
    color: #f14668;
}

.is-fullwidth select, input[name="doc_number[]"] {
    color: #4d73fc;
    font-weight: bold;
    background: #fff;
    border: 1px solid #ccc;
}