/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.school_restaurants .single_restaurant {
  display: none;
}

#loadmorerest {
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    background-color: #00529A;
    line-height: 1;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    color: #fff;
    fill: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    margin: 40px auto;
    display: block;
    width: 150px;
}

.faqs_element{
	display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    align-items: start;
    grid-row-gap: 20px;
}	

/* Style the Headings that are used to open and close the accordion panel */
.accordion_title {
  background-color: #00529A0D;
  color: #444;
  cursor: pointer;
  padding: 18px;
  margin: 0;
  font-weight: 300;
}

/* Change color of the heading and icon (on hover and click) */
.active, .accordion_title:hover, .accordion_title:hover::after {
  background-color: #007eff;
  color: white;
}

/* Add "plus" sign (+) after accordion_title */
.accordion_title::after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
}

/* Add "minus" sign (-) after Accordion (when accordion is active) */
.active::after {
  content: "\2212";
  color: white;
}

/* Style the accordion panel */
.accordion_panel_body {
  padding: 2px 10px;
  overflow: hidden;
  max-height: 0;
  background-color: #00529A0D;
  transition: max-height 0.2s ease-out;
}


