.mt-5 {
    margin-top: 5px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-15 {
    margin-top: 15px;
}
.mt-20 {
    margin-top: 20px!important;
}

.mt-30 {
    margin-top: 30px!important;
}

.mb-5 {
    margin-bottom: 5px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-20 {
    margin-bottom: 20px!important;
}

.py-20{
    padding-top: 20px!important;
    padding-bottom: 20px!important;
}

.py-25{
    padding-top: 25px!important;
    padding-bottom: 25px!important;
}

.custom-mfp > .mfp-close{
    top: 17px!important;
}

.mfp-bg{
    background: rgba(0, 0, 0, 0.5)!important;
}

@media (max-width: 767px) {
    .custom-mfp > .mfp-close{
        top: 18px!important;
    }
}

.d-none{
    display: none!important;
}

@media(min-width:501px){
    .d-sm-block{
        display: block;
    }
}

.responsive-button-header{
    font-size: clamp(12px, 2vw, 16px)!important; 
    padding: clamp(5px, 2vw, 10px) clamp(10px, 2vw, 16px)!important;  
    max-width:230px!important;
}

.disabled{
    opacity: 50;
}

/* Autocomplete dropdown */
.autocomplete-items {
    position: absolute;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 99;
    background-color: #fff;
    width: 100%;
    display: none;
}

.autocomplete-items.border {
    border: 1px solid #d4d4d4;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
}

.autocomplete-item:hover {
    background-color: #f1f1f1;
}