/*
 * Дополнительные стили кастомайзера, унаследованные от hello-elementor-child.
 *
 * Они лежали в базе (запись custom_css 394) и были привязаны к теме,
 * поэтому при переключении отвалились разом — вместе с ними пропала
 * тонкая полоса прокрутки, и страница поехала вбок. Замер это поймал.
 *
 * Перенесено как есть, ни одно правило не тронуто. Разбирать их будем
 * по мере переезда: каждое относится к чему-то конкретному — форме
 * Elementor, баннеру согласия, курсору, запасной форме пароля. Уехал
 * элемент — уехали и его строки отсюда.
 */

::-webkit-scrollbar {
  width: 7px;               /* ширина scrollbar */
}
::-webkit-scrollbar-track {
  background: #343434;
	border-radius: 10px;        /* цвет дорожки */
}
::-webkit-scrollbar-thumb {
  background-color: #25cbc2;    /* цвет плашки */
  border-radius: 20px;       
	border: 4px solid #25cbc2;
}

li {
	margin-bottom: 10px;
}

.elementor-widget-form .elementor-message {
    display: none!important;
}
@media (min-width: 1024px) {
.post {
	font-size: 17px;
	line-height: 1.5;
}
}
@media (max-width: 768px) {
.post {
	font-size: 15px;
	line-height: 1.5;
}
}
li::marker {
    color: #25cbc2;
    font-size: 20px;
}

li #text {
    padding-top: -20px!important;
    margin-top: -20px!important;
}
.cky-btn {
    background: transparent!important;
	Padding: 10px!important;
}
@media (max-width: 768px) {
	.cky-btn {
		font-size: 2.2vw!important;
		max-width: 31%!important;
	}
	.cky-notice-des * {
		font-size: 12px!important;
		line-height: 1.2em!Important;
	}
	.cky-title {
		font-size: 14px!important;
	}
.cky-notice-btn-wrapper {
			display: flex!important;        
			flex-direction: row!important;
    
				gap: 5px!important;
    }
.cky-btn-accept {
        margin-top: 10px!important;
    }
}
.cky-revisit-bottom-left {
   display: none!important;
}
.cky-banner-bottom {
    z-index: 32543452325!important;
}
.app {
    z-index: 123!important;
}
.cookie-pop {
	z-index: 345345!important;
}

.custom-invert-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999232323239!important;

    background: #ffffff;              /* белый для красивой инверсии */
    mix-blend-mode: difference;       /* инвертирует цвета под собой */
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}

/* когда над ссылкой */
.custom-invert-follower.is-link-hover {
    transform: translate(-50%, -50%) scale(1.4); /* размер можно менять */
}

.bg-4-lines-90{
  position: relative;
  overflow: hidden;
  --line-color: rgba(0,0,0,0.04);
}

.bg-4-lines-90::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1220px;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, var(--line-color), var(--line-color)),
    linear-gradient(to right, var(--line-color), var(--line-color)),
    linear-gradient(to right, var(--line-color), var(--line-color)),
    linear-gradient(to right, var(--line-color), var(--line-color));
  background-size: 1px 100%, 1px 100%, 1px 100%, 1px 100%;
  background-position: 0 0, 33.333333% 0, 66.666666% 0, 100% 0;
  background-repeat: no-repeat;
}

.bg-4-lines-90 > *{
  position: relative;
  z-index: 1;
}

.dark-bg.bg-4-lines-90{
  --line-color: rgba(255,255,255,0.06);
}












.post-password-form {
    max-width: 520px;
    margin: 80px auto;
    padding: 50px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,.06);
}

.post-password-form p:first-of-type {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

.post-password-form p:last-child {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    margin: 0;
}

.post-password-form label {
    flex: 1;
    margin: 0;
    font-weight: 600;
    color: #444;
}

.post-password-form input[type="password"] {
    width: 100%;
    height: 56px;
    margin-top: 8px;
    padding: 0 18px;
    border: 1px solid #dcdcdc;
    border-radius: 14px;
    font-size: 16px;
    outline: none;
}

.post-password-form input[type="password"]:focus {
    border-color: #2FD3CD;
    box-shadow: 0 0 0 3px rgba(47, 211, 205, .15);
}

.post-password-form input[type="submit"] {
    height: 56px;
    min-width: 130px;
    padding: 0 32px;
    border: 0;
    border-radius: 14px;
    background: #2FD3CD;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 56px;
    cursor: pointer;
    margin-top: 0;
    align-self: flex-end;
    transition: .3s ease;
}

.post-password-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(47, 211, 205, .25);
}

@media (max-width: 767px) {
    .post-password-form {
        margin: 40px 20px;
        padding: 30px 24px;
    }

    .post-password-form p:last-child {
        flex-direction: column;
        align-items: stretch;
    }

    .post-password-form input[type="submit"] {
        width: 100%;
    }

	}
}
