.block-content {
    border-top: 1px solid #d4dcec;
}

#map {
    height: 400px;
    width: 100%;
}

.js-table-sections .table-active,
.table-active > tr,
.table-active > tr:hover {
    background-color: rgba(136, 177, 75, 0.2) !important;
}

.js-table-sections .font-size-sm > tr {
    background-color: rgba(136, 177, 75, 0.1) !important;
}
.table td {
    border-top: 0px;
}
.table tbody + tbody {
    border-top: 0px;
}
.font-size-sm {
    font-size: 1rem !important;
}

.js-table-sections-header > tr > td > i {
    transition: -webkit-transform 0.15s ease-out;
    transition: transform 0.15s ease-out;
    transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}
.js-table-sections-header.show > tr > td > i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.tag-field {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.tag {
    display: flex;
    align-items: center;
    height: 35px;

    margin: 5px 10px 10px 0px;
    padding: 0 15px;
    color: #88B14B;
    border: 1px solid #88B14B; 
    border-radius: 8px;
    cursor: pointer;
}
.tag-close {
    margin-left: 10px;
    width: 10px;
    pointer-events: none;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

.pulsate-fwd:hover {
    opacity: 0.8;
    -webkit-animation: pulsate-fwd 0.3s ease-in-out both;
    animation: pulsate-fwd 0.3s ease-in-out both;
}

#img_description {
    font-size: 12px;
}

@-webkit-keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulsate-fwd {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
