body {
    font-family: 'PT Serif', serif;
    margin: 0;
    padding: 0;
}

.updates {
    background-color: #f9fdf3;
    padding: 10px 20px;
    border-radius: 10px;
}

#map {
    height: 500px;
}

div.intro img {
    width: 100%;
}

p,
tbody,
input,
button,
select {
    font-family: "Inter", sans-serif;
}

ul,
ol,
li,
p {
    line-height: 27px;
    font-family: "Inter", sans-serif;
}

div.main {
    width: 60%;
    margin: auto;
}

.search input {
    padding: 12px 20px;
    margin: auto;
    width: 50%;
}

.loader {
    width: 20px;
    height: 20px;
    border: 4px solid #1993d0;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.show {
    display: inline-block;
}

.hide {
    display: none;
}

.map-wrapper {
    position: relative;
    margin-bottom: 40px;
}

#map-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: .5;
    z-index: 1000;
}

#map-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    opacity: 1 !important;
}

section {
    margin-bottom: 50px;
}

#map-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    background-color: tomato;
    opacity: .5;
}

a {
    color: #1993d0;
    text-decoration: none;
}

.heart {
    color: #dd5050;
}

.punch {
    color: #d71010;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
}

table.dataTable td {
    font-size: 14px;
}

/* media query */
@media (max-width: 768px) {
    div.main {
        width: 80%;
    }

    .search input {
        width: 100%;
    }

    dt-container {
        width: 100%;
        overflow: scroll;
    }
}

span.note {
    background-color: #1993d0;
    padding: 10px;
    border-radius: 5px;
    color:white;
    font-family: "Inter", sans-serif;
    border: solid 2px #0a5277;
    margin-top: 20px;
}

.columns {
    display: flex;
    justify-content: space-between;
}

.right .quote {
    width: 90%;
    margin: auto;
}

.quote {
    font-family: "Inter", sans-serif;
    line-height: normal;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    display: block;
    color: #606060;
}

.quote i {
    font-weight: 500;
}

.yt-frame {
    aspect-ratio: 16 / 9;
    align-self: center;
}

.left {
    display: flex;
    align-items: center;
}

.button {
    text-transform: uppercase;
    padding: 10px 20px;
    background-color: #d71010;
    color: white;
    display: block;
    border-radius: 10px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    width: fit-content;
    height: fit-content;
    transition: .2s;
    border: none;
}

.button:hover {
    background-color: #b70e0e;
    cursor: pointer;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right .button {
    margin: auto;
}


.yt-embed {
    margin: 40px auto;
    display: block;
}

.right {
    margin: 0 20px;
    border-left: 2px solid rgb(215, 215, 215);
}

/* media query */
@media (max-width: 768px) {
    .columns {
        flex-direction: column;
    }

    .right {
        border-left: none;
        margin: 20px 0;
    }

    .right .quote {
        width: 100%;
    }

    .yt-frame {
        width: 100%;
    }

    .left {
        margin-bottom: 20px;
    }

    .nav {
        flex-direction: column;
    }

    .right .button {
        margin: 20px auto;
    }
}