/* Login Page */

.LoginPage {
    overflow: hidden;
    width: 100%;
 }
 
 .login-container {
    position: fixed;
    overflow-y: auto;
    height: 100%;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(145deg, rgba(29, 205, 254, 1) 0%, rgba(120, 55, 218, 1) 100%);
    display: grid;
    align-items: center;
    padding: 15px 5px;
 }
 
 .InnerLoginPage {
    background: var(--clr-white);
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px -5px rgb(0 0 0 / 30%);
 }
 .reportList-info {
   max-height: 200px;
   overflow: auto;
   padding: 16px;
}
.reportList h6 {
   font-size: 13px;
   margin: 0;
}
.reportList-button {
   margin-top: 20px;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}
.reportList {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 5px;
   padding: 0 0 10px;
   border-bottom: 1px solid var(--clr-input-border);
   margin-bottom: 10px;
}
.reportList-box {
   height: 100%;
   box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
 .LogoSide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    background: url(../img/technology-background.png) center no-repeat;
    background-blend-mode: overlay;
    background-size: cover;
    text-align: center;
    padding: 30px;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 0 40px rgb(0 0 0 / 20%);
 }
 
 .LoginLogo img {
    width: 200px;
 }
 
 .LoginTagline h3 {
    font-size: 20px;
    color: var(--clr-dark);
    margin: 0;
 }
 
 .LoginForm {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 100px 50px;
    background: url(../img/step-1-bg.png) center no-repeat;
 }
 
 .LoginForm h3 {
    font-weight: bold;
    text-align: center;
 }
 
 .LoginForm form {
    width: 100%;
 }
 
 .forgetpass {
    text-align: right;
 }
 
 /* Login Page end */
 
 /* dashboard page  */
 
 .logoBrands {
    display: block;
    background: var(--clr-white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px -5px rgb(0 0 0 / 15%);
    height: 100%;
 }
 
 .logoBrands img {
    width: 150px;
    height: 70px;
    object-fit: contain;
    margin: 0 0 20px;
    transition: all 0.3s ease-in-out;
 }
 
 .logoBrands h6 {
    margin: 0;
    font-size: 14px;
    color: var(--clr-dark);
    transition: all 0.3s ease-in-out;
 }
 
 .logoBrands:hover {
    box-shadow: 0 10px 30px -10px rgb(0 0 0 / 30%);
 }
 
 .logoBrands:hover h6 {
    color: var(--clr-primary);
 }
 
 .logoBrands:hover img {
    filter: grayscale(1);
 }
 
 /* dashboard page  */
 
 /* add labels  */
 
 .spreadsheetToast {
    width: 100%;
    position: relative;
    background: var(--clr-primary-gredient);
    border: 0;
    color: #fff;
    margin-bottom: 15px;
 }
 
 .spreadsheetToast .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    background-size: 10px;
 }
 
 .spreadsheetToast h4 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
 }
 
 .spreadsheetToast p:last-child {
    margin: 0;
 }
 
 .file-box {
    display: inline-flex;
    vertical-align: middle;
 }
 
 .file-box i {
    color: var(--clr-primary);
    font-size: 22px;
    line-height: normal;
 }
 
 
 /* add labels end */
 
 /* edit tracking */
 
 .commentsList {
    padding: 15px;
    background: var(--bglight);
    border-radius: 5px;
    margin-top: 15px;
    border-bottom: 1px solid var(--clr-input-border);
 }
 
 .commentsList h6 {
    font-size: 14px;
 }
 
 .commentsList p {
    margin: 0 0 10px;
 }
 
 .commentsList span {
    font-size: 13px;
    color: #888;
 }
 
 /* edit tracking end */
 
 
 /* nfc manage  */
 
 .NFCPop-details {
    text-align: center;
 }
 
 .NFCPop-details i {
    font-size: 70px;
    color: var(--clr-primary);
    margin: 0 0 20px;
 }
 
 .NFCPop-details.errorBox i {
    color: var(--bs-danger);
 }
 
 .NFCPop-details h2 {
    font-size: 24px;
    margin: 0 0 20px;
    font-weight: bold;
    color: var(--clr-primary);
 }
 
 .NFCPop-details.errorBox h2 {
    color: var(--bs-danger);
 }
 
 .NFCPop-details .ThemeBtn {
    margin: 20px 0 0;
 }
 
 .NFCPop-details.errorBox .ThemeBtn {
    margin: 20px 0 0;
    background: var(--bs-danger);
    border-color: var(--bs-danger);
 }
 
 .NFCPop-details.errorBox .ThemeBtn:after,
 .NFCPop-details.errorBox .ThemeBtn:before {
    background: var(--bs-danger);
 }
 
 .NFCPop-details.errorBox .ThemeBtn:hover {
    color: var(--bs-danger);
    border: 1px solid var(--bs-danger);
    background: transparent;
 }
 
 /* nfc manage end */
 
 /* client page css  */
 
 
 /* social media  */
 
 .socialUpdate .form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
 }
 
 .socialUpdate .form-group label .fa-instagram {
    color: #E1306C;
 }
 
 .socialUpdate .form-group label .fa-facebook {
    color: #4267B2;
 }
 
 
 .socialUpdate .form-group label .fa-twitter {
    color: #1DA1F2;
 }
 
 .socialUpdate .form-group label .fa-globe {
    color: #0096D6;
 }
 
 /* social media end */
 
 .editLogo .form-group label {
    margin: 0 0 10px 0;
 }
 
 .editLogo-file {
    position: relative;
 }
 
 .editLogo-file:after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    pointer-events: none;
    opacity: 0.7;
 }
 
 .large-logo:after {
    content: '(500px width max)';
 }
 
 .small-logo:after {
    content: '(200px x 100px max)';
 }
 
 .labelsDetails {
    padding: 20px;
 }
 
 .labelRange p {
    margin: 0;
    line-height: 35px;
 }
 
 .labelRange {
    margin: 0;
 }
 
 .labelsDetails .form-control {
    min-height: 35px;
    line-height: normal;
 }
 
.swal2-popup.swal2-modal.swal2-icon-success.swal2-show {
    border-radius: 20px !important;
}
button.swal2-confirm.swal2-styled {
    background: var(--clr-primary) !important;
    border-radius: 40px !important;
}
.swal2-popup.swal2-modal.swal2-icon-error.swal2-show {
    border-radius: 20px !important;
}
.swal2-popup.swal2-modal.swal2-icon-warning.swal2-show {
    border-radius: 20px !important;
}
button.swal2-cancel.swal2-styled {
    border-radius: 40px !important;
}
 /* client page css end */

 span.error {
   color: red;
}

#edit-inventory {
   height: 400px;
}
.or-divider {
   display: flex;
   align-items: center;
   text-align: center;
   width: 50%;
   margin: 0 auto;
}
.or-divider::before,
.or-divider::after {
   content: '';
   flex: 1;
   border-bottom: 1px solid #ccc;
}
.or-divider:not(:empty)::before {
   margin-right: .25em;
}
.or-divider:not(:empty)::after {
   margin-left: .25em;
}
.logo2 {
   display: flex;
   justify-content: center;
}
.logo2 img {
   width: 26%;
}

.mainBody {
   width: calc(100% - 250px);
   margin-left: auto;
   margin-top: 110px;
   min-height: calc(100vh - 165px);
   transition: all 0.3s ease;
   background: var(--bglight);
   padding: 20px 35px 30px;
   height: 100vh;
   align-items: center;
   display: flex;
   justify-content: center;
}
.first-heading{
   font-size: 1.525225rem;
}
.authentication-container {
   width: 300px;
   margin: 0 auto;
}
.authentication-container label {
   text-align: start;
}
.authentication-container .fl-grid__row {
   margin-right: -15px;
   margin-left: -15px;
}
.authentication-container .fl-grid__col-4 {
   width: 33.33333333%;
}
.authentication-container .fl-grid__col-8 {
   width: 66.66666667%;
}
.authentication-container .fl-grid__col-12 {
   width: 100%;
}
.authentication-container [class*=fl-grid__col-] {
   position: relative;
   padding-right: 15px;
   padding-left: 15px;
   float: left;
}
.authentication-container .fc-field {
   padding-top: 15px;
}
.p-button {
   display: -webkit-inline-box;
   display: -webkit-inline-flex;
   display: -ms-inline-flexbox;
   display: inline-flex;
}
.p-button__button--primary:disabled {
   background-color: rgba(76, 140, 238, .55);
   border-color: rgba(36, 106, 216, .5);
   color: rgba(255, 255, 255, .8);
}
.p-button__button:disabled {
   cursor: not-allowed;
   text-shadow: none;
}
.p-button__button--primary {
   background-color: #4C8CEE;
   border-color: #246AD8;
}
.p-button__button {
   font-size: 1rem;
   font-family: mlb-primary, "Helvetica Neue", Helvetica, Arial, sans-serif;
   border-radius: 3px;
   border: 1px solid;
   color: #FFF;
   cursor: pointer;
   line-height: 1;
   padding: 1rem 2rem;
   text-shadow: 0 1px 0 #246AD8;
   -webkit-transition: .2s;
   transition: .2s;
}
button, input, optgroup, select, textarea {
   font-family: sans-serif;
   font-size: 100%;
   line-height: 1.15;
   margin: 0;
}
.authentication-container #certification-form label {
   display: block;
   font: 400 16px / 1.3 Helvetica, Arial, sans-serif;
   font-weight: 700;
}
.authentication-container #certification-form select, .authentication-container #certification-form option {
   font: 400 16px / 1.3 Helvetica, Arial, sans-serif;
   padding-left: 10px;
}
.authentication-container #certification-form select {
   color: #000000;
   margin-bottom: 5px;
   width: 100%;
   height: 44px;
   background-color: #FFFFFF;
   border: 1px solid #CCCCCC;
   border-radius: 3px;
   transition: .2s;
}
.authentication-container #certification-form select, .authentication-container #certification-form option {
   font: 400 16px / 1.3 Helvetica, Arial, sans-serif;
   padding-left: 10px;
}
.authentication-container #certification-form select:placeholder-shown, .authentication-container #certification-form option:placeholder-shown, .authentication-container #certification-form input:placeholder-shown {
   border: 1px solid #CCCCCC;
   color: #A9A9A9;
}
.authentication-container #certification-form input {
   display: block;
   color: #000000;
   font: 400 16px / 1.3 Helvetica, Arial, sans-serif;
   margin-bottom: 5px;
   width: 100%;
   background-color: #FFFFFF;
   border: 1px solid #CCCCCC;
   border-radius: 3px;
   padding: 10px 15px;
   transition: .2s;
}
#mlb-logo-img{
   width: 200px;
}