
.production {
    border-radius:5px;
    overflow: visible;
    height: 650px;
    max-height: 700px;
	position:relative;
	display:block;
}

.production * {
    box-sizing: border-box;
}

.production-map-wrapper {
    overflow: hidden;
}

.production-map {
    display: block;
    position: relative;
    transition: .2s;
}

@media (max-width: 1619px) {
    .production-map {
        margin: 0 -140px -120px;
    }
}

@media (max-width: 1023px) {
    .production-map {
        margin: 0 -200px -100px;
    }
}

@media (max-width: 767px) {
    .production-map {
        margin: 0 -120px -40px;
    }
}

.production-map_shift {
    transform: translateX(-240px);
}

@media (max-width: 1279px) {
    .production-map_shift {
        transform: translateX(0);
    }
}

.production-map__bg {
    display: block;
    width: 100%;
}

.production-map__sectors, .production-map__markers {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.production-map__sectors {
    z-index: 1;
}

.production-map__sector {
    position: absolute;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.production-map__sector.is-show {
    opacity: 1;
}

.production-map__sector.is-sector-1 {
    top: 27.7%;
    left: 52.8%;
    width: 12.8%;
    z-index: 3;
}

.production-map__sector.is-sector-2 {
    top: 31.6%;
    left: 50.3%;
    width: 21.6%;
    z-index: 5;
}

.production-map__sector.is-sector-3 {
    top: 27.3%;
    left: 37.2%;
    width: 16%;
    z-index: 4;
}

.production-map__sector.is-sector-4 {
    top: 23.2%;
    left: 48.1%;
    width: 11.75%;
    z-index: 2;
}

.production-map__sector.is-sector-5 {
    top: 25.1%;
    left: 58.4%;
    width: 10.3%;
    z-index: 1;
}

.production-map__sector.is-sector-6 {
    top: 35.8%;
    left: 27.75%;
    width: 29.75%;
    z-index: 6;
}

.production-map__sector-img {
    z-index: 0;
    display: block;
    width: 100%;
}

.production-map__markers {
    z-index: 2;
}

.production-map__marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #0071ba;
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    user-select: none;
    transition: background 0.3s ease;
}

@media (max-width: 1619px) {
    .production-map__marker {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 1279px) {
    .production-map__marker {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .production-map__marker {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
}

@media (min-width: 1280px) {
    .production-map__marker:hover {
        background: #0b89db;
    }
}

.production-map__marker.is-current {
    background: #0b89db;
    width: auto;
    border-radius: 0;
    padding: 0 20px;
    font-size: 16px;
    z-index: 10;
}

@media (max-width: 1619px) {
    .production-map__marker.is-current {
        height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 1279px) {
    .production-map__marker.is-current {
        height: 38px;
        padding: 0 16px;
        font-size: 14px;
        font-weight: 500;
    }
}

@media (max-width: 767px) {
    .production-map__marker.is-current {
        padding: 0;
        font-weight: 900;
        width: 26px;
        height: 26px;
        border-radius: 26px;
        font-size: 14px;
    }
}

.production-map__marker.is-marker-1 {
    top: 31%;
    left: 58%;
}

.production-map__marker.is-marker-2 {
    top: 37%;
    left: 63%;
}

.production-map__marker.is-marker-3 {
    top: 30%;
    left: 46%;
}

.production-map__marker.is-marker-4 {
    top: 23%;
    left: 51%;
}

.production-map__marker.is-marker-5 {
    top: 25%;
    left: 63%;
}

.production-map__marker.is-marker-6 {
    top: 45%;
    left: 43%;
}

@media (min-width: 768px) {
    .production-map__marker.is-current .production-map__marker-num {
        display: none;
    }
}

.production-map__marker-name {
    display: none;
}

@media (min-width: 768px) {
    .production-map__marker.is-current .production-map__marker-name {
        display: block;
    }
}

.production-popup {
    display: none;
    position: absolute;
    right: 0;
    z-index: 5;
    box-shadow: -30px -56px 64px rgba(47, 112, 180, 0.13);
    top: -50px;
    border-radius: 5px;
    overflow: hidden;
    bottom: -50px;
    width: 466px;
}

@media (max-width: 1619px) {
    .production-popup {
        width: 480px;
    }
}

@media (max-width: 1279px) {
    .production-popup {
        position: relative;
        width: 100%;
        box-shadow: 30px -46px 114px rgba(47, 112, 180, 0.13);
    }
}

@media (max-width: 1023px) {
    .production-popup {
        box-shadow: 0 -10px 20px rgba(47, 112, 180, 0.18);
    }
}

.production-popup.is-open {
    display: block;
}

.production-popup__dialog {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    max-height: 100%;
}

@media (max-width: 1279px) {
    .production-popup__dialog {
        height: auto;
    }
}

@media (max-width: 1279px) {
    .production-popup__close {
        width: 30px;
        height: 30px;
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .production-popup__close {
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
    }
}

.production-popup__close svg {
    display: block;
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .production-popup__close svg {
        width: 16px;
        height: 16px;
    }
}

.production-popup__close svg path {
    fill: currentColor;
}


@media (max-width: 1279px) {
    .production-popup__number {
        top: 50px;
        left: 32px;
    }
}

@media (max-width: 1023px) {
    .production-popup__number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .production-popup__number {
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

.production-popup__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 40px;
}

@media (max-width: 1279px) {
    .production-popup__inner {
        flex-direction: row;
        align-items: flex-start;
        padding: 50px 32px;
    }
}

@media (max-width: 767px) {
    .production-popup__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }
}

@media (max-width: 1279px) {
    .production-popup__content {
        height: auto;
        max-height: 300px;
        padding: 0 20px 0 0;
    }
}

@media (max-width: 767px) {
    .production-popup__content {
        padding: 24px 20px;
        max-height: none;
    }
}

.production-popup__content img {
    max-width: 100%;
}

.production-popup__content .h2 {
    display: block;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.2;
    color: #0071ba;
    margin: 0;
}

@media (max-width: 1619px) {
    .production-popup__content .h2 {
        font-size: 28px;
    }
}

@media (max-width: 1023px) {
    .production-popup__content .h2 {
        font-size: 24px;
    }
}

.production-popup__content .h2:not(:last-child) {
    margin-bottom: 15px;
}

.production-popup__content .h2.h2_compressed {
    line-height: 1.1;
}

.production-popup__content .h3 {
    display: block;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.2;
    color: #000;
    margin: 0;
}

@media (max-width: 1619px) {
    .production-popup__content .h3 {
        font-size: 20px;
    }
}

@media (max-width: 1023px) {
    .production-popup__content .h3 {
        font-size: 18px;
    }
}

.production-popup__content .h3:not(:last-child) {
    margin-bottom: 20px;
}

@media (max-width: 1619px) {
    .production-popup__content .h3:not(:last-child) {
        margin-bottom: 15px;
    }
}

.production-popup__content p:not(:last-child) {
    margin-bottom: 15px;
}

.production-popup__content a:not([class]) {
    text-decoration: none;
    color: #0071ba;
}

.production-popup__content a:not([class]):hover, .production-popup__content a:not([class]):focus {
    text-decoration: underline;
    color: #0071ba;
}

.production-popup__content ul:not([class]), .production-popup__content ol:not([class]) {
    list-style: none;
    padding: 0;
    margin: 0;
}

.production-popup__content ul:not([class]) li:not(:last-child), .production-popup__content ol:not([class]) li:not(:last-child) {
    margin-bottom: 10px;
}

.production-popup__content ul:not([class]) li {
    position: relative;
}

@media (max-width: 1619px) {
    .production-popup__content ul:not([class]) li {
        padding-left: 16px;
    }
}

.production-popup__content ul:not([class]) li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: -16px;
    width: 4px;
    height: 4px;
    border-radius: 10px;
    background: #0071ba;
}

@media (max-width: 1619px) {
    .production-popup__content ul:not([class]) li::before {
        top: 10px;
        left: 0;
    }
}

.production-popup__banner {
    flex-shrink: 0;
    display: block;
    background: #eee;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 220px;
}

@media (max-width: 1279px) {
    .production-popup__banner {
        width: 25%;
        margin-right: 30px;
    }
}

@media (max-width: 767px) {
    .production-popup__banner {
        width: 100%;
        margin-right: 0;
    }
}

.production-popup__banner::before {
    content: "";
    display: block;
    padding-top: 50%;
}

.production-popup-hex-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.production-popup-hex-list:not(:first-child) {
    margin-top: 20px;
}

.production-popup-hex-list:not(:last-child) {
    margin-bottom: 20px;
}

.production-popup-hex-list > li {
    width: 33.33333%;
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 1619px) {
    .production-popup-hex-list > li {
        font-size: 12px;
    }
}

@media (max-width: 1279px) {
    .production-popup-hex-list > li {
        width: 25%;
    }
}

@media (max-width: 1023px) {
    .production-popup-hex-list > li {
        width: 33.33333%;
    }
}

@media (max-width: 767px) {
    .production-popup-hex-list > li {
        width: 50%;
    }
}

.production-map__marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    background: #fff;
    font-family: 'Century Gothic Bold';
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0em;
    text-align: left;
    color: #f55b41;
    white-space: nowrap;
    user-select: none;
    transition: background 0.3s ease;
    border: 1px solid #f55b41;
}

.is-layout-constrained.alignfull.has-indigo-50-background {
    /* padding-bottom: 130px; */
}

.production-map__marker.is-current {
    background: #f55b41;
    width: auto;
    padding: 3px 16px;
    z-index: 10;
    color:#fff;
    font-family: 'Century Gothic Bold';
    font-size: 14px;
    line-height: 18px;
    text-align: center;
}

.production-map__marker:hover {
    background: #f55b41 !important;
    color:#fff;
}

.production-popup__number {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    color: #24226A;
    background: #fff;
    font-family: 'Century Gothic Bold';
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    border-radius:5px;

}

.production-popup__close {
    display: block;
    background: center url(../../img/close.svg) no-repeat, #f55b41;
    width: 56px;
    height: 56px;
    border-radius: 5px;
    right: 20px;
    top: 20px;
    cursor: pointer;
    position: absolute;
}

.production-popup__content {
    color: #24226A;
    padding: 0 40px 60px;
    overflow-y: scroll !important;
    font-size: 16px;
    line-height: 1.5;
    flex: 1 1 auto;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.production-popup__content:after {
    content: '';
    display: block;
    position: absolute;
    background: linear-gradient(to bottom, transparent, #fff);
    width: 100%;
    width: calc(100% - 5px);
    height: 80px;
    bottom: 0;
    left: 0;
}

.production-popup__content .h2 {
    display: block;
    color: #24226A;
    font-family: 'Century Gothic Bold';
    font-size: 20px;
    line-height: 28px !important;
    margin: 0 0 20px 0 !important;
}

.production-popup__content .h3 {
    display: block;
    color: #24226A;
    font-family: 'Century Gothic Bold';
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    margin: 0 0 20px 0;
}

.production-popup__content p {
    margin: 0 0 20px 0;
    font-family: 'Century Gothic';
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    color: #24226A;
}

.production-map-wrapper {
    height: 650px;
    background: #fff;
    overflow: hidden;
}

.video-map.production,
.video-map .production-map-wrapper {
    height:auto !important;
    padding-top: 0;
}

.production-button.wp-block-button__link:after {
    background: url(../../img/arrow-red.svg);
}

.production-button.wp-block-button.button-white {
    position: absolute;
    top: 40px;
    left: 100px;
    padding: 20px 25px 20px 30px !important;
    align-items: center;
    display: flex;
    gap: 0 25px;
    z-index: 10;
    cursor: pointer;
    margin: 0;
    background:#fff;
    border: 1px solid #f55b41 !important;
    color: #f55b41 !important;
}

.production-button.wp-block-button.button-white:hover {
    background:#f55b41;
    color:#fff !important;
}


.production-button.wp-block-button.button-white:hover:after {
    background: url(../../img/arrow-right.svg);
}


.production-video {
    display:none;
    position:relative;
    width:100%;
    height:auto;
}

.production-cover{
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    z-index:1;
    left:0;
    top:0;
}

.production-cover img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.production-cover:after {
    content:'';
    display:block;
    width:100%;
    height:100%;
    position:absolute;
    z-index:2;
    left:0;
    top:0;
    background:url(../../img/play.svg) center / 100px 100px no-repeat;
}

.production-video.active:before, 
.production-video.active:after {
    content:none;
}

.production-close{
    display: block;
    background: center url(../../img/close.svg) no-repeat, #f55b41;
    width: 56px;
    height: 56px;
    border-radius: 5px;
    right: 20px;
    top: 20px;
    position:absolute;
    cursor:pointer;
    z-index:3;
}

.production-map {
    margin: -220px -550px 0;
    display: block;
    position: relative;
    transition: .2s;
}