
.accordion {
    background-color: #004B85;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
	position:relative;
	padding-left:60px;
}

 .accordion:hover {
    background-color: #75c5ff;
	color: #fff; 
}

.accor-outer{
	margin-bottom:15px;
	
}
.accordion::after{
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:35px;
	background: #deb938;
	color:#fff;
	content:"+";
	font-size:20px;
	text-align:center;
	line-height:60px;
}
.accordion.active::after {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:35px;
    background: #e6c551;
	color:#fff;
	content:"-";
	font-size:20px;
	text-align:center;
	line-height:60px;
}

.panel {
    padding: 18px;
    display: none;
    background-color: white;
	border: 1px solid #e5e5e5;
}

    .accor-outer .accordion {
    padding: 10px;
    padding-left: 60px;
        background: #121f5a;
}

.accor-outer .accordion::after {line-height: 40px;}


.accor-outer  .panel {
    padding: 10px; }
    .dining-page .accor-outer {
    width: 100%;
}