body, html {
  font: 'Montserrat';
  margin: 0;
  -webkit-overflow-scrolling: unset;
}

.my_container{
  width: 100%;
  padding-bottom: 48px;
}

/* widget container */
.widget-container{
  height: calc( 100% - 48px );
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* SPINNER */
.spinner{
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); 
  z-index: 999999;
}

div.spinner > div.text{
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top:  calc( 56%);
  font-size: 22px;
  color: white;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  left: calc( 50% - 32px);
  top: calc( 50% - 32px);
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  margin: -3px 0 0 -3px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* contenitore del form */
.form_container{
  width: 90%;
  margin: 0 auto;
  margin-top: 100px;
}

/*MODALE */
#map{
    width: 100%;
    height: calc(100% - 96px);
}
.modal{
  position: absolute;
  background-color: white;
  width: 100%;
  max-height: 100%;
  overflow: scroll;
}
.my_circular_button{
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin-top: 5px;
  padding: 0 !important;
  text-align: center;
}

.green{
  background-color: green;
}

.red{
  background-color: red;
}

.info-window{
  background-color: rgba(255,255,255,0.5);
  font-size: 15px;
  font-weight: bold;
}
.custom-marker{
  height: 12px;
  width: 12px;
  background-color: blue;
  border-color: black;
  border-width: 1px;
  border-radius: 50%;
}
.add.button{
  font-size: 34px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  width: 48px;
  height: 48px;
  background-color: orange;
  position: absolute;
  bottom: 100px;
  right: 3px;
  z-index: 9999;
}

.inputapp {
    margin-top: 10px;
}

/*bottom_menu*/
.bottom_menu{
  text-align: center; 
  line-height: 48px;
  overflow: hidden;
}

a.col{
  text-decoration: none;
  border: 1px white solid; 
  border-left: 0; 
  border-top: 0; 
  border-bottom: 0;
}

a.col i.material-icons {
  font-size: 26px;
  line-height: 48px;
  color: white;
  margin: 0;
  padding: 0;
}

.my_title_grid{
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

/*## MODAL PHOTO GRANDI ##*/

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */

.image_modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  max-height: unset !important;
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

  .collapsible {
    background-color: Transparent;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
  }
  
  .collapsible:focus{
       outline: none;
  }
  
  .content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    border-radius: 15px;
    background-color: #f1f1f1;
  }
