:root {
    --primary-color: #10232E;
    /* red */
}

body {
    background-color: var(--primary-color);
}

a,
a:hover,
a:active,
a:focus {
    color: #ffffff;
    /* white */
}

button,
input[type="button"],
input[type="submit"] {
    background-color: var(--primary-color);
    color: #ffffff;
    /* white */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background-color: #10232E
}

/* ------------------------------------- */

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    border: 16px solid #10232E;
    border-radius: 50%;
    border-top: 16px solid #9D2228;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    z-index: 99999;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide-wrapper {
    display: none;
}

/* width */
::-webkit-scrollbar {
    width: 5px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ffc737;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #fa9f34;
}

.validation_error_block p,
.validation_error_block {
    padding: 3px 0 3px 0;
    color: red;
    font-size: 16px;
}

.validation_success_block p,
.validation_success_block {
    padding: 3px 0 3px 0;
    color: #fa9f34;
    font-size: 20px;
}

.disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.sticky {
    position: -webkit-fixed;
    position: fixed;
    bottom: 0;
    background-color: #f9fafc;
    padding: 12px 40px 0 40px;
    font-size: 15px;
    width: 100%;
    z-index: 99999;
    display: inline-flex;
}

#cookiesconfirm {
    background-color: #fa9f34;
    color: white;

    font-size: 14px;
    text-transform: uppercase;
    border: none;
    padding: 0 40px;
    line-height: 45px;
    margin-bottom: 10px;
}

@media screen and (max-width: 900px) {
    .sticky {
        display: inline-block;
    }

    .sticky_div {
        width: 100% !important;
    }

    #cookiesconfirm {
        margin-top: 10px;
    }
}

.close-cookies {
    display: none;
}

#map {
    width: 100%;
    height: 100%;
}

.required {
    border: 1px solid red;
}

.disabled_date .date-catalog__day,
.disabled_date .date-catalog__date {
    color: gray !important;
}

.disabled_date {
    pointer-events: none !important;
    cursor: not-allowed !important;
}


.spinner {
    border: 10px solid white;
    border-top: 10px solid #D6872D;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*.grecaptcha-badge {*/
/*    visibility: hidden;*/
/*}*/

@media screen and (max-width: 900px) {
    .contacts__map {
        width: auto !important;
    }
}

@media screen and (min-width: 900px) {
    .contacts__map {
        height: 600px !important;
    }
}

.project-page ol li {
    list-style: decimal !important;
}

.project-page ul li {
    list-style: disc !important;
}

@media screen and (min-width: 900px) {

    .project-page ol,
    .project-page ul {
        padding: revert;
    }
}

.projects-catalog .activity {
    padding: 20px 0 !important;
}

.projects-catalog .activity .head-section__suptitle,
.projects-catalog .activity ._title {
    display: none;
}

.projects-catalog .activity__content {
    margin-top: 0 !important;
}

.project-page__text>a,
.project-page__text>p>a {
    color: #fff;
    text-decoration: underline;
}

.project__slider {
    height: 100%;
}

.project_title,
.award_title {
    color: #fff;
    /* font-size: 32px; */
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.project_title:hover {
    color: #9D2228;
}

@media screen and (max-width: 900px) {

    .project_title,
    .award_title {
        font-size: 22px;
    }
}

.product-slider__arrow.product-slider-arrow-next,
.product-slider__arrow.product-slider-arrow-prev {
    top: 50%;
    position: absolute;
    z-index: 99999;
    width: 50px;
    height: 50px;
}

.product-slider__arrow.product-slider-arrow-next {
    right: 0;
}

.news_body {
    column-gap: 20px;
}

.news_block {
    flex: 0 0 calc(96% / 3) !important;
}

.news_block img,
.news_block>.project__image {
    border-radius: 16px;
}

.news_block>.award_div>.award_title {
    font-size: 24px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.news_block>.award_div>.award_title:hover {
    color: #9D2228;
}

.award_description {
    color: #fff;
    text-align: center;
}

.award_div {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-top: 15px;
}

.award_date {
    display: block;
    width: 100%;
    text-align: center;
}

.project_info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.project_info>.project_title {
    text-align: left;
}

.about {
    background: white;
}