@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
.mhbe-d-none{
    display: none;
}
.mhbe-backdrop{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.15);
}
.mhbe-trigger-btn{
    position: fixed;
    height: 40px;
    padding: 0 20px;
    background-color: rgb(232, 57, 48);
    border: 1px solid rgb(232, 57, 48);
    color: #fff;
    text-transform: uppercase;
    border-radius: .25rem;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 .5rem 1rem rgba(0,0,0, .15);
}
.mhbe-trigger-btn.mhbe-top{
    top: 30px;
}
.mhbe-trigger-btn.mhbe-left{
    left: 30px;
}
.mhbe-trigger-btn.mhbe-bottom{
    bottom: 30px;
}
.mhbe-trigger-btn.mhbe-right{
    right: 30px;
}
.mhbe-modal-container *{
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
.mhbe-modal-container{
    position: fixed;
    top: calc(50% - 125px);
    left: calc(50% - 400px);
    width: 800px;
    height: 250px;
    background-color: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0, .15);
    border-radius: 3px;
}
.mhbe-modal-content{
    width: 100%;
    height: 100%;
    padding: 10px;
}
.mhbe-modal-content h3{
    margin-bottom: 30px;
    color: rgb(232, 57, 48);
}
.mhbe-form{
    display: flex;
    margin: 0 -10px;
}
.mhbe-form-component{
    padding: 0 10px;
    margin-bottom: 15px;
}
.mhbe-form-component label{
    display: inline-block;
    margin-bottom: 5px;
}
.mhbe-form-component input, .mhbe-form-component select{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    font-size: 1rem;
    color: #212529;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.mhbe-modal-container .mhbe-submit{
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 40px;
    padding: 0 20px;
    background-color: rgb(232, 57, 48);
    border: 1px solid rgb(232, 57, 48);
    color: #fff;
    text-transform: uppercase;
    border-radius: .25rem;
    font-size: 1rem;
    cursor: pointer;
}
.mhbe-modal-container .mhbe-close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    text-transform: lowercase;
    font-size: 18px;
    background: #fff;
    border:1px solid #ced4da;
    border-radius: 3px;
    width: 25px;
    height: 25px;
    line-height: 20px;
    font-weight: bold;
}

@media screen and (max-width: 850px) {
    .mhbe-modal-container{
        width: 90%;
        left: 5%;
        height: 450px;
        top: calc(50% - 225px);
    }
    .mhbe-form{
        flex-wrap: wrap;
        flex-direction: column;
    }
}
