﻿
.logo {
    max-width: 40%;
    max-height: 100%;
    position: absolute;
    bottom: 0px;
    right: 37px;
    z-index: 9;
}

#map-splash-screen {
    display: block; /* Initially hidden */
    background-color: #2d2d2d;
    position: absolute;
    z-index: 99;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.user-pin {
    border-radius: 50%;
    border: 12px solid #fff;
    width: 12px;
    height: 12px;
}

    .user-pin::before {
        position: absolute;
        content: '';
        width: 0px;
        height: 0px;
        bottom: -35px;
        left: -12px;
        border: 12px solid transparent;
        border-top: 19px solid #fff;
    }

    .user-pin::after {
        position: absolute;
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        margin-left: -5px;
        margin-top: -5px;
        background-color: #C1B06B;
    }


.course-pin {
    border-radius: 50%;
    border: 12px solid #C1B06B;
    width: 12px;
    height: 12px;
}

    .course-pin::before {
        position: absolute;
        content: '';
        width: 0px;
        height: 0px;
        bottom: -35px;
        left: -12px;
        border: 12px solid transparent;
        border-top: 19px solid #C1B06B;
    }

    .course-pin::after {
        position: absolute;
        content: '';
        width: 10px;
        height: 10px;
        border-radius: 50%;
        top: 50%;
        left: 50%;
        margin-left: -5px;
        margin-top: -5px;
        background-color: #fff;
    }


.data-box {
    position: absolute;
    background-color: white;
    padding: 5px;
    border: 1px solid #ccc;
    z-index: 9; /* Ensure data box is above markers */
}

.mapboxgl-ctrl-logo {
    display: none !important;
}

.mapboxgl-user-location-accuracy-circle {
    background-color: #C1B06B17 !important;
}

.mapboxgl-user-location-dot, .mapboxgl-user-location-dot::before {
    background-color: #1C1C1C !important;
}

    .mapboxgl-user-location-dot::after {
        border: 2px solid #C1B06B !important;
        box-shadow: 0 0 3px #C1B06B !important;
    }

.courses-search-box {
    position: absolute;
    z-index: 9;
    top: 10px;
    width: 80%;
    left: 10%;
}

.mapboxgl-ctrl-top-right {
    top: 35% !important;
    right: 0;
}

.course-rail {
    position: absolute;
    bottom: 0px;
    /*height: 170px;*/
    width: 100%;
    overflow-y: scroll;
}

/*COURSE INFO BOX*/

.course-info-box {
    position: absolute;
    bottom: 0px;
    height: 100%;
    width: 100%;
    z-index: 99;
    background-color: #fff
}

.course-info-box-close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 25px;
    background-color: #fff;
    color: black;
    border-radius: 40px;
    width: 40px;
    height: 40px;
    padding: 0px 0px 0px 7px;
    cursor:pointer
}


.course-info-box-header {
    height: 250px;
    width: 100%;
}

.course-info-box-title {
    font-size:20px;
    margin-top:10px
}

.course-info-box-text {
    font-size: 17px;
}

.course-info-box-line-container {
    padding-left: 5%;
    padding-right: 5%;
}

.course-info-box-line {
    border: 1px solid #808080;
}

.course-header {
    width: 100%;
    height: 100%;
}

.course-logo {
    border-radius: 50px;
    width: 80px;
    height: 80px;
    position: absolute;
    left: 10px;
    top: 160px;
}
