 body * {
   -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
   -moz-box-sizing: border-box;    /* Firefox */
   box-sizing: border-box;
 }

 .map_wrapper {
   width: 100%;
   display: flex;
   min-height: 60vh;
   padding: 20px;
   box-shadow: 1px 1px 16px #00000030;
   font-family: 'Roboto';

 }
 .map_wrapper #map {
   width: 100%;
   box-shadow: 1px 1px 16px #00000030;
   border: 2px solid #dcdec5;
   border-radius: 4px;
 }

 .accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.accordion-content {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.accordion-content.active {
  display: block;
}

button.open-manual {
    float: right;
    margin-bottom: 12px;
    padding: 6px 32px 6px 18px;
    border: 0;
    color: #fff;
    background-color: #ef7724;
    position: relative;
    font-weight: bold;
    cursor: pointer;
    margin-right: 20px;
}

button.open-manual:after {
	content: '+';
    font-size: 14px;
    line-height: 30px;
    color: #FFFFFF;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    text-align: center;
    display: block;
    font-weight: bold;
}

.manual-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000008f;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .5s ease-in-out;
	z-index: 1000000;
    overflow: hidden;
}

.manual-modal img {
    cursor: pointer;
	box-shadow: 0px 0px 18px 1px #0000008a;
    transform: scale(0);
    transition: .5s ease-in-out;
}

.manual-modal.active {
    opacity: 1;
    visibility: visible;
    transition: .5s ease-in-out;
}

.manual-modal.active img {
    transform: scale(1);
    transition: .5s ease-in-out;
}