@font-face {
    font-family: 'Roboto';
    src: url('font/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
  
@font-face {
    font-family: 'Roboto';
    src: url('font/Roboto-Medium.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('font/Roboto-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url('font/Roboto-MediumItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

:root {
    --width: 300px;
}

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    min-height: 100%;
}

.white-container-shadow {
    max-width: var(--width);
    display: block;
    margin: 10px auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.toggle-button-container {
    margin: 0 auto;
    margin-top: 20px;
    width: fit-content;
    white-space: nowrap;
}

a:link,
a:visited {
    color: rgb(0, 112, 224);
}

.toggle-button {
    display: inline-block;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin-left: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.toggle-button.inactive {
    opacity: 0.5;
}

.search-container {
    position: relative;
}

.form-input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.autocomplete {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    text-align: left;
}

.autocomplete-item:hover {
    background-color: #f2f2f2;
}

.autocomplete-item.selected {
    background-color: #e6e6e6;
}

.map-image {
    max-width: var(--width);
    display: block;
    margin: 0 auto;
}

.track-icons-container {
    display: none;
}

.track-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px 10px;
}

.track-icon {
    max-width: 100px;
    height: auto;
    cursor: pointer;
    max-height: 100px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.track-icons-subcontainer {
    width: fit-content;
    float: left;
    margin-right: 5%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.left-subcontainer {
    text-align: center;
}

.right-subcontainer {
    text-align: center;
}



.strategy-track-icon-container {
    margin: auto;
    padding: 0;
    width: 90%;
    border-bottom: 1px solid hsl(0, 0%, 80%);
    padding-bottom: 8px;
}

.strategy-track-icon-container img {
    margin: 7px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.strategy-cup-icon {
    max-width: 34%;
}

.strategy-track-icon {
    max-width: 49%;
}

.strategy-content {
}

.strategy-content p {
    margin: 7px 0 0 0;
}

p.strategy-point {

}

p.strategy-description {
    font-size: 0.9em;
    border-top: 1px solid hsl(0, 0%, 80%);
    padding-top: 8px;
}






.bullet-spot-info {
    margin-bottom: 5px;
}

.bullet-spot-info p {
    margin: 2px 0;
}

.bullet-spot-duration {
    font-size: 1.2em;
    font-weight: bold;
}

.bullet-spot-description {
    font-size: 0.9em;
}

.bullet-spot-image-container {
    position: relative;
    width: fit-content;
    margin: auto;
    margin-bottom: 4px;
}

.bullet-spot-image,
.bullet-spot-video {
    max-width: 250px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bullet-spot-video {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}

.bullet-spot-video:focus {
    outline: none;
}

.credits {
    text-align: center;
}

.credits p {
    margin: 10px 0;
    font-size: 0.8em;
}

a.link-pro-guide {
    font-weight: bold;
    font-size: 1.2em;
}


.expandable-instructions {
    cursor: pointer;
    text-align: center;
}

.instructions-title-container {
    width: 100%;
    height: fit-content;
    position: relative;
}

.instructions-title {
    margin: 0;
    font-weight: bold;
}

.button-expand-instructions-container {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 10px;
}

.button-expand-instructions {
    width: 20px;
    transition: transform 0.3s ease;
    opacity: 0.7;
    margin: auto;
}

.button-expand-info {
    opacity: 0.7;
}

.expanded-instructions {
    display: none;
}

.expanded-instructions p {
    margin: 5px 0 0 0;
    font-size: 0.9em;
}

.expanded-instructions p.heading {
    margin: 8px 0 0 0;
    padding: 8px 0 0 0;
    display: block;
    font-weight: bold;
    border-top: 1px solid hsl(0, 0%, 90%);
}