*{

margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,Helvetica,sans-serif;

}

body{

/*background:#f5f6fa;*/
background:#fff7ef;
min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero{

    position:relative;
 background:url("../../settings/dinflow_portal_cover.png") center center/cover no-repeat;

    padding:30px 20px;

    text-align:center;

    color:#fff;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    top:0;
    left:0;
    right:0;
    bottom:0;

    background:rgba(0,0,0,.55);

}

.hero>*{

    position:relative;

    z-index:1;

}

.logo{

    width:100px;

    margin-bottom:15px;

    background:white;

    padding:2px;

    border-radius:50%;

}

.hero h1{

    font-size:34px;
    font-weight:700;

}

.din{

    color:#ffffff;

}

.fl{

    color:#ff7a18;

}

.ow{

    color:#9acd32;

}
.hero p{

    font-size:18px;

    opacity:.95;

}

.searchBox{

    width:92%;
    max-width:700px;

    margin:-28px auto 30px;

    position:relative;
    z-index:10;

    background:#fff;

    display:flex;
    align-items:center;

    padding:15px 20px;

    border-radius:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.searchBox i{

font-size:20px;

color:#999;

margin-right:10px;

}

.searchBox input{

border:none;

outline:none;

width:100%;

font-size:16px;

}

/*
.restaurantContainer{

width:92%;

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fill,minmax(300px,1fr));

gap:20px;

padding-bottom:50px;

}

.restaurantCard{

background:white;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.restaurantCard:hover{

transform:translateY(-5px);

}
*/

#restaurantContainer {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px;

    padding: 12px;

}


.restaurantCard {

    width: 100%;
    min-width: 0;

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 2px 8px rgba(0,0,0,0.08);

}

.restaurantCard img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* large screen display 
.restaurantContainer{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (min-width: 768px) {
    .restaurantContainer {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (min-width: 1100px) {
    .restaurantContainer {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 15px;
    }
}
*/

@media (min-width: 768px) {

    #restaurantContainer {

        grid-template-columns: repeat(3, minmax(0, 1fr));

    }

}

@media (min-width: 1100px) {

    #restaurantContainer {

        grid-template-columns: repeat(4, minmax(0, 1fr));

    }

}

/*
.restaurantLogo{
    width:100%;
    height:140px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px 12px 0 0;
    position:relative;
}


.restaurantLogo::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.25); 
    border-radius:inherit;
}

.restaurantLogo img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    background:#fff;
    padding:6px;
    position:relative;
    z-index:1;
}
*/

.restaurantLogo {

    width: 100%;
    height: 120px;

    background-repeat: no-repeat;

}

.restaurantContent {
    position: relative;
    padding: 20px;
    padding-bottom: 65px;
}

.restaurantContent h2 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #222;

    line-height: 1.25;

    min-height: 55px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.restaurantContent p{

font-size:15px;

line-height:1.5;

color:#666;

margin-bottom:15px;

}

.location{

display:flex;

align-items:center;

gap:8px;

margin-bottom:20px;

color:#444;

font-size:15px;

}

.location i{

color:#ff5500;

}

.visitBtn{
display: none ;
width:100%;

padding:14px;

border:none;

border-radius:8px;

background:#ff5500;

color:white;

font-size:16px;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

.visitBtn:hover{

background:#e64a00;

}

/* ARROW */
.visitRestaurantBtn {
    position: absolute;
    right: 14px;
    bottom: 14px;

    width: 48px;
    height: 48px;

    padding: 0;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    //background: #b7df00;
    background: #ff7b00;
    color: #111;

    font-size: 16px;

    box-shadow: 0 5px 12px rgba(183, 223, 0, 0.25);

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.visitRestaurantBtn i {
    font-size: 16px;
   // color: #111;
    color: #fff;
}

.visitRestaurantBtn:hover {
    transform: translateX(3px);
   // background: #a8d000;
    background:#b7df00;
}

.visitRestaurantBtn:hover i {
    transform: translateX(2px);
}


.empty{

text-align:center;

padding:80px;

color:#777;

font-size:18px;

}

@media(max-width:700px){

.hero h1{

font-size:24px;

}

.hero p{

font-size:15px;

}

.restaurantLogo{

height:150px;

}

.restaurantLogo img{

width:90px;

height:90px;

}

}

.access {

	width: 100%;
	padding: 4px;
	diisplay: flex;
	flex-direction: row;
	align-items: center ;
	justify-content: center ;
	margargin-top: 8px;
}

.signup-btn {

    background:#ff6b00;
    color:#fff;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    font-size:15px;
    cursor:pointer;
    font-weight:bold;
}

.signup-btn :hover{

    background:#e55f00;
}

.login-btn{

    background:#ffffff;
    color:#ff6b00;
    border:1px solid #ff6b00;
    padding:10px 20px;
    border-radius:8px;
    font-size:15px;
    cursor:pointer;
    font-weight:bold;
}

.login-btn:hover{

    background:#e55f00;
}

.access a{
	text-decoration: none;
}
.dash-btn {

    background:#ff6b00;
    color:#fff;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    font-size:15px;
    cursor:pointer;
    font-weight:bold;
}

.dash-btn :hover{

    background:#e55f00;
}


.logout-btn{
	background:#ffffff;
    color:#ff6b00;
    border:1px solid #ff6b00;
    padding:10px 20px;
    border-radius:8px;
    font-size:15px;
    cursor:pointer;
    font-weight:bold;

}


.container {
	flex: 1;
}

.modal{

    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    z-index:999;
}

.modal-content{

    /*background:#fff;*/
    background:#1f1f1f;
    width:92%;
    max-width:420px;
    margin:50px auto;
    border-radius:12px;
    padding:25px;
    box-sizing:border-box;
    position:relative;
    color:#fff;
}

.close-modal{

    position:absolute;
    right:18px;
    top:15px;
    font-size:28px;
    cursor:pointer;
}

.modal h2{

    margin-top:0;
    /*color:#333;*/
    color:#fff;
}

.subtitle{

    /*color:#777;*/
    color:#fff;
    font-size:14px;
    margin-bottom:20px;
}

.modal label{

    display:block;
    margin-bottom:6px;
    margin-top:15px;
    font-weight:600;
}

.modal input,
.modal select{

    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    box-sizing:border-box;
}

.create-account-btn{

    width:100%;
    margin-top:25px;
    background:#ff6b00;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
}

.create-account-btn:hover{

    background:#e55f00;
}

/* LOGIN CSS */

.login-submit-btn{

    width:100%;
    margin-top:25px;
    padding:14px;
    border:none;
    border-radius:8px;
    background:#ff6b00;
    color:#fff;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;

}

/* Donation */
.support-float{

    position:fixed;

    bottom:20px;
    right:20px;

    width:25px;
    height:25px;

    border-radius:50%;

    /*background:#ff9800;*/
    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;

    cursor:pointer;

    box-shadow:0 4px 12px rgba(0,0,0,.25);

    z-index:9999;

    animation:bounce 2s infinite;

    transition:.3s;
}


.support-float:hover{

    transform:scale(1.1);

}

#supportBanner{

    position:fixed;

    bottom:20px;
    right:20px;

    width:25px;
    height:25px;

    border-radius:50%;

    /*background:#ff9800;*/
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:32px;

    cursor:pointer;

    box-shadow:0 4px 12px rgba(0,0,0,.25);

    z-index:9999;

    animation:bounce 2s infinite;

    transition:transform .3s;
}

#supportBanner:hover{

    animation-play-state:paused;
    /*animation: bounce 5s infinite;*/
    transform:scale(1.1);

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translateY(0);

    }

    40%{

        transform:translateY(-12px);

    }

    60%{

        transform:translateY(-6px);

    }

}

.support-btn{

    width:100%;

    padding:14px;

    border:none;

    border-radius:8px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    margin-top:10px;

    transition:.3s;

}

.support-btn.primary{

    background:#ff9800;

    color:#fff;

}

.support-btn.primary:hover{

    background:#f57c00;

}

.support-btn.secondary{

    background:#f1f1f1;

    color:#444;

}

.support-btn.secondary:hover{

    background:#ddd;

}

.title-align{
	display : flex ;
	flex-direction: row;
	justify-content : space-between ;
	align-items: center ;
}

/*=========================================
 FOOTER
=========================================*/

footer{

    /*background:#121720;*/
background:rgba(0,0,0,.65);
    text-align:center;

    padding:10px 5px;
}

footer h2{

    font-size:32px;
color: #fff;
    margin-bottom:15px;
}

footer span{

    color:#ff7b00;
}

footer p{

    color:#9e9e9e;

    margin:8px 0;
}

.din{

    color:#ffffff;
}
.fl-bottom{

    color:#ff7b00;
}
.fl{

    color:#ff7b00;
   /*margin-left:-8px;*/
}
.ow{

    color:#00ff00;
    /*margin-left:-8px;*/
}
footer a{
	color:#fff;
}

/* =========================
   DINFLOW FLOATING INFO BUTTON
========================= */

.dinflow-info-button{

    position:fixed;

    right:20px;
    bottom:20px;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    background:#17834c;
    color:#fff;

    border-radius:50%;

    box-shadow:
        0 5px 18px rgba(0,0,0,.20);

    z-index:9999;

    transition:
        transform .2s ease,
        box-shadow .2s ease;

}


/* Information icon */

.dinflow-info-button span{

    width:22px;
    height:22px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:2px solid #fff;

    border-radius:50%;

    font-size:14px;

    font-weight:700;

    font-family:Arial, sans-serif;

}


/* Hover */

.dinflow-info-button:hover{

    transform:translateY(-3px);

    box-shadow:
        0 8px 22px rgba(0,0,0,.25);

}


/* Mobile */

@media(max-width:600px){

    .dinflow-info-button{

        width:44px;
        height:44px;

        right:15px;
        bottom:15px;

    }

}