body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul,.content-gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li,.content-gallery>ul li{float:left}.ce_gallery>ul li.col_first,.content-gallery>ul li.col_first{clear:left}.float_left,.media--left>figure{float:left}.float_right,.media--right>figure{float:right}.block{overflow:hidden}.media{display:flow-root}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.audio_container audio{max-width:100%}.video_container video{max-width:100%;height:auto}.aspect,.responsive{position:relative;height:0}.aspect iframe,.responsive iframe{position:absolute;top:0;left:0;width:100%;height:100%}.aspect--16\:9,.responsive.ratio-169{padding-bottom:56.25%}.aspect--16\:10,.responsive.ratio-1610{padding-bottom:62.5%}.aspect--21\:9,.responsive.ratio-219{padding-bottom:42.8571%}.aspect--4\:3,.responsive.ratio-43{padding-bottom:75%}.aspect--3\:2,.responsive.ratio-32{padding-bottom:66.6666%}
@font-face {
    font-family: "Inter";
    font-weight: 300 900;
    src: url("../../files/fonts/Inter-VariableFont_slnt\,wght.ttf") format("truetype-variations");
}

@font-face {
    font-family: "Roboto Slab";
    font-weight: 300 900;
    src: url("../../files/fonts/RobotoSlab-VariableFont_wght.ttf") format("truetype-variations");
}
/* Vars */

:root {
    --primary: rgb(41 37 36);
    --main-color: #FFC312;
    --secondary-color: #ffc82e;
    --link: rgb(168 162 158);
    --background: rgb(250, 250, 249);
    --light-gray: rgb(231 229 228);
    --very-light-gray: rgb(240 240 240);
}

/* Basics */

html {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: var(--primary);
    line-height: 1.25em;
    background-color: var(--background);
}

a {
    color: var(--link);
    text-decoration: none;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

a:hover {
    color: var(--primary);
}

a.cta {
    color: var(--primary);
    background-color: var(--main-color);
    font-weight: 700;
    font-family: 'Roboto Slab', Helvetica, Arial, sans-serif;
    padding: 20px;
    display: inline-block;
    border-radius: 20px;
    margin-top: 10px;
    position: relative;
    left: -1px;
}

a.cta:hover {
    background-color: var(--secondary-color);
}

::-moz-selection {
    /* Code for Firefox */
    background: var(--main-color);
}

::selection {
    background: var(--main-color);
}

/* Headlines */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', Helvetica, Arial, sans-serif;
    font-weight: 900;
    margin: 20px 0px;
    line-height: 1.1em;
}

h1 {
    font-size: 3em;
    line-height: 1em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.25em;
}

h1.inline,
h2.inline,
h3.inline,
h4.inline {
    display: inline-block;
    margin: 0px;
}

p {
    margin: 10px 0px;
    line-height: 1.5em;
}

/* Navigation */

header {
    padding: 25px 20px 25px 25px;
    margin: 40px auto;
    border-radius: 40px;
    background-color: #FFF;
    width: calc(100% - 125px);
    max-width: 1875px;
}

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

#logo img {
    height: 50px;
}

#logo {
    display: flex;
    align-items: center;
}

#logo span {
    color: #000;
    font-weight: 900;
    font-size: 1.5em;
    padding-left: 20px;
}

.mod_navigation {
    overflow: visible;
}

.mod_navigation ul {
    margin: 0;
    padding: 0;
}

.mod_navigation li {
    display: inline-block;
}

.mod_navigation a {
    color: rgb(41 37 36);
    padding: 20px;
    border-radius: 20px;
}

.mod_navigation strong {
    display: inline-block;
    padding: 20px !important;
}

.mod_navigation a:hover {
    background-color: rgb(245 245 244);
}

.mod_navigation strong {
    padding: 40px 20px;
    font-weight: 900;
}

.mod_navigation .trail a {
    font-weight: 900;
}

.mod_navigation li.download {
    margin-left: 20px;
}

.mod_navigation .download {
    background-color: var(--main-color);
    font-weight: 800;
    border-radius: 20px;
}

.mod_navigation .download:hover {
    background-color: var(--secondary-color);
    font-weight: 800;
}

/* Content Elements */

.mod_article {
    margin: 0px auto 40px auto;
    overflow: visible;
    width: calc(100% - 80px);
    max-width: 1920px;
}

.countries_wrapper {
    padding: 0px 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    max-width: 960px;
    margin: 60px auto 80px auto;
}

.countries {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 40px;
    padding-top: 20px;
}

.cities {
    padding: 0px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 40px;
    aspect-ratio: 1 / 1;
    overflow-y: scroll;
}

.cities h1 {
    self-align: stretch;
    width: 100%;
    margin: 0;
}


/* Search */

.search {
    padding: 40px;
    border-radius: 40px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    height: calc(100svh - 200px);
    max-height: 720px;
}

.search .inside {
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.searchbar {
    width: 100%;
    position: relative;
}

.searchbar input[type="text"] {
    width: calc(100% - 84px);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    outline: none;
    border: 2px solid var(--main-color);
    border-radius: 20px;
    font-size: 1.25em;
    padding: 20px 60px 20px 20px;
    transition: all 0.2s ease-in-out;
}

.searchbar input[type="text"]:hover,
.searchbar input[type="text"]:focus {
    box-shadow: rgba(17, 17, 26, 0.025) 0px 4px 16px, rgba(17, 17, 26, 0.025) 0px 8px 32px;
}

.searchbar>i {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 24px;
    font-size: 1.25em;
    cursor: pointer;
    color: var(--link);
    transition: color 0.2s ease-in-out;
}

.searchbar input[type="text"]:hover+i,
.searchbar input[type="text"]:focus+i,
.searchbar i:hover {
    color: var(--primary);
}

.searchbar .results {
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    width: 100%;
    min-height: 0px;
    height: 0px;
    max-height: 400px;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: rgba(17, 17, 26, 0.025) 0px 4px 16px, rgba(17, 17, 26, 0.025) 0px 8px 32px;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    filter: blur(2px);
}

.searchbar .results>i{
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
}

.results.expanded  {
    min-height: 60px;
    height: auto;
    opacity: 1;
    filter: blur(0px);
}

.searchbar .results ul {
    padding: 0px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.searchbar .results ul li {
    text-align: left;
    display: block;
}

.searchbar .results ul li.headline {
    padding: 20px;
    font-size: 0.8em;
    font-weight: bold;
    background-color: var(--background);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.searchbar .results ul li a {
    display: flex;
    padding: 20px;
    gap: 15px;
}

.searchbar .results ul li a:hover{
    background-color: var(--background);
}

.searchbar .results ul li a .favorite_bean {
    width: 15px !important;
    margin-top: 5px;
    margin-left: 8px;
    display: inline-block;
}

.searchbar .results ul li.note a {
    padding: 20px;
    font-weight: bold;
    background-color: var(--main-color);
    color: #000;
}

.searchbar .results ul li.error {
    padding: 20px;
    font-weight: bold;
}

.searchbar .results ul li a.shop {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.searchbar .results ul li .address {
    font-size: 0.8em;
    opacity: 0.5;
}

.searchbar .results ul li i {
    width: 20px;
    display: inline-block;
}

.searchbar .results ul li .roaster-logo {
    width: 20px;
    display: inline-block;
    border-radius: 50%;
}

/* Hero */

#hero {
    display: flex;
    gap: 20px;
    background-color: var(--main-color);
    padding: 40px;
    border-radius: 40px;
    place-items: center;
    justify-content: space-evenly;
    overflow: hidden;
    height: calc(100svh - 200px);
    max-height: 720px;
    margin-bottom: 40px;
}

#hero h1 {
    font-size: 4em;
    line-height: 1em;
    letter-spacing: -0.04em;
    color: #000;
}

#hero.media--right{
    flex-direction: row-reverse;
}

#hero > div {
    width: 33%;
}

#hero > figure {
    width: 33%;
    text-align: center;
    align-self: self-start;
    position: relative;
    top: 10px;
}

#hero figure img {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero p {
    margin: 20px 0;
}

#hero .download {
    font-weight: 900;
    display: inline-block;
    border-radius: 20px;
    padding: 20px;
    color:var(--main-color);
    background-color:#000;
}

#hero a.cta {
    color: var(--main-color);
    background-color: #000;
}

#hero p a img {
    height: 40px;
    width: auto;
}

#hero p a + a {
    margin-left: 10px;
}

#hero.gray {
    background-color: var(--very-light-gray);
}

/* Content Elements */

.content-text {
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: 40px;
    place-items: center;
    justify-content: space-evenly;
    overflow: hidden;
}

.content-text:not(#hero) {
    margin: 0px 0px 40px 0px;
    padding: 0px;
}

.content-text:not(#hero) + .content-text:not(#hero) {
    margin-top: 0px;
}

.content-text.yellow {
    background-color: var(--main-color);
}

.content-text.media--right{
    flex-direction: row-reverse;
}

.content-text > div {
    width: 33%;
}

.content-text:not(#hero) > div {
    width: 50%;
    max-width: 480px;
    margin: 0 auto;
}

.content-text:not(#hero) > div h1,
.content-text:not(#hero) > div h2 {
    margin-top: 0px;
}

.content-text.wide > div {
    width: 100% !important;
    max-width: 720px !important;
}

.content-text > figure {
    width: 33%;
    text-align: center;
    align-self: self-start;
    position: relative;
    top: 10px;
}

.content-text.contain > figure {
    display: flex;
}

.content-text.contain > figure img {
    object-fit: contain;
    height: 80%;
    align-self: center;
}

.content-text:not(#hero) > figure {
    width: 50%;
    max-height: 80vh;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 40px;
    background-color: #FFF;
}

.content-text.extraspace {
    min-height: 80vh;
}

/* FAQ */

.mod_faqlist, .mod_faqreader {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.mod_faqlist ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0;
    margin-top: 40px;
}

.mod_faqlist ul li {
    width: 100%;
    display: block;
}

.mod_faqlist ul li figure {
    width: 100%;
    aspect-ratio: 1/1;
    max-height: 400px;
    background-color: #FFF;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mod_faqreader figure {
    width: 100%;
    aspect-ratio: 2/1;
    max-height: 80vh;
    background-color: #FFF;
    overflow: hidden;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mod_faqlist ul li figure img,
.mod_faqreader figure img {
    height: 80%;
    object-fit: contain;
    align-self: center;
}

.mod_faqreader .back {
    margin-bottom: 40px;
}

.mod_faqreader h1 {
    margin: 40px 0px;
}

/* Coffee Shop List */

.breadcrumbs {
    font-size: 0.8em;
    padding: 0px 0px 30px 20px;
}

.breadcrumbs i {
    display: inline-block;
    padding: 11px 10px;
    font-size: 0.8em;
}

.breadcrumbs .notion {
    display: inline-block;
    margin-left: 10px;
    background-color: var(--light-gray);
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 20px;
    padding: 5px 10px;
}

.list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    align-items: start;
    align-content: start;
    overflow-y: scroll;
}

.list.horizontal {
    display: flex;
    flex-wrap: nowrap;
    border-radius: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: scroll;
    overflow-y: visible;
}

.list.horizontal::-webkit-scrollbar {
    display: none;
}

.list h1 {
    grid-column-end: span 2;
    margin-top: 0;
    padding-left: 20px;
}

.list_item {
    opacity: 1;
    color: var(--primary);
    cursor: pointer;
    padding: 0px 0px 15px 0px;
    border-radius: 20px;
    background-color: #FFF;
    transition: all 0.2s ease-in-out;
    align-self: stretch;
    position: relative;
    overflow: hidden;
}

.list.horizontal .list_item {
    max-width: 300px;
    min-width: 300px;
    align-self: stretch;
}

.list.horizontal .list_item .aggregateRating i {
    margin-right: 0;
    top: 3.5px;
    left: 8px;
}

.list_item:hover {
    color: var(--primary) !important;
    box-shadow: rgba(17, 17, 26, 0.025) 0px 4px 16px, rgba(17, 17, 26, 0.025) 0px 8px 32px;
}

.list_item .header {
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
}

.list_item .header h4 {
    display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
   overflow: hidden;
   margin: 25px 20px 20px 20px;
}

.list_item .header h4 img {
    width: 15px;
    margin-left: 5px;
}

.list.horizontal .list_item .header h4 {
    height: 44px;
}

.list_item .aggregateRating {
    display: flex;
    align-content: flex-start;
    font-size: 0.8em;
    margin-top: 25px;
    margin-right: 20px;
}

.list_item .aggregateRating i {
    color: var(--main-color);
    position: relative;
    top: 4px;
    left: 4px;
}

.list_item .aggregateRating .ratingValue {
    font-weight: bold;
    padding-right: 5px;
}

.list_item .aggregateRating .reviewCount {
    color: var(--link);
}

.list_item p {
    font-size: 0.8em;
    margin: 5px 20px;
}

.list_item i {
    width: 25px;
}

.list_item.more {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background-color: var(--main-color);
    padding: 0px 0px 0px 20px;
    height: 170px;
    overflow: hidden;
    align-self: stretch;
}

.user .list_item.more.checkins{
    height: auto !important;
}

.list.horizontal .list_item.more{
    min-width: 320px !important;
    max-width: 320px !important;
    width: 320px !important;
}

.list_item.more .cta {
    align-self: center;
}

.list_item.more .cta h4 {
    margin: 0px;
}

.list_item.more .cta p {
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 1.25em;
}

.list_item.more.checkins .cta p {
    margin-left: 0;
}

.list_item.more .image {
    max-width: 80%;
    padding-top: 10px;
    overflow: hidden;
    justify-self: center;
}

.list_item.checkin {
    cursor: auto;
}

.list_item.userlist h4,
.list_item.checkin h4 {
    margin: 20px 20px 0px 20px;
}

.list_item.checkin img,
.list_item.userlist img {
    display: block;
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
    object-fit: cover;
}

strong.open {
    color: rgb(132 204 22);
}

strong.closed {
    color: rgb(239 68 68);
}

.list .profile {
    grid-column-end: span 2;
    margin-top: 0;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap:20px;
    margin-bottom: 20px;
}

.list .profile a {
    color: var(--primary);
}

.list .profile+.description{
    margin-top: -20px;
}

.list .description {
    grid-column-end: span 2;
    margin-top: 0;
    margin-left: 20px;
    margin-bottom: 20px;
}

.list .profile img {
    border-radius: 100%;
    width: 60px;
    height: 60px;
}

/* Shop */

.shop {
    width: calc(100% - 40px);
    max-width: 960px;
    padding: 0px 20px;
    margin: 0 auto;
    position: relative;
}

.shop .images {
    width: 100%;
    max-width: 960px;
    height: 480px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #FFF;
    margin-bottom: 40px;
}

.shop .swiper-slide {
    width: 100%;
    height: 100%;
    max-height: 480px;
    position: relative;
}

.shop .images img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.swiper {
    height: 100%;
}

.swiper-pagination-bullet-active {
    background: var(--main-color) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none !important;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    text-align: center;

    i {
        font-size: 1.75em;
        color: rgba(0, 0, 0, 0.25);
    }
}

.favorite {
    display: block;
    clear: both;
}

.favorite p {
    font-family: 'Roboto Slab', Helvetica, Arial, sans-serif;
    font-size: 0.8em;
    font-weight: 900;
    background-color: var(--very-light-gray);
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 0px;
    position: relative;
    left: -3px;
}

.favorite p img {
    width: 20px;
    margin-right: 10px;
}

.favorite.small {
    display: inline-block;
}

.favorite.small p {
    padding: 5px 10px;
    font-size: 0.6em;
}

.favorite.small p img {
    width: 15px;
    margin-right: 8px;
}

.shop .aggregateRating {
    display: flex;
    align-content: flex-start;
}

.shop .aggregateRating i {
    color: var(--main-color);
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.shop .aggregateRating .ratingValue {
    font-weight: bold;
    padding-right: 20px;
}

.shop .aggregateRating .reviewCount {
    color: var(--link);
}

.shop .description {
    display: block;
    margin: 40px 0px;
}

.shop h2 {
    margin-top: 40px;
}

.shop i {
    width: 30px;
    color: var(--primary);
}

.shop .about {
    width: 100%;
    max-width: 480px;
    display: grid;
    grid-gap: 5px;
}

.shop .info {
    background-color: #FFF;
    padding: 10px 20px;
    border-radius: 20px;
}

.shop .address i {
    width: 25px;
}

.shop a {
    color: var(--primary);
}

.shop a:hover {
    color: var(--main-color);
}

.shop .about a i:last-of-type {
    padding-left: 10px;
    position: relative;
    top: 1px;
    color: var(--main-color);
    transition: transform 0.15s ease-in-out;
}

.shop .about a:hover i:last-of-type {
    transform: translateX(5px);
}

.shop a:hover i.fa-arrow-up-right:last-of-type {
    transform: translate(5px, -5px);
}

.shop #opening_hours_more,
.shop #beans_more {
    height: 0;
    overflow: hidden;
    transition: padding 0.5s ease-in-out, opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
    opacity: 0;
    filter: blur(1px);
}

.shop #opening_hours_more.expanded {
    height: auto;
    padding-bottom: 10px;
    opacity: 1;
    filter: blur(0px);
}

.shop #beans_more.expanded {
    height: auto;
    opacity: 1;
    filter: blur(0px);
}

.shop #toggleButton,
.shop #toggleButtonBeans {
    cursor: pointer;
}

.shop #toggleButton i,
.shop #toggleButtonBeans i {
    padding-left: 10px;
    position: relative;
    color: var(--main-color);
    transition: all 0.5s ease-in-out;
}

.shop #toggleButton.expanded i,
.shop #toggleButtonBeans.expanded i {
    transform: rotate(180deg);
}

.shop .day {
    padding-left: 30px;
    margin-top: 10px;
}

.shop .day.today {
    font-weight: bold;
}

.shop .weekday {
    width: 120px;
}

.shop .day {
    display: flex;
}

.shop .coffee_buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 480px;
    grid-gap: 5px;
    margin-bottom: 5px;
}

.shop .button {
    background-color: #FFF;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.shop .button img {
    max-width: 30px;
    padding-bottom: 10px;
}

.shop .button i {
    font-size: 1.75em;
    height: 30px;
    padding-bottom: 10px;
}

.shop .updated {
    font-size: 0.8em;
    color: var(--link);
    margin: 40px 0px;
}

.shop #beans_more p {
    padding: 10px 0px;
    overflow: visible;
}

.shop #beans_more i {
    width: 20px;
    margin-right: 15px;
    margin-left: 10px;
}

.shop #beans_more img {
    width: 20px;
    height: 20px;
    margin-right: 20px;
    margin-left: 5px;
    object-fit: contain;
    position: relative;
    top: 4px;
    transform: scale(1.5);
    border-radius: 100%;
}

.shop #map {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
}

/* Roaster */

.roaster .logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 100%;
    position: relative;
    left: -3px;
    margin-bottom: 20px;
}

/* User */

.user .profilepicture {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 100%;
    position: relative;
    left: -3px;
    margin-bottom: 20px;
}

.user .description {
    margin: 10px 0px;
}

.user .stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 480px;
    grid-gap: 5px;
    margin-bottom: 5px;
}

.user .button {
    background-color: #FFF;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.user .button strong {
    display: block;
}

.user .small {
    font-size: 0.8em;
}

/* Maps */

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

#map {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
}

.hide {
    display: none !important;
}

.mod_article > .bumper:first-child {
    margin: 120px auto 160px auto !important;
}

.bumper {
    width: 100%;
    text-align: center;
    display: flex;
    place-content: center;
    place-items: center;
    margin: 160px auto 160px auto !important;
}

.bumper .beany {
    height: 80px;
}

/* Redirect Links */
.bumper.redirects a {
    color: var(--primary);
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 10px;
    background: #FFF;
    border-radius: 20px;
    width: calc(100% - 30px);
    text-align: left;
    transition: box-shadow 0.2s ease-in-out;
}

.bumper.redirects a:hover {
    box-shadow: rgba(17, 17, 26, 0.025) 0px 4px 16px, rgba(17, 17, 26, 0.025) 0px 8px 32px;
}

.bumper.redirects strong {
    font-size: 1.25em;
}

.bumper.redirects a img {
    aspect-ratio: 1 / 1;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.leaflet-bar {
    border-radius: 10px !important;
}

.leaflet-touch .leaflet-bar a:first-child {
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.leaflet-touch .leaflet-bar a:last-child {
    border-bottom-left-radius: 8px !important;
    border-bottom-right-radius: 8px !important;
}

.leaflet-popup-content {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    margin: 0px !important;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.leaflet-popup-content a {
    color: var(--primary) !important;
}

.leaflet-popup-content a:hover {
    color: var(--main-color) !important;
}

.leaflet-popup-tip-container {
    top: -19px;
    transform: rotate(180deg);
}

/* Footer */

footer {
    font-size: 0.8em;
    padding: 40px;
    margin: 0px auto 40px auto;
    border-radius: 40px;
    background-color: #FFF;
    width: calc(100% - 160px);
    max-width: 1840px;
}

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

footer a {
    padding: 10px;
}

footer a:last-of-type {
    margin-right: 10px;
}

footer .link {
    display: flex;
}

footer .link div {
    text-align: center;
}

/* Mobile Menu */

#toggleMenu {
    display: none;
    position: absolute;
    right: 5px;
    top: 15px;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 10005;
}

#toggleMenu span {
    display: block;
    position: absolute;
    background-color: #000;
    height: 2px;
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    left: 0px;
}

#toggleMenu span:nth-child(1) {
    top: 10%;
    width: 30%;
}

#toggleMenu.expanded {
    span:nth-child(1) {
        transform: rotate(45deg) translate(0px, 11px);
        left: 5px;
        width: 100%;
    }

    span:nth-child(2) {
        width: 0px;
    }

    span:nth-child(3) {
        transform: rotate(-45deg) translate(0px, -11px);
        left: 5px;
        width: 100%;
    }
}

#toggleMenu span:nth-child(2) {
    top: 50%;
    width: 100%;
}

#toggleMenu span:nth-child(3) {
    top: 90%;
    width: 60%;
}

@keyframes bounce {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Newsletter */

.mod_subscribe {
    margin: 160px auto 160px auto;
    text-align: center;
    max-width: 720px;
}

.mod_unsubscribe {
    margin: 160px auto 160px auto;
    text-align: center;
    max-width: 720px;
}

.mod_article > .mod_subscribe:first-child,
.mod_article > .mod_unsubscribe:first-child {
    margin-top: 120px !important;
}

.mod_subscribe h1,
.mod_unsubscribe h1 {
    margin: 0px 0px 20px 0px;
}

.mod_subscribe .widget-explanation,
.mod_unsubscribe .widget-explanation {
    margin-bottom: 40px;
}

.mod_subscribe .formbody,
.mod_unsubscribe .formbody {
    display: flex;
    gap: 20px;
}

.mod_subscribe .error,
.mod_unsubscribe .error {
    color: rgb(239 68 68);
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 0px;
}

.mod_subscribe .confirm,
.mod_unsubscribe .confirm {
    color: rgb(132 204 22);
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 0px;
}

.formbody .widget-text {
    flex-grow: 1;
}

.formbody input[type="email"] {
    width: calc(100% - 40px);
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    outline: none;
    border-radius: 20px;
    border: none;
    font-size: 16px;
    padding: 20px 20px 20px 20px;
    transition: all 0.2s ease-in-out;
}

.formbody input[type="email"]:hover,
.formbody input[type="email"]:focus {
    box-shadow: rgba(17, 17, 26, 0.025) 0px 4px 16px, rgba(17, 17, 26, 0.025) 0px 8px 32px;
}

.formbody button[type="submit"] {
    background-color: var(--main-color);
    font-weight: 800;
    border-radius: 20px;
    outline: none;
    border: none;
    font-size: 16px;
    padding: 20px 30px;
    transition: all 0.2s ease-in-out;
    color: #000 !important;
}

.formbody button[type="submit"]:hover {
    background-color: var(--secondary-color);
    cursor: pointer;
    box-shadow: rgba(17, 17, 26, 0.025) 0px 4px 16px, rgba(17, 17, 26, 0.025) 0px 8px 32px;
}
@media  (max-width: 1280px) {

    /* Fonts */

    h1 {
        font-size: 2.5em;
    }
    
    h2 {
        font-size: 1.75em;
    }
    
    h3 {
        font-size: 1.25em;
    }
    
    h4 {
        font-size: 1em;
    }

    /* Hero */

    #hero > div {
        width: 50%;
    }

    #hero h1 {
        font-size: 2.5em;
    }

    #hero > figure {
        align-self: center;
    }

    /* Footer */

    footer .link {
        flex-direction: column;
    }


}
@media  (max-width: 720px) {

    /* Fonts */

    h1 {
        font-size: 2.0em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    h3 {
        font-size: 1.25em;
    }
    
    h4 {
        font-size: 1em;
    }

    /* Header and Menu */
    header {
        margin: 20px;
        width: calc(100% - 85px);
    }

    .mod_navigation {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        place-content: center;
        place-items: center;
        z-index: 10000;
        background-color: var(--background);
        font-size: 1.25em;
        transition: all .75s ease-in-out;
        filter:blur(2px);
    }

    #toggleMenu {
        display: block;
    }

    #toggleMenu.expanded + .mod_navigation {
        top: 0%;
        filter: blur(0);
    }

    .mod_navigation ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-items: center;
    }

    .mod_navigation ul li a {
        display: inline-block;
    }

    .mod_navigation li.download {
        margin: 10px 0 0 0;
    }

    /* Hero */

    #hero {
        padding: 20px 20px 0px 20px;
        max-height: none;
        height: auto;
    }

    #hero.media--right {
        flex-direction: column-reverse;
    }

    #hero > div {
        width: 100%;
        text-align: center;
    }

    #hero > figure {
        width: 100%;
        max-height: 33svh;
    }

    #hero figure img {
        object-position: top;
    }

    #hero h1 {
        font-size: 2.0em;
        line-height: 1.05em;
    }

    /* General DIVs */
    .mod_article {
        margin: 0 20px 20px 20px;
        width:calc(100% - 40px);
    }

    .content-text:not(#hero) {
        display: flex;
        flex-direction: column !important;
        gap: 40px;
        margin: 20px 0px;
        padding: 0px;
        border-radius: 0px;
    }

    .content-text:not(#hero) > div {
        width: calc(100% - 40px);
        padding: 0px 20px 20px 20px;
    }

    .content-text:not(#hero) > figure {
        width: 100%;
    }

    .breadcrumbs {
        padding: 0px;
        margin-bottom: 20px;
    }

    .split {
        display: flex;
        flex-direction: column-reverse;
    }

    #map, .shop #map {
        min-height: 360px !important;
        max-height: 360px !important;
        height: 360px !important;
    }

    .list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .list.horizontal {
        flex-direction: row;
    }

    .list.horizontal .list_item,
    .list.horizontal .list_item.more_shops {
        min-width: 240px !important;
        max-width: 240px !important;
        width: 240px !important;
    }

    .list_item.checkin img,
    .list_item.userlist img {
        height: 140px;
    }

    .list h1 {
        padding-left: 0px;
    }

    .list .profile {
        grid-column-end: span 1;
        margin-left: 0px;
    }

    .list .profile+.description{
        margin-top: 0px;
    }
    
    .list .description {
        grid-column-end: span 1;
        margin-left: 0px;
    }

    .countries {
        gap: 20px;
    }

    .countries_wrapper{
        gap: 20px;
        padding: 0 20px 20px 20px;
    }

    .cities {
        margin: 20px 0px;
        gap: 20px;
        height: auto !important;
        max-height: 10000vh !important;
        overflow-y: hidden !important;
        aspect-ratio: auto !important;
    }

    .shop {
        width: 100%;
        padding: 0px;
    }

    .shop .images {
        height: 360px
    }

    /* Roaster */

    .roaster .logo,
    .user .profilepicture {
        width: 80px;
        height: 80px;
        margin-bottom: 0px;
    }

    /* User */

    .user .button strong {
        display: block;
    }

    /* Explore and Search */

    .search {
        padding: 20px;
        border-radius: 40px;
        margin-bottom: 20px;
        max-height: none;
    }

    .searchbar .results ul li.note a {
        font-size: 0.8em;
    }

    .searchbar input[type="text"] {
        font-size: 1em;
    }

    /* FAQ */

    .mod_faqlist ul {
        grid-template-columns: 1fr;
    }

    .mod_faqreader figure {
        aspect-ratio: 1/1;
    }

    /* Bumper */
    .bumper{
        margin-bottom: 20px !important;
    }

    .mod_article > .bumper:first-child {
        margin: 80px auto 80px auto !important;
    }

    .bumper .rte {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .bumper strong {
        font-size: 1em !important;
    }
    
    /* Footer */
    footer {
        margin: 0 20px 20px 20px;
        padding: 20px;
        width: calc(100% - 80px);
    }

    footer .inside {
        flex-direction: column;
        text-align: center;
        line-height: 2em;
    }

    /* Newsletter */

    .mod_subscribe .formbody,
    .mod_unsubscribe .formbody {
        flex-direction: column;
    }

    .mod_subscribe {
        margin: 80px auto 80px auto;
    }

    .mod_unsubscribe {
        margin: 80px auto 80px auto;
    }

    .mod_article > .mod_subscribe:first-child,
    .mod_article > .mod_unsubscribe:first-child {
        margin-top: 40px !important;
    }

}
