@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Univers';
    src: url('../fonts/UniversForFiserv55.ttf') format('truetype');
}

body {
    font-family: 'Open Sans', 'Univers';
    margin: 0;
    padding: 0;
    background-color: #e2e2e2;
}

/* body::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
} */

.container {
    max-width: 952px;
    min-width: 900px;
    margin: 12px auto;
    padding-bottom: 10px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-height: 100px;
}

.container-print {
    max-width: 802px;
    min-height: 300px;
    margin: 12px auto;
    padding: 0;
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
    max-height: 125px;
    padding: 10px 20px;
    max-width: 952px;
    min-width: 900px;
    margin: 2px auto;
    background-color: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header .header-right {
    display: flex;
    flex: 1;
    flex-direction: column;
    text-align: end;
}

.header .header-right p {
    font-size: 24px;
    color: #7c7c7c;
    font-weight: bold;
    margin-right: 10px;
}

.header .logo img {
    height: 60px;
    box-sizing: border-box;
    /*min-height:70px;*/
    padding: 0;
    padding-top: 20px;
    /*border-right: 1px solid rgb(108, 108, 108);*/
    margin-right: -20px;
    min-width: 150px;
    object-fit: fill;
    object-position: center;
}

.header .title img {
    margin: 0;
    text-align: center;
}

.header .language {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: flex-end;
    padding-top: 15px;
}

.header .language select {
    padding: 2px;
    max-height: 20px;
    font-size: 0.8rem;
    margin-right: 10px;
    border: 1px solid black;
}

.main-content {
    display: flex;
    min-height: 420px;
    background-color: #fff;
    background-image: url("../images/login-bg.png");
    background-repeat: no-repeat;
    background-size: 880px 450px;
    background-position-x: 10px;
    margin-top: 15px;
}

.left-panel {
    flex: 1 0 428px;
    /* flex-grow, flex-shrink, flex-basis */
    max-width: 428px;
    padding: 20px;
}

.message-center .mHead {
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 15px;
    margin-left: 20px;
    font-size: 1.1rem;
}

.message-center .welcome-text {
    color: #da0000;
    margin-Top: 50px;
    margin-left: 15px;
}

.message-center .welcome-content {
    margin-left: 15px;
    font-size: .8rem;
    margin-right: 25px;
    text-align: justify;
}

.right-panel {
    flex: 1 0 428px;
    /* flex-grow, flex-shrink, flex-basis */
    max-width: 428px;
    padding-left: 10px;
}

.right-panel .login {
    color: #b50600;
    margin-top: 55px;
    margin-left: -0px;
    font-size: 33px;
}

.right-panel .first-visit {
    font-family: 'Open Sans', 'Univers';
    font-size: 13px;
    padding-top: 5px;
}

.right-panel .second-visit {
    font-family: 'Open Sans', 'Univers';
    font-size: 13px;
    padding-top: 5px;
}

.right-panel .sign-in {
    font-family: 'Open Sans', 'Univers';
    margin-top: -5px;
    font-size: 13px;
    display: flex;
    flex-direction: row;
}

.right-panel form {
    margin-top: 5px;
}

.right-panel label {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: #333;
    margin-left: 2px;
    font-family: 'Open Sans', 'Univers';
    color: black;
}

.right-panel input {
    width: 45%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: .8rem;
    margin-top: 2px;
    border: 1px solid #393939;
    padding: 4px 7px;
}

.right-panel button {
    font-family: 'Open Sans', 'Univers';
    margin-top: 20px;
    margin-right: 7px;
    padding: 5px 25px;
    background-color: #b50600;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: .8rem;
    cursor: pointer;
}

.right-panel button:hover {
    background-color: #a70600;
}

.login-links {
    margin-top: 20px;
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: flex-start;
}

.login-links a {
    color: #b50600;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Open Sans', 'Univers';
    padding-right: 10px;
    margin-right: 10px;
}


.footer footer p {
    max-width: 952px;
    font-size: 11.5px;
    color: #000000;
    margin: auto auto;
    padding-bottom: 20px;
    line-height: 13px;
    white-space: nowrap;
    font-weight: 500 !important;

}

.footer footer p a {
    color: black;
    font-size: 11.5px;
    text-decoration: underline;
    display: inline-block;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

.error-message {
    color: #b50600;
    font-size: 13px;
}

#errorMsg {
    color: #b50600;
    font-size: 12.5px;
    margin-top: 15px;
}

#createUserValidation-message {
    color: #b50600;
    font-size: 12.5px;
    margin-top: 15px;
    display: none;
}

.walmart-link {
    color: #b50600;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 13px;
}

.walmart-parag-div {
    max-width: 330px;
    text-align: justify;
    line-height: 1.6;
}

.walmart-parag {
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: -5px;
}

.warning {
    background-color: #FFFF99;
    color: #000000;
    font-size: 12px;
    margin-top: 10px;
    margin-left: 2px;
    font-family: 'Open Sans', 'Univers';
    max-width: 400px;
    text-align: justify;
    border: 1.5px solid #FF0000;
    padding: 2px 10px;
    max-height: 40px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: white;
}

.resend-code {
    color: red;
    margin-top: 15px;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
}

#validation-message {
    color: red;
    margin-top: 15px;
    font-size: 13px;
    text-decoration: none;
    display: none;
}

#regError-message {
    color: red;
    margin-top: 15px;
    font-size: 13px;
}

.eye-icon {
    position: absolute;
    left: 43%;
    top: 55%;
    cursor: pointer;
    width: 15px;
    height: 15px;
    display: none;
}

.password-container {
    position: relative;
    width: 425px;
}

.radio-option {
    display: flex;
    flex-direction: row;
    justify-self: flex-start;
    margin-top: 15px;
}

.radio-option label {
    margin-left: 5px;
    margin-top: 3px;
    font-size: 13px;
}

.navbar {
    display: flex;
    background-color: #A3A3A3;
    font-family: 'Open Sans', 'Univers';
    font-size: 12px;
    min-height: 28px;
}

.navbar a {
    text-decoration: none;
    color: #000;
    padding: 7px 10px;
    margin: 0 0px;
    color: white;
    border-left: 1.5px solid white;
    transition: #ffffff .3s;
    cursor: pointer;
}

.navbar a.active {
    background-color: #ffffff;
    color: #000000;
    border-top: 1.5px solid gray;
    cursor: pointer;
}

.navbar a:hover {
    background-color: #ffffff;
    color: #000000;
    border-top: 1.5px solid gray;
    text-decoration: none;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.eye-icon-empId {
    position: absolute;
    left: 43%;
    top: 45%;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.password-container {
    position: relative;
    width: 400px;
}

input[type="password"] {

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.bold_message {
    font-weight: bold;
}

.no-underline {
    text-decoration: none;
}

.logoff-span {
    color: #c50700;
    font-size: 12.5px;
    padding-top: 10px;
    padding-left: 10px;
}

.hide {
    display: none;
}

.login-links-margin {
    margin-top: 0 !important;
}

.signOutText {
    color: #c50700;
    font-size: 12.5px;
    padding-top: 10px;
}

.signOutLink {
    text-decoration: none;
}