﻿body {
    padding-top: 20px;
    padding-bottom: 20px;
}

.borderClass {
    border-color: #C1E0FF;
    border-width: 1px;
    border-style: solid;
    /** OR USE INLINE
  border: 1px solid #C1E0FF;
  **/
}
/* Set padding to keep content from hitting the edges */


/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/*#region HOTELS CUSTOM*/

.park.darken-1 {
    background-color: #5f5a56 !important;
}

.park.darken-2 {
    background-color: #b58b4f !important;
}

.park.accent-1 {
    background-color: #b58b4f !important;
}

.park-text.text-darken-1 {
    color: #b58b4f !important;
}

.park-text.text-darken-2 {
    color: #ffffff !important;
}

.marvie.darken-1 {
    background-color: #01273f !important;
}

.marvie.accent-1 {
    background-color: #8c9eff !important;
}

.marvie-text.text-darken-1 {
    color: #c2b59b !important;
}

/*#endregion HOTELS CUSTOM*/

/*#region INPUT*/

.input-field.suffix i {
    position: absolute;
    width: 3rem;
    font-size: 2rem;
    transition: color .2s;
    top: 0px;
    right: 0px;
}

    .input-field.suffix i.active {
        color: #26a69a;
    }

.input-field.suffix input,
.input-field.suffix textarea {
    margin-right: 3rem;
    width: 92%;
    width: calc(100% - 3rem);
}

.input-field.suffix textarea {
    padding-top: .8rem;
}

.input-field.suffix label {
    margin-right: 3rem;
}

@media only screen and (max-width: 992px) {
    .input-field.suffix input {
        width: 86%;
        width: calc(100% - 3rem);
    }
}

@media only screen and (max-width: 600px) {
    .input-field.suffix input {
        width: 80%;
        width: calc(100% - 3rem);
    }
}
/*#endregion INPUT*/

/*#region FOOTER BUTTONS - SOCIALS*/

.fa {
    padding: 10px;
    font-size: 32px;
    width: 36px;
    height: 36px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
}

    /* Add a hover effect if you want */
    .fa:hover {
        opacity: 0.7;
    }



.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-linkedin {
    background: #007bb5;
    color: white;
}

.fa-youtube {
    background: #bb0000;
    color: white;
}

.fa-instagram {
    background: #125688;
    color: white;
}

.fa-pinterest {
    background: #cb2027;
    color: white;
}
/*#endregion FOOTER BUTTONS - SOCIALS*/

/*#region QUANTITY + - BOX*/

.quantity {
    display: inline-block;
    text-align: center;
}

    .quantity .input-text.qty {
        width: 28px;
        height: 33px;
        padding: 0 5px;
        text-align: center;
        background-color: transparent;
        border: 1px solid #dfdfcf;
    }

    .quantity.buttons_added {
        position: relative;
        white-space: nowrap;
        vertical-align: top;
    }

        .quantity.buttons_added input {
            display: inline-block;
            margin: 0;
            vertical-align: top;
            box-shadow: none;
        }

        .quantity.buttons_added .minus,
        .quantity.buttons_added .plus {
            color: #ffffff;
            padding: 2px 0px 0px 0px;
            height: 36px;
            width: 28px;
            background-color: #ff6677;
            border: 2px solid #efefef;
            cursor: pointer;
            border-radius: 8px;
        }

        .quantity.buttons_added .minusbig,
        .quantity.buttons_added .plusbig {
            color: #ffffff;
            padding: 2px 0px 0px 0px;
            height: 41px;
            width: 36px;
            background-color: #ff6677;
            border: 2px solid #efefef;
            cursor: pointer;
            border-radius: 8px;
        }

        .quantity.buttons_added .plus .plusbig {
            background-color: #66ff77;
        }

        .quantity.buttons_added .minus .minusbig {
            border-right: 0;
        }

        .quantity.buttons_added .plus .plusbig {
            border-left: 0;
        }

        .quantity.buttons_added .minus:hover .minusbig:hover,
        .quantity.buttons_added .plus:hover .plusbig:hover {
            /*background: #eeeeee;*/
            opacity: 0.5;
        }

    .quantity input::-webkit-outer-spin-button,
    .quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
    }

    .quantity.buttons_added .minus:focus .minusbig:focus,
    .quantity.buttons_added .plus:focus .plusbig:focus {
        outline: none;
    }

.notif {
    position: absolute;
}

.notification-badge {
    position: relative;
    padding: 5px 9px;
    background-color: #fff;
    color: #941e1e;
    bottom: 15px;
    left: 15px;
    border-radius: 50%;
}


.tight {
    padding: 0px;
    margin: 0px;
}

.row-flex {
    display: flex !important;
}

    .row-flex .col {
        min-height: 100% !important;
    }


.vert-align {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    align-content: space-around;
    justify-content: center;
    flex-wrap: nowrap;
}

col-flex {
    min-height: 100% !important;
}

.flex-container {
    /* We first create a flex layout context */
    display: flex;
    /* Then we define the flow direction 
     and if we allow the items to wrap 
   * Remember this is the same as:
   * flex-direction: row;
   * flex-wrap: wrap;
   */
    flex-flow: row wrap;
    /* Then we define how is distributed the remaining space */
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
}

/*#endregion QUANTITY + - BOX*/

/*#region DROPDOWN */
.dropdown-menu {
    top: 100% !important;
}

.dropdown-sidemenu {
    top: 144px !important;
}
/*#endregion DROPDOWN */

/*#region ROOM DINING MENU */

.menuitem-img {
    /*border-radius: 20px 0px 0px 20px;*/
    height: 120px;
    width: 120px;
    min-height: 120px;
    object-fit: contain; /*cover*/
    /*border-left: 1px solid gray;*/
    margin: 0;
    padding: 0;
    margin: 4px !important;
    /*box-shadow: 0 0 0 4px #eeeeee inset;*/
    /* border-top: 1px solid gray;*/
    border-radius: 8px;
}

.menuitem-container {
    /*border-radius: 20px 20px 20px 20px;*/
    border: 1px solid #eeeeee;
    padding: 4px !important;
    /*box-shadow: 0 0 0 4px #efefef inset;*/
    /*background: #f9f9f9;*/
    /*background: #fcfcfa;*/
    /* padding-left: 0px !important;*/
    border-radius: 8px !important;
    box-shadow: 0rem 0.3rem 1rem 0px #2020205e;
}

    .menuitem-container:hover {
        box-shadow: 0rem 0.3rem 1.2rem 0px #00000032;
    }

.menuitem-div {
    /*border-radius: 0px;*/
    border-bottom: none;
}

.menuitem-title {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 4px;
}



@media only screen and (max-width: 601px) {
    .menuitem-img {
        height: 120px !important;
        /*width: fit-content !important;*/
        /* border-radius: 20px 0px 0px 0px;*/
    }

    .quantity {
        text-align: left !important;
        padding: 0px !important;
    }

    .menuitem-div {
        padding: 0px !important;
        padding-top: 4px !important;
    }

    .menuitem-div {
        border-left: none !important;
    }

    .menuitem-container {
        /*border-radius: 20px 0px 20px 0px;*/
        /* border-radius: 8px;*/
    }
}

@media only screen and (max-width: 501px) {
    .menuitem-img {
        height: 104px !important;
        width: 104px !important;
        /*border-radius: 20px 0px 0px 0px;*/
    }

    .quantity .input-text.qty {
        width: 18px;
    }

    .menuitem-title {
        border-bottom: 0px solid #eeeeee;
        margin-bottom: 0px;
    }
}

.menu_category .collapsible-body {
    padding: 0px !important;
}



/*#endregion ROOM DINING MENU*/

/*#region ORDERS LIST*/

.orderstatus {
    display: block !important;
    width: 100%;
    position: relative;
    margin: 0px !important;
    border-radius: 0px 8px 8px 0px !important;
    padding: 12px;
}

.orderheader {
    display: flex !important;
    padding: 0px;
}


@media only screen and (max-width: 601px) {

    .orderstatus {
        padding: 6px !important;
    }

    .orderheader {
        display: block !important;
    }
}

.mcart {
    max-width: 700px;
}
/*#endregion ORDERS LIST*/

/*#region IMAGE PREVIEW */
/*Stilovi za image preview za upload*/


.preview-images-zone {
    width: 100%;
    border: 1px solid #ddd;
    min-height: 90px;
    /* display: flex; */
    padding: 5px 5px 0px 5px;
    position: relative;
    overflow: auto;
}

    .preview-images-zone > .preview-image:first-child {
        height: 90px;
        width: 90px;
        position: relative;
        margin-right: 5px;
    }

    .preview-images-zone > .preview-image {
        height: 90px;
        width: 90px;
        position: relative;
        margin-right: 5px;
        float: left;
        margin-bottom: 5px;
    }

        .preview-images-zone > .preview-image > .image-zone {
            width: 100%;
            height: 100%;
        }

            .preview-images-zone > .preview-image > .image-zone > img {
                width: 100%;
                height: 100%;
            }

        .preview-images-zone > .preview-image > .tools-edit-image {
            position: absolute;
            z-index: 100;
            color: #fff;
            bottom: 0;
            width: 100%;
            text-align: center;
            margin-bottom: 10px;
            display: none;
        }

        .preview-images-zone > .preview-image > .image-cancel {
            font-size: 18px;
            position: absolute;
            top: 0;
            right: 0;
            font-weight: bold;
            margin-right: 10px;
            cursor: pointer;
            display: none;
            z-index: 100;
        }

.preview-image:hover > .image-zone {
    cursor: move;
    opacity: .5;
}

.preview-image:hover > .tools-edit-image,
.preview-image:hover > .image-cancel {
    display: block;
}

.ui-sortable-helper {
    width: 90px !important;
    height: 90px !important;
}
/*#endregion ImagePreview*/

/*#region RATING PARTIAL PAGE*/

.rating {
    border: none !important;
    float: left !important;
}

    .rating > input {
        display: none !important;
    }

    .rating > label:before {
        margin: 5px !important;
        font-size: 2.25em !important;
        /*font-family: FontAwesome;*/
        display: inline-block !important;
        content: "star" !important;
    }

    .rating > .half:before {
        content: "star" !important;
        position: absolute !important;
    }

    .rating > label {
        color: #ddd !important;
        float: right !important;
        content: "star" !important;
    }

    /***** CSS Magic to Highlight Stars on Hover *****/

    .rating > input:checked ~ label, /* show gold star when clicked */
    .rating:not(:checked) > label:hover, /* hover current star */
    .rating:not(:checked) > label:hover ~ label {
        color: #FFD700 !important;
        content: "star" !important;
    }
        /* hover previous stars in list */

        .rating > input:checked + label:hover, /* hover current star when changing rating */
        .rating > input:checked ~ label:hover,
        .rating > label:hover ~ input:checked ~ label, /* lighten current selection */
        .rating > input:checked ~ label:hover ~ label {
            color: #FFED85 !important;
            content: "star" !important;
        }

.ratingstar {
    color: #FFD700;
    content: "star";
    font-size: 42px !important;
}

.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 95% !important;
}

@media only screen and (max-width: 600px) {
    #mainContentBody {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .rating > label:before {
        font-size: 32px !important;
    }

    .ratingstar {
        font-size: 32px !important;
    }
}

@media only screen and (min-width : 601px) {
    .container {
        width: 90% !important;
    }
}

@media only screen and (min-width : 993px) {
    .container {
        width: 80% !important;
    }
}
/*#endregion RATING PARTIAL PAGE*/

/*#region FILE INPUT BTN*/

.btn-file {
    position: relative;
    overflow: hidden;
}

    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

/*#endregion FILE INPUT BTN*/

/*#region WELCOME PAGE*/

.btn-block {
    display: block !important;
    width: 100%;
    position: relative;
    margin: 1px;
    border-radius: 4px;
    border: 1px solid #b4b4b4 !important;
    box-shadow: 0 0 0 4px #efefef inset !important;
    height: 54px;
    line-height: 54px;
    font-size: 15px;
    padding: 0 28px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    letter-spacing: 0.5px;
    -webkit-transition: background-color 0.2s ease-out;
    transition: background-color 0.2s ease-out;
    cursor: pointer;
}

    .btn-block:hover {
        background-color: #b4b4b4;
    }

.main-link {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.welcomeitem {
    transition: 0.2s;
    margin-bottom: 20px;
    box-shadow: 0rem 0.3rem 1rem 0px #2020205e;
    border-radius: 8px;
}

    .welcomeitem:hover {
        transform: translateY(-0.5rem);
        box-shadow: 0rem 0.5rem 1rem 10px #55555555;
    }

    .welcomeitem .parallax-container {
        border-radius: 8px 8px 0px 0px;
    }

    .welcomeitem .section {
        border-radius: 0px 0px 8px 8px;
    }

div.feature {
    position: relative;
}

    div.feature a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-decoration: none; /* No underlines on the link */
        z-index: 10; /* Places the link above everything else in the div */
        background-color: #FFF; /* Fix to make div clickable in IE */
        opacity: 0; /* Fix to make div clickable in IE */
        filter: alpha(opacity=1); /* Fix to make div clickable in IE */
    }

.headerimage {
    max-height: 200px;
    width: 100%;
    height: 200px;
    display: block;
    margin: auto;
    object-fit: cover;
    border-radius: 8px;
    /*object-position: 100% 0;*/
}

.img-round-corner {
    max-height: 200px;
    /* width: 100%;*/
    height: 100%;
    display: block;
    margin: auto;
    object-fit: cover;
    border-radius: 8px;
}

.img-round-corner-wide {
    max-height: 200px;
    width: 100%;
    height: 100%;
    display: block;
    margin: auto;
    object-fit: cover;
    border-radius: 8px;
}

.img-small {
    max-height: 64px;
}

.img-mid {
    max-height: 128px;
}

.welcomeheader {
    background: #f5f5f5;
    border-bottom: 1px solid #ccc;
    border-radius: 8px 8px 0px 0px;
    margin-bottom: 20px;
    /*padding-bottom: 0px;*/
    /*padding-top: 0px;*/
    /*display: contents;*/
    /*    font-size: 40px;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: 0.33em;*/
}

    .welcomeheader span {
        font-size: 40px;
        font-weight: 300;
        line-height: 40px;
        letter-spacing: 0.1em;
    }

@media only screen and (max-width: 600px) {
    .headerimage {
        height: 100px;
    }

    .welcomeheader span {
        font-size: 35px;
        letter-spacing: initial;
    }
}

/*#endregion WELCOME PAGE*/

/*#region GENERAL ELEMENTS*/
.no-margin {
    margin: 0 !important;
}

    .no-margin > * {
        margin: 0 !important;
    }

.parent {
    width: 300px;
    height: 50px;
    background-color: red;
    white-space: nowrap;
    overflow-x: scroll;
}

.kid {
    width: 150px;
    height: 20px;
    background-color: green;
    display: inline-block;
    margin-left: 4px;
}

.cover {
    object-fit: cover !important;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

/*#endregion GENERAL ELEMENTS*/

/*#region MENU2 REDESIGN*/

.articlemodalflex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.articleheader {
    max-height: 200px;
    width: 100%;
    height: 200px;
    display: block;
    margin: auto;
    object-fit: cover;
    /*border-radius: 8px;*/
    /*object-position: 100% 0;*/
    transition: 0.3s;
    -webkit-transition: width 1s ease, height 1s ease;
}

/*    .articleheader:hover {
        max-height: 100%;
        height: 100%
    }

    .articleheader:active  {
        max-height: 100%;
        height: 100%
    }*/

.menureturnbtn {
    display: flex;
    border-radius: 8px;
    position: relative;
    text-align: center;
    flex-direction: row;
    vertical-align: middle;
}

    .menureturnbtn div {
        display: flex;
        margin: auto;
        padding: 8px;
        font-size: 20px;
        margin-left: 16px;
        margin-right: 16px;
        transition: 0.3s;
    }

    .menureturnbtn img {
        max-height: 48px;
        width: 100%;
        object-fit: cover;
        border-radius: inherit;
        filter: blur(2px);
        padding: 2px;
    }

    .menureturnbtn span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #eee;
        font-size: 24px;
        text-shadow: 0px 1px 6px #000000, 0 0 5px #000;
    }

    .menureturnbtn:hover div {
        margin-left: 16px;
        margin-right: 64px;
    }

.articlemodal {
    width: 92% !important;
    height: 92% !important;
    top: 1% !important;
    bottom: 1% !important;
    max-height: 92% !important;
    border-radius: 8px !important;
    transition: 0.2s !important;
}

    .articlemodal a:hover {
        filter: brightness(0.5);
    }



.menu2item {
    transition: 0.2s;
    margin-bottom: 20px;
    box-shadow: 0rem 0.3rem 1rem 0px #2020205e;
    border-radius: 8px;
    width: 100%;
    height: min(max(150px, 30vw), 300px);
    display: flex;
    flex-direction: column-reverse;
    background: #fff;
    overflow: hidden;

}

    .menu2item:hover {
        transform: translateY(-0.5rem);
        box-shadow: 0rem 0.5rem 1rem 10px #55555555;
    }

    .menu2item .parallax-container {
        border-radius: 8px 8px 0px 0px;
    }

    .menu2item .section {
        border-radius: 0px 0px 8px 8px;
    }

.menu2image {
    /*max-height: 200px;*/
    /*max-width: 100%;
    max-height: 100%;
    min-width: 0%;
    min-width: 0%;*/
    width: 100%;
    height: 100%;
    display: block;
    /*margin: auto;*/
    object-fit: cover !important;
    border-radius: 8px;
    padding: 0px;
    /*object-position: 100% 0;*/
}

.menu2itemname {
    font-size: min(max(16px, 4vw), 22px);
    letter-spacing: 0.61px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    margin: 0px;
    padding: 0px;
    /*Menu text overflow fix*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.squarebox {
    height: 200px;
    height: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

.menu2itembot {
    padding-top: 3px;
    padding-bottom: 3px;
}

.border-btn-flat {
    border: 1px solid #000000 !important;
    border-radius: 4px !important;
}

.row .col {
    padding: 0 0.35rem !important;
}

.menu2item {
    margin-bottom: 0.6rem !important;
}

/*#endregion MENU2 REDESIGN*/

/*#region LOADING INDICATOR */

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.loader {
    color: #7d7d7d;
    font-size: 10px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

    .loader:before,
    .loader:after {
        content: '';
        position: absolute;
        top: 0;
    }

    .loader:before {
        left: -3.5em;
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .loader:after {
        left: 3.5em;
    }

@-webkit-keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}


/*#endregion LOADER*/



/*#region RADIO IMAGES*/

/*.radio-images input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

    .radio-images input[type="radio"] + img {
        border: 4px solid #fafafa;
    }

    .radio-images input[type="radio"]:checked + img {
        border: 4px solid green;
    }*/

/*#endregion RADIO IMAGES*/


/*#region BLINK MENU NOTIF CART*/
.blinking {
    animation: blinkingText 0.3s ease 4 normal;
}

@keyframes blinkingText {
    0% {
        color: #FFF;
    }

    49% {
        color: #FFF;
    }

    60% {
        color: transparent;
    }

    99% {
        color: transparent;
    }

    100% {
        color: #FFF;
    }
}
/*#endregion BLINK MENU NOTIF CART*/

/*#region RADIO BUTTONS WITH IMAGE*/
.radio-tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

    .radio-tile-group .input-container {
        position: relative;
        height: 86px;
        width: 86px;
        margin: 3px;
    }

        .radio-tile-group .input-container .radio-button {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            height: 90%;
            width: 90%;
            margin: 0;
            cursor: pointer;
        }

        .radio-tile-group .input-container .radio-tile {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 90%;
            height: 90%;
            border: 2px solid #079ad9;
            border-radius: 5px;
            padding: 8px;
            transition: transform 300ms ease;
        }

        .radio-tile-group .input-container .icon img {
            width: 12px;
            height: 12px;
        }

        .radio-tile-group .input-container .radio-tile-label {
            text-align: center;
            font-size: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #079ad9;
        }

        .radio-tile-group .input-container .radio-button:checked + .radio-tile {
            border: 3px solid #26a69a;
            transform: scale(1.1, 1.1);
        }

            .radio-tile-group .input-container .radio-button:checked + .radio-tile .radio-tile-label {
                color: #26a69a;
            }
/*#endregion RADIO BUTTONS WITH IMAGE*/

/*Dodatak za tipku koja zauzima cijeli col i ima marginu kada idu u dva reda*/
.btn-col {
    width: 98%;
    margin-top: 4px;
}

.btn-row {
    margin-bottom: 0px !important;
}

.article-card {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
    margin: 0 auto;
    cursor: pointer;
}

.article-card:hover,
.small-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card .card-content,
.small-card .card-content {
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    padding: 1rem;
    height: auto;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.85);
}

.article-card .title,
.small-card .title {
    margin: 0;
}

.article-card .title,
.small-card .title {
    font-size: 24px;
    color: #000;
}

.title {
    font-size: 24px;
    color: #000;
    margin: 0;
}

.spacer-container {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.card-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4rem;
}

.align-items-center {
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.row-gap-sm {
    row-gap: 0.5rem;
}

.row-gap-md {
    row-gap: 1rem;
}

.row-gap-lg {
    row-gap: 1.5rem;
}

.row-gap-xl {
    row-gap: 2rem;
}

.col-gap-sm {
    column-gap: 0.5rem;
}

.col-gap-md {
    column-gap: 1rem;
}

.col-gap-lg {
    column-gap: 1.5rem;
}

.col-gap-xl {
    column-gap: 2rem;
}

.gap-sm {
    gap: 0.5rem;
}

.gap-md {
    gap: 1rem;
}

.gap-lg {
    gap: 1.5rem;
}

.gap-xl {
    gap: 2rem;
}

.margin-block-0 {
    margin-block: 0;
}

.margin-block-sm {
    margin-block: 0.5rem;
}

.margin-block-md {
    margin-block: 1rem;
}

.margin-block-lg {
    margin-block: 1.5rem;
}

.padding-block-sm {
    padding-block: 0.5rem;
}

.padding-block-md {
    padding-block: 1rem;
}

.padding-block-lg {
    padding-block: 1.5rem;
}

.padding-inline-sm {
    padding-inline: 0.5rem;
}

.padding-inline-md {
    padding-inline: 1rem;
}

.padding-inline-lg {
    padding-inline: 1.5rem;
}

.small-card {
    width: 80%;
    height: 4rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
    margin: 0 auto;
    cursor: pointer;
}

.align-self-start {
    align-self: start;
}

.limited-chars {
    max-width: 75ch;
    line-height: 150%;
}

.text-align-center {
    text-align: center;
}

.width100 {
    width: 100%;
}

.width80 {
    width: 80%;
}

.align-self-center {
    align-self: center;
}

.maxwidth100 {
    max-width: 100%;
}

.border {
    border: 1px solid;
}

.margin0 {
    margin: 0 !important;
}

.bold {
    font-weight: bold;
}

.align-items-end {
    align-items: end;
}

.flex {
    display: flex;
}

.map-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #ccc;
    padding: 8px;
    background-color: #f9f9f9;
    min-width: 200px; /* or any fixed width you prefer */
    box-sizing: border-box;
}

.map-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 8px;
}

.map-item span {
    font-size: 1rem;
    font-weight: bold;
}

.overflow-hidden {
    width: 100%;
    overflow-x: auto;
    padding: 1rem;
}

#map {
    height: 180px;
    width: 100%;
}

.flex-wrap {
    flex-wrap: wrap;
}

.white-space-nowrap {
    white-space: nowrap;
}

.pointer {
    cursor: pointer;
}

.margin-bottom-md {
    margin-bottom: 1rem;
}

.margin-bottom-lg {
    margin-bottom: 1.5rem;
}

.star-rating {
    direction: rtl;
    display: inline-block;
    font-size: 1.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ddd;
    cursor: pointer;
    display: inline-block;
    font-size: 2rem;
    margin: 0;
    padding: 0;
    position: relative;
}

.star-rating label:before {
    content: '★';
}

.star-rating input:checked ~ label {
    color: #f5a623;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f5a623;
}

.justify-content-center {
    justify-content: center;
}

.box-shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.box-shadow:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.border-radius {
    border-radius: 12px;
}

.w-24 {
    width: 20rem;
}