﻿:root {
    --green-dark: #5F7800;
    --green-light: #AAB400;
    --bg-light: #ffffff;
    --green-hover: #c7dd77;
}

body,
html {
    font-family: 'Noto Sans', sans-serif;
}

body.modal-open {
    overflow: hidden !important;
}
.modal {
    overflow-x: hidden;
    background-color: #FFF;
}

.carousel-inner {
    height: 644px;
}

.trial-loader {
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 5px solid #ccc;
    border-top: 5px solid var(--green-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.remove {
    cursor: pointer;
}

.carousel-img {
    width: 100%;
    height: 644px;
    object-fit: contain;
}

.carousel-left > *,
.carousel-right > * {
    pointer-events: none;
}
.carousel-left {
    position: absolute;
    color: white !important;
    left: 35%;
    z-index: 1050;
}

.carousel-right {
    position: absolute;
    color: white !important;
    right: 35%;
    z-index: 1050;
}

.carousel-tap {
    display: flex;
    align-items: center;
    height: 50px;
    padding-top: 20px;
}

.carousel-indicators {
    bottom: -5px !important;
}
.carousel-indicators li {
    margin-right: 5px;
    margin-left: 5px;
}
.carousel-indicators li.active {
    width: 50px;
}


button.btn {
    background-color: #ffffff;
    color: #6E6E6E;
    border: none;
    padding: 7px 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    border-radius: 20px;
}

button.btn i {
    margin-right: 5px;
}


.border-bottom {
    border-bottom: 1px solid #E6E6E6;
}

.mt-10 {
    margin-top: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.container-medium {
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 20px;
}

.expandable-div {
    width: 100%;
    height: 50px;
    border-bottom: 3px solid #AAB400;
    background-color: white;
    display: flex;
    align-items: left;
    transition: height 0.5s ease-in-out;
    cursor: pointer;
    padding: 12px 24px;
    align-items: flex-start;
    gap: 48px;
}

.expanded {
    height: 300px;
}

.filter-items {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 8px;
    flex: 1 0 0;
    flex-wrap: wrap;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 1px solid #959595;
    border-radius: 4px;
    accent-color: #9D9900;
    flex-shrink: 0;
}

/* input[type="checkbox"]:checked {
    background-color: #9D9900;
} */

input[type="radio"] {
    height: 20px;
    width: 20px;
    accent-color: #9D9900;
    flex-shrink: 0;
}

.tags-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tags-container .tag {
    padding: 8px 8px 8px 12px;
    align-items: flex-start;
    background-color: #EBEBEB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 13px;
    user-select: none;
}


.marker {
    background-image: url('https://docs.mapbox.com/help/demos/custom-markers-gl-js/mapbox-icon.png');
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.corn-marker {
    background-image: url("https://assets.syngentaebiz.com/images/media/mapbox-corn_pin.png");
    background-size: cover;
    width: 30px;
    height: 44px;
    cursor: pointer;
}

.soybean-marker {
    background-image: url("https://assets.syngentaebiz.com/images/media/mapbox-soybean_pin.png");
    background-size: cover;
    width: 30px;
    height: 44px;
    cursor: pointer;
}

.modal-dialog {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    height: 736px;
    border-radius: 0;
}

.modal.fade .modal-dialog {
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.modal.in .modal-dialog {
    transform: translateY(0);
}

.modal-header {
    background-color: var(--green-dark);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    padding: 5px;
}

.center-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    border-radius: 12px;
    background: rgba(39, 49, 0, 0.95);
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
    .center-div {
        width: 90%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .popup-container {
        width: 80% !important;
    }

    .center-div {
        font-size: 14px;
        padding: 10px;
    }
}

.popup-container {
    position: absolute;
    background: rgba(39, 49, 0, 0.95);
    border-radius: 12px;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    z-index: 999;
    display: none;
    height: 352px;
    opacity: 90%;
    text-align: center;
    width: 1104px;
    padding: 64px 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 44px;
}

.popup-container button {
    background-color: #62801e;
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #62801e;
    padding: 10px 20px;
    cursor: pointer;
    box-shadow: 2px 11px 11px 0px rgba(102, 102, 102, 0.50);
}

.popup-container button:hover {
    background-color: #FFF;
    color: #62801e;
    border: 2px solid #62801e;
    cursor: pointer;
}

.header-btn {
    background-color: var(--white);
    color: #ffffff;
    border: none;
    padding: 12px 10px;
    cursor: pointer;
    width: 200px;
    border-radius: 4px;
}

button:hover {
    background-color: #7F9333;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 998;
    display: none;
}

.popup-text {
    align-content: center;
    color: white;
}

header {
    background-color: white;
    color: #333;
    /* padding: 20px; */
}

#section-left {
    border-right: 3px solid var(--green-light);
    position: relative;
    min-height: 736px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px;
}

.section-left-yield {
    background-color: #324b0f;
    padding: 48px;
}

.full-col-data {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 48px;
    background-color: var(--bg-light);
}

.yield-product-section {
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    background-color: var(--bg-light);
}
.yield-product-section.flex-direction {
    flex-direction: column;
}

.yield-product-section .product-list .product-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.yield-product-section .product-list .product-name {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: underline;
}

.yield-product-section .product-list .plot-name {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.left-col-data {
    height: auto;
    padding: 5px 48px 15px;
}
.left-col-data .seed-content .testimonial-para {
    color: #000000;
}

.left-col-data .seed-content .testimonial-sub-para {
    color: #000000B8;
}
.left-col-data.has-both-assets {
    padding: 0;
}
.left-col-data.has-both-assets hr {
    border-top: 2px solid #eee;
}
.left-col-data.has-both-assets > div {
    padding-left: 48px;
    padding-right: 48px;
}
.left-col-data.has-both-assets .seed-content {
    padding-top: 40px;
    padding-bottom: 20px;
}

.mapbox-container {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    overflow: hidden;
}

#map {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.filter {
    position: relative;
    max-height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: max-height 1s ease-in-out, opacity 1s ease-in-out;
}

.filter.show {
    min-height: 50px;
    opacity: 1;
    display: flex !important;
    align-items: center;
    padding: 12px 0px;
}

#mapLegend {
    position: absolute;
    left: 20px;
    bottom: -200px;
    width: 390px;
    background: rgba(39, 49, 0, 0.95);
    backdrop-filter: blur(2px);
    color: white;
    padding: 10px 20px 10px 30px;
    border-radius: 10px 10px 0px 0px;
    transition: bottom 1s ease-in-out, opacity 1s ease-in-out;
    opacity: 0;
    z-index: 0;
}
#mapLegend .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.legend-icon-corn {
    background-color: #D6D630;
    outline: 1px solid #313D00;
    border-radius: 100%;
    margin-right: 10px;
}

.legend-icon-soybeans {
    background-color: #FFD371;
    outline: 1px solid #894A04;
    border-radius: 100%;
    margin-right: 10px;
}

#mapLegend h6 {
    font-size: 16px;
    font-weight: 700;
}

#mapLegend.show {
    bottom: 0;
    opacity: 1;
}


.filter-container {
    border-bottom: 3px solid var(--green-light);
    position: absolute;
    width: 100%;
    background-color: #F5F5F5;
    top: 0;
    z-index: 1;
}

.collapse {
    transition: height 0.5s ease-in-out;
}

#productList,
#agronomicIssueList {
    max-height: 200px;
    overflow-y: auto;
}

.mobile-div {
    border-right: none;
}

.mobile-filter {
    display: none;
    padding: 12px 0px;
}


.filter-header {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.filter-header h2 {
    font-weight: 700;
}

.magnifying-button {
    display: none !important;
    background: #ffffff;
    border-radius: 50%;
    border: 1px;
    padding: 7px 8px;
    position: absolute;
    right: 40px;
}
.magnifying-button i {
    font-size: 20px;
}


#filter-icon {
    margin-right: 10px;
    font-size: 20px;
    height: auto;
}

.toggle-inner-div {
    display: flex;
    min-height: calc(100vh - 74px);
}

.toggle-div-desktop.visible {
    display: block;
}

.toggle-div-desktop {
    display: none;
}

.locationId-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
}

.product-field-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-field-section .product-field-section-right {
    display: flex;
    gap: 21px;
    align-items: center;
}
.product-field-section .product-field-section-right .small-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.product-trial-detail {
    display: flex;
    gap: 24px;
    padding: 10px 0px;
    margin-top: 10px;
}

.video-container {
    position: relative;
    width: 100%;
}

.carousel-video {
    width: 100%;
    height: 644px;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

.video-play-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

#assetModal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    z-index: 1050;
}

.location-search-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.location-search-section label {
    font-size: 12px;
}

.location-search-section div {
    width: 70%;
}
.location-search-section div input {
    border-radius: 8px !important;
}

.yield-content-diff-inner {
    background-color: #FFFFFF;
    text-align: center;
}

.yield-content-inner {
    background-color: #EDEDED;
    text-align: center;
}
.yield-content-inner h1 {
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
}

.yield-content-inner-content {
    display: flex;
    padding: 8px;
    flex-direction: column;
    gap: 10px;
}
.yield-content-inner-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
}
.yield-content-inner-content .top {
    padding: 20px 0px !important;
}

.trial-text {
    display: block;
}

/* Position the row containing the buttons */
.image-box-row {
    position: absolute;
    bottom: 10px;
    display: flex;
    gap: 10px;
    padding: 0px 10px;
    width: 100%;
}


.image-box-tag {
    display: flex;
    padding: 8px 16px;
    gap: 10px;
    border-radius: 50px;
    opacity: 0px;
    background-color: #FFFFFF;
    align-items: center;
    font-size: 14px;
}

.difference-cal {
    font-size: 18px;
    font-weight: 700;
}
.difference-cal i {
    color: #AAB400;
}
.difference-cal .fa-minus {
    color: #000000 !important;
    margin-right: 5px;
}

.syngenta-product {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
}

.trial-properties label {
    font-weight: 400;
}

.zip-para {
    line-height: 16px;
}

.believing-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    margin-top: 0px;
}

.filter-sub-headers {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    color: #000000;
}

.input-align {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}
.input-align label {
    font-size: 12px;
    color: #000000;
    margin-bottom: 0px !important;
    position: relative;
    top: 2px;
}
.input-align label,
.input-align input {
    cursor: pointer;
}

#collapseContent.show {
    min-height: 300px;
    max-height: 500px;
}

.location-section {
    padding-left: 0px;
}
#resetFilter {
    border-radius: 100px;
    border: none;
    text-transform: uppercase;
    color: white;
    font-size: 14px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding-right: 20px;
}
#resetFilter:not([disabled]):hover {
    background-color: rgba(0, 0, 0, 0.35)
}
#resetFilter:not([disabled]):hover i {
    transform: rotate(-22.5deg);
    transition: transform 0.5s;
}
#resetFilter i {
    padding: 10px;
    transition: transform 0.5s;
}
#resetFilter:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
/* Mobile-specific styles */
@media (max-width: 767px) {
    .location-section {
        padding-left: 15px;
    }

    .tags-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        max-width: 100%;
    }
    .tags-container .tag {
        padding: 8px 12px;
    }
    .tags-container::-webkit-scrollbar {
        display: none;
    }

    .filter.show {
        max-height: 500px;
    }

    .believing-text {
        margin-top: 10px;
    }

    .yield-content-inner-bottom {
        display: flex;
    }

    .trial-text {
        display: none;
    }

    .seed-content.right {
        width: 100% !important;
        padding: 20px;
    }

    #defference-section-green-section {
        width: 100% !important;
    }

    #difference-section-cal {
        width: 50% !important;
    }

    #assetModal.modal-visible {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    #assetModal .modal-content {
        background-color: #fff;
        padding: 20px;
        width: 100%;
        max-width: 600px;
        border-radius: 8px;
        position: relative;
        background-color: black;
    }

    #assetModal .modal-body {
        text-align: center;
        padding: 0px;
    }

    #assetModal .modal-image {
        max-width: 100%;
        height: 584px;
        margin-bottom: 20px;
        object-fit: fill;
    }

    #assetModal .modal-text {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        color: var(--bg-light);
    }
    #assetModal .modal-text .inner-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    #assetModal .modal-text p {
        font-size: 14px;
        margin: 0px;
        color: var(--bg-light);
    }


    .close-btn {
        cursor: pointer;
    }
    .close-btn i {
        font-size: 16px;
    }

    .carousel-inner,
    .carousel-img {
        height: 375px;
    }

    .carousel-video {
        height: 375px;
    }

    .carousel-tap {
        height: 0px;
        padding-top: 0px;
    }
    .carousel-tap a {
        display: none;
    }

    .image-box-row {
        bottom: auto;
        top: 10px;
    }

    .carousel-indicators {
        bottom: 0px !important;
        margin-bottom: 0px !important;
    }

    .toggle-inner-div {
        flex-direction: column;
    }

    .toggle-div-mobile {
        position: absolute;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out, opacity 0.5s ease;
        z-index: 999;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        width: 100%;
    }
    .toggle-div-mobile.visible {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }


    #section-left,
    .left-col-data {
        order: 1;
    }

    .left-col-data {
        padding: 12px 24px;
    }

    #section-left {
        justify-content: normal;
    }

    .product-field-section,
    .product-field-section .product-field-section-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
        gap: 10px;
    }
    .product-field-section .product-field-section-right .app-date {
        display: flex;
        align-items: center;
    }

    #section-right {
        padding: 0px;
        min-height: 0 !important;
    }

    #mapLegend {
        width: 100%;
        left: 0;
        border-radius: 0;
    }

    .popup-container {
        padding: 48px 32px;
        height: auto;
    }

    .filter-container {
        top: 0;
    }

    #collapseContent.show {
        left: 0;
        position: absolute;
        top: 0;
        overflow-y: auto;
        max-height: 500px;
        transition: left 0.3s ease-in-out;
    }

    #collapseContent {
        left: -100%;
        position: fixed;
        top: 0;
        width: 90%;
        background-color: #F5F5F5;
        transition: left 0.3s ease-in-out;
        z-index: 2;
    }

    .popup-header {
        font-size: 36px !important;
        line-height: 42px !important;
    }

    .popup-title {
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

/* mapbox end */

.popup-header {
    font-size: 78px;
    font-weight: 700;
    line-height: 56px;
    color: #ffffff;
}

.popup-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 36px;
    color: inherit;
}

.trial-view {
    display: inline-block;
    vertical-align: middle;
}
.trial-view img {
    width: 30px;
    height: auto;
}

.difference-section {
    background-color: #f1f1f1;
    display: flex;
}

#yield-card-green-section {
    padding: 7px 52px;
    background-color: #AAB400;
    color: #000000;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#difference-section-green-section {
    min-width: 239px;
    padding: 7px;
    background-color: #AAB400;
    color: #000000;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#difference-section-cal {
    width: 100%;
    text-align: right;
    color: #000000;
    background-color: #AAB40057;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#section-right {
    background-color: #324b0f;
    min-height: 736px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.cornSoyImg {
    background-image: url("https://assets.syngentaebiz.com/images/media/mapbox-corn_or_soy.jpg");
    backdrop-filter: blur(16px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.modal-header .close {
    position: absolute;
    opacity: unset;
    right: 20px;
}

.header-btn.active {
    background-color: #789702;
}

#trailTimingButtonDesktop {
    display: flex;
    padding: 10px;
    gap: 10px;
    flex: 1 0 0;
}

#trailTimingButtonMobile .dropdown-btn,
#caret {
    display: none;
}

.yield-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.yield-content .syngenta-header {
    font-weight: 700;
    font-size: 82px;
    line-height: 82px;
    text-align: center;
    margin-top: 10px;
    color: #000000;
}
.yield-content .syngenta-header i {
    color: #AAB400;
    font-size: 5rem;
}

.yield-content .syngenta-difference {
    padding: 16px 52px !important;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #000000;
}

.yield-only-difference {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media screen and (max-width: 768px) {

    .section-left-yield {
        display: flex;
        justify-content: center;
    }

    .yield-product-section {
        justify-content: flex-start !important;
        flex-direction: column !important;
    }

    .modal-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0px;
        border-bottom: 3px solid var(--green-light);
    }

    #trailTimingButtonMobile {
        width: 90%;
    }

    .modal-header .close {
        width: 10%;
        display: flex;
        justify-content: center;
        position: static;
    }

    #trailTimingButtonDesktop {
        display: none;
    }

    #trailTimingButtonMobile .dropdown-btn,
    #caret {
        display: block;
    }

    .dropdown {
        position: relative;
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .dropdown-btn {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        background-color: #5F7800;
        border: none;
        cursor: pointer;
        text-align: center;
        position: relative;
        border-right: 1px solid #AAB400;
    }

    .dropdown-btn:focus {
        outline: none;
        border-color: #789702;
    }

    #caret {
        position: absolute;
        right: 55px;
        top: 10px;
        pointer-events: none;
        font-size: 15px;
    }

    .dropdown-list {
        position: absolute;
        left: 0;
        right: 0;
        background-color: #3A4900;
        border-bottom: 3px solid #AAB400;
        padding: 0;
        margin: 0;
        list-style-type: none;
        z-index: 1050;
        text-align: left;
        box-shadow: 0px 27px 35px 0px #00000080;
    }

    .dropdown-list li {
        padding: 12px 24px;
        font-size: 16px;
        cursor: pointer;
        text-align: center;
    }

    .dropdown-list li:hover {
        background-color: #567801;
        color: #fff;
    }

    .dropdown-list li.active {
        background-color: #567801;
        color: #fff;
    }

    .mobile-div {
        border-right: 3px solid var(--green-light);
        padding: 10px;
        margin-bottom: 20px;
    }

    .mobile-filter {
        display: flex;
        justify-content: space-between;
    }

    .image-date {
        display: none !important;
    }

    .magnifying-button {
        display: block !important;
    }

    button.close {
        margin-right: -30px;
        opacity: 1;
    }

    .mobile-close-btn img{
        height: 20px;
        width: 20px;
    }

    .yield-content .syngenta-header {
        font-size: 60px;
    }
}

.box {
    background-color: #3A4900;
    height: 549px;
    padding: 48px;
}

.seed-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 45px;
}
.seed-content.left {
    padding: 48px;
}
.seed-content.right {
    width: 504px;
}

.testimonial-para {
    color: #FFFFFF;
}

.testimonial-sub-para {
    color: #FFFFFFB8;
}

.map-fs-12 {
    font-size: 12px;
}

.map-fs-14 {
    font-size: 14px;
    color: #55565a;
    line-height: 20px;
}

.map-fs-16 {
    font-size: 16px;
}

.w-100 {
    width: 100%;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.pr-2 {
    padding-right: .5rem !important;
}

.pl-2 {
    padding-left: .5rem !important;
}

.mapboxgl-ctrl-logo {
    display: none !important;
}

.no-products-applied {
    margin-top: 20px;
}
.no-products-applied h3,
.no-products-applied p {
    font-size: 14px;
}
.no-products-applied h3 {
    font-weight: 400;
    color: #6E6E6E;
}
.no-products-applied p {
    color: #000;
}

.no-media-available {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr min-content;
    padding: 20px 10px 10px;
    overflow: hidden;
}
.no-media-available::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("https://assets.syngentaebiz.com/images/media/bybd-map-background-no-media.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) blur(5px);
}
.no-media-available > * {
    position: relative;
    z-index: 1;
}
.no-media-available img {
    width: 380px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.no-media-available p {
    font-size: 14px;
    text-align: right;
    margin: 0;
    color: #FFF;
}

#trialContent .no-media #section-right {
    padding: 0;
}
@media only screen and (max-width: 767px) {
    #trialContent .no-media .toggle-inner-div {
        flex-direction: column-reverse;
    }
    .toggle-inner-div,
    #section-left {
        min-height: auto;
    }
    .modal-content {
        border: none;
        box-shadow: none;
    }

    .left-col-data.has-both-assets > div {
        padding-left: 24px;
        padding-right: 24px;
    }
}