@font-face {
font-family: "madelikesslab";
src: url("./madelikesslab.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: madelikesslab;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    box-sizing: border-box;
}

.container {
    display: block;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.background-description, .background-form, .background-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
    padding: 20px 0;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 5px;
}

.background-description {
    background-image: url('/files/header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.background-form {
    /*background-image: url('/imgs/fon2.jpg');*/
    background-size: contain;
    background-position: center;
    color: white;
}

.ponnepon{
    font-size: 10px;
}

input[type="submit"] {
    white-space: normal;
}
.footer a{
    color: #201854;
}
.background-text {
    background-color: #201854;
    color: white;
}

.description-content, .form-content, .text-content {
    background-color: rgb(87 85 97);
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    /*width: 500px;*/
    width: 80%;
    box-sizing: border-box;
}

.description-content h1, .form-content h1 {
    font-size: 2em;
    margin: 0 0 20px 0;
}
.description-content h2, .form-content h2 {
    font-size: 1.6em;
    
}

.description-content p, .text-content p {
    font-size: 1em;
  
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.form-group label {
    display: block;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.form-group input[type="text"] {
    flex: 1;
}

.form-group select {
    flex: 1;
}

.form-divider {
    margin: 20px 0;
    border-bottom: 1px solid #ccc;
}

.form-content input[type=submit] {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5e00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.button_order{
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5e00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.result{
    display: none;
}
/*
.order_popup{
    display: none;
}
.order_popup.active{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #201854;
}
.order_popup>div{
    padding: 0 20px;
}*/

.form-content input[type=submit]:hover {
    background-color: #e68a00;
}



.description-content a{
    color: white;
}

.next_{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


.err-text::marker{
    color: #ff0000;
}
.err-text{
    color: #904747;
    background: #ffffff69;
    border-radius: 5px;
    margin-top: 1px;
    padding: 3px;
    display: list-item;
}
.err{
    border: 1px solid red !important;
}

.footer{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.result_texts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px;
}

.result_li {
    border: 2px solid #201854;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.result_title {
    background-color: #201854;
    color: white;
    font-size: 18px;
    padding: 10px;
    font-weight: bold;
    /*text-align: center;*/
    width: 100%;
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.result_text {
    background-color: #ccc;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    display: none;
}


.pay_form{
    display: flex;
    margin: 0 20px 20px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pay_form>div {
    text-align: center;
    max-width: 90%;
    background-color: rgb(87 85 97);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
}

.pay_text {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.pay_form input[type="email"], .pay_form_promo input[type="text"] {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.pay_form input[type="submit"], .pay_form_promo input[type="submit"], .pay_form_promo_ok input[type="submit"] {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff5e00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}
.pay_form input[type="submit"]:hover, .pay_form_promo input[type="submit"]:hover, .pay_form_promo_ok input[type="submit"]:hover {
    background-color: #e68a00;
}

.pay_form input[type="email"]::placeholder, .pay_form_promo input[type="email"]::placeholder {
    color: #000;
}


/**/


.diagram-value {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30%;
    background-color: #cacace;
    font-size: 17px;
    border: 1px #eee solid;
    transition: background-color .3s, border-color .3s
}

.diagram-value.-active {
    border-color: #bbb;
    background-color: #f1f1f1
}

.diagram-value.-active:hover {
    background-color: #fff;
    cursor: default;
    border: 1px solid gray !important
}

.diagram-values-item-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.diagram-values-item-horizontal__title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
    padding-right: 30px
}

.diagram-values-item-horizontal__values {
    margin-right: -2px
}

.round-values-list {
    display: flex;
    align-items: center
}

.round-values-list__item {
    margin: 2px
}

.diagram-values-list {
    max-width: 470px
}

.diagram-values-list__item:not(:last-child) {
    margin-bottom: 10px
}

.diagram-values-item {
    margin-bottom: 50px;
}

.diagram-values-item__title {
    font-weight: 500;
    margin-bottom: 10px
}

.diagram-values-item__description {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.375
}

.small-diagram-values {
    display: flex;
    align-items: center;
    min-height: 80px
}

.small-diagram-values__titles-block {
    padding-right: 25px;
    min-width: 70px
}



.small-diagram-values__title {
    margin-bottom: 20px
}

.small-diagram-values__title:last-child {
    margin-bottom: 0
}

.small-diagram-values__values-block {
    position: relative;
    width: 130px;
    height: 80px
}

.small-diagram-values__path-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px
}

.small-diagram-values__value {
    position: absolute
}

.small-diagram-values__value.-top-left {
    top: 0;
    left: 0
}

.small-diagram-values__value.-bottom-left {
    bottom: 0;
    left: 0
}

.small-diagram-values__value.-center {
    top: 50%;
    right: 0;
    transform: translate(0, -50%)
}

.round-values-list__item{
    list-style: none;
}

.round-values-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.pay_form_promo, .pay_form_promo_ok, .popup_promo{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgb(0 0 0 / 72%);
}
.pay_form_promo>div, .pay_form_promo_ok>div, .popup_promo>div {
    text-align: center;
    max-width: 90%;
    background-color: rgb(87 85 97);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
}
.pay_form_promo.active, .pay_form_promo_ok.active, .popup_promo.active{
    display: flex;
}

.popup_close{
    position: absolute;
    top: 3px;
    right: 1px;
    margin: 0;
    border: 0;
    border-radius: 0;
    outline: none;
    background: transparent;
    z-index: 10;
    cursor: pointer;
    border-radius: 50%;
    content: '';
    margin: 20px;
}

/*div#pay_form_promo>div .popup_close:after {*/
/*.popup_close:after {*/

/*    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.999999 3C0.447714 2.44771 0.447716 1.55228 1 1C1.55229 0.447715 2.44772 0.447715 3 1L19 17C19.5523 17.5523 19.5523 18.4477 19 19C18.4477 19.5523 17.5523 19.5523 17 19L0.999999 3Z' fill='%23141414'/%3E%3Cpath d='M17 0.999998C17.5523 0.447713 18.4477 0.447715 19 1C19.5523 1.55228 19.5523 2.44772 19 3L3 19C2.44771 19.5523 1.55228 19.5523 1 19C0.447716 18.4477 0.447715 17.5523 1 17L17 0.999998Z' fill='%23141414'/%3E%3C/svg%3E%0A");*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    display: block;*/
/*    font-size: 0;*/
/*    margin: 11px;*/
/*}*/
.popup_close:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.999999 3C0.447714 2.44771 0.447716 1.55228 1 1C1.55229 0.447715 2.44772 0.447715 3 1L19 17C19.5523 17.5523 19.5523 18.4477 19 19C18.4477 19.5523 17.5523 19.5523 17 19L0.999999 3Z' fill='%23141414'/%3E%3Cpath d='M17 0.999998C17.5523 0.447713 18.4477 0.447715 19 1C19.5523 1.55228 19.5523 2.44772 19 3L3 19C2.44771 19.5523 1.55228 19.5523 1 19C0.447716 18.4477 0.447715 17.5523 1 17L17 0.999998Z' fill='%23141414'/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 20px;
    display: block;
}

.promo_link a{
    color: #fff;
    font-size: 1.2em;
}

.pay_form input[type="submit"]{
    margin-top: 0;
}

.pay_form_promo_ok .pay_text, .popup_promo .pay_text{
	font-size: 1.4em;
}

.popup_promo{
    color: white;
}
.popup_promo p{
    font-size: 1.5em;
}
.popup_promo li{
    font-size: 1.4em;
    text-align: left;
}

.pay_form_link_bl{
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    left: 0px;
    background: transparent;
    backdrop-filter: blur(5px);
    height: 30%;
    align-items: center;
    text-align: center;
}
.pay_form_link{
    display: flex;
    padding: 10px 20px;
    background-color: #ff5e00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    margin: auto;
    flex-direction: column;
}
#pay_form_ankor{
    position: absolute;
    top: 0;
    margin: -20%;
    width: 0;
    height: 0;
    padding: 0;
    border: 0;
}

.img_round_title{
    font-size: 1.3em;
    font-weight: 600;
    /*display: block;*/
    text-align: center;
    padding: 0 10px;
    word-break: break-all;
}

.otzivi{
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.otzivi>h2{
    text-align: center;
    display: block;
    width: 100%;
}
.otzivi_bl{

}
.otziv_one{
    padding: 20px;
    box-shadow:
            inset 0 -3em 3em rgba(0, 0, 0, 0.1),
            0 0 0 2px rgb(255, 255, 255),
            0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
    margin: 30px 0;
}
.text_o{

}
.name_o{
    font-weight: 600;
    margin: 3px;
}
.stars_o{
    color: gold;
}


@media (max-width: 768px) {
    .description-content, .form-content, .text-content {
        max-width: 100%;
        width: 95%;
    }

    .description-content h1 {
        font-size: 1.2em;
    }
    .description-content h2, .form-content h1 {
        font-size: 1em;
    }
		.form-content h2 {
			font-size: 1em;
		}

    .form-group label {
        font-size: 1em;
    }

    .form-group input,
    .form-group select {
        font-size: 0.9em;
    }

    .form-content input[type=submit] {
        font-size: 1em;
        padding: 8px 16px;
    }

    .form-group {
        flex-direction: column;
        align-items: stretch;
    }

    .pay_form>div {
        width: auto;
        max-width: 95%;
    }
}

@media (min-width: 769px) {
    .description-content, .form-content, .text-content {
        max-width: 120%; /* Увеличение ширины контейнера на 30% на десктопе */
    }
}

@media only screen and (min-width:768px) {
    .small-diagram-values__titles-block {
        min-width: auto;
    }
}






.wait_result{
    text-align: center;
}

.footer a{
    color: black;
}

.background-text{
    background-color: #000000;
    color: white;
}
.background-text>div{
    padding: 0;
    background: transparent;
}
#description h2{
	font-size: 1.2em;
}
#description h2{
	font-size: 1em;
}
.result_bl {
    padding: 1em;
}
.numfate {
    font-size: 1.4em;
    background: #00000000;
    padding: 1em;
    border-radius: 0px;
    color: #000;
    margin: 1em 0;
    text-align: center;
    box-shadow: 0 4px 8px #322f47;
}
.res_el {
    margin: 1em 0;
    font-size: 1.4em;
    background: #00000000;
    padding: 1em;
    border-radius: 0px;
    color: #000;
    box-shadow: 0 4px 8px #322f47;
}
.res_year {
    font-weight: bolder;
    font-size: 1.4em;
}
.res_row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
}
.res_row > div {
    padding: 0.5em;
    text-align: left;
    background: #ffffff;
    border-radius: 0px;
    margin: 5px;
    flex-grow: 1;
    flex-basis: 0;
    display: flex;
    flex-direction: column;
}
.pay_form_link_bl {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    left: 0px;
    background: transparent;
    backdrop-filter: blur(5px);
    height: 40%;
    align-items: center;
    text-align: center;
}
.numcard .el {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.numcard img {
    width: 100%;
}
.numcard-img {
    width: 10%;
}
.numcard-text>h2{
    margin: 0;
}
.numcard-text {
    width: 90%;
    padding: 0 1em;
}
.pay_form_link_tab{
    color: black;
}
.orange_link{
    color: #ff5e00;
}
@media (max-width: 500px) {
    .numcard h2 {
        margin-top: 1em;
    }
    .numcard-text {
        width: 100%;
        padding: 0 1em;
    }
    .numcard .el {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
    }
    .numcard-img {
        width: 100%;
    }
    .footer {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        text-align: center;
    } 
		.footer p{
			margin: 0.5em;
			font-size: 0.7em;
		}
}


.m_block{
	display: flex;
	align-items: stretch;
	justify-content: space-evenly;
	flex-direction: row;
	flex-wrap: nowrap;
}
.m_block_el{
	padding: 1em;
	flex: 1;
}
.m_block_el > div{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.num_ya{
	padding: 1em;
}
.ya_arcane{
	
	margin: 0 1em;
}
.card{
	width: 25%;
	float: left;
	text-align: center;
	margin-right: 1em;
}
.card img{
	width: 100%;
}
.name{
	padding: 1em;
	text-align: center;
}
.dop{
	padding: 1em;
	clear: both;
	display: flex	;
	flex-direction: column;
	align-items: center;
}
.dop_el{
    padding: 0.5em;
    border: 1px solid black;
    margin: 0.5em 0;
    width: 100%;
    text-align: center;
}
.dop a{
	color: black;
    text-decoration: none;
}
.dop_full{
	clear: both;
	padding: 1em;
}

.repeat_analiz{
	display: flex;
	justify-content: center;
	margin-bottom: 1em;
}
.repeat_analiz a{
	
}

@media (max-width: 500px) {
	.m_block{
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
	}
	.m_block_el{
		/*padding: 1em;*/
	}
	.ya_arcane{

	}
	.card{
		width: 100%;
		float: none;
		text-align: center;
		margin-right: 0em;
	}
	.ya_arcane{
		padding: 1em;
	}

}

.description-content {
    background-color: rgb(16 14 30 / 35%);
}

.head{
    text-align: center;
}
.cycles{
    padding: 0.5em;
    clear: both;
}
.cycle{
    padding: 0.5em;
    border: 1px solid black;
    margin: 0.5em 0;
}



.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    overflow: hidden;
}

.loader:before {
    content: '';
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    height: 80px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAAA3lBMVEVHcEwaKy0YHyslMUcHCwwSGx8gLjkRGhoRFBcMERMaIC1JRYswYlMTGyITHSQMEhdbVrBgxag4dGI+PW5bup4bJzIeLDdjXrxhx6lMnIVbVbZQTJ8+O3kRGR85UlYYIys0MWdaVqxWspc+gW1bvqEdKzdEjHdGUlsbJzBUq5HMyusgLzs1N1RRTZ1DQIVq2Ld9eMVWsJVNooldfYRloY+2tsR6zbR70LbIxuRBSlFpZqBxuaRwt6JVUKEgLjlewqVhXLghMDxlzq9oYsVlYMFiXbxiyKoYJzMaKTQjMj78YlsbAAAAPnRSTlMAKDpMBB7nFgkQMKxedIdM5f9yfNnG2PHuq/7Gi15Bn2vVzonu8Jm3tb1L+Vm4mv7A5L9igxu4rzObj6Kes76VSkQAAAOJSURBVFjD1Zh5d5pAFMUBgWFQEBBx16gx1bq1pmmaLiLDkvD9v1BZEzRRgZlzevr+9vy89703d0Yp6v8vMLz/+SWoIQmYwPR7Svdw6HYPXbeCjRP7Y8dx3UNcTg8TV1k7dgoLy1VYLFzPdg5HZVfjLtA0KI6jq6/iXNeJyh5zSV/pmlYRivFuWrE617EdpVcNq7/KMDitM+Xy47g/sTzHVqo3IqQoln3XPTjVp3mdM0ooz7Vb1Qq81JVFW8s1pVXLDXFK46onbTsRc7QvtOu0Gnn8iPpWu/aZhh3K2+TsONhtO/CKvkCessp/NDvbyaUvrwQ8e11gISi2s9Xp84ML5mFvih0wdofa54hwHPAaRQ8V1JF+xtPGLsELfLXRBJ5poNMvkyM1hDofDWzsOtVyydRBSPtoA92xUA4I2ipi3iVCy22JZcNTQ97kVEzftm9KpzGrq6emQcvpYSR8Dalt7qSDNoNzOwYS7440j+0qhVMaMr3sgWEcR8QChoO+OxrJGvPS7XjqLcg6xn0W1JCJam/RaysCJpBrm94ik6t9CrcmnulxbznDYAPvMp7ZXgtiA8MmpnMWlDU2jxoiU50kh+2h28AH0qpp3iZN/EHgLRmstmmaySv3c5cm8Nj9qprqfQqEJICeaX5LgHhv0wzwdwLsUWQsm48EgdFQvidTJrCG0dqkwIcqASCDMsANgaHUQuBjmq8CPnAaAn+l8QXwgbtga9I9pCr4JwXcBkNRUyAtYgMroWPzPg1EfIV3EfBVGPZQYOT4lkAmZJfG25H72b8IZ4ymxHjDqIOoQlZg9ukQXNSDAYfXQdPLvrQHvGXxZS9nqKunjsHM2u8tA+IIVPVMxIj+PihLxlnqzFspUMiHwP2ynGktWsLJUQaOrEhis1QwAh156OSHBTfbY5gG00Xn9J+sQdTFvV8ntpux6T1PkwIK85hocKSIsBkR/Wax+4A9P0cQEy2jiGvAXFgMGLu2+PyTYQYXs1lIJrOU8u0jK0nXsl6Oif48z7XFzKXrH6rzse2ZfC0pgGzkag2XrI/PS/Aijp/nXbCBESMtXj5nnBnNjAJnCkp8glw2JfF0PgIjG4H8YjcvkAwr7qW1NEZSnaEBFCCgmYE8533fkIpHMVsf8VaiM6glH9bS8n2fH9VLvv5gXW7Onl9enuN6CWrWlOt4rwPArBpPn6J6aqxEQJEtlvoH9RdNz5WZCuG9aQAAAABJRU5ErkJggg==);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.spin {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
}

.preloader_css {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #b6afeb;
}

.preloader_css > div {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
    color: #6f3b95;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to right, #ff8888, #9300ff);
}