.ammapDescriptionWindowCloseButton {
    display: none;
}

#map {
    z-index: 1;
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    z-index: 7;
}

#loader b {
    color: #000000;
    position: absolute;
    left: 35%;
    top: 50%;
    border-radius: 100%;
    margin: 0 auto;
    width: 50px;
    height: 50px;
}

.form-control:focus {
    border-color: #000;
    box-shadow: none;
}

.error {
    color: red;
    font-weight: 400;
    display: block;
    padding: 6px 0;
    font-size: 14px;
}

.form-control.error {
    border-color: red;
    padding: .375rem .75rem;
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
    .dropdown-menu {
        display: block;
    }
    #navbar-title {
        font-size: 12px;
        top: -10px;
        padding: 0px;
        display: flex;
    }
    .nav-link {
        font-size: 13px;
    }
}

@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 2) {
    .dropdown-menu {
        display: block;
    }
    .nav-link {
        font-size: 13px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
    .dropdown-menu {
        display: block;
    }
    #navbar-title {
        font-size: 20px;
        padding: 0px;
        display: flex;
    }
    .nav-link {
        font-size: 13px;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
    #navbar-title {
        font-size: 12px;
        padding: 0px;
    }
    .nav-link {
        font-size: 13px;
    }
}

@keyframes grow {
    0%,
    100% {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
    }
    50% {
        -webkit-transform: scaleY(1.8);
        -ms-transform: scaleY(1.8);
        -o-transform: scaleY(1.8);
        transform: scaleY(1.8);
    }
}