@charset "UTF-8";

/* # All page contact form styles*/

.mcontact {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
}

.mcontact .mcontact-l {
    flex: 1 1 30%;
    align-self: auto;
    display: none;
}

.mcontact .mcontact-r {
    flex: 1 1 70%;
    align-self: auto;
    padding: 45px 0 3% 4%;
}

.mcontact .mcontact-title {
    font-family: var(--font-h);
    margin: 0 10px 54px;
}

.mcontact .mcontact-title .mcontact-title-b {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.mcontact .mcontact-title .mcontact-title-s {
    font-size: 49%;
    line-height: 1.25;
    font-weight: normal;
    display: block;
    margin-bottom: 10px;
}

.mcontact .mcontact-row {
    display: flex;
}

.mcontact .mcontact-row .mcontact-fild-l,
.mcontact .mcontact-row .mcontact-fild-r {
    flex: 1 1 50%;
    align-self: auto;
    margin: 0 15px;
}

.mcontact .contact-fild {
    position: relative;
    margin-bottom: 40px;
}

.mcontact .contact-fild .field-label {
    display: block;
    pointer-events: none;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    transition: all .4s;
    width: 100%;
    opacity: .7;
    z-index: 1;
}

.mcontact .contact-fild .field-label.to-top {
    top: -20px;
}

.mcontact .contact-fild .contact-inp {
    position: relative;
    z-index: 5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--forms-border-color);
    color: #333;
    display: block;
    font-size: 15px;
    margin-top: 0;
    outline: 0;
    padding: 0;
    width: 100%;
    font-weight: 600;
}

.mcontact .contact-fild .contact-inp::-moz-placeholder {
    opacity: .3;
    font-weight: 300;
}

.mcontact .contact-fild .contact-inp:-ms-input-placeholder {
    opacity: .3;
    font-weight: 300;
}

.mcontact .contact-fild .contact-inp::placeholder {
    opacity: .3;
    font-weight: 300;
}

.mcontact .contact-fild .contact-inp:not(:focus):invalid {
    border-bottom: 1px solid rgba(200, 0, 0, .3);
}

.mcontact .contact-fild .contact-inp:not(:focus):valid {
    border-bottom: 1px solid var(--forms-border-color);
}

.mcontact .contact-fild .invalid-feedback {
    color: red;
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    position: absolute;
}

.mcontact .contact-fild.w-info {
    margin: 0 15px 50px;
}

.mcontact .contact-fild-agree,
.mcontact .cntinfrm-fild-agree {
    margin: 0 15px 40px;
}

.mcontact .contact-fild-agree input[type=checkbox],
.mcontact .cntinfrm-fild-agree input[type=checkbox] {
       -moz-appearance: none;
    -webkit-appearance: none;
         -o-appearance: none;
    outline: 0;
    content: none;
    border: 0;
    width: 16px;
    height: 16px;
    display: inline-block;
    padding: 0;
    margin: 0;
    line-height: 0;
    vertical-align: text-top;
    border-radius: 2px;
}

.mcontact .contact-fild-agree input[type=checkbox]:before,
.mcontact .cntinfrm-fild-agree input[type=checkbox]:before {
    content: "";
    color: transparent !important;
    background: #fff;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #a8a8a8;
    border-radius: 3px;
    margin-right: 7px;
    cursor: pointer;
}

.mcontact .contact-fild-agree input[type=checkbox]:focus:before,
.mcontact .cntinfrm-fild-agree input[type=checkbox]:focus:before {
    box-shadow: 0 0 4px #3283c7;
}

.mcontact .contact-fild-agree input[type=checkbox]:checked:before,
.mcontact .cntinfrm-fild-agree input[type=checkbox]:checked:before {
    background: var(--link-color) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='10' height='10'><path fill='white' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'></path></svg>") no-repeat center;
}

.mcontact .contact-fild-agree input[type=checkbox]:required:invalid:before,
.mcontact .cntinfrm-fild-agree input[type=checkbox]:required:invalid:before {
    border-color: rgba(200, 0, 0, .6);
}

.mcontact .lab-required:after {
    content: "*";
    color: red;
    font-size: 1rem;
    vertical-align: middle;
    line-height: 0;
    padding-left:5px;
}

.mcontact .btn-fsubm {
    width: 100%;
    max-width: 285px;
}

.mcontact .btn-fsubm:focus {
    box-shadow: 0 0 4px #3283c7;
}

.mcontact .inp-file {
    display: grid;
    grid-template-columns: 120px 7fr;
    color: #333;
    font-size: 13px;
    border-bottom: 1px solid var(--forms-border-color);
    padding-bottom: 3px;
    margin-top: -7px;
    height: auto !important;
}

.mcontact .inp-file input {
    display: none !important;
}

.mcontact .inp-file .upl-title {
    background-color: var(--link-color);
    color: #fff;
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
    max-width: 109px;
    transition: background-color .2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mcontact .inp-file .upl-title:hover {
    background-color: var(--link-color-h);
}

.mcontact .inp-file .upl-title:focus {
    box-shadow: 0 0 4px #3283c7;
}

.mcontact .inp-file .upl-file {
    font-size: 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color .2s ease-in-out;
}

.mcontact .inp-file .upl-file:hover {
    color: var(--link-color);
}

.mcontact .inp-file .upl-help {
    position: absolute;
    top: 100%;
    font-size: 12px;
    color: #848484;
    z-index: 3;
}

.mcontact .inp-file .upl-err {
    display: none;
    position: absolute;
    top: 100%;
    font-size: 12px;
    color: red;
    background-color: #fff;
    border: 1px solid red;
    padding: 6px;
    z-index: 5;
}

.mcontact .mcontact-row.mcontact-footer > div {
    margin-bottom: 30px;
}

.mcontact .mcontact-subm-wrp {
    display: flex;
    flex-flow: row wrap;
    align-content: center;
}

.mcontact .mcontact-subm-wrp .mcontact-subm-val {
    vertical-align: middle;
}

.mcontact .mcontact-subm-wrp .prell-ring {
    margin-right: 6px;
}

.mcontact .alert {
    display: none;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: .25rem;
    text-align: center;
}

.mcontact .alert.alert-success {
    color: #155724;
    background-color: #d4edda;
}

.mcontact .alert.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
}

:root {
    --prel-size: 22px;
    --prel-border-w: 3px;
    --prel-color: rgba(255, 255, 255, .5);
}

.prell-ring {
    display: none;
    width: var(--prel-size);
    height: var(--prel-size);
    vertical-align: middle;
}

.prell-ring::after {
    content: " ";
    display: block;
    width: var(--prel-size);
    height: var(--prel-size);
    border-radius: 50%;
    border: var(--prel-border-w) solid #fff;
    border-color: #fff transparent #fff transparent;
    -webkit-animation: nn-ring 1.2s linear infinite;
    animation: nn-ring 1.2s linear infinite;
}

.prell-ring::after {
    border: var(--prel-border-w) solid var(--prel-color);
    border-color: var(--prel-color) transparent var(--prel-color) transparent;
}

@-webkit-keyframes nn-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes nn-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* # Integrations Widgets */

.widget .widgettitle {
    font-size: 30px;
}

.widget input {
    width: 100%;
    padding: 10px 20px !important;
}

.sidebar {
    min-width: 260px;
}

.sidebar .widget {
    margin-bottom: 40px;
    overflow: hidden;
    max-width: 100%;
}

.sidebar .integration-wj {
    transition: top .2s linear;
    width: 100%;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 60px rgba(0, 128, 199, .05);
    z-index: 10;
}

/* # Subscribe Widget */

.widget.nn-subscribe .sb-descr {
    margin-bottom: 15px;
}

.widget.nn-subscribe .sb-input {
    margin-bottom: 15px;
}

.widget.nn-subscribe .sb-input input {
    background: #d9dadc;
}

.widget.nn-subscribe .sb-input input::-moz-placeholder {
    color: gray;
}

.widget.nn-subscribe .sb-input input:-ms-input-placeholder {
    color: gray;
}

.widget.nn-subscribe .sb-input input::placeholder {
    color: gray;
}

.widget.nn-subscribe .contact-fild-agree,
.widget.nn-subscribe .cntinfrm-fild-agree {
    margin: 0 0 10px;
    font-size: 14px;
}

.widget.nn-subscribe .contact-fild-agree input[type=checkbox],
.widget.nn-subscribe .cntinfrm-fild-agree input[type=checkbox] {
       -moz-appearance: none;
    -webkit-appearance: none;
         -o-appearance: none;
    outline: 0;
    content: none;
    border: 0;
    width: 16px;
    height: 16px;
    display: inline-block;
    padding: 0 !important;
    margin: 0;
    line-height: 0;
    vertical-align: text-top;
    border-radius: 2px;
}

.widget.nn-subscribe .contact-fild-agree input[type=checkbox]:before,
.widget.nn-subscribe .cntinfrm-fild-agree input[type=checkbox]:before {
    content: "";
    color: transparent !important;
    background: #fff;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #a8a8a8;
    border-radius: 3px;
    margin-right: 7px;
    cursor: pointer;
}

.widget.nn-subscribe .contact-fild-agree input[type=checkbox]:focus:before,
.widget.nn-subscribe .cntinfrm-fild-agree input[type=checkbox]:focus:before {
    box-shadow: 0 0 4px #3283c7;
}

.widget.nn-subscribe .contact-fild-agree input[type=checkbox]:checked:before,
.widget.nn-subscribe .cntinfrm-fild-agree input[type=checkbox]:checked:before {
    background: var(--link-color) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='10' height='10'><path fill='white' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'></path></svg>") no-repeat center;
}

.widget.nn-subscribe .contact-fild-agree input[type=checkbox]:required:invalid:before,
.widget.nn-subscribe .cntinfrm-fild-agree input[type=checkbox]:required:invalid:before {
    border-color: rgba(200, 0, 0, .6);
}

.widget.nn-subscribe .contact-fild-agree .lab-required,
.widget.nn-subscribe .cntinfrm-fild-agree .lab-required {
    font-size: 14px;
}

.widget.nn-subscribe .contact-fild-agree .lab-required:after,
.widget.nn-subscribe .cntinfrm-fild-agree .lab-required:after {
    content: "* ";
    color: red;
    font-size: 1rem;
    vertical-align: middle;
    line-height: 0;
    padding-left:5px;
}

.widget.nn-subscribe .nn-grecaptcha-wj {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.widget.nn-subscribe .nn-grecaptcha-wj .g-recaptcha {
    transform-origin: left;
    max-width: 225px;
    margin-left: -7%;
}

.widget.nn-subscribe .nn-grecaptcha-wj .g-recaptcha > div {
    margin: 0 auto;
}

.widget.nn-subscribe .btn-sbsubm {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 15px;
}

.widget.nn-subscribe .alert {
    display: none;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: .25rem;
    text-align: center;
}

.widget.nn-subscribe .alert.alert-success {
    color: #155724;
    background-color: #d4edda;
}

.widget.nn-subscribe .alert.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
}

/* # Сфеупщкнуы Widget */

.nncategories ul,
.nncategories li {
    margin: 0;
    padding: 0;
}

.nncategories ul.children {
    padding-left: 20px;
}

.nncategories li {
    list-style: none;
    display: block;
}

.nncategories li:not(:last-child) a {
    border-bottom: 1px solid #efefef;
}

.nncategories li a {
    text-decoration: none;
    display: block;
    padding: 20px 0;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: 3px;
}

.nncategories li a span {
    float: right;
    color: #aaa;
}

.nncategories li.current-cat > a {
    color: #000;
    cursor: default;
}

.nn-register {
    display: block;
}

.nn-register img {
    width: 100%;
}

.nn-wirden-sie {
    width: 100%;
}

/* # Breadcrumbs */

.nn-breadcrumbs {
    margin: 0 0 20px;
    padding: 0;
}

.nn-breadcrumbs li {
    list-style: none;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
}

.nn-breadcrumbs li .sep-link:after {
    content: "";
    border: 1px solid;
    width: 7px;
    height: 7px;
    border-color: transparent #0056b3 #0056b3 transparent;
    transform: rotate(-45deg);
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}

.nn-breadcrumbs li a {
    vertical-align: middle;
}

/* # Share block*/

.post-share .post-share-label {
    font-weight: bold;
    font-size: 15px;
    display: inline-block;
    margin-right: 10px;
}

.post-share .post-share-list {
    position: relative;
    white-space: nowrap;
    padding: 0 4px;
    text-align: center;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
}

.post-share .post-share-list:before {
    position: absolute;
    top: 42%;
    left: -13px;
    transform: rotate(90deg);
    content: "";
    border-top: 8px solid #fff;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
}

.post-share .post-share-list .post-share-item {
    padding: 12px;
    display: inline-block;
    background: none;
    color: var(--link-color);
    border: 0;
}

.post-share .post-share-list .post-share-item:hover {
    color: var(--link-color-h);
}

/* # Archive pages global */

.site-header {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .05), inset 0 -1px 0 rgba(0, 0, 0, .1);
}

.site {
    margin-top: 110px;
}

.archive-container {
    display: grid;
    grid-template-columns: 77fr 23fr;
    gap: 100px;
}

.archive-header {
    margin-bottom: 40px;
}

article {
    padding-bottom: 40px;
    margin-bottom: 60px;
}

article:not(:last-child) {
    border-bottom: 1px solid #efefef;
}

article .post-thumbnail {
    display: block;
    margin-bottom: 40px;
}

article .post-thumbnail img {
    border-radius: 8px;
    height: auto;
    max-width: 100%;
    width: 100%;
}

article .entry-title a {
    text-decoration: none;
    color: #000;
    font-size: 36px;
    line-height: 45px;
    font-weight: 800;
}

article .post-meta-title {
    margin: 0 0 30px;
    padding: 0;
}

article .post-meta-title li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 14px;
}

article .post-meta-title li:not(:last-child) {
    margin-right: 30px;
}

article .post-meta-title .post-author a:hover {
    text-decoration: none;
}

article .post-meta-title .post-author span {
    vertical-align: middle;
}

article .post-meta-title .author-img {
    display: inline-block;
    width: 32px;
    height: 32px;
    overflow: hidden;
    border-radius: 100px;
    margin-right: 5px;
    vertical-align: middle;
}

article .post-meta-title .post-date span {
    vertical-align: middle;
}

article .post-meta-title .date-calendar-ico svg {
    display: inline-block;
    width: 12px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -4px;
}

article .entry-content {
    margin-bottom: 40px;
}

article .post-footer {
    display: grid;
    grid-template-columns: 40fr 60fr;
}

article .post-footer .post-more-link {
    padding-left: 0;
}

article .post-footer .post-more-link:after {
    padding-bottom: 4px;
    margin-left: 5px;
}

article .post-footer .post-footer-right {
    text-align: right;
}

.posts-navigation {
    margin-bottom: 60px;
}

.posts-navigation .screen-reader-text {
    display: none;
}

.posts-navigation a {
    text-decoration: none;
}

.posts-navigation a:after {
    content: "›";
    display: inline-block;
    font-size: 20px;
    margin-left: 5px;
    line-height: 0;
    padding-bottom: 4px;
    vertical-align: middle;
}

.posts-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: baseline;
}

.posts-navigation .nav-links .nav-previous a:after {
    display: none;
}

.posts-navigation .nav-links .nav-previous a:before {
    content: "‹";
    margin-right: 5px;
    padding-bottom: 4px;
    font-size: 20px;
}

.posts-navigation .nav-links .nav-next {
    text-align: right;
}

.footer {
    background-color: var(--block-dark-bg) !important;
}

.post-60965 .post-thumbnail img,
.post-38518 .post-thumbnail img {
    width: auto;
}

@media screen and (min-width: 1200px) {
    .mcontact .mcontact-l {
        min-height: 650px;
        background: url("/wp-content/themes/novalnet/assets/img/form-bg-ok.jpg") no-repeat center;
        background-size: cover;
        display: block;
    }
}

@media screen and (max-width: 1400px) {
    .site {
        padding: 0 10px;
    }
}

@media screen and (max-width: 1200px) {
    .mcontact .mcontact-r {
        padding: 45px 4% 3%;
    }
    .site {
        margin-top: 9%;
    }
}

@media screen and (max-width: 992px) {
    .sidebar .widget {
        max-width: 600px;
        margin: 0 auto 40px;
    }
    .archive-posts-wrap {
        max-width: 690px;
        margin: 0 auto;
    }
    .archive-container {
        grid-template-columns: 1fr;
        gap: 0 100px;
    }
}

@media screen and (max-width: 768px) {
    .mcontact .mcontact-r {
        padding: 45px 0 3%;
    }
    .mcontact .mcontact-row {
        flex-flow: column wrap;
    }
    .mcontact .mcontact-row.mcontact-footer > div {
        text-align: center;
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        align-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 576px) {
    .sidebar {
        min-width: auto;
    }
    article .post-meta-title {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }
    article .post-meta-title li {
        font-size: 12px;
        margin: 0;
        flex: 0 0 auto;
    }

    article .post-meta-title li.post-author {
        margin-right: 10px;
    }
    article .post-meta-title .post-date {
        display: block;
    }
}

/*# sourceMappingURL=archive.css.map */

.post-date .date-calendar-ico svg path {
    fill:#fff;
}
.archive.category .post-date .date-calendar-ico svg path {
    fill:#000;
}
