#MAP_mobile_sticky_val_button {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #F4F4F4;
    box-shadow: 0px -2px 6px rgb(0 0 0 / 90%);
    z-index: 999;
    padding: 0;
}
.MAP_mobile_sticky_val_button_container {
    padding: 20px;
    text-align: center;
    position: relative;
    box-sizing: border-box;
}
.MAP_mobile_sticky_val_button_container p {
    width: 100%;
    max-width: 370px;
    padding: 20px;
    background-color: #068C93;
    background-image: linear-gradient(90deg, #0FBBC3, #03A8B0, #07A7AF, #068C93);
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.57px;
    line-height: 20px;
    margin: 0;
    font-weight: 600;
    border-radius:  8px;
    display: inline-block;
}

#MAP_val_button_popUp {
    position: fixed;
    top: 0;
    z-index: 99999;
    padding: 0;
    background-color: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    padding-top: 200px;
    box-sizing: border-box;
    max-height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
}
#MAP_val_button_popUp::-webkit-scrollbar {
   display: none;
}
.MAP_val_button_popUp_container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    background-color:  #ffffff;
}
.MAP_val_button_popUp_close {
    width: 100%;
    display: inline-block;
    margin: 0;
    margin-bottom: 15px;
    text-align:  right;
}
.MAP_val_button_popUp_close div {
    width: 15px;
    height: 15px;
    display: inline-block;
    cursor: pointer;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.MAP_val_button_popUp_content {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}
.MAP_val_button_popUp_content h4 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 1.28px;
    margin: 0;
    margin-bottom: 30px;
}
.MAP_val_button_popUp_content p {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.5px;
    margin: 0;
    margin-bottom: 20px;
}
.MAP_val_button_popUp_buttons {
    font-size: 0;
    margin-bottom: 30px;
}
.MAP_val_button_popUp_buttons a {
    display: inline-block;
    width: calc(50% - 40px);
    vertical-align: top;
    margin: 0;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.57px;
    color: #0FBBC3;
    padding: 15px 20px;
    border: 1px solid #0FBBC3;
    border-radius: 8px;
    font-family: 'ProximaNovaA-Medium';
    transition: all 300ms ease-in-out;
}
.MAP_val_button_popUp_buttons a:hover {
    background-color: #068C93;
    background-image: linear-gradient(90deg, #0FBBC3, #03A8B0, #07A7AF, #068C93);
    color: #ffffff;
}
.MAP_val_button_popUp_buttons a:nth-child(1) {
    margin-right: 20px;
}
.MAP_val_button_popUp_buttons a:nth-child(2) {
    margin-left: 20px;
}

@media only screen and (max-width:  1024px),
only screen and (-webkit-min-device-pixel-ratio: 1.5) and (max-width: 1024px),
only screen and (min--moz-device-pixel-ratio: 1.5) and (max-width: 1024px),
only screen and (-o-min-device-pixel-ratio: 3/2) and (max-width: 1024px),
only screen and (min-device-pixel-ratio: 1.5) and (max-width: 1024px) {
   #MAP_mobile_sticky_val_button {
      display: none;
   }
   .MAP_val_button_popUp_buttons a {
       width: 100%;
   }
   .MAP_val_button_popUp_buttons a:nth-child(1) {
       margin-bottom: 20px;          
       margin-right: unset;
   }
   .MAP_val_button_popUp_buttons a:nth-child(2) {      
       margin-left: unset;
   }
}