/* ACCOUNT LOGIN REGISTER STYLES */
#modalOverlay {
    height: 100%;
    width: 100%;
    position: fixed;
    /* Stay in place */
    z-index: 100;
    /* Sit on top */
    left: 0;
    top: 0;
    background-color: rgb(5, 5, 5);
    background-color: rgba(5, 5, 5, 0.9);
    background-repeat: repeat repeat !important;
    /* overflow-x: hidden; */
    display: none;
    overflow: visible;
}

.modax-x-cntnr {
    background-color: #252525 !important;
    width: 100%;
    height: 6vh;
    margin: 0;
    padding: 0;
    border-radius: 10px 10px 0 0;
}

#modal-X-logout {
    color: white;
    font-size: 1.4em;
    margin: 1em 2em;
    display: none;
    z-index: 110;
}

.modal-X {
    color: #fff;
    z-index: 1100;
    position: fixed;
    float: left;
    margin: 0;
    padding: 0.5em 1em;
    font-size: 1.3em;
}

.modal-X:hover {
    cursor: pointer;
}


.modal-X:hover {
    cursor: pointer;
}

.loginModal {

    background: #F1F1F1;
    position: fixed;
    width: 100%;
    top: 0.5em;
    left: 0;
    margin: 0 auto;
    /* bottom: 3em; */
    z-index: 200;
    border-radius: 10px;
}

@media all and (min-width: 768px) {

    .loginModal {
        width: 375px;
        /* Tablet */
        top: 1.5vh;
        left: 26%;
    }

}

@media all and (min-width: 1024px) {
    .loginModal {
        /* Desktop */
        width: 375px;
        left: 37%;
        top: 1.2em;
    }

    .formContent {
        padding: 0.1em;
    }

}

.acntActnFrm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 1rem;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 1em;
}

.loginModal img {
    width: 150px;
    margin: 1em;
}

.formWlcmContent {
    text-align: center;
}

.formContent {
    padding: 0.5em 1.5em;
}

#formTitle {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    color: #515151;
    padding-top: 1em;
}

#formDir {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #515151;
}

.loginBtn,
.acntRgBtn,
.acntLgnBtn {
    text-decoration: none;
    font-style: normal;
    font-weight: bold !important;
    font-size: 20px !important;
    line-height: 24px;
    background: #db2000;
    border-radius: 20px;
    width: 75%;
    color: #ffffff;
    padding: 0.2em 1em !important;
    margin: 1em auto !important;
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.loginBtn:hover {
    cursor: pointer;
    background: #333333;
    color: #fff;
}

#newUsrRegTitle {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    /* NPE - Dark Brown #db2000 */

    color: #000;
}

.accountFormInput {

    border: none;
    padding: 0.3em 1.5em 0.3em;
    margin: 0.3em 0;
    /* NPE - Light Grey E0E0E0 */

    background: #F2F2F2;
    border-radius: 10px;
    font-style: normal;
    font-weight: normal;
    /* font-size: 8px; */
    line-height: 21px;
    /* display: flex;
justify-content: center;
align-items: center;
align-content: center; */

    /* NPE - Dark Grey #4f4f4f */

    color: #4F4F4F;
}

#selectARole {
    font-size: 18px !important;
}


#selectARole {
    width: 50%;
    margin: 0.3em auto;
}

.npeLink {
    color: #db2000 !important;
    font-weight: 600;
    font-size: 1em;
}

.npeLink:hover {
    cursor: pointer;
}


/* Styling Checkbox Starts */
.checkbox-label {
    display: block;
    position: relative;
    margin: auto;
    cursor: pointer;
    font-size: 22px;
    line-height: 24px;
    height: 20px;
    width: 20px;
    clear: both;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label .checkbox-custom {
    position: absolute;
    top: -2.5px;
    left: -10px;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border-radius: 5px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    border: 2px solid #db2000;
}


.checkbox-label input:checked~.checkbox-custom {
    background-color: rgba(229, 229, 229, 0.7);
    ;
    border-radius: 5px;
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1;
    border: 2px solid #db2000;
}


.checkbox-label .checkbox-custom::after {
    position: absolute;
    content: "";
    left: 12px;
    top: 12px;
    height: 0px;
    width: 0px;
    border-radius: 5px;
    border: solid #db2000;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(0deg) scale(0);
    transform: rotate(0deg) scale(0);
    opacity: 1;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}


.checkbox-label input:checked~.checkbox-custom::after {
    -webkit-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    opacity: 1;
    left: 7px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #db2000;
    border-width: 0 2px 2px 0;
    background-color: transparent;
    border-radius: 0;
}


/* For Ripple Effect */
.checkbox-label .checkbox-custom::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 10px;
    width: 0px;
    height: 0px;
    border-radius: 5px;
    border: 2px solid #db2000;
    -webkit-transform: scale(0);
    transform: scale(0);
}


.logoutForm {
    background: #db2000;
    box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
}

.logoutFormUpper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.logoutTxtTitle {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;


    /* NPE - Off White #F2F2F2 */

    color: #F2F2F2;
}

.logoutTxt {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;

    color: #000000;
}

.checkbox-label input:checked~.checkbox-custom::before {
    left: -3px;
    top: -3px;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    -webkit-transform: scale(3);
    transform: scale(3);
    opacity: 0;
    z-index: 999;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}


#acntRgOLgn,
#acntRgster,
#acntLgn,
#trmsAndCndtnsCrd,
#frgtpswrd,
#acntRgLgn {
    display: none;
}


/* MY ACCOUNT STYLES */
.accountView {
    width: 375px;
    background: #F1F1F1;
    /* display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center; */
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    row-gap: 2em;
    ;
    padding: 1em 0;
}

.accountViewContainer {
    width: 375px;
    background: #F1F1F1;
    margin: 0 auto;


}

.accountView div {
    justify-self: center;
}

.accountView div:hover {
    cursor: pointer;
}

.npeLink {
    color: #333;
    font-weight: 600;
    font-size: 1em;
}

.npeLink:hover {
    cursor: pointer;
}

.touchTile {
    width: 140px;
    height: 150px;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.touchTileImg {
    width: 140px;
    height: 150px;
    border-radius: 20px 20px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* align-items: center;
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.5); */
}

#tile1 {
    background: #D95D30;
}

#tile2 {
    background: #db2000;
}

#tile3 {
    background: #4f4f4f;
}

#tile4 {
    background: #4F4F4F;
}

#tile5 {
    background: #333;
}

.touchTileText {
    font-family: 'Avenir';
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #F2F2F2;
    padding: 0;
    margin: 0.5em;
}

.touchTileTextOpt2 {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #F2F2F2;
    padding: 0;
    margin: 0.5em;
}


#logOutQ {
    width: 250px;
    background: #F2F2F2;
    box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
}

#logOutQ_upper {

    background: rgb(31, 31, 31);


    font-family: SF Pro Display;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-align: center;

    border-radius: 30px 30px 0px 0px;
    box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.05);
    /* NPE - Off White #F2F2F2 */

    color: #F2F2F2;
    padding: 1em 2em;
}

#logOutQ_lower {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;

    color: #db2000;

    display: flex;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding: 1em 2em;
}

#logOutQ_lower div:hover {
    cursor: pointer;
}


.acntViewTitle {
    font-family: 'Avenir';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    /* display: flex;
align-items: center; */
    text-align: center;

    color: #F2F2F2;
}

.filterSearch {
    width: 375px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filterSearch input {
    background: #F2F2F2;
    border-radius: 10px;
    width: 280px;
    height: 40px;


}

.filterSearch input::-webkit-input-placeholder {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    padding: 0.5em 2em;
    /* NPE - Mid Grey #828282 */
    color: #828282;
}

.filterSearch input::-moz-placeholder {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    padding: 0.5em 2em;

    /* NPE - Mid Grey #828282 */

    color: #333333;

}

.filterSearch input:-ms-input-placeholder {

    font-family: 'Avenir';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    padding: 0.5em 2em;

    /* NPE - Mid Grey #828282 */

    color: #333333;

}

.filterSearch input::placeholder {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    padding: 0.5em 2em;
    /* NPE - Mid Grey #828282 */
    color: #333333;

}

.parent {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr (3fr); /*(3fr)[2] removed the [2] for now*/
    grid-template-columns: 1fr repeat(2, 3fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.parentHead {
    background: #D95D30;
    width: 375px;
    height: 40px;
}

.parentHead div {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: right;
    color: #F2F2F2;
}

.parent div {
    padding: 0.5em 1em;
}

.parent div p {
    margin: 0;
    padding: 0;

}

.div1 {
    grid-area: 1 / 1 / 2 / 2;
}

.div2 {
    grid-area: 1 / 2 / 2 / 3;
}

.div3 {
    grid-area: 1 / 3 / 2 / 4;
}

.plusSVG {
    color: #4F4F4F;

}

.crName {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: bold;
    /* font-size: 14px; */
    /* line-height: 17px; */
    /* Blue 1 */
    color: #db2000;
}

.crBookType {
    font-family: 'Avenir', SF Pro Display, sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* NPE - Dark Grey #4f4f4f */
    color: #333333;
}


/* #acntRgOLgn {
    background-color: #252525;
} */
.lgnImgCntnr {
    background-color: #333333 !important;
    border-radius: 10px 10px 0 0;
}

.wlcmLoginORg {
    color: #000 !important;
}

.acntLoginqBtnCntnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
}

#newUsrRegTitleCntnr {
    margin: 0 auto;
    width: 100%;
}

#newUsrRegTitle {
    text-align: center;
}

#registerAcntForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#registerAcntFormWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

#trmsAndCondWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 1em 0 1em 0;
}

#trmsandCondCntnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#rgAcntSbmt {
    text-align: center;
}

.acntLoginForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#acntLoginFormUpDiv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 75%;
    margin: 0 auto;
}

#acntLoginFormLowDiv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 5em 0 1em 0;
    margin: 0 auto 1em !important;
}

#frgtpswrd h3 {
    padding-top: 1em;
}

#frgtPasswordInstruct {
    width: 80%;
    margin: 0 auto;
}

#frgtPasswordInstructinpEml {
    width: 80%;
}

#acntLoginFormDInp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 75%;
    margin: 0 auto 1em !important;
}

#lgnBtnCntnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 5em 0 1em 0;
}

.socialLoginCntnr {
    padding: 0.5em 0;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

p {
    margin-bottom: 0 !important;
}

.invalid {
    color: #db2000;
  }

  .valid {
    color: green;
    text-decoration: line-through;
  }

  #passError li {
    list-style-type: none;
  }
  
  
  #insrtCstmCrt a {
text-decoration: none !important;
}
.cartCountContainer {
position: relative;
left: 11px;
top: -35px
}
.cartIconLinkContainer {
/* display: flex; */
width: 50px;
}
#cartCount {
    background-color: #FFF;
    display: flex !important;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0.2em 0 0;
    border-radius: 50%;
    border: 1px solid #db2000;
    color: #000;
    
}