.leagues-modal {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 450px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 3;
    background: #fff;
    height: 480px;
    padding: 30px 35px;
    box-sizing: border-box;
    overflow-y: scroll;
}

.leagues-modal-header {
    color: #E37200;
    text-align: center;
    font-size: 25px;
    margin-bottom: 15px;
}

.close-modal {
    position: absolute;
    right: 4px;
    top: 6px;
    font-size: 30px;
    color: #E37200;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 3;
}

.input-wrapper {
    margin-bottom: 15px;
}

.input-label {
    text-transform: uppercase;
    font-size: 15px;
}

.input-wrapper input {
    border: 1px solid rgba(112, 112, 112, 0.46);
    box-sizing: border-box;
    height: 35px;
    width: 100%;
    font-family: industry, sans-serif;
    font-size: 16px;
}

.input-wrapper textarea {
    border: 1px solid rgba(112, 112, 112, 0.46);
    box-sizing: border-box;
    height: 100px;
    width: 100%;
    font-family: industry, sans-serif;
    font-size: 16px;
}

.contact-submit {
    width: 135px;
    float: right;
}

.contact-footer-image {
    margin-top: 75px;
}

.contact-loading-gif {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 11px;
    width: 30px;
    margin: auto;
}

@media (min-width: 768px) {
    .leagues-modal {
        max-width: 550px;
    }
}