.modal-wrapper{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
}
.modal {
    position: absolute;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    background-color: #e6ecf0;
    padding: 0 0 10px 0;
    border-radius: 10px;
    text-align: center;
    overflow-y: auto;
}

.modal .header{
    position: initial;
}

.modal .content{
    position: initial;
    text-align: initial;
}

.modal .content .company2{
    border-bottom: none;
}

.modal .footer{
    position: initial;
}

@media screen and (max-width: 800px){
    .modal .footer{
        margin-bottom: 20px;
    }
}

