.calc_container {
    padding: 40px 10px;
}
.calc_toolbar_wr {
    display: flex;
    justify-content: space-between;
}
.ct_buttons {
    display: flex;
    align-items: center;
    flex-basis: 35%;
}
.clc_but {
    margin: 0 20px 0 0;
}
.clc_but:hover {
    scale: 110%;
}
.clc_but.active {
    filter: drop-shadow(0px 0px 5px rgba(44, 42, 112, 0.7));
}
.clc_but img {

}
.ct_inputs {
    display: flex;
    align-items: center;
    flex-basis: 65%;
    justify-content: end;
}
.ct_inputs input {
    background: #FFFFFF;
    height: 36px;
    border: 1px solid #2C2A70;
    border-radius: 4px;
    margin-right: 10px;
    padding: 0 10px;
}
.cti_left {
    display: flex;
    justify-content: end;
    flex-basis: 45%;
}
.cart_load_wr {
    display: none;
    justify-content: end;
    align-items: center;
}
.cti_right {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-basis: 55%;
}
#content_add {
    width: 320px;
}
#content_add_button {
    width: 125px;
    background: rgba(43, 41, 112, 1);
    color: #ffffff;
    margin: 0;
    cursor: pointer;
    height: 38px;
    border-radius: 4px;
}

.calc_body_wr {
    padding: 35px 0;
}
.calc_body_wr tr {
    border: 1px solid #0C1990;
}
.calc_body_wr tr td {
    border: 1px solid #2C2A70;
}
.cb_table_body {
    margin-top: 5px;
    transition: border 0.3s;
}
.cb_table_body:hover {
  border: 2px solid #125FA0;
}
.cb_table_body:hover>tbody>tr>td>.elem_buttons_wr {
  opacity: 1;
}
.cb_table_header {
    width: 100%;
}
.cb_table_header tr {
    height: 50px;
    background: #F3F4F9;

    border-radius: 4px 4px 0 0;
    text-align: center;
}
.cb_table_header tr td {
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    padding: 5px;
}
.cb_table_body {
    width: 100%;
}
.emptyPage {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 20px 0;
    font-size: 20px;
}

.emptyPage.visible {
   display: none;
}

.cbt_content_img{
    max-width: 170px;
}
.cb_table_body td {
    padding: 5px;
}
.cb_footer {
    display: flex;
    justify-content: right;
    padding: 5px 15px;
    background: #F3F4F9;
    border: 1px solid #0C1990;
    border-radius: 0 0 4px 4px;
    margin-top: 5px;
}
.cbf_left {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    margin-right: 30px;
}
.cbf_left span {
    height: 40px;
    align-content: center;
    display: flex;
    align-items: center;
    justify-content: end;
}
.cbf_right {
    display: flex;
    flex-direction: column;
    justify-content: end;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: #000000;
    align-items: end;
}
.percent_input_wr {
    height: 40px;
    display: flex;
    align-items: center;
}
.percent_input_wr input {
    background: #FFFFFF;
    border: 1px solid #0C1990;
    border-radius: 4px;
    width: 38px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #777777;
    margin-right: 10px;
}
.total_wr {
    height: 40px;
    display: flex;
    align-items: center;
}
.total_price {
    margin-right: 10px;
}
.total_price.red {
   color: red;
}
.cb_table_body td {
    vertical-align: middle;
    text-align: center;
}
.cbt_select_wr {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}
.cbts_container {
    display: flex;
    flex-direction: column;
    margin: 10px;
}
.cbts_container label {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
}
.cbts_container select {
    width: 250px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    height: auto;
    background: #FFFFFF;
    border: 1px solid #0C1990;
    border-radius: 4px;
}
.position_price {
    font-weight: 600;
    font-size: 20px;
    align-items: center;
    text-align: center;
    color: #000000;
}
.elem_buttons_wr {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.elem_buttons_wr a {
    margin-bottom: 10px;
}

.saved_calc {
    display: none;
    background: #FFFFFF;
    height: 38px;
    border: 1px solid #2C2A70;
    border-radius: 4px;
    margin-right: 10px;
    padding: 0 10px;
}

#clc_open.visible {
   opacity: 0.4;
}

.grey_ico {
    filter: grayscale(1);
}

.grey_ico:hover {
    filter: grayscale(0);
}

.flexbox {
    display: flex;
}
.hidden {
    display: none;
}

#clc_delet-basket:disabled {
   opacity: 0.4;
}

#content_add_button:disabled {
   opacity: 0.4;
}

.loadFromCartById:disabled {
   opacity: 0.4;
}

.info__message {
   position: fixed;
   top: 0;
   left: 0;
   width: 98.5vw;
   background-color: #19BC83;
   border: 1px solid #19BC83;
   border-radius: 4px;
   padding: 10px;
   z-index: 99999;
   display: flex;
   justify-content: center;
   transform: translateY(-150%);
   transition: transform 1s;
}
.info__message.visible {
   transform: translateY(0);
}
.info__message span {
   font-style: normal;
   font-weight: 500;
   font-size: 14px;
   line-height: 125%;
   font-family: 'Open Sans',sans-serif;
   color: #fff;
   text-align: center;
   max-width: 1200px;
}

.warning__message {
   position: fixed;
   top: 0;
   left: 0;
   width: 98.5vw;
   background-color: #FFA300;
   border: 1px solid #FFA300;
   border-radius: 4px;
   padding: 10px;
   z-index: 99999;
   display: flex;
   justify-content: center;
   transform: translateY(-150%);
   transition: transform 1s;
}
.warning__message.visible {
   transform: translateY(0);
}
.warning__message span {
   font-style: normal;
   font-weight: 500;
   font-size: 14px;
   line-height: 125%;
   font-family: 'Open Sans',sans-serif;
   color: #fff;
   text-align: center;
   max-width: 1200px;
}

.error__message {
   position: fixed;
   top: 0;
   left: 0;
   width: 98.5vw;
   background-color: #E94242;
   border: 1px solid #E94242;
   border-radius: 4px;
   padding: 10px;
   z-index: 99999;
   display: flex;
   justify-content: center;
   transform: translateY(-150%);
   transition: transform 1s;
}
.error__message.visible {
   transform: translateY(0);
}
.error__message span {
   font-style: normal;
   font-weight: 500;
   font-size: 14px;
   line-height: 125%;
   font-family: 'Open Sans',sans-serif;
   color: #fff;
   text-align: center;
   max-width: 1200px;
}
.main-content__seo-text {
    font-family: 'Open Sans',sans-serif;
    font-size: 14px;
    color: #afafaf;
    max-width: 1025px;
    padding-bottom: 20px;
    text-align: justify ;
}
.cookie__wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 99.7%;
    position: fixed;
    bottom: 38px;
    left: 1px;
    border: 1px solid #2C2A70;
    border-radius: 4px;
    z-index: 999999;
    padding: 9px 0px;
    gap: 20px;
    transition: bottom 0.3s;
}
.cookie__wrapper.visible {
    display: flex;
}
.cookie__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    color: #000000;
}
.cookie__text a {
    color: #000000;
}
.cookie__text a:hover {
    color: #000000;
}
.cookie__submit {
    font-size: 11px;
    font-weight: 600;
    line-height: 11px;
    background-color: #2C2A70;
    color: #FFFFFF;
    padding: 8px 20px;
    border: 1px solid #2C2A70;
    border-radius: 4px;
    cursor: pointer;
}
.feedback_button.cookie_top {
    bottom: 258px !important;
}
.feedback_button.cookie_bot {
    bottom: 96px !important;
}
.feedback_button {
    transition: bottom 0.3s;
}
.cookie__title {
    margin-top: 14px;
    font-size: 24px;
    font-weight: 800;
    line-height: 36px;
    text-align: center;
}
.cookie__subtitle {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
    text-align: center;
}
.cookie__update {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
}
.cookie__text__wrapper {
    margin: 20px;
}
.cookie__text__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
}
.cookie__text__title-small {
    font-weight: 400;
}
.cookie__text__name span {
    font-size: 20px;
    font-weight: 800;
    line-height: 30px;
}
.cookie__text__name {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.cookie__text__link {
    color: #1A15E0;
}
.cookie__text__line {
    width: 300px;
    height: 2px;
    background-color: #000000;
    margin-bottom: 5px;
}
.main-content__seo-text {
    font-family: 'Open Sans',sans-serif;
    font-size: 14px;
    color: #afafaf;
    max-width: 1025px;
    padding-bottom: 20px;
    text-align: justify ;
}
.dates__wrapper {
    display: flex;
}
#adv-search-combo-date {
    margin-left: 25px;
}
.no-visible {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.libraries {
    display: flex;
    align-items: center;
    gap: 5px;
}
.libraries__inp {
    border: 1px solid #000000;
    width: 280px;
    height: 27px;
    padding: 0 5px;
    outline: none;
}
.libraries__delete {
    opacity: 1;
    display: block;
    cursor: pointer;
    margin-left: -30px;
}
.libraries__delete-no-visible {
    opacity: 0;
    transition: opacity 0.3s;
    display: none;
}
.libraries__stub {
    display: none;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 5px;
}
.libraries__stub.visible {
    display: flex;
}
.libraries__list {
    margin-bottom: 30px !important;
}
.libraries__menu {
    position: absolute;
    bottom: 1px;
    right: 2px;
    width: 95%;
    z-index: 100000;
    background-color: #fff !important;
    padding-top: 10px !important;
}
.stock__wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 9999999;
    overflow: hidden;
}
.stock__wrapper.hidden {
    display: none;
}
.stock__enter {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 29px 34px;
    border-radius: 12px;
    border: 1px solid #2C2A70;
    box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.17);
}
.stock__enter__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.stock__enter.hidden {
    display: none;
}
.stock__enter__title {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 100% */
    margin-bottom: 24px;
}
.stock__enter__subtitle {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
}
.stock__enter__form {
    display: flex;
    flex-direction: column;
}
.stock__enter__form input {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    box-sizing: border-box;
    width: 379px;
    height: 43px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}
.stock__enter__form input:hover {
    box-shadow: none;
}
.stock__enter__form input:focus {
    box-shadow: none;
}
.stock__enter__form__login__wrapper {
    position: relative;
    margin-bottom: 17px;
}
.stock__enter__form__login-label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #667085;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    transition: all 0.3s;
}
.stock__enter__form__login.no-valid {
    border: 1px solid red;
}
.stock__enter__form__login:hover~.stock__enter__form__login-label {
    font-size: 12px;
}
.stock__enter__form__login:focus~.stock__enter__form__login-label,
.stock__enter__form__login:not(:focus):valid~.stock__enter__form__login-label {
    font-size: 8px;
    top: 8px;
}

.stock__enter__form__pas__wrapper {
    position: relative;
    margin-bottom: 2px;
}
.stock__enter__form__pas-label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #667085;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    transition: all 0.3s;
}
.stock__enter__form__pas.no-valid {
    border: 1px solid red;
}
.stock__enter__form__pas:hover~.stock__enter__form__pas-label {
    font-size: 12px;
}
.stock__enter__form__pas:focus~.stock__enter__form__pas-label,
.stock__enter__form__pas:not(:focus):valid~.stock__enter__form__pas-label {
    font-size: 8px;
    top: 8px;
}
.stock__enter__form__pas__button {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    cursor: pointer;
}
.stock__enter__form__forgot__wrapper {
    display: flex;
    justify-content: right;
}
.stock__enter__form__forgot {
    position: relative;
    text-align: right;
    color: #2C2A70;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 200% */
    text-decoration: none;
    margin-bottom: 17px;
}
.stock__enter__form__forgot:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 2px;
    right: 0;
    transition: width 0.3s ease;
}
.stock__enter__form__forgot:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}
.stock__enter__form__submit {
    border-radius: 8px;
    background-color: #2C2A70;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    padding: 10px 0;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid #fff;
}
.stock__enter__form__submit:hover {
    border: 1px solid #2C2A70;
    background-color: #fff;
    color: #2C2A70;
}
.stock__enter__form__register {
    border-radius: 8px;
    border: 1px solid #EDEDED;
    background: #EDEDED;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 10px 0;
    text-decoration: none;
    transition: all 0.3s;
}
.stock__enter__form__register:hover {
    background-color: #fff;
    border: 1px solid #2C2A70;
}
.stock__register {
    box-sizing: border-box;
    position: absolute;
    height: calc(100vh / 1.25);
    top: 104px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 29px 34px;
    border-radius: 12px;
    border: 1px solid #2C2A70;
    box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.17);
    overflow-y: scroll;
}
.stock__register__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.stock__register.hidden {
    display: none;
}
.stock__register__title {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 100% */
    margin-bottom: 24px;
}
.stock__register__form {
    display: flex;
    flex-direction: column;
}
.stock__register__form input {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    box-sizing: border-box;
    width: 379px;
    height: 43px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}
.stock__register__form input:hover {
    box-shadow: none;
}
.stock__register__form input:focus {
    box-shadow: none;
}
.stock__register__form__pas__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}
.stock__register__form__pas-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.stock__register__form__pas__button {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    cursor: pointer;
}
.stock__register__form__forgot__wrapper {
    display: flex;
    justify-content: right;
}
.stock__register__form__forgot {
    position: relative;
    text-align: right;
    color: #2C2A70;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 200% */
    text-decoration: none;
    margin-bottom: 17px;
}
.stock__register__form__forgot:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 2px;
    right: 0;
    transition: width 0.3s ease;
}
.stock__register__form__forgot:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}
.stock__register__form__submit {
    border-radius: 8px;
    background-color: #2C2A70;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    padding: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid #fff;
}
.stock__register__form__submit:hover {
    border: 1px solid #2C2A70;
    background-color: #fff;
    color: #2C2A70;
}
.stock__register__form__register {
    border-radius: 8px;
    border: 1px solid #EDEDED;
    background: #EDEDED;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 10px 0;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 9px;
}
.stock__register__form__register:hover {
    background-color: #fff;
    border: 1px solid #2C2A70;
}
.stock__register__form__client__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}
.stock__register__form__client-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.stock__register__form__client {
    background: #EDEDED !important;
}
.stock__register__form__client::placeholder {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.stock__register__form__repeat-pas__inner-wrapper {
    position: relative;
}
.stock__register__form__client__clue {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    height: 19px;
    width: 19px;
    border-radius: 50%;
    border: 1px solid #999;
    background: #2C2A70;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.stock__register__form__first-name__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}
.stock__register__form__first-name-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.stock__register__form__last-name__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}
.stock__register__form__last-name-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.stock__register__form__surname__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}
.stock__register__form__surname-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.stock__register__form__mail__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}
.stock__register__form__mail-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.stock__register__form__pas__inner-wrapper {
    position: relative;
}
.stock__register__form__pas__clue {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
    height: 19px;
    width: 19px;
    border-radius: 50%;
    border: 1px solid #999;
    background: #2C2A70;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.stock__register__form__pas__tooltip {
    position: absolute;
    bottom: -40px;
    right: -25px;
    border: 1px solid #2C2A70;
    padding: 5px;
    border-radius: 8px;
    text-transform: none;
    z-index: 99999;
    color: #FFFFFF;
    background-color: #2C2A70;
    display: none;
}
.stock__register__form__pas__tooltip a {
    color: #FFFFFF;
    text-decoration: none;
}
.stock__register__form__pas__clue:hover + .stock__register__form__pas__tooltip,
.stock__register__form__pas__clue:focus + .stock__register__form__pas__tooltip {
    display: block;
}
.stock__register__form__client__clue:hover + .stock__register__form__pas__tooltip,
.stock__register__form__client__clue:focus + .stock__register__form__pas__tooltip {
    display: block;
}
.stock__register__form__pas__tooltip.active {
    display: block;
}
.stock__register__form__repeat-pas__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}
.stock__register__form__repeat-pas-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.stock__register__form__repeat-pas__button {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    cursor: pointer;
}
.stock__register__form__repeat-pas__inner-wrapper {
    position: relative;
}
.stock__register__form__phone__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.stock__register__form__phone-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.stock__register__form__policy__wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.stock__register__form__policy {
    width: 16px !important;
    height: 16px !important;
    margin: 2px 8px 2px 0;
}
.stock__register__form__policy-label {
    color: #344054;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}
.stock__register__form__policy-label a {
    color: #2C2A70;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-decoration-line: underline;
}
.stock__register__form__offer__wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 19px;
}
.stock__register__form__offer {
    width: 16px !important;
    height: 16px !important;
    margin: 2px 8px 2px 0;
}
.stock__register__form__offer-label {
    color: #344054;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}
.stock__register__form__offer-label a {
    color: #2C2A70;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-decoration-line: underline;
}
.iti__flag {background-image: url("/js/libraries/intlTelInput/img/flags.png");}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {background-image: url("/js/libraries/intlTelInput/img/flags@2x.png");}
}
.iti__selected-dial-code {
    color: #475467;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
#stock__register__form__phone.no-valid {
    border: 1px solid red;
}
#stock__register__form__mail.no-valid {
    border: 1px solid red;
}
#stock__register__form__repeat-pas.no-valid {
    border: 1px solid red;
}
#stock__register__form__pas.no-valid {
    border: 1px solid red;
}
.stock__offer {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 29px 34px;
    border-radius: 12px;
    border: 1px solid #2C2A70;
    box-shadow: 0px 4px 17px 0px rgba(0, 0, 0, 0.17);
}
.stock__offer.hidden {
    display: none;
}
.stock__offer__title {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 100% */
    margin-bottom: 24px;
}
.stock__offer__subtitle {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    max-width: 317px;
    margin-bottom: 16px;
}
.stock__offer__subtitle a {
    color: #2C2A70;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
}
.stock__offer__form__offer__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
#stock__offer__form__offer {
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    width: 16px;
    height: 16px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-right: 8px;
}
.stock__offer__form__offer-label {
    color: #344054;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}
.stock__offer__form__offer-label a {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
}
.stock__offer__form__offer-label a:hover {
    text-decoration: underline;
}
.stock__offer__form__buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 27px;
    gap: 10px;
}
.stock__offer__form__buttons__cancel {
    padding: 10px 50px;
    border-radius: 8px;
    border: 1px solid #EDEDED;
    background: #EDEDED;
    cursor: pointer;
    transition: all 0.3s;
}
.stock__offer__form__buttons__cancel:hover {
    background: #FFFFFF;
}
.stock__offer__form__buttons__cancel p {
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.stock__offer__form__buttons__submit {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    padding: 10px 28px;
    border-radius: 8px;
    background: #2C2A70;
    border: 1px solid #2C2A70;
    transition: all 0.3s;
}
.stock__offer__form__buttons__submit:hover {
    color: #2C2A70;
    background: #FFFFFF;
}
.zoom__stock__form__wrapper {
    display: grid;
    grid-template-areas: "header-empty header-format header-price"
                         "content-up-radio content-up-format content-up-price"
                         "content-down-radio content-down-format content-down-price"
                         ". countdown button";
    row-gap: 10px;
    position: relative;
}
.zoom__stock__form__header-empty {
    grid-area: header-empty;
}
.zoom__stock__form__header-format {
    grid-area: header-format;
    font-weight: 700;
}
.zoom__stock__form__header-price {
    grid-area: header-price;
    font-weight: 700;
}
.zoom__stock__form__content-up-radio {
    grid-area: content-up-radio;
    accent-color: #2C2A70;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.zoom__stock__form__content-up-format {
    grid-area: content-up-format;
}
.zoom__stock__form__content-up-price {
    grid-area: content-up-price;
}
.zoom__stock__form__content-down-radio {
    grid-area: content-down-radio;
    accent-color: #2C2A70;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.zoom__stock__form__content-down-format {
    grid-area: content-down-format;
}
.zoom__stock__form__content-down-price {
    grid-area: content-down-price;
}
.zoom__stock__form__countdown {
    grid-area: countdown;
    max-width: 100px;
}
.zoom__stock__form__btns {
    display: flex;
    justify-content: end;
    align-items: center;
    grid-area: button;
}
.zoom__stock__form__btn {
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 4px;
    background-color: #2C2A70;
    padding: 1px 23px;
    margin-top: 4px;
    border: 1px solid #2C2A70;
    cursor: pointer;
    transition: color 0.3s, background-color 0.5s;
}
.zoom__stock__form__btn:hover {
    color: #2C2A70;
    background-color: #fff;
}
.order-form-function__wrapper {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 20px;
}
.order-form-function__headers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.order-form-function__up {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    position: relative;
}
.order-form-function__up input {
    font-size: 10px;
    accent-color: #2C2A70;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.order-form-function__down {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    position: relative;
}
.order-form-function__down input {
    font-size: 10px;
    accent-color: #2C2A70;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.order-form-function__hr {
    border: 0.5px solid #CCCCCC;
    width: 90%;
    margin-top: 10px;
    margin-bottom: 5px;
}
.order-form-function__header {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.assets-list__pay {
    display: flex;
    justify-content: end;
    margin-top: 27px;
    margin-bottom: 66px;
}
.assets-list__pay__btn {
    border-radius: 4px;
    background: #2C2A70;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    padding: 5.5px 21px;
    cursor: pointer;
}
.assets-list__warning {
    display: flex;
    border: 1px solid #BBB;
    background: #E94242;
    padding: 4px 10px;
}
.assets-list__warning p {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
    margin-left: 14px;
}
.assets-list__payment_deadline {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 3px;
}
.assets-list__payment_deadline__info {
    border-radius: 50px;
    border: 1px solid #2C2A70;
    background: #EEE;
    display: flex;
    align-items: center;
    padding: 6px  10px;
}
.assets-list__payment_deadline__info p {
    color: #000;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
    margin-left: 5px;
}
.order_list_label_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.assets-list__payment_deadline_list {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 3px;
}
.assets-list__payment_online_order {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 3px;
    margin-right: 10px;
}
.assets-list__payment_online_order__info {
    border-radius: 50px;
    border: 1px solid #135f00;
    background: #EEE;
    display: flex;
    align-items: center;
    padding: 3px 5px;
}
.assets-list__payment_online_order__info p {
    color: #135f00;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
    margin-left: 5px;
}
.mosaic__stock {
    position: relative;
}
.mosaic__stock__label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    color: #FFFFFF;
    background-color: #2C2B71;
    padding: 4px 11px;
    text-transform: uppercase;
}
.license-online__wrapper {
    margin: 10px 30px;
    max-width: 800px;
}
.license-online__title {
    font-size: 25px;
    font-weight: bold;
    color: #2B2970;
    text-transform: uppercase;
    padding: 20px 0 20px 0;
}
.license-online__thumbnail {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 10px 10px;
}
span.license-online__thumbnail {
    padding: 0;
}
.license-online__text {
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 10px 10px;
}
.license-online__subtext {
    font-size: 16px;
    line-height: 20px;
    padding-left: 15px;
    display: inline-block;
}
.new-basket {
    display: flex !important;
    align-items: center;
    gap: 8px;
}
.zoom__artificial-intelligence {
    background-color: #C7C7C7;
    padding: 15px 25px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}
.zoom__artificial-intelligence__first-name {
    font-size: 9px;
    font-weight: 400;
    line-height: 12.26px;
    letter-spacing: 0.06em;
    position: relative;
}
.zoom__artificial-intelligence__first-name span {
    font-size: 20px;
    font-weight: 400;
    line-height: 27.24px;
    letter-spacing: 0.06em;
}
.zoom__artificial-intelligence__first-name:after {
    content: '';
    display: block;
    height: 25px;
    width: 1px;
    background-color: #464646;
    position: absolute;
    top: 8px;
    left: 75px;
}
.zoom__artificial-intelligence__second-name {
    font-size: 11px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0.06em;
    max-width: 111px;
}
.artificial-intelligence__label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    color: #FFFFFF;
    background-color: #5E58AE;
    padding: 4px 11px;
    text-transform: uppercase;
}

.not-stock__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    align-items: start;
    margin-bottom: 10px;
}
.not-stock__wrapper__text {
    text-align: center;
    font-size: 11px;
}
.not-stock__wrapper__btn {
    background-color: #2C2A70;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    border: 1px solid #2C2A70;
    transition: all 0.5s;
    box-sizing: border-box;
    cursor: pointer;
    max-width: 125px;
}
.not-stock__wrapper__btn:hover {
    background-color: #FFFFFF;
    color: #2C2A70;
}
.not-stock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #2C2A70;
    border-radius: 5px;
}
.not-stock__title {
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    align-items: start;
    margin-top: 10px;
    margin-bottom: 18px;
}
.not-stock__hr {
    height: 1px;
    background-color: #D9D9D9;
    width: 100%;
    margin-bottom: 10px;
}
.not-stock__form {
    padding: 0 11px;
}
.not-stock__form input {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    box-sizing: border-box;
    width: 371px;
    height: 43px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}
.not-stock__form input:hover {
    box-shadow: none;
}
.not-stock__form input:focus {
    box-shadow: none;
}
.not-stock__form__first-name__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}
.not-stock__form__first-name-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
#not-stock__form__phone.no-valid {
    border: 1px solid red;
}
.not-stock__form__phone__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}
.not-stock__form__phone-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.not-stock__form__mail__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 7px;
}
.not-stock__form__mail-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.not-stock__form__using__wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}
.not-stock__form__using-label {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin-bottom: 1px;
}
.not-stock__form__policy__wrapper {
    display: flex;
    margin-bottom: 10px;
}
.not-stock__form__policy {
    width: 16px !important;
    height: 16px !important;
    margin: 2px 8px 2px 0;
}
.not-stock__form__policy-label {
    color: #344054;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    margin-bottom: 13px;
}
.not-stock__form__policy-label a {
    color: #2C2A70;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-decoration-line: underline;
}
.not-stock__form__submit {
    background-color: #2C2A70;
    border: 1px solid #2C2A70;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 17px;
    cursor: pointer;
    transition: all 0.5s;
}
.not-stock__form__submit:hover {
    background-color: #fff;
    color: #2C2A70;
}
.not-stock__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.not-stock__succes__wrapper {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.not-stock__succes__text {
    font-size: 14px;
    margin-bottom: 15px;
}
.not-stock__succes__btn {
    background-color: #19BC83;
    border-radius: 50%;
    padding: 10px;
    display: flex;
}
.not-stock__error__wrapper {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.not-stock__error__text {
    font-size: 14px;
    margin-bottom: 15px;
}
.not-stock__error__btn {
    background-color: #E94242;
    border-radius: 50%;
    padding: 10px;
    display: flex;
}
/*div#layout-left-column {*/
/*    display: none !important;*/
/*}*/
.newswire__centering {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
}