body {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background-color: #fafafa;
    margin: 0;
}

.parking-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 120px;
    height: 100vh;
    min-height: 600px;
}

.parking-header {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    flex: 0 0 auto;
}

.parking-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.parking-lang {
    display: flex;
    justify-content: space-between;
    margin-right: -7px;
}

.parking-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: 0 0 auto;
    margin-bottom: 60px;
}

@media all and (max-width: 480px) {
    .parking-wrapper {
        margin: 0 40px;
    }

    .parking-header {
        margin-top: 40px;
    }

    .parking-bottom {
        margin-bottom: 40px;
    }
}

.lang-button-clear
 {
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
}

.domain-title {
    font-size: 120%;
    white-space: nowrap;
    color: #14295E;
    opacity: 0;
}

.body-base {
    font-family: "Noto Sans", serif;
    font-style: normal;
    margin-top: -20px;
}

.body-base .body-button,
.body-button-reg,
.body-button-ruc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    background-color: #EF3F23;
    border-radius: 2px;
    min-width: 210px;
}

.body-base .body-button:hover {
    background-color: #F2654F;
}

.body-base .body-button-wrapper {
    display: flex;
    height: 50px;
    margin-top: 20px;
    margin-right: 22px;
}

.body-button-check {
    margin-right: 0;
    margin-left: 22px;
}

.body-base .body-price-wrapper,
.body-no-domain {
    margin-top: 20px;
    line-height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.body-base .body-details-wrapper {
    display: block;
    margin-left: 13px;
    margin-top: 8px;
}

.body-base .body-details-icon {
    position: relative;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #dfe2ea;
    border-radius: 3px;
    font-size: 18px;
    line-height: 20px;
    color: #14295e;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-base .body-primary-info {
    font-size: 28px;
    color: #14295E;
}

.body-base .body-center-element-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.body-base .body-with-tooltip,
.body-with-tooltip {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

@media all and (max-width: 480px) {
    .body-base {
        margin-top: 0;
    }

    .body-base .body-button-wrapper {
        height: 40px;
    }

    .body-base .body-button,
    .body-button-reg {
        min-width: 190px;
    }

    .body-base .body-price-wrapper,
	.body-no-domain	{
        line-height: 20px;
        margin-top: 10px;
    }

    .body-base .body-primary-info {
        font-size: 15px;
    }

    .body-base .body-details-wrapper {
        margin-top: 5px;
    }
}

.body-button-reg {
    background-color: #1a5dd9 !important;
}

.body-button-reg:hover {
    background-color: #4378d9 !important;
}

.body-button-ruc {
    background-color: #030303 !important;
}

.body-button-ruc:hover {
    background-color: #353535 !important;
}

.text-base {
    font-family: "Noto Sans", serif;
    font-style: normal;
}

.text-preset-h3 {
    font-size: 20px;
    line-height: 20px;
    font-weight: normal;
}

.text-color-primary {
    color: #14295e;
}

.text-color-secondary {
    color: #8994af;
}

.popper-trigger {
    display: inline-block;
    cursor: pointer;
}

.spinner-border {
	padding: 7px 0;
	height: 56px;
	width: 210px;
}

.spinner {
	height: 56px;
	width: 210px;
	float: left;
	margin: 0 20px 0 0;
}

.spinner-text {
	padding-top: 15px;
	font-size: 20px;
}

.body-no-domain {
    display: block;
    line-height: 50px;
    font-size: 24px;
    color: #14295E;
}

/*! PreLoader */
        #loader {
            display: none;
        }

        .spinner {
            border: 8px solid rgba(0, 0, 0, 0.1);
            border-left-color: #1a5dd9; /* Цвет анимации */
            border-radius: 50%;
            width: 40px; /* Ширина прелоадера */
            height: 40px; /* Высота прелоадера */
            animation: spin 1s linear infinite; /* Анимация */
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

.tooltip {
  position: relative; /* Делает позицию относительной, чтобы позиционировать подсказку */
  display: inline-block; /*  Для правильной обработки и отображения подсказки */
}

.tooltip::after {
  content: attr(data-tooltip); /* Отображает текст из атрибута data-tooltip */
  position: absolute; /* Позиционирование подсказки относительно элемента */
  bottom: 125%; /* Расстояние подсказки от элемента снизу */
  left: 50%; /* Центрирование по горизонтали */
  transform: translateX(-50%); /*  Центрирование по горизонтали */
  padding: 0.6em; /* Отступы внутри подсказки */
  background-color: #333; /* Цвет фона подсказки */
  color: #fff; /* Цвет текста подсказки */
  border-radius: 5px; /* Закругление углов */
  font-size: 0.8em; /* Размер шрифта подсказки */
  z-index: 1000; /* Обеспечивает видимость подсказки над другими элементами */
  visibility: hidden; /* Скрывает подсказку по умолчанию */
  opacity: 0; /* Делает подсказку прозрачной */
  transition: opacity 0.3s, visibility 0.3s; /* Плавное появление/исчезновение */
}

.tooltip:hover::after {
  visibility: visible; /* Отображает подсказку при наведении */
  opacity: 0.8; /* Делает подсказку видимой */
}
		
/*! CSS Used fontfaces */
@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Noto Sans'), url('/media/fonts/NotoSans-Regular.woff') format('woff');
}

@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Noto Sans"), local("NotoSans"), url("/media/fonts/NotoSans-Regular.ttf") format("opentype");
}
