#map {
   height: 500px;
   /* The height is 400 pixels */
   width: 100%;
   /* The width is the width of the web page */
}

#cities,
#strets {
   width: 100%;
   display: block;
   text-align: center;
   margin: 0 auto;
   text-align: center;
}

.select2-results,
.select2-selection--single {
   font-size: 20px !important;
}

.selects {
   display: flex;
   justify-content: center;
   flex-direction: row;
   align-content: center;
   text-align: center;
   margin: 250px 0 20px 0;
   position: relative;
}

.coordinate {
   display: flex;
   flex-direction: row;
   justify-content: space-around;
}
.coordinate-item {
   width: 40%;
}
#direction,
#gps {
   height: 50px;
   background-color: #1ea022;
   color: #fcfcf7;
   margin: 10px 0;
   border-radius: 10px;
   text-align: center;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
}
#closest-shop {
   width: 50%;
   height: 30px;
   background-color: #1ea022;
   color: #fcfcf7;
   margin: 10px auto 5px auto;
   border-radius: 10px;
   text-align: center;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
}
#closest-shop-error {
   width: 100%;
   font-size: 18px;
   font-weight: 700;
   color: crimson;
   margin: 10px auto 5px auto;
   text-align: center;
   display: flex;
   align-items: center;
   justify-content: center;
   display: none;
}
#from-point-to-shop {
   display: none;
}
.coordinate-text,
.coordinate-placeholder {
   margin-bottom: 0;
}
.coordinate-placeholder {
   font-size: 14px;
   font-style: italic;
   text-align: center;
}
.city,
.stret {
   width: 45%;
   position: relative;
   margin: 0 10px 0 10px;
}

.map-prompt-city {
   margin: 0;
   text-align: center;
}
.map-prompt-stret {
   margin: 5px 0 15px 0;
   text-align: center;
}

.map-prompt-schedule {
   margin: 5px 0 5px 0;
   text-align: center;
}
.map-prompt-dayoff,
.map-prompt-weekdays {
   text-align: center;
}
.schedule {
   margin: 0;
   display: none;
   color: #fcfcf7;
}
.schedule-title {
   text-align: center;
   margin: 0;
   text-transform: uppercase;
}
.weekdays {
   text-align: center;
   margin: 5px 0 0 0;
}
.weekdays span {
   font-weight: 700;
}
.dayoff {
   margin: 5px 0 5px 0;
   text-align: center;
}
.link-google-map {
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 15px 0 0 0;
   font-size: 20px;
   text-align: center;
   display: none;
}
.map-prompt-weekdays span {
   font-weight: 700;
}
@media (max-width: 800px) {
   .selects {
      flex-direction: column;
      align-content: center;
      text-align: center;
   }
   .city {
      margin: 0 auto 15px auto;
      width: 100%;
   }

   .stret {
      margin: 0;
      width: 100%;
   }
   .coordinate {
      flex-direction: column;
   }
   .coordinate-item {
      width: 100%;
      margin: 0;
   }
   #closest-shop {
      width: 100%;
      margin: 10px auto 15px auto;
   }
}

@media (max-width: 767px) {
   .selects {
      margin: 0 0 20px 0;
   }
}
