| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- /* Google map */
- #map {
- height: 550px;
- }
- .arrow_box {
- width: 22px;
- height: 22px;
- border-radius: 100%;
- -webkit-border-top-left-radius: 100%;
- -webkit-border-top-right-radius: 100%;
- -webkit-border-bottom-right-radius: 100%;
- -webkit-border-bottom-left-radius: 100%;
- position: relative;
- opacity: .8;
- cursor: pointer;
- span {
- width: 100%;
- height: 100%;
- border: 1px solid;
- opacity: 0.2;
- display: inline-block;
- border-radius: 100%;
- -webkit-border-top-left-radius: 100%;
- -webkit-border-top-right-radius: 100%;
- -webkit-border-bottom-right-radius: 100%;
- -webkit-border-bottom-left-radius: 100%;
- position: absolute;
- top: 0;
- left: 0;
- &:first-child {
- animation: markerWave 1.5s .45s cubic-bezier(.4,0,.2,1) infinite forwards;
- -webkit-animation: markerWave 1.5s .45s cubic-bezier(.4,0,.2,1) infinite forwards;
- +span {
- animation: markerWave 1.5s .45s cubic-bezier(0,0,.2,1) infinite forwards;
- -webkit-animation: markerWave 1.5s .45s cubic-bezier(0,0,.2,1) infinite forwards;
- }
- }
- &:last-child {
- opacity: 0.1;
- }
- }
- // map marker style 02
- &.marker02 {
- width: 18px;
- height: 18px;
- span {
- border: 0;
- }
- &:after {
- content: "";
- width: 45px;
- height: 62px;
- background: url("../images/marker02.png") left center no-repeat;
- background-size: cover;
- position: absolute;
- left: -15px;
- top: -58px;
- float: left;
- }
- }
- // map marker style 03
- &.marker03 {
- width: 16px;
- height: 16px;
- @include prefix(transform, rotateX(-0deg), webkit);
- span {
- background-color: transparent !important;
- }
- }
- }
- @keyframes markerWave{
- 0% {
- transform:scale(1);
- opacity:.8
- }
- 20% {
- opacity:.8
- }
- 100% {
- transform:scale(5.5);
- opacity:0
- }
- }
- @-webkit-keyframes markerWave{
- 0% {
- -webkit-transform:scale(1);
- opacity:.8
- }
- 20% {
- opacity:.8
- }
- 100% {
- -webkit-transform:scale(5.5);
- opacity:0
- }
- }
- .infowindow {
- color: var(--dark-gray);
- font-weight: 400;
- line-height: 26px;
- font-size: 15px;
- letter-spacing: -.5px;
- padding: 25px 25px 25px 25px !important;
- text-align: center;
- .mb-3 {
- margin-bottom: 5px !important;
- font-weight: 600;
- font-size: 16px;
- letter-spacing: -.25px;
- }
- p {
- color: var(--medium-gray);
- font-size: 15px;
- margin-bottom: 5px;
- letter-spacing: -.25px;
- line-height: 24px;
- }
- :last-child {
- margin-bottom: 0;
- }
- }
- .gm-style {
- .gm-style-iw-c {
- padding: 0 !important;
- border-radius: 0;
- max-width: 230px !important;
- @include box-shadow(0 20px 60px rgba(0,0,0,.08));
- }
- .gm-style-iw-d {
- overflow: auto !important;
- }
- .gm-style-iw-t::after{
- background: var(--dark-gray);
- @include box-shadow(0 20px 60px rgba(0,0,0,.08));
- }
- }
- .gm-ui-hover-effect {
- opacity: .8;
- top: -2px !important;
- right: 2px !important;
- width: 25px !important;
- display: none !important;
- height: 25px !important;
- img {
- width: 17px !important;
- height: 17px !important;
- margin: 6px !important;
- }
- }
- .google-maps-link {
- text-align: center;
- a {
- font-size: 12px;
- font-weight: 400;
- display: block;
- background-color: var(--dark-gray);
- color: var(--white);
- padding: 15px;
- letter-spacing: .5px;
- &:hover {
- text-decoration: none;
- }
- }
- }
- .gmnoprint .gm-style-mtc,
- .gmnoprint .gm-svpc {
- display:none;
- }
- .gm-style a[title] {
- display: none !important;
- }
- .gmnoprint .gm-style-cc,
- .gmnoprint.gm-style-cc,
- .gm-style-cc,
- .gmnoscreen {
- display: none !important;
- }
- .gm-style .gm-style-iw-tc::after {
- background: var(--dark-gray);
- }
- @media screen {
- .gm-style .gmnoscreen,
- .gmnoscreen {
- display:none;
- }
- }
|