/*Custom CSS*/

.MV__AKNB__row-scroll-nav__con {
    display: none;
}

.theapp-header {
    width: 100%;
    height: 120px;
    position: fixed;
    top: 0;
    padding: 0 1%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-size: cover;
    background-color: rgb(255, 255, 255);
    z-index: 12;
    opacity: 1;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 12px 40px 0 rgba(0, 0, 0, 0.19);
    transition: top 0.3s ease-in-out;
}


.theapp-logo {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;
    object-fit: contain;
    padding: 14px;
}

.logo-photo {
    max-height: 90%;
    width: auto;
    object-fit: contain;
    cursor: pointer;
}

.theapp-nav {   
    object-fit: contain;
    height: 100%;
    left: 0;       
}

.theapp-nav-links {
    object-fit: contain;
    margin-bottom: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theapp-nav-links li {
    display: flex;
    flex-shrink: 1;
    object-fit: contain;
    height: 100%;
    align-items: center;
    
}

.theapp-nav-links li a {
    color: #008080;
    font-weight: 600;
}

.theapp-nav-links li span {
    color: #008080;
    font-weight: 600;
}

.theapp-dropdown-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    max-height: 100%;
    width: 140px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none;
}

.theapp-dropdown-btn:hover {
    background-color: #5f5f5f1f;
}

.theapp-account-dropdown {
    opacity: 0;
    position: absolute;
    right: 1%;
    top: 120px;
    background-color: rgb(0, 128, 128);
    display: flex;
    width: 300px;
    height: 300px;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

.theapp-dropdown-btn.selected {
    background-color: rgba(255, 255, 255, 0.212);
    box-shadow: inset 0px 0px 10px 1px rgba(255, 255, 255, 0.623);
}

.theapp-account-dropdown.visible {
    opacity: 1;
}


.profile-photo {
    height: 40px;
    object-fit: contain;
    border:rgba(0, 0, 0, 0.19) solid 1px;
    border-radius: 200px;
    margin-right: 10px;
}

.theapp-drop-btn:hover {
    background-color: #5f5f5f1f;
}

.theapp-drop-btn-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 24px;
}

.theapp-drop-btn-container h5 {
    margin-bottom: 14px;
    color: white;

}

.theapp-drop-reg-btn {
    width: 100%;
    height: 55px;
    border-radius: 6px;
    border: none;
    margin-bottom: 14px;
}

.theapp-drop-login-btn {
    width: 100%;
    height: 55px;
    border-radius: 6px;
    border: none;
    margin-bottom: 14px;
}

.theapp-btn-text {
    color: white;
}


.theapp-home-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none;
}
.theapp-home-btn:hover {
    background-color: #5f5f5f1f;
}

.theapp-home-btn a {
    color: white;
    text-decoration: none;
}

.theapp-map-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none;
}

.theapp-map-btn:hover {
    background-color: #5f5f5f1f;
}

.theapp-location-select {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;    
}

.theapp-rounded-select-box {
    width: fit-content;
    height: 40px;
    background-color: #00808023;
    padding: 6px 16px 6px 16px;
    border: #008080 2px solid;
    border-radius: 35px;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
    user-select: none;
}

.theapp-rounded-select-box p {
    padding: 0;
    margin: 0;
}

.mr-4 {
    margin-right: 8px;
}

.MVAKNB-tab-bar {
    display: none;
}


/*Nav Bar END*/


/*Login Page*/

.theapp-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-image: url('https://res.cloudinary.com/dsmvnhgtd/image/upload/v1726563363/TheappTrips/website_graphic_-_movement_1500_3000px_oislfv.png');
}

.theapp-login-form-container {
    width: 500px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow:rgb(0, 128, 128) 2px 2px 5px 0px;
}

.theapp-login-form-email{
    padding: 20px
}

.email-input{
    all: unset;
    display: block;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    height: 40px;
    border-bottom: rgb(0, 128, 128) 1px solid;
}

.email-input:focus{
    background-color: #ffffff73;
    border-bottom: rgb(0, 128, 128) 2px solid;
}



.theapp-login-form-password{
    padding: 20px;
}

.password-input{
    all: unset;
    display: block;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    height: 40px;
    border-bottom: rgb(0, 128, 128) 1px solid;
}

.password-input:focus{
    background-color: #ffffff73;
    border-bottom: rgb(0, 128, 128) 2px solid;
}

.theapp-login-form-header{
    padding-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theapp-login-logo{
    height: auto;
    width: 200px;
}

.theapp-login-form-submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;

}

.theapp-login-submit-btn {
    background-color: #008080;
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 20px;
    color: white;
    font-weight: 600;

}

/*Register Page*/

.reg-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-image: url('https://res.cloudinary.com/dsmvnhgtd/image/upload/v1726563363/TheappTrips/website_graphic_-_movement_1500_3000px_oislfv.png');
}

.register-form-container {
    width: 500px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow:rgb(0, 128, 128) 2px 2px 5px 0px;
    padding: 10px;
}

.reg-form-inner {
    width: 100%;
    height: 100%;
    padding: 4px;
}

.reg-form {
    width: 100%;
    height: 100%;
}

.reg-entries {
    width: 100%;
    height: 100%;
}

.reg-form-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.form-input-container {
    width: 100%;
    height: 100%;
}

.form-input {
    all: unset;
    display: block;
    background-color: transparent;
    box-shadow: none;
    width: 100%;
    height: 40px;
    border-bottom: rgb(0, 128, 128) 1px solid;
}

.reg-form-submit-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
}




/*Register page END*/

/*Home Page*/

.theapp-home-container{
    height: fit-content;
    width: 100%;
    padding-top: 140px;
    background-color: white;
    overflow: hidden;
}

.theapp-home-flex-con {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 14px;
    padding: 0 1% 40px 1%;
}

.theapp-top-positions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    gap: 1%;
}

.home-prod-layout {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    color: black;
    border: #ffffff 0.4px solid;
    box-shadow: #868686 0px 0px 8px 0px;
    border-radius: 2px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.home-prod-layout-grey {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-image: rgba(190, 13, 13, 0.212);
    color: black;
    border: #ffffff 0.4px solid;
    box-shadow: #868686 0px 0px 8px 0px;
    border-radius: 2px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.home-prod-layout:hover {
    transform: scale(1.01);
}

.home-prod-layout h3 {
    margin: 0;
    font-size: 1.2rem;
}

.home-prod-layout p {
    margin: 0;
    font-size: 0.9rem;
}

.prod-text-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    gap: 10px;
}

.prod-text-row-grey {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    gap: 10px;
}

.home-prod-btn {
    width: 100px;
    height: 40px;
    background-color: #008080;
    color: white;
    font-weight: 500;
    border: none;
    border-radius: 4px;
}

.home-prod-btn-grey {
    width: 100px;
    height: 40px;
    background-color: #bbbbbb;
    color: #bbbbbb;
    font-weight: 500;
    border: none;
    border-radius: 4px;
}

.h3-load-grey {
    height: 30px;
    width: 200px;
    background-color: #c7c7c7;
    border-radius: 4px;
}

.h3-load-grey::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.p-load-grey {
    margin-top: 6px;
    height: 20px;
    width: 100px;
    background-color: #c7c7c7;
    border-radius: 4px;
}

.home-prod-text{
    width: 100%;
    background-color: #ffffff;
    padding: 14px;
}

.home-prod-text-grey {
    width: 100%;
    background-color: #a5a5a5;
    padding: 14px;
}



.theapp-pos-one {
    width: 66%;
    height: 100%;
}

.theapp-pos-one-grey {
    width: 66%;
    height: 100%;
    background-color: #dadada;
}

.theapp-pos-two {
    width: 33%;
    height: 100%;
}

.theapp-pos-two-grey {
    width: 33%;
    height: 100%;
    background-color: #dadada;
}

.theapp-scrollable-positions-container{
    position: relative;
    height: 400px;
    width: 100%;
}

.theapp-scrollable-positions {
    margin-left: -2%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: unset;
    gap: 1%;
    min-width: 104%;
    height: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-left: 2%;
    padding-right: 2%;
}

.scroll-ten-btn {
    margin-top: 6px;
    width: 100%;
    height: 40px;
    background-color: #008080;
    color: white;
    font-weight: 500;
    border: none;
    border-radius: 4px;
}

.scroll-ten-btn-grey {
    margin-top: 6px;
    width: 100%;
    height: 40px;
    background-color: #bbbbbb;
    color: #bbbbbb;
    font-weight: 500;
    border: none;
    border-radius: 4px;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: #008080;
    height: 70px;
    width: 70px;
    border-radius: 70px;
    border: #008080 3px solid;
    box-shadow: #808080 0px 0px 8px 0px;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.left-arrow {
    left: 0;
}

.right-arrow {
    right: 0;
}

.theapp-pos-scroll-ten {
    position: relative;
    display: flex;
    width: 300px;
    height: 95%;
    flex-shrink: 0;
    overflow: hidden;
}

.theapp-pos-scroll-ten-grey {
    position: relative;
    display: flex;
    width: 300px;
    height: 95%;
    flex-shrink: 0;
    background-color: #dadada;
    overflow: hidden;
}

.theapp-middle-three {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    gap: 1%;
}

.theapp-bottom-four{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    gap: 1%;
}

.theapp-pos-three {
    width: 33%;
    height: 100%;
}

.theapp-pos-three-grey {
    width: 33%;
    height: 100%;
    background-color: #dadada;
}

.theapp-pos-four {
    width: 33%;
    height: 100%;
}

.theapp-pos-four-grey {
    width: 33%;
    height: 100%;
    background-color: #dadada;
}

.theapp-pos-five {
    width: 33%;
    height: 100%;
}

.theapp-pos-five-grey {
    width: 33%;
    height: 100%;
    background-color: #dadada;
}

.theapp-pos-six {
    width: 24.25%;
    height: 100%;
}

.theapp-pos-six-grey {
    width: 24.25%;
    height: 100%;
    background-color: #dadada;
}

.theapp-pos-seven {
    width: 24.25%;
    height: 100%;
}

.theapp-pos-seven-grey {
    width: 24.25%;
    height: 100%;
    background-color: #dadada;
}

.theapp-pos-eight {
    width: 24.25%;
    height: 100%;
}

.theapp-pos-eight-grey {
    width: 24.25%;
    height: 100%;
    background-color: #dadada;
}

.theapp-pos-nine {
    width: 24.25%;
    height: 100%;
}

.theapp-pos-nine-grey {
    width: 24.25%;
    height: 100%;
    background-color: #dadada;
}

.home-prod-load {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-color: rgb(185, 185, 185);
    color: black;
    border: #ffffff 0.4px solid;
    box-shadow: #868686 0px 0px 8px 0px;
    border-radius: 2px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.loading-greyed {
    height: 100%;
    width: 100%;
    background-color: #000000;
}

/*Home Page END*/


/*Submit Production Page*/

.submit-production-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: #008080;
}

.submit-production-form-con {
    padding-top: 100px;
    width: 90vw;
    height: 90%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.create-production-l-con {
    width: 50%;
    height: 100%;
    padding: 24px;
    background-color: white;
    border-radius: 14px;
    box-shadow: #000000 1px 1px 8px 1px;
    z-index: 2;
}

.production-form-compulsory {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    
}

.production-form-compulsory.fadein {
    opacity: 0;
}

.production-form-compulsory.fadeout {
    opacity: 0;
}

.production-form-compulsory.hidden {
    display: none;
}

.create-production-r-con {
    padding: 24px;
    padding-left: 3%;
    width: 50%;
    height: 99.9%;
    background-color: #b1dfeb;
    border-radius: 0px 14px 14px 0px;
    box-shadow: #000000 1px 1px 8px 1px;
    transform: translateX(-3%) scale(1);
    transition: transform 1s ease-in-out;
}

.production-form-optional {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.production-form-optional.fadein {
    opacity: 0;
}

.production-form-optional.fadeout {
    opacity: 0;
}

.production-form-optional.hidden {
    display: none;
}

.create-production-r-con.submit {
    transform: translateX(-100%) scale(.99);
    transition: transform 1s ease-in-out;
} 

.create-form-input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.loading-container.hidden{
    display: none;
}

.loading-spinner {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-border {
    color: #008080;
}

.additional-images-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.additional-images-container.hidden {
    display: none;
}

.additional-images-container.fadein {
    opacity: 0;
}

.additional-images-container.fadeout {
    opacity: 0;
}

.additional-img-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    background-color: #008080;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.date-time-container{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.date-time-container.hidden {
    display: none;
}

.datetime-type-selector {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    width: 100%;
    height: 100%;
}

/*Submit Production Page END*/

/*Custom Checkbox*/
.custom-selector {
    display: flex;
    flex-direction: row;

}
.custom-checkbox {
    height: 25px;
    width: 25px;
    border-radius: 20%;
    border: #000000 1px solid;

}

/*Custom Checkbox END*/

/*TESTING*/

.test-full-container{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c0c0c0;
    margin-top: 300px;
}

.calendar-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 500px;
    width: 600px;
    background-color: #b1dfeb;
    border-radius: 6px;
}

.top-calendar-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 220px;
    background-color: #ffffff;
    padding: 6px;
    box-shadow: #008080 0px 3px 5px 0px;
}

.date-selector {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.calendar-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(34px*7);
    height: 34px;
    background-color: #ffffff;
}

.calendar-navigation button {
    all: unset;
    cursor: pointer;
    color: #008080;
    padding: 2px;
}

.calendar-navigation span {
    color: #008080;
    font-weight: 600;
}

.calendar {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.week {
    display: flex;
}

.day {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 1px solid #008080;
    color: #008080;
    margin: 2px;
    cursor: pointer;

}

.day.selected {
    background-color: #008080;
    color: white;
}

.day.disabled {
    background-color: #f0f0f0;
    color: #ccc;
}

.day.has-times {
    background-color: #0080807e;
    color: rgb(169, 255, 191);
    border: rgb(169, 255, 191) 1px solid;
    transform: scale(0.9);

}

.event-form {
    padding: 10px;
    background-color: #ffffff;
    height: 100%;
    width: 100%;
}

.event-form button {
    all: unset;
    cursor: pointer;
    background-color: #008080;
    color: white;
    padding: 6px;
    border-radius: 6px;
}

.edit-time-btns {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

.event-form.disabled-form {
    opacity: 0.5;
    pointer-events: none;
}

.add-btn {
    all: unset;
    cursor: pointer;
    background-color: #008080;
    color: white;
    padding: 6px;
    border-radius: 6px;
}

.submitted-times-list {
    all: unset;
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style-type: none;
    width: 100%;
}

.submitted-times-container{
    width: 100%;
    height: 75px;
    margin-bottom: 5px;
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
}

.submitted-times-list li {
    all: unset;
    background-color: #008080;
    border-radius: 6px;
    text-align: center;
    color: white;
}

.collated-dates {
    height: 220px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    padding: 10px;
}

.collated-dates ul {
    all: unset;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.collated-dates ul li {
    all: unset;
    background-color: #008080;
    border-radius: 6px;
    text-align: center;
    color: white;
}
.time-submit {
    height: 100%;
    width: 100%;
}

.time-entry-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
}

.time-entry-container label {
    margin-right: 10px;
}

.HH-box{
    width: 50px;
    height: 30px;
    margin-right: 10px;
}

.MM-box{
    width: 50px;
    height: 30px;
    margin-left: 10px;
}

.submit-all-datetime-btn {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #83e779;
    border: #008080 1px solid;
    color: black;
    font-weight: 600;
    width: 50%;
    padding: 6px;
    border-radius: 6px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/*TESTING END*/

.custom-alert-bl {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 2vh;
    left: 2vw;
    width: 1000px;
    height: 50px;
    background-color: rgb(243, 255, 69);
    color: rgb(0, 0, 0);
    z-index: 9999;
}

.custom-alert-bl h6 {
    margin: 0;
}

.theapp-map-page {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: #008080;
    z-index: 1;
    scroll-behavior: smooth;
    overflow-y: hidden;
    overflow-x: hidden;
    overflow: hidden;
}

.theapp-map-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    overflow-y: hidden;
    overflow-x: hidden;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.custom-popup {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    height: 80%;
    width: 70%;
    top: 140px;
    right: 20px;
    background-color: #ffffff;
    box-shadow: #838383 0px 0px 8px 0px;
    z-index: 2;
    overflow: hidden;
    padding: 14px;
    border-radius: 6px;
}

.hidden {
    display: none;
}

.AKMP-popup-image-con {
    display: flex;
    width: 100%;
    height: 30%;
    object-fit: contain;
    align-items: end;
    justify-content: end;
    box-shadow: #474747 0px 0px 8px 0px;
    border-radius: 8px;
    overflow: hidden;
}

.AKMP-popup-image-con img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.AKMP-popup-image-cred-con {
    position: absolute;
    background-color: #ffffffd6;
    padding: 6px;
    width: fit-content;
    border-radius: 6px 0px 8px 0px;
    overflow: hidden;
}

.AKMP-popup-image-cred-con a {
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
}

.AKMP-popup-info-con {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 100%;
    height: 25%;
    padding: 14px;
}

.AKMP-popup-productions-con {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;    
    flex-wrap: nowrap;
    flex-shrink: unset;
    height: 40%;
    padding: 14px;   
    width: 100%;
}

.AKMP-popup-scroll-outer {
    position: relative;
    height: 100%;
    width: 100%;

}

.AKMP-popup-productions-scroll {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    flex-wrap: nowrap;
    flex-shrink: unset;
    min-width: 100%;
    height: 100%;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.AKMP-popup-production-card {
    position: relative;
    display: flex;
    width: 400px;
    height: 95%;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: #474747 0px 0px 4px 0px;
    border-radius: 6px;
}

.AKMP-popup-production-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.AKMP-popup-prodCard-img-cred {
    position: absolute;
    background-color: #ffffffd6;
    height: fit-content;
    padding: 4px;
    width: 90%;
    border-radius: 0px 0px 6px 0px;
}

.AKMP-popup-prodCard-img-cred a {
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
}

.AKMP-popup-prodCard-info {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    bottom: 0px;
    left: 0px;
    background-color: #ffffff;
    width: 100%;
    height: 30%;
    padding: 8px;
}

.AKMP-popup-prodCard-info h5 {
    margin: 0;
    font-size: 1.1rem;
}

.AKMP-popup-prodCard-info p {
    margin: 0;
    font-size: 1.3rem;
}


/*Event Info Page CSS*/

.production-info-page{
    position: absolute;
    width: 100%;
    height: fit-content;
    padding-top: 140px;
    background-color: #ffffff;
}

.production-info-container {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    width: 100%;
    height: fit-content;
    padding: 0 2% 0 2%;
    gap: 1%;
}

.production-info-container-load {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    width: 100%;
    height: fit-content;
    padding: 0 2% 0 2%;
    gap: 1%;
}

.production-info-container-load::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.production-info-main-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 70%;
    height: fit-content;
    gap: 14px;
    background-color: #ffffff;
}

.production-info-main-content-load {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 70%;
    height: 700px;
    gap: 14px;
    background-color: #ffffff;
}



.production-info-date-times {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 30%;
    height: fit-content;
    max-height: 700px;

}

.production-info-image-container {
    display: flex;
    width: 100%;
    height: 400px;
    overflow: hidden;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: #474747 0px 0px 8px 0px;
}

.production-info-image-container-load {
    display: flex;
    width: 100%;
    height: 400px;
    overflow: hidden;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: #474747 0px 0px 8px 0px;
    background-color: #6e6e6e;
}

.not-found-container{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.production-info-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.production-info-title-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: fit-content;
    gap: 14px;
    align-items: start;
    justify-content: space-between;
    padding: 14px;
}

.production-info-title-container-load {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 140px;
    gap: 14px;
    align-items: start;
    justify-content: space-between;
    padding: 14px;
}

.production-info-title h1 {
    margin: 0;
    font-size: 2rem;
}

.production-info-title h2 {
    margin: 0;
    font-size: 1.2rem;
}

.production-info-title-load h1 {
    margin: 0;
    margin-bottom: 2px;
    font-size: 2rem;
    height: 40px;
    width: 260px;
    background-color: #464646;
    border-radius: 4px;
}

.production-info-title-load h2 {
    margin: 0;
    font-size: 2rem;
    height: 30px;
    width: 130px;
    background-color: #464646;
    border-radius: 4px;
}

.production-cta-btns {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: start;
    gap: 6px;
}

.ticket-link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 200px;
    height: 40px;
    border: none;
    border-radius: 6px;
    background-color: #008080;
    color: white;
}

.ticket-link-btn-load {

    width: 200px;
    height: 40px;
    border: none;
    border-radius: 6px;
    background-color: #5d5d5d;
    color: #5d5d5d;
}

.info-link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 200px;
    height: 40px;
    border: none;
    border-radius: 6px;
    background-color: #6e6e6e;
    color: white;
}

.production-info-description {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    gap: 14px;
    padding: 14px;
}

.production-info-description h2 {
    margin: 0;
    font-size: 1.2rem;
}

.production-IPDT-item {
    background-color: rgb(255, 255, 255);
    padding: 6px;
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: row;
    border-bottom: #464646 0.4px solid;
}

.production-IPDT-item-load {
    padding: 6px;
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: row;
    border-bottom: #464646 0.4px solid;
}

.event-date-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 100%;
}

.event-date-container-load {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 100%;
    gap: 2px;
}

.event-date-container h4 {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    color: #464646;
}

.event-date-container h3 {
    margin: 0;
    padding: 0;
}

.event-date-container-load h4 {
    margin: 0;
    padding: 0;
    height: 20px;
    width: 50px;
    background-color: #a5a5a5;
    border-radius: 4px;
}

.event-date-container-load h3 {
    margin: 0;
    padding: 0;
    height: 40px;
    width: 40px;
    background-color: #a5a5a5;
    border-radius: 4px;
}

.event-title-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 70%;
    height: 100%;
    padding-left: 6px;
}

.event-title-container-load {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 70%;
    height: 100%;
    padding-left: 6px;
    gap: 2px;
}

.event-title-container h3 {
    margin: 0;
    padding: 0;
}

.event-title-container h5 {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.event-title-container-load h3 {
    margin: 0;
    padding: 0;
    width: 80px;
    height: 35px;
    background-color: #a5a5a5;
    border-radius: 4px;
}

.event-title-container-load h5 {
    margin: 0;
    padding: 0;
    width: 180px;
    height: 25px;
    background-color: #a5a5a5;
    border-radius: 4px;
}

.event-time-nav-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10%;
    height: 100%;
}

.event-time-nav-arrow i {
    font-size: 2.7rem;
    color: #008080;
}

.MVEIP-production-cta-btns {
    display: none;
}

/*END OF EVENT INFO PAGE CSS*/

@media (max-width: 768px) {

    /*Nav Bar Mobile CSS*/
    .theapp-header {
        height: 80px;
        box-shadow: none;
    }

    .theapp-logo {
        padding: 5px;
    }

    .MV__AKNB__row-scroll-nav__con {
        position: fixed;
        top: 79px;
        background-color: rgb(255, 255, 255);
        height: 40px;
        width: 110%;
        z-index: 10;
        box-shadow: #000000 0px 0px 4px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        gap: 20px;
        padding-left: calc(1% + 5px);
    }

    .MV__AKNB__row-scroll-nav__btn {
        height: 32px;
        font-size: 0.9rem;
        padding-left: 12px;
        padding-right: 12px;
        border: none;
        background-color: transparent;
        color: #000000;
    }

    .btn--active {
        border: #000000 0.5px solid;
        border-radius: 20px;
        background-color: #ebebeb;
    }


    .theapp-nav {
        display: none;
    }

    .theapp-location-select {
        display: none;
    }


    .MVAKNB-tab-bar {
        position: fixed;
        display: flex;
        flex-direction: row;

        bottom: 0;
        left: 0;
        height: 60px;
        width: 100%;
        background-color: #ffffff;
        border-top: #464646 0.4px solid;
        box-shadow: #46464659 0px 0px 8px 0px;
        z-index: 9999;
    }

    .MVAKNB-tab-bar-item {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .MVAKNB-tab-bar-item i {
        font-size: 1.8rem;
        color: #008080;
    }





    /*Nav Bar Mobile CSS END*/


    /*Home Page Mobile CSS*/

    .theapp-home-container {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .theapp-home-flex-con {
        padding: 0 2% 0px 2%;
        gap: 8px;
    }
    
    .theapp-top-positions {
        flex-direction: column;
        height: fit-content;
        gap: 8px;
    }

    .home-prod-layout h3 {
        font-size: 1rem;
    }

    .home-prod-layout p {
        font-size: 0.8rem;
    }

    .home-prod-text {
        padding: 8px;
    }

    .home-prod-btn {
        height: 35px;
        font-size: 0.9rem;
        font-weight: 300;
    }

    .home-prod-btn-grey {
        height: 35px;
        font-size: 0.9rem;
        font-weight: 300;
    }

    .scroll-ten-btn {
        height: 35px;
        font-size: 0.9rem;
        font-weight: 300;
    }

    .scroll-ten-btn-grey {
        height: 35px;
        font-size: 0.9rem;
        font-weight: 300;
    }

    .theapp-pos-scroll-ten h3 {
        font-size: 0.8rem;

    }

    .theapp-pos-one {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-one-grey {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-two {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-two-grey {
        width: 100%;
        height: 150px;
    }

    .theapp-scrollable-positions-container {
        height: 220px;
    }

    .theapp-scrollable-positions {
        gap: 8px;
    }

    .theapp-pos-scroll-ten {
        width: 150px;
    }

    .theapp-pos-scroll-ten-grey {
        width: 150px;
    }

    .h3-load-grey {
        height: 15px;
        width: 100px;
    }

    .p-load-grey {
        height: 12px;
        width: 80px;
    }

    .left-arrow {
        display: none;
    }

    .right-arrow {
        display: none;
    }

    .theapp-middle-three {
        flex-direction: column;
        height: fit-content;
        gap: 8px;
    }

    .theapp-pos-three {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-three-grey {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-four {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-four-grey {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-five {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-five-grey {
        width: 100%;
        height: 150px;
    }

    .theapp-bottom-four {
        flex-direction: column;
        height: fit-content;
        gap: 8px;
    }

    .theapp-pos-six {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-six-grey {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-seven {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-seven-grey {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-eight {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-eight-grey {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-nine {
        width: 100%;
        height: 150px;
    }

    .theapp-pos-nine-grey {
        width: 100%;
        height: 150px;
    }

    /*Home Page Mobile CSS END*/

    /*Event Info Page Mobile CSS*/

    .production-info-page {
        padding-top: 130px;
    }
    .production-info-date-times{
        display: none;
    }

    .production-cta-btns {
        display: none;
    }

    .production-info-main-content {
        width: 100%;
        gap: 2px;
    }

    .production-info-main-content-load {
        width: 100%;
        gap: 2px;
    }

    .production-info-image-container {
        height: 200px;
    }

    .production-info-image-container-load {
        height: 200px;
    }

    .production-info-title-container{
        padding: 6px;
    }

    .production-info-title h1 {
        margin-top: 6px;
        font-size: 1.5rem;
    }

    .production-info-title h2 {
        font-size: 0.9rem;
    }

    .production-info-description {
        padding: 6px;
        gap: 6px;
    }

    .production-info-description h2{
        font-size: 1.1rem;
    }

    .production-info-description p {
        font-size: 0.9rem;
        margin-bottom: 140px;
    }

    .MVEIP-production-cta-btns {
        position: fixed;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 5%;
        left: 0;
        bottom: 10px;
        width: 100%;
        height: 80px;
    }

    .MVEIP-ticket-link-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        width: 40%;
        height: 50px;
        border: none;
        border-radius: 6px;
        background-color: #008080;
        color: white;
        box-shadow: #4d4d4d 0px 0px 8px 0px;
    }

    .MVEIP-info-link-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        width: 40%;
        height: 50px;
        border: none;
        border-radius: 6px;
        background-color: #6e6e6e;
        color: white;
        box-shadow: #4d4d4d 0px 0px 8px 0px;
    }


    /*END OF EVENT INFO PAGE MOBILE CSS*/



    
}