.modal {
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}


/* Modal Body */
.modal-body {
    padding: 15px;
}

.modal-body div {
    padding: 15px;
}

.modal-body li {
    padding: 10px;
}

/* Modal Footer */
.modal-footer {
    padding: 15px 15px;
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    border: 1px solid #888;
    width: 30%; /* Could be more or less, depending on screen size */
}

.modal-header {
    background-color: #00b1e0 ;
    color: white;
    height: 50px;
    padding: 15px;
}

.modal-header .btn-close {
    float: right;
    box-shadow: none;
    text-shadow: none;
    border: none;
    background-image: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    color: white;
}

.modal-header .btn-close:focus,
.modal-header .btn-close:active {
    outline: none;
}

.btn-footer, .btn-footer:focus {
    border: none;
    outline: none;
    box-shadow: none;
    text-shadow: none;
    border-radius: 6px;
    background-image: none;
    width: 80px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #4d586a;
    color: #fff;
    position: relative;
    cursor: pointer;
    font: 400 13px / 14px "Open Sans", sans-serif !important;
    float: right;
}

@media (max-width: 486px)  {
    .modal-content {
        width: 90%;
    }
}

@media (min-width: 486px) and (max-width: 768px)  {
    .modal-content {
        width: 60%; /* Could be more or less, depending on screen size */
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .modal-content {
        width: 50%;
    }
}