@charset "utf-8";
/* CSS Document */
.accountAttentionContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.verifyContainer .cardDetailsContainer{
    height: calc(100% - 30px);
    align-items: flex-end;
}
.unverifiedEmailsContainer, 
.verifiedEmailsContainer,
.addEmailsContainer{
    border: 2px solid transparent;
}
.unverifiedEmailsContainer:hover, .unverifiedEmailsContainer:focus-within,
.verifiedEmailsContainer:hover, .verifiedEmailsContainer:focus-within,
.addEmailsContainer:hover, .addEmailsContainer:focus-within{ 
    border: 2px solid #056c9b;
}
.attentionNeeded{
    display: none;
    width: 100%;
    color: #305a30;
    margin-bottom: 5%;
    text-align: center;
    font-weight: bold;
}
#accountPaid{
    display: none;
    width: 100%;
    color: #305a30;
    margin-bottom: 5%;
    text-align: center;
    font-weight: bold;
}
#accountUnpaid{
    display: block;
    width: 100%;
    color: #305a30;
    margin-bottom: 5%;
    text-align: center;
    font-weight: bold;
}
.verifyContainer .primaryButton,
.paymentContainer .primaryButton{
    width: 100%;
}
.pageToolButtonContainer{
    float: left;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.pageToolButtonContainer .secondaryButtonGreen{
    width: 100%;
    margin-bottom: 13px;
}
.memberSettingsContainer .cardDetailsCotnainer{
    justify-content: flex-start;
    align-items: flex-start;
}
#logOutMinutesContainerDiv, #logOutSecondsContainerDiv{
    display: none;
}
.logoutSection{
    width: 48%;
}
.personalInfo .cardDetailsContainer{
    align-items: flex-start;
}
.saveChangesButtonContainer{
    float: right;
    width: 30%;
    height: auto;
    position: -webkit-sticky;
    position: sticky;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}
.saveChangesButtonContainer .ctaButton{
    width: 100%;
}

/* responsive screen code */
@media only screen and (min-width: 1500px) {
/* Extra large devices (large laptops and desktops, 1500px and up) */	
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
/* Extra large devices (large laptops and desktops, 1200px and up) */	
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
/* Large devices (laptops/desktops, 992px and up) */	
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
/* Medium devices (landscape tablets, 768px and up) */
    .pageToolButtonContainer .secondaryButtonGreen{
        width: 100%;
        margin-bottom: 13px;
    }
    .saveChangesButtonContainer{
        width: 30%;
    }
}
@media only screen and (min-width: 601px) and (max-width: 767px) {
/* Small devices (portrait tablets and large phones, 600px and up) */
    .pageToolButtonContainer .secondaryButtonGreen{
        width: 49%;
    }
    .verifyContainer, .paymentContainer{
        width: 49%;
    }
    .verifyContainer .ctaButton,
    .paymentContainer .primaryButton{
        width: 100%;
    }
    .containerWidth33.logoutSection{
        width: 50%;
    }
    .personalInfo .cardDetailsContainer{
        justify-content: flex-start;
    }
    .personalInfo .cardDetailsContainer .containerWidth33:last-child{
        width: 100%;
    }
    .personalInfo .cardDetailsContainer .containerWidth33:last-child .inputContainer{
        width: 48%;
        margin-left: 52%;
        margin-right: 0;
    }
    .personalInfo .containerWidth33{
        width: 50%;
    }
    .saveChangesButtonContainer{
        width: 30%;
    }
}
@media only screen and (max-width: 600px) {
/* Extra small devices (phones, 600px and down) */
    .verifyContainer .ctaButton,
    .paymentContainer .primaryButton{
        width: 80%;
    }
    .pageToolButtonContainer .secondaryButtonGreen{
        width: 49%;
    }
    .containerWidth33.logoutSection{
        width: 100%;
    }
    .personalInfo .containerWidth33{
        width: 100%;
    }
    .saveChangesButtonContainer{
        width: 50%;
    }
}
@media only screen and (max-width: 400px) {
/* Super Extra small devices (phones, 400px and down) */
    .pageToolButtonContainer .secondaryButtonGreen{
        width: 100%;
    }
}