.modal {
    bottom: 0;
    display: none;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1050;
}

.modal.fade, .modal-backdrop.fade {
    opacity: 0;
    transition: opacity .3s;
}

.modal.in {
    opacity: 1;
}

.modal-open {
    overflow: hidden;
}

.modal-dialog {
    margin: 100px auto;
    padding: 0 10px;
}

.modal-md .modal-dialog {
    width: 550px;
}

.modal-content {
    background: #25282e;
    box-shadow: 0 0 20px 10px #33497a;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.modal-heading {
    color: #71b829;
    text-transform: uppercase;
}

.modal-body {
    padding: 30px 60px 20px;
}

.modal-body.banner {
    padding: 0 0 0 0;
}

.modal-footer {
    background: #19243d;
    padding: 20px 25px 15px;
}

.modal-close {
    color: #535c67;
    cursor: pointer;
    background: none;
    border: 0;
    font-size: 35px;
    line-height: 25px;
    padding: 0;
    position: absolute;
    top: 2px;
    right: 5px;
    z-index: 100;
}

.modal-close:focus {
    outline: 0;
}

.modal-header {
    padding-top: 23px;
}

.modal-header .modal-title {
    line-height: 1.1;
    margin: 5px 20px;
    text-align: center;
}

.modal-backdrop {
    background: #141518;
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1040;
}

.modal-backdrop.fade {
    display: block;
}

.modal-backdrop.in {
    opacity: .8;
}

.modal-btn {
    height: 70px;
    line-height: 69px;
    width: 100%;
    padding: 0;
}

.modal-link-btn {
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-link-btn-lowercase {
    text-transform: lowercase;
}

.modal .form-control {
    background-color: #191c21;
    color: #71b829;
}

.modal .form-control::placeholder {
    color: #58606d;
}

@media screen and (min-width: 495px) {
    .sm-modal .modal-dialog {
        right: auto;
        width: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        display: table;
    }

    .sm-modal .register-form {
        padding-left: 55px;
        padding-right: 55px;
        padding-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width: 979px) {
    .lg-modal .modal-dialog {
        padding-left: 0;
        padding-right: 0;
        width: 630px;
    }
}

@media (min-width: 980px) and (max-width: 1099px) {
    .lg-modal .modal-dialog {
        width: 800px;
    }
}

@media (min-width: 1100px) {
    .lg-modal .modal-dialog {
        width: 990px;
    }
}
