#modalbtn {
    cursor:pointer;
}

#masmodal {
    background: #fefefe;
    display: flex;
    flex-direction: column;
    /*inset: 0;*/
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    max-height: fit-content;
    max-width:1000px;
    position:fixed;
    width:90vw;
    z-index: 1000;
}

#alert_city {
    background-color: #ED6C05;
    padding: 0px 14px;
    margin-bottom: 10px;
}

.masmodal-close {
    display: flex;
    justify-content: flex-end;
}

.masmodal-close i {
    align-items: center;
    background: #014d9b;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    height: 30px;
    justify-content: center;
    position: relative;
    top: -30px;
    width: 30px;
}

.masmodal-close .fa.fa-times::before {
    content: "\f00d"
}

.masmodal-content {
    display:flex;
    flex: auto;
}

.masmodal-content h2 {
    color: #333;
}

.masmodal-content p {
    color: #014d9b;
    font-weight: 600;
    font-size: 16px;
    line-height:22px;
    margin: 15px 0;
}

.masmodal-content img {
    margin-top: auto;
}

.masmodal-content > div, .masmodal-content > div > section {
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.masmodal-content_body {
    flex: auto;
}

#masform {
    display: flex;
    flex-direction: column;
    flex: auto;
    justify-content: space-around;
}

#masform label {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width:300px;
}

#masform select {
    width:100%;
}

#masform button {
    background: #014d9b;
    color: #fff;
    width: fit-content;
}

#masmodaloverlay {
    background: #00000040;
    /*inset: 0;*/
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    position: fixed;
    transition: all 0.2s ease;
    z-index: 999;
}

@media all and (max-width:1080px){
    .masmodal-content > div:last-child {
        display:none;
    }
    
}

.select2-container--default .select2-results__group {
    background: white;
    position: sticky;
    top: 0;
}