.google-map {
    width: 100%;
    height: 928px;
    background-color: #a8d9ff;
    position: relative;
    margin-bottom: -60px;
  }
  
.marker-card {
  width: 360px;
  box-shadow: -1px 4px 7px rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
  right: 79px;
  bottom: 83px;
  position: absolute;
  text-align: center;
}

.marker-card-head>h1 {
  color: #ffffff;
  font-family: 'Axiforma-BookItalic';
  font-size: 30px;
  font-weight: 700;
  line-height: 47px;
  display: inline-block;
}

.marker-logo {
  background-repeat: no-repeat;
  width: 46px !important;
  height: 37px !important;
  background-position: center !important;
  background-size: 21px !important;
  margin: 25px auto;
}
.marker-card>p {
  width: 252px;
  height: 114px;
  color: #63666a;
  font-family: Arial;
  font-size: 20px;
  line-height: 25px;
  margin: 25px auto;
}

.marker-card-buttons>button {
  width: 300px !important;
  overflow: hidden;
  height: 50px;
  padding: 5px;
  border: none;
  border-radius: 7px;
  background-color: #0084d4;
  color: #ffffff;
  margin: 15px auto;
  transition: all .2s;
}

.marker-card-buttons>button:nth-of-type(1) {
  margin-top: 32px; 
}

.marker-card-buttons>button:nth-of-type(2) {
  margin-bottom: 32px; 
}

.marker-card-buttons>button{
  font-family: Arial;
  font-size: 20px;
  line-height: 40px;
}

.marker-card-buttons>button:hover {
  border: 1px solid #0084d4;
  background-color: rgb(240, 240, 240);
  color: #0084d4;
}

#city-list {
  overflow-x: hidden;
}

/* width */
#city-list::-webkit-scrollbar {
  width: 10px;
}

/* Track */
#city-list::-webkit-scrollbar-track {
  background: #cecccc; 
}

/* Handle */
#city-list::-webkit-scrollbar-thumb {
  background: #001489; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #001489; 
}

#city-list li {
  transition: all .2s;
}

#city-list li:hover {
  transform: scale(0.9);
}

.google-map .mobile {
  display: none;
}


  /*map card animation*/
ul#city-list {
    list-style-type: none;
    width: 100%;
    height: 139px;
    margin: auto;
    overflow: auto;
    padding: 10px 6px;
}

ul#city-list>li {
    color: #63666a;
    font-family: Arial;
    font-size: 20px;
    line-height: 36px;
}

ul#city-list > li:hover{
    cursor:pointer;
    color: #001489;
}

#city-list-paragraph {
    display: none;
}

.marker-card-head {
    position : relative;
    background-image: linear-gradient(96deg, #00b3ec 0%, #064299 100%);
    text-align: center;
    padding: 10px 25px;
}

#city-list-toggle {
    position: absolute;
    top: 44%;
    left: 9px;
    display: inline-block;
    -moz-animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
    display: none;
}

#city-list-toggle i { 
    color: white;
    font-size: 20px;
    transition: all .2s ease;
}

#city-list-toggle:hover {
    cursor: pointer;
}

#city-list-toggle i:hover { 
    color: white;
    font-size: 20px;
    transform: scale(1.2);
}

@keyframes bounce {
	0%, 20%, 60%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-6px);
		transform: translateY(-3px);
	}

	80% {
		-webkit-transform: translateY(-3px);
		transform: translateY(-1px);
	}
}

.terratype-map {
    height: 100%;
    text-align: center;
    position: relative;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    z-index: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*  TABLET */
@media (max-width: 1150px) {
    #city-list-toggle i:hover {
      transform: none !important;
    }
    #city-list li:hover {
      transform: none;
    }
}
  
/* MOBILE */
@media(max-width: 620px){
  .marker-card{
    display: none;
  }

  .google-map .mobile {
    display: block;
    width: 100%;
    height: 90px;
    position: absolute;
    top: -80px;
    background-image: linear-gradient(96deg, #00b3ec 0%, #064299 100%);
    text-align: center;
  }

  .terratype-map {
    margin-top: 80px;
  }

  .google-map .mobile h1 {
    width: 320px;
    height: 54px;
    color: #ffffff;
    font-family: 'Axiforma-BookItalic';
    font-size: 25px;
    font-weight: 700;
    line-height: 47px;
    display: inline-block;
    margin: 15px auto;
  }
}