.no-scroll {
    overflow-y: hidden
}

.small-text {
    font-size: 0.75em;
}

.navy-blue {
    color:#005184;
}

.uppercase {
    text-transform:uppercase;
}

.thankyou-popup {
    padding:10rem 0;
}

.loginBtnContainer {
    display:flex;
}

.loginBtn a,.loginBtn a:visited {
    color:inherit;
}

.loginBtn a:hover{
    color:white;
}

.modal {
    display:none;
    width: 700px;
    max-width: 100%;
    max-height: 90%;

    position: fixed;

    z-index: 100;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: white;
    box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
    z-index: 9999999999;
    padding:1rem 2rem;
    overflow-y: auto;
}

#login {
    width: 325px;
    padding: 50px;
    transform: none;
}

.modal-window .closeForm {
    margin:0;
    right: 0;
    top: 0;
}

.watermark {
    color: #aaa;
}

.red {
    color:red;
}

.form-section {
    margin:0.5rem 0;
}

.form-section h3 {
    margin-bottom:1rem;
}

.online-activity-login {
    padding: 2rem 0;
}

.forms {
    display:flex;    
    flex-wrap: wrap;
    justify-content: space-between; 
}

.col-6 {
    width:50%;
}

.flex-form .instruction {
    display:block;
    font-weight: bold;
    margin-bottom:0.5rem;
}

.input-group label, .input-group select, .input-group input {
    display:block;
}

.flex-form input[type=submit] {
    display: block;
    cursor: pointer;
    background: #005184;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    color: white;
    font-weight: bold;
    border: none;
}

.flex-form input[type=submit]:hover {
    text-decoration: underline;
}

.input-group {
    margin:0.5rem 0;
    position:relative;
}

.input-group label {
    color:#747474;
}

.col-6 input[type=text], .col-6  input[type=email], .col-6  input[type=password], .col-6 select {
    /* width:80%; */
}

.flex-form input[type=text], .flex-form input[type=email], .flex-form input[type=password], .flex-form select {
    height: 2.2rem;
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    padding-left: 0.5rem;
    box-sizing: border-box;
    margin-bottom: 3px;
}

.flex-form input:read-only, .flex-form input:-moz-read-only  {
    border:none;
}

.flex-form select {
    
}

.flex-form option {
    color: black;
}

input[type=submit].btn-blue {
    background: #0f4176;
    color: white;
    border: none;
    padding: 0.5rem;
    cursor:pointer;
}

.flex-group {
    display:flex;    
    flex-wrap: wrap;
    justify-content: space-between;
}

.center-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.input-eight {
    width: 12%;
    margin-right: 0.5%;
}

.input-quarter {
    width: 24%;
    margin-right: 1%;
}

.input-half {
    width: 49.5%;
}

.input-full {
    width:100%;
}

.input-group input, .input-group select {
    width:100%;
}

.form-checkbox {
       margin: 4px 0;
}

.form-checkbox input {
    display:inline;
    width:auto;
    position: relative;
    top:2px;
    margin-right: 5px;
    cursor: pointer;
}

.form-checkbox label {
    display:inline;
    cursor: pointer;
}

.alert {
    text-align: center;
    border: 2px solid black;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    font-weight: bold;   
}

.alert-error  {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #8e3a41;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

label.validation-error {
    color:red;
}

input.validation-error, select.validation-error {
    border:1px solid red !important;
}

.deactivated a{
    color:gray;
    cursor:default;
}

.change-password-wrapper {
    align-self: flex-end; 
    text-align:center;
}


label.float-label 
{
  position: absolute;
  top: -13px;
  left: 0;
  font-size: 11px;
  color: #aaa;
  transition: all 0.1s linear;
  opacity: 0;
  font-weight:b old;
}
label.float-label.on 
{
  color: #4481C4;
}
label.float-label.show 
{
  top: -17px;
  opacity: 1;
}

#registerSubmit {
    display:inline-block;
}

.loading img {
    width: 35px;
    position: relative;
    top: 12px;
}

#news-network .video_thumbnail {
    width: 225px;
    height: 113px;
    border-radius:0;
    margin-right: 10px;
    margin-bottom: 0;
}

#news-network .block-halves {    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#news-network .news-boxes {
    width: 48%;
    margin-bottom: 2rem;
}

#news-network .article-boxes {
    display: flex;
    flex-wrap: wrap;      
    justify-content: space-between;
}

#news-network .article-box {
    width: 48%;
    margin-bottom: 2rem;
}

#news-network h3 {
    margin:2rem 0;
}

#news-network h4 {
    color:black;
    font-weight: normal;
    font-size:1.1em;
    margin:0;
}

#news-network .view-more {
    float:right;
    font-weight:bold;
    color: #00598E;
}

@media only screen and (max-width: 750px) {
    
    #login {
        width: 85%;
        left: 10px !important;
        transform: none;
        padding: 20px;
    }
    
    .closeForm {        
        margin-left: 304px;
        margin-top: -20px;
    }
    
    .registerModal, #alertModal {
        width:100%;
    }
    
    .pageContent {
        background:white;
        padding:1rem;
    }
    
    .flex-form {
        padding:0;
        margin:0;
    }
    
    label {
        padding:0;
    }
    
    .m-input-full {
        width:100%;
    }
    
    .m-input-half {
        width:49%;
    }
    
    .m-col-12 {
        width:100%;
    }
    
    .m-hidden {
        display:none;
    }
    
    .w1200, .content {
        width:100%;
        min-height: auto;
    }
    
    .change-password-wrapper {
        text-align:left;
    }
    
    #news-network {
        width:100%;
    }
    #news-network .news-boxes {
        width: 100%;    
        margin-bottom: 1rem;
    }
    
    #news-network .article-box {
        width: 100%;
    }
    
    #news-network .video_thumbnail {
        width: 345px;
        height: 173px;
    }
    
    #news-network h4 {
        color: #444444;
        font-weight: bold;
        font-size: 0.8em;
        margin: 0;
    }
    
    #news-network .view-more {
        font-size:1em;
    }
    
    

}