@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
.main-container {
    overflow-x: hidden;
    background-color: #046EA9;
    height: auto;
    /* edited */
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-glass-container {
    max-width: 1000px;
    /* edited */
    width: 93%;
    margin: 30px 0;
    /* edited */
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    height: fit-content;
    border-radius: 32px;
    border: 4px white solid;
    backdrop-filter: blur(35px);
    padding: 60px 32px;
}

@media (max-width:440px) {
    .inner-glass-container {
        padding: 30px 16px;
    }
}

.portrait {
    /* edited */
    width: 98vh !important;
    transform: rotate(90deg) !important;
    overflow: hidden;
    z-index: 3;
}

.landscape {
    width: 93%;
    /* edited */
    transform: rotate(0deg);
}

.maps {
    transform: rotate(0deg);
    margin: 2%;
    width: 100%;
}

.map-main-container {
    background-color: white;
    height: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.height {
    height: 1000px !important;
}

.map-mid {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 490px;
}

@media (max-height: 490px) {
    .map-mid {
        height: 90vh;
    }
    .kill-zone-map {
        height: calc(90vh - 24px) !important;
    }
    .flags-container {
        gap: unset !important;
    }
    .map-head>h1 {
        font-size: 1.8rem !important;
        text-align: center;
    }
    .inner-glass-container {
        padding: 30px 16px;
    }
    .time-card {
        max-width: 180px!important;
    }
}


/* edited */

.map-container {
    width: 90%;
    background-image: url(./Group\ 8.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.flags-container {
    padding-top: 20px;
    width: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background-color: #6C7F81;
    z-index: 10;
    box-shadow: 5px 4px 31px rgba(0, 0, 0, 0.25);
}

.flag-session {
    width: 80%;
}

.flag-session>img {
    width: 100%;
}

.flag-session>p {
    text-align: center;
    margin: 10px 0px;
    font-size: 12px;
    color: white;
    font-family: "Inter", sans-serif;
}

.time-indicator-container {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 100%;
}

.time-line {
    width: 35.5px;
    border-right: 1px rgba(255, 255, 255, 0.50) dashed;
    height: 100%;
    position: relative;
}

.time-num {
    background-color: black;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.time-num>p {
    text-align: center;
    margin: 0px;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.last-border {
    border-right: none;
}

.kill-zone-map {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 5px 4px 31.5px rgba(0, 0, 0, 0.25);
    position: absolute;
    margin-top: 24px;
    height: 466px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 5;
}

.kill-zone-map>p {
    color: white;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin-bottom: 0rem;
    font-size: 12px;
}

.time-indicator {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -56px;
    cursor: grab;
}

.map-date-time {
    background-color: white;
    box-shadow: 0px 10px 34px rgba(0, 0, 0, 0.50);
    border-radius: 32px;
    border: 6px #109DED solid;
}

.time-indicate-date {
    text-align: center;
    color: #046EA9;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    margin: 2px 18px 0px 18px;
}

.time-indicate-time {
    text-align: center;
    color: #046EA9;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    margin: 2px 18px 0px 18px;
    width: 105px;
}

.time-bar {
    width: 4px;
    /*8px*/
    height: 500px;
    background-color: #109DED;
}

.map-bottom {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.graph-details-container {
    background-color: #2E484B;
}

.graph-container {
    background-color: #2E484B;
    width: 830px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.graph-bar {
    width: 12px;
    height: 0;
    background: grey;
    transition: height 0.5s ease, background-color 0.5s ease;
}

.graph-details {
    display: flex;
    align-items: center;
    gap: 4px;
}

.graph-color {
    width: 24px;
    height: 24px;
}

.graph-color-text {
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 300;
    margin: 0px;
}

.green {
    background-color: #72C566;
}

.red {
    background-color: #DE4657;
}

.yellow {
    background-color: #F0CC46;
}

.map-head>h1 {
    font-family: "Inter", sans-serif;
    color: #2E484B;
    font-size: 2.2rem;
}

.red-text {
    color: #DE4657;
}

.map-head {
    padding: 10px;
}

.map-head-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.killzone-select-container {
    display: flex;
    gap: 24px;
}

.timezone-select>select {
    width: 200px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid;
}

.timezone-select>p {
    font-family: "Inter", sans-serif;
}

.killzone-select>label {
    font-family: "Inter", sans-serif;
}

.killzone-select>input {
    border-radius: 4px;
}

.time-card {
    position: absolute;
    z-index: 6;
    width: auto;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width :720px) {
    .time-card {
        max-width: 180px!important;
    }
}


/* edited */

@media (max-width :620px) {
    .map-head>h1 {
        font-size: 1.8rem !important;
        text-align: center;
    }
}


/* edited */

.time-card-title {
    background: rgba(255, 255, 255, 0.50);
    border: 2px white solid;
    border-radius: 10px 10px 0px 0px;
    backdrop-filter: blur(10px);
}

.time-card-title>h3 {
    font-family: "Inter", sans-serif;
    margin: 4px 0px 4px 0px;
    font-size: 12px;
    text-align: center;
}

.time-card-content {
    display: flex;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
    padding: 4px 3.5px 10px 3.5px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.open-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.open-status>div {
    background-color: #72C566;
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

.close-status>div {
    background-color: #DE4657;
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

.close-status>p {
    font-family: "Inter", sans-serif;
    margin: 0px;
    font-size: 12px;
    font-weight: 600;
}

.open-status>p {
    font-family: "Inter", sans-serif;
    margin: 0px;
    font-size: 12px;
    font-weight: 600;
}

.time-card-time>p {
    font-family: "Inter", sans-serif;
    margin: 0px;
    font-size: 12px;
    font-weight: 600;
}

.card-one {
    top: 12%;
}

.card-two {
    top: 34%;
}

.card-three {
    top: 54%;
}

.card-four {
    top: 75%;
}
