html {
    overflow-x: hidden;
    color: #000;
}

.normal-text{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    margin-right: .5rem;
    font-weight: normal;
}

.text-black {
    color: #212529 !important;
}

.text-blacker{
    color: #000 !important;
}

.text-white {
    color: #fff !important;
}

.text-orange {
    color: #f47c20 !important;
}

.text-blue {
    color: #2a377e !important;
}
.country-case a{
    color: #2a377e !important;
    font-weight: bold;
    text-decoration: underline;
}

.bg-white {
    background-color: #fff;
}

.bg-orange {
    background-color: #f47c20;
}

.bg-blue {
    background-color: #2a377e;
}

.bg-brown {
    background-color: #4b4b4b;
}

.bg-light-brown {
    background-color: #97918e;
}

.bg-gray {
    background-color: #e5e5e5;
}

.btn-orange {
    background-color: #f47c20;
    color: #fff;
}

.btn-blue, .bg-blue a{
    background-color: #2a377e !important;
    color: #fff !important;
}

.btn-white {
    background-color: #fff;
    color: #000;
}

.hidden {
    display: none;
}

.desktop-navbar {
    display: block
}

.mobile-navbar {
    display: none;
}

.nav-link:hover {
    color: #000;
}

.nav-item.dropdown {
    font-weight: bold;
}

.nav-link.active, .nav-link.active:hover {
    color: #f47c20;
    font-weight: bold;
}

.header-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 100;
}

.header-navigation__logo {
    height: 80px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.header-navigation__menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.mobile-navbar {
    display: none;
}

.header-navigation__menu li {
    margin-right: 20px;
}

.header-navigation__menu a {
    font-size: 18px;
    text-decoration: none;
}

.header-navigation__menu span {
    font-weight: bold;

}

.header-navigation__menu-icon {
    display: none;
    cursor: pointer;
}

/* Sticky animation */
/*.sticky {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    padding: .25rem 20px !important;*/
/*    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;*/
/*    background-color: #fff;*/
/*    max-width: 100vw !important;*/
/*}*/

.sticky .logo {
    height: 80px;
}

.nav.logo {
    height: 80px;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.nav-item a {
    text-transform: uppercase;
    color: #000;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    padding: 10px;
    border-radius: 0;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 5px;
    /*color: $seconday_color;*/
    text-decoration: none;
}

.dropdown-menu a {
    font-size: 10pt !important;
    /*color: $seconday_color !important;*/
}

.dropdown-item:hover {
    background-color: #CDCDCD;
}

/* Menu icon animation */
.header-navigation__menu-icon span {
    display: block;
    height: 2px;
    width: 25px;
    background-color: #333;
    margin: 5px 0;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.header-navigation__menu-icon.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header-navigation__menu-icon.open span:nth-child(2) {
    opacity: 0;
}

.header-navigation__menu-icon.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.background-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.background-image.intro-block {
    min-height: 25vh;
}

.intro-block .card {
    margin: 6vh 0;
    padding: 1rem;
    /*background-color: #2a377e; */
    background-color: rgba(255,255,255,0.6);
    /* color: #FFF !important; */
    color: #333 !important;
    max-width: 30vw;
}

.intro-block .card.card-center {
    margin-left: auto;
    margin-right: auto;
}

.border-none {
    border: none;
}

.card-center {
    margin-left: auto;
    margin-right: auto;
}

#arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    color: #000;
    float: right;
    transform: translateY(-40px);
}

.arrow-down {
    transform: rotate(0deg);
}

.arrow-up {
    transform: rotate(180deg);
}

.dropdown-item {
    font-weight-bold: bold
}

.no-underline {
    text-decoration: none;
}

.border-radius-0 {
    border-radius: 0 !important;
}

.nav-item.contact-item {
    margin: 0;
}

.contact-item .bookmark-link {
    position: relative;
    color: #fff;
    font-size: 13pt;
}

.contact-item .bookmark-link:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -35px;
    left: 0;
    width: 140px;
    height: 240px;
    background: url('../../assets/images/contact-vignet.svg') no-repeat center center;
    background-size: cover;

    animation-name: dropDown;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.contact-item .bookmark-link.active:before {
    background: none;
}

.contact-item .bookmark-link.active {
    color: #f47c20 !important;
}

@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.contact-item .bookmark-link span {
    z-index: 100;
    position: relative;
    left: 25%;
}

.font-weight-bold {
    font-weight: bold
}

.font-weight-normal {
    font-weight: normal;
}

.read-case-link {
    width: 200px !important;
    background-color: #2a377e !important;
    margin: 2rem auto;
    transition: opacity 0.3s ease-in;
    transform: translateY(20px);
}


.more-details-block {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.flip-container {
    color: inherit;
    cursor: pointer;
    height: 250px;
    min-height: 250px;
    perspective: 1000px;
    margin: 0 1rem 0 0;
    position: relative;
}

@media screen and (max-width: 800px) {
    .flip-container {
        width: calc(50% - 2rem);
    }
}

@media screen and (max-width: 500px) {
    .flip-container {
        width: 100%;
    }
}

.front,
.back {
    display: flex;
    border-radius: 6px;
    background-position: center;
    background-size: cover;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: transform 600ms ease-in-out;
    border: 2px solid #97918e;
}

.front {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    background-size: cover;
    padding: 2rem;
    font-size: 1.618rem;
    font-weight: 600;
    color: #4f4f4f;
    overflow: hidden;
    font-family: Poppins, sans-serif;
}

.front i {
    font-size: 3rem; /* Adjust icon size as needed */
    margin-bottom: 1rem; /* Add spacing between icon and text */
}


.front:before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: -1;
}

.flip-container:hover .front {
    transform: rotateY(180deg);
}

.back {
    background-color: #fff;
    transform: rotateY(-180deg);
    padding: 0 2em;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    color: #4f4f4f;

}

.back p {
    width: 100%; /* Make the <p> tags full width */
    text-align: center; /* Center the text horizontally */
    margin: 0.5rem 0 0; /* Add some spacing between paragraphs */
}


.flip-container:hover .back {
    transform: rotateY(0deg);
}

.card:nth-child(even):hover .back {
    transform: rotateY(0deg);
}

.fa-solid.fa-circle-info {
    cursor: pointer;
}

.ml-2 {
    margin-left: .35rem;
}

.fi {
    font-size: 35px;
}

.center-vertical {
    display: flex;
    align-items: center;
}

#countries-chart {
    width: 100%;
    height: 93vh;
    border: 1px solid rgba(0, 0, 0, 0.8);
}

.small-btn {
    font-size: 11pt
}

.tooltip {
    background: rgb(255, 255, 255);
    /*transform: scale(1.25, 1.14);*/
    border: 1px solid;
    font-size: 10pt;
    padding: .25rem;
    color: #2a377e;
}

.tooltip-card {
    max-width: 170px;
}

.tooltip-card a {
    cursor: pointer;
    color: #2a377e !important;
}

.tooltip-card li {
    font-size: 7.5pt;
}

.tooltip-radar-card {
    max-width: 200px;
    /*min-height: 150px;*/
}

.show-cases-link {
    font-size: 10pt;
}

.parent-container {
    display: flex;
}

.child-container {
    flex: 1;
}

.no-result {
    margin-bottom: 5rem;
}

.noUi-connect {
    background-color: #2a377e !important;
}

.fa-filter {
    color: #2a377e;
    /*position: absolute;*/
    /*top: 20px;*/
    /*z-index: 100;*/
    /*transform: translateX(20px);*/
    cursor: pointer;
}

#filterMenuMap {
    position: absolute;
    top: 20px;
    left: 10px;
    z-index: 100;
}

#filterDropdownMap{
    min-width: 60vw;
}

.country-case-btn .fa-filter, .all-cases-btn .fa-filter {
    /*position: static;*/
    float: right;
    /*transform: translateX(0px);*/
}

.filter-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffff;
    padding: 0;
    border-radius: 0;
}

.case-container .filter-dropdown-menu {
    top: -50px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Adjust the number of columns as needed */
    gap: 10px; /* Adjust the gap between checkboxes */
}

.checkbox-grid-1{
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Adjust the number of columns as needed */
    gap: 10px; /* Adjust the gap between checkboxes */
}

.checkbox-grid-1 .form-check-input[type="checkbox"]{
    margin-right: 0;
}

.checkbox-grid-1 label{
    padding-top: 2px;
    font-size: 12px;
}

accordion {
    background-color: #fff;
}

.accordion-card {
    border-radius: 5px;
    margin-bottom: 10px;
    border: none;
}

.accordion-card-header {
    background-color: #fff;
    cursor: pointer;
    color: #2a377e;
    padding: 0;
}


.accordion-checkbox {
    margin-bottom: 5px;
}

.accordion-checkbox label {
    color: #2a377e;
}

.close-icon {
    cursor: pointer;
    float: right;
}

.foldable-text {
    column-count: 1;
}

#select-date-filter {
    border: 1px solid #2a377e;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.list ul {
    margin-bottom: .5rem;
}

.list ul li p {
    margin: 0;
}

.case-summary {
    border-radius: 5px;
    min-height: 250px
    /*column-count: 2;*/
}

.cursor-pointer {
    cursor: pointer
}

/* Your CSS styles */

#scrollToTopButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #2a377e;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 20px;
}

#scrollToTopButton:hover {
    background-color: #4a2abb;
}

.border-radius-2 {
    /*border-radius: 5px;*/
}

#case-list .fi {
    float: right
}

.float-right {
    float: right;
}

#radar_timeline {
    width: 100%;
    min-height: 90vh;

}

.radar-wrapper {
    position: relative;
    z-index: 99;
}

.radar-wrapper #axislabel-active {
    position: absolute;
    display: inline-block;
    left: 15px;
    top: 15px;
    z-index: 100
}

.small-text {
    font-size: 10pt;
}

.font-weight-normal {
    font-weight: normal !important;
}

.mobile-flag {
    display: none !important;
}

.mobile-item {
    display: none;
}

.medium-text {
    font-size: 16pt;
}

.year-slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Change to space-between */
    padding: 0 1rem .5rem .5rem;
    /* margin-top: 1rem; */
}

.year-label {
    font-size: 18px;
    color: #2a377e;
}

/* Add new CSS to align start year left and end year right */
#startYearLabel {
    text-align: left;
}

#endYearLabel {
    text-align: right;
}

.extra-title {
    font-size: 14pt;
    font-weight: bold;
    color: #2a377e;
    position: relative;
    top: -10%;
    padding: 0 1rem 0 .5rem;

}

.pl-0 {
    padding-left: 0;
}

.pl-3 {
    padding-left: 1rem;
}

.no-marker {
    list-style-type: none;
    transform: translateX(-5%);
    font-weight: bold;
}

.border-black {
    border: 1px solid #000;
}

.map-radar-timeline-container #radar_timeline {
    width: 100%;
    min-height: 60vh;
}

.map-radar-timeline-container #countries-chart {
    width: 100%;
    height: 64vh;
    border: 1px solid rgba(0, 0, 0, 0.8);
}

.map-radar-timeline-container #filterMenu {
    right: 50%;
    transform: translate(-50%, -50%);
    font-size: 20pt;
}

.accordion .form-check-label {
    font-size: 10pt;
    font-weight: normal !important;
}

.text-right {
    text-align: right;
}

h1, h2, h3 {
    font-weight: bold
}

#case-list .bg-white, #case-list .bg-gray {
    height: 100%;
}

.case-detail-container .container-fluid:nth-child(even){
    background-color: #97918e;
    color: #fff;
}

.case-detail-container .more-details{
    /*background-color: #fff !important;*/
    /*color: #4f4f4f !important;*/
}

/*.case-detail-container .more-details h2{*/
/*    color: #fff;*/
/*}*/

.case-detail-container .criminal-case-container{

}


.more-details .fi{
    font-size: 20px;
}

.smaller-text{
    font-size: 12px;
}

.two-column{
    column-count: 2;
}

.text-underline{
    text-decoration: underline;
}