/***************** Fonts **********************/

@font-face {
  font-family: 'ManropeRegular';
  font-style: normal;
  font-weight: 400;
  src: url('./assets/fonts/manrope-regular.woff2') format('woff2'),
    url('./assets/fonts/manrope-regular.woff') format('woff');
}

@font-face {
  font-family: 'ManropeMedium';
  font-style: normal;
  font-weight: 500;
  src: url('./assets/fonts/manrope-medium.woff2') format('woff2'),
    url('./assets/fonts/manrope-medium.woff') format('woff');
}

@font-face {
  font-family: 'ManropeBold';
  font-style: normal;
  font-weight: 700;
  src: url('./assets/fonts/manrope-bold.woff2') format('woff2'),
    url('./assets/fonts/manrope-bold.woff') format('woff');
}

/***************** Fonts **********************/

*:focus {
  outline: none;
}

/***************** Variables **********************/

:root {
  --Azul: #2f74eb;
  --Slate: #58647a;
  --Steel: #7e8a9e;
  --Marine: #092b62;
  --MedBlue: #2a68d3;
  --DrawerWidth: 14.3vw;
  --PaleGrey: #d8e0e6;
  --PastelRed: #eb5c52;
  --InnocentGrey: #eee;
  --Tangerine: #ff9800;
  --bubblegum: #ff77b6;
  --grey-blue: #636f86;
  --DarkCoral: #d35249;
  --TealGreen: #289374;
  --GrapeFruit: #fa675c;
  --JuicyOrange: #ff9900;
  --DarkBlueGrey: #16243d;
  --SuccessGreen: #33b892;
  --Azul50: rgba(47, 116, 235, 0.5);
  --White80: rgba(255, 255, 255, 0.8);
  --NavyBlue48: rgba(0, 30, 82, 0.48);
  --MutedBlue5-NonTransparent: #f5f7fa;
  --MutedBlue5: rgba(59, 97, 163, 0.05);
  --MutedBlue8: rgba(59, 97, 163, 0.08);
  --MutedBlue10: rgba(59, 97, 163, 0.1);
  --MutedBlue25: rgba(59, 97, 163, 0.25);
  --DarkBlueGrey6: rgba(22, 36, 61, 0.06);
  --DarkBlueGrey01: rgba(22, 36, 61, 0.1);
  --DarkBlueGrey10: rgba(22, 36, 61, 0.1);
  --GrapeFruit01: rgba(250, 103, 92, 0.1);
  --OverLayColor: rgba(255, 255, 255, 0.4);
  --PeachyPink20: rgba(255, 138, 129, 0.2);
  --GreenishTeal: rgba(51, 184, 146, 0.24);
  --GreenishTeal01: rgba(51, 184, 146, 0.1);
}

/***************** Variables **********************/

/***************** signup process styles **********************/

.root-container {
  display: grid;
  height: 100%;
}

.signUpContainer {
  display: grid;
  grid-template-columns: 31.25% 1fr;
}

.sideBarRightContainer {
  height: 100vh;
  display: grid;
  grid-template-rows: 56px 1fr;
}

.su_formContainer {
  display: grid;
  grid-template-columns: 14.8% 1fr 14.8%;
}

.middleForm {
  display: flex;
  align-items: center;
  grid-column-start: 2;
  flex-direction: column;
  justify-content: center;
}

.d-flex {
  flex: 1;
  display: flex;
}

.textDecorNone {
  text-decoration: none;
}

.boldBlueText {
  font-size: 13px;
  color: var(--MedBlue);
  font-family: 'ManropeBold', sans-serif;
}

.signupFormMainContainer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.signupForm {
  min-width: 500px;
  margin-bottom: 40px;
}

.signupTermsText {
  font-size: 13px;
  line-height: 1.85;
  text-align: center;
  color: var(--Slate);
  font-family: 'ManropeMedium', sans-serif;
}

.bgAzul50 {
  background-color: var(--Azul50) !important;
}

.slate {
  color: var(--Slate);
}

.MedBlue {
  color: var(--MedBlue);
}

.steel {
  color: var(--Steel);
}

.dark-blue-grey {
  color: var(--DarkBlueGrey);
}

.peNone {
  pointer-events: none;
}

.column {
  flex-direction: column;
}

.customRow {
  display: flex;
  flex-wrap: wrap;
}

.blueSideBar {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-image: linear-gradient(332deg, var(--Azul), var(--MedBlue));
}

.ic_logo {
  width: 207px;
  height: 157px;
  object-fit: contain;
  margin-bottom: 25px;
}

.sideBarText {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  color: var(--White80);
  font-family: 'ManropeMedium', sans-serif;
}

.sideContainer {
  flex: 1;
}

.spUpperContainer {
  display: flex;
  align-items: center;
  padding: 12px 32px 0 0;
  justify-content: flex-end;
}

.alreadyAccText {
  font-size: 13px;
  line-height: 1.45;
  margin-right: 12px;
  color: var(--Slate);
  font-family: 'ManropeMedium', sans-serif;
}

.signInBtnContainer {
  width: auto;
  height: 40px;
  display: flex;
  border-radius: 24px;
  padding: 0 15px;
  border: solid 2px var(--Azul);
}

.smallBlueText {
  font-size: 13px;
  font-family: 'ManropeMedium', sans-serif;
}

.allCenter {
  align-items: center;
  justify-content: center;
}

.helloText {
  line-height: 2;
  font-size: 24px;
  text-align: center;
  margin-bottom: 12px;
  font-family: 'ManropeBold', sans-serif;
  color: var(--DarkBlueGrey);
}

.smallWelcomeText {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  font-family: 'ManropeMedium', sans-serif;
  color: var(--DarkBlueGrey);
}

.labelClass {
  font-size: 11px;
  font-family: 'ManropeMedium', sans-serif;
}

.inputClass {
  border: 0;
  width: 100%;
  font-size: 13px;
  font-family: 'ManropeMedium', sans-serif;
  padding: 0 0 9px 0;
}

.inputClass:focus {
  outline-width: 0;
  color: #ccc !important;
}

.inputClass .MuiIconButton-root {
  padding: 0 !important;
  color: var(--NavyBlue48);
}

.textUnderInput {
  font-size: 11px;
  color: var(--Steel);
  font-family: 'ManropeMedium', sans-serif;
}

.blueButton {
  width: 250px;
  height: 56px;
  display: flex;
  cursor: pointer;
  border-radius: 28px;
  margin: 40px auto 0 auto;
  background-color: var(--Azul);
}

.defaultBlueButton {
  border-radius: 20px !important;
  background-color: var(--Azul) !important;
  color: white !important;
  padding: 10px 35px !important;
  font-family: ManropeBold, sans-serif !important;
  text-transform: initial !important;
}

.defaultCancelButton {
  border-radius: 20px !important;
  color: #000000 !important;
  padding: 10px 35px !important;
  font-family: ManropeBold, sans-serif !important;
  text-transform: initial !important;
}

.blueButton:focus {
  outline-width: 0;
}

.bold13WhiteText {
  color: white;
  font-size: 13px;
  font-family: 'ManropeBold', sans-serif;
}

.centerMargin {
  margin: 0 auto;
}

.termsText {
  font-size: 15px;
  font-family: 'ManropeMedium', sans-serif;
}

.progressHeader {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  background-color: var(--MutedBlue5);
}

.progressContainer {
  top: 0;
  width: 100%;
  z-index: 999;
  height: 64px;
  display: flex;
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 1px 4px 0 rgba(59, 97, 163, 0.1), 0 1px 16px 0 var(--MutedBlue5);
  max-width: 100vw;
}

.bigHeading {
  line-height: 2;
  font-size: 24px;
  color: var(--DarkBlueGrey);
  font-family: 'ManropeBold', sans-serif;
}

.newPassHeading {
  line-height: 2;
  font-size: 24px;
  margin-top: 160px;
  margin-bottom: 40px;
  color: var(--DarkBlueGrey);
  font-family: 'ManropeBold', sans-serif;
}

.email_check {
  width: 343px;
  height: 231px;
  margin-top: 10px;
  object-fit: contain;
  margin-bottom: 113px;
}

.backButton {
  width: 230px;
  height: 56px;
  display: flex;
  cursor: pointer;
  align-items: center;
  border-radius: 28px;
  justify-content: center;
  border: solid 2px var(--GrapeFruit);
}

.blueButtonEmpty {
  width: 230px;
  height: 56px;
  display: flex;
  align-items: center;
  border-radius: 28px;
  justify-content: center;
  border: solid 2px var(--MedBlue);
}

.backText {
  font-size: 13px;
  color: var(--MedBlue);
  font-family: 'ManropeBold', sans-serif;
}

.checkBox {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.emailVerifiedContainer {
  width: 198px;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 24px;
  margin: 24px 0 64px 0;
  justify-content: center;
  background-color: rgba(59, 97, 163, 0.1);
}

.emailVerified {
  font-size: 15px;
  line-height: 1.6;
  max-width: 286px;
  margin-left: 12px;
  font-family: 'ManropeBold', sans-serif;
  color: var(--MedBlue);
}

.noBorder {
  border: 0 !important;
}

.noBorder .MuiInput-underline:before {
  border: 0 !important;
}

.noBorder .MuiInput-underline::after {
  border: 0 !important;
}

.noBorder .MuiInput-underline:hover:not(.Mui-disabled):before {
  border: 0 !important;
}

.noPadding {
  padding: 0 !important;
}

.noMargin {
  margin: 0 !important;
}

.w230px {
  width: 230px !important;
}

.ic_account_created {
  width: 276px;
  height: 230px;
  object-fit: contain;
}

.overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: var(--OverLayColor);
  z-index: 10;
}

.d-grid {
  display: grid;
}

.setPassSmallText {
  font-size: 15px;
  font-family: 'ManropeMedium', sans-serif;
  color: var(--DarkBlueGrey);
}

.setPassSmallText1 {
  font-size: 15px;
  margin-top: 16px;
  line-height: 1.6;
  font-family: 'ManropeMedium', sans-serif;
  color: var(--DarkBlueGrey);
}

.checkBoxContainer {
  display: flex;
  margin-top: 40px;
  flex-direction: row;
  align-items: center;
  max-width: 500px;
}

.checkBoxLeftContainer {
  flex-grow: 1;
  margin: 0 16px;
  justify-content: space-around;
}

.checkBoxRightContainer {
  flex-grow: 5;
  justify-content: space-around;
}

.alignCenter {
  align-items: center;
}

.setDetailsForm {
  width: 32%;
  height: auto;
  margin-top: 40px;
}

.detailsBtnContainer {
  margin-top: 106px;
  margin-bottom: 60px;
}

.phoneContainer {
  width: 100%;
  display: flex;
  margin-top: 24px;
  flex-direction: row;
}

.codeContainer {
  width: 101px;
  display: flex;
  height: inherit;
  padding-bottom: 8px;
  flex-direction: row;
  align-items: flex-end;
}

.flagImg {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.1);
}

.innerCodeContainer {
  height: 20px;
  display: flex;
}

.contextMenu {
  top: 45px;
  z-index: 3;
  right: 40px;
  width: 100px;
  padding: 8px;
  display: flex;
  position: fixed;
  background: white;
  transition: all 0.5s;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  box-shadow: -1px -2px 11px 9px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: -1px -2px 11px 9px rgba(0, 0, 0, 0.13);
  -webkit-box-shadow: -1px -2px 11px 9px rgba(0, 0, 0, 0.13);
}

.forgotText {
  font-size: 13px;
  cursor: pointer;
  margin-top: 24px;
  align-self: flex-end;
  color: var(--MedBlue);
  font-family: 'ManropeMedium', sans-serif;
}

.checkEmailContainer {
  display: grid;
  height: 100vh;
  grid-template-rows: 64px 1fr;
}

.checkEmailDownContainer {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.checkEmailBtnContainer {
  display: grid;
  grid-template-columns: 230px 40px 230px;
  cursor: pointer;
}

.resendEmailBtn {
  grid-column-start: 3;
}

.forgotPassContainer {
  display: flex;
  justify-content: flex-end;
}

.w85 {
  width: 85%;
}

.bCreated a {
  font-size: 15px;
  line-height: 1.6;
  color: var(--MedBlue);
  text-decoration: none;
  font-family: 'ManropeBold', sans-serif;
}

/***************** signup process styles **********************/

/***************** Loader styles **********************/

.loader {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 16px solid transparent;
  animation: spin 1.7s linear infinite;
  border-top: 16px solid var(--MedBlue);
  border-bottom: 16px solid var(--MedBlue);
  -webkit-animation: spin 1.7s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/***************** Loader styles **********************/

/******************* Business setup style ********************/

.btnWrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.btnWrap1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-left: 62px;
  padding-right: 36px;
}

.bgAzulback50 {
  background-color: var(--White80) !important;
}

.checkAvailabilityButton {
  width: 267px !important;
  height: 40px !important;
  border: solid 2px var(--MedBlue) !important;
  justify-content: center !important;
  cursor: pointer !important;
  background-color: var(--White80) !important;
  margin-top: 20px;
}

.cancellinkbutton {
  background-color: var(--White80) !important;
}

.cancelText {
  font-size: 13px;
  font-family: 'ManropeBold', sans-serif;
  color: #fa675c;
}

.nextButton {
  margin-left: 500px;
}

.twoRowGrid {
  display: grid;
  grid-template-rows: 64px 1fr;
}

.startFromRight .MuiInputBase-input {
  text-align: right;
}

.addBtn {
  cursor: pointer;
  color: var(--NavyBlue48);
}

.addLocText {
  font-size: 13px;
  cursor: pointer;
  line-height: 1.54;
  margin-left: 12px;
  color: var(--Slate);
  font-family: 'ManropeMedium', sans-serif;
}

/***************** Material input overriding classes for custom styling **********************/

.MuiInputBase-input {
  font-size: 15px !important;
  font-family: 'ManropeMedium', sans-serif !important;
  color: var(--DarkBlueGrey) !important;
}

.MuiInputBase-input::placeholder {
  font-size: 15px !important;
  font-family: 'ManropeMedium', sans-serif !important;
}

.Mui-focused {
  color: var(--Azul) !important;
}

.MuiInput-underline:after {
  border-bottom: 2px solid var(--Azul) !important;
}

.MuiInput-underline:before {
  border-bottom: 2px solid var(--PaleGrey) !important;
}

.MuiInput-underline:hover:not(.Mui-disabled):before {
  border-bottom: 2px solid var(--PaleGrey) !important;
}

.MuiFormHelperText-root.Mui-error {
  font-size: 0.8125rem !important;
  font-family: 'ManropeMedium', sans-serif !important;
  color: var(--GrapeFruit) !important;
}

.MuiInputLabel-root {
  font-family: 'ManropeMedium', sans-serif !important;
}

/***************** Material input overriding classes for custom styling **********************/

/***************** Animated Header Styling **********************/

.blueProgress {
  display: flex;
  height: inherit;
  padding-left: 18px;
  align-items: center;
  animation: move 1s linear;
  background-color: var(--Azul);
}

@keyframes move {
  0% {
    width: 0;
  }
}

/***************** Animated Header Styling **********************/

/***************** Main Screen Header Styling **********************/

.headerContainer {
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.borderRight {
  position: relative;
}

.borderRight:after {
  right: 0;
  top: 50%;
  width: 1px;
  content: '';
  height: 40px;
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--DarkBlueGrey01);
}

.businessProfileIconLeft img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.businessName,
.businessNameClose {
  display: flex;
  cursor: pointer;
  align-items: center;
}

.businessName .popupMenu {
  display: none;
}

.businessNameClose .popupMenu {
  top: 50px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(59, 97, 163, 0.1), 0 1px 2px 0 var(--MutedBlue5);
}

.businessName .downArrow,
.businessNameClose .downArrow {
  width: 20px;
  height: 20px;
  margin-left: 38px;
  color: var(--Steel);
}

.rightBorderLM {
  width: 1px;
  opacity: 0.3;
  height: 40px;
  margin-left: 22px;
  background-color: var(--Steel);
}

.headerMenu {
  height: 100%;
  display: flex;
  margin-left: 48px;
  align-items: flex-end;
}

.headerMenu header,
.headerMenu .MuiTabs-root,
.headerMenu .MuiTabs-flexContainer {
  height: 100%;
}

.headerMenu .MuiPaper-elevation4 {
  box-shadow: none;
  background-color: transparent;
}

.headerMenu .MuiTabs-indicator {
  height: 3px;
  border-radius: 1.5px;
  background-color: var(--Azul);
}

.headerMenu .MuiTab-root {
  padding: 0;
  font-size: 14px;
  min-width: auto;
  font-weight: 500;
  line-height: 1.63;
  margin-right: 16px;
  margin-left: 16px;
  text-transform: none;
  font-family: 'ManropeMedium', sans-serif;
  color: var(--Slate);
  opacity: 1;
}

.headerMenu .Mui-selected {
  color: var(--Azul);
  opacity: 1;
}

.headerMenu .MuiTab-root:hover {
  color: var(--MedBlue);
  opacity: 1;
}

.tabsRightMenuContainer {
  width: 79%;
  display: flex;
  height: inherit;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

#progressMenu {
  display: flex;
  height: inherit;
  margin-right: 32px;
  flex-direction: row;
  align-items: center;
}

.imgContainer {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 1px var(--MutedBlue5);
}

.menuName {
  font-size: 14px;
  line-height: 1.4;
  margin-left: 12px;
  margin-right: 19px;
  color: var(--Steel);
  font-family: 'ManropeMedium', sans-serif;
}

.userMenuDownArrow {
  width: 20px;
  height: 20px;
  color: var(--Steel);
}

/***************** Main Screen Header Styling **********************/

/***************** Styling for dashboard and inner screens **********************/

.dataLoader {
  width: 100vw;
  display: flex;
  height: 100vh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.dashboardContainer {
  display: grid;
  grid-template-rows: 64px 1fr;
}

.tabFillerContainer {
  width: 100vw;
  display: flex;
  height: 92.4vh;
  align-items: center;
  justify-content: center;
}

.tabFillerContainer span {
  font-size: 22px;
  font-family: 'ManropeBold', sans-serif;
}

.customMaterialHelperTextStyle {
  margin: 0;
  margin-top: 8px;
  min-height: 1em;
  text-align: left;
  font-weight: 400;
  line-height: 1em;
  font-size: 0.75rem;
  letter-spacing: 0.03333em;
  color: rgba(0, 0, 0, 0.54);
  font-family: 'ManropeMedium', 'Roboto', 'Helvetica', 'Arial', sans-serif;
}

/***************** Styling for dashboard and inner screens **********************/

/***************** Styling for root slider **********************/

.d-none {
  display: none;
}

.rootShiftSideBar {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  bottom: 0;
}

.rootShiftSideBar .toggleBtnShit.showShiftHideBtn {
  float: right;
  margin-top: 185px;
  margin-right: 209px;
  display: block;
}

.rootShiftSideBar .toggleBtnShiftShow {
  position: fixed !important;
  z-index: 99;
  /* margin-left: 10px !important; */
  background: #fff !important;
  /* margin-top: 60px !important; */
  width: 80px;
  height: 40px;
  border-radius: 20px !important;
  box-shadow: 0 1px 4px 0 rgba(59, 97, 163, 0.2);
  display: none;
}

.rootShiftSideBar .toggleBtnShiftShow.showShiftOpenBtn {
  display: block;
}

.rootShiftSideBar .toggleBtnShift.showShiftOpenBtn {
  display: none;
}

.rootShiftSideBar .MuiDrawer-paper {
  background-color: white;
  box-shadow: -1px 0 2px 0 rgba(59, 97, 163, 0.05), -2px 0 16px 0 rgba(59, 97, 163, 0.1);
}

/* Commented because this override was creating problem in storybook button used in footer component */
/* .rootShiftSideBar .MuiButton-text {
  width: 32px;
  height: 64px;
  border-radius: 20px;
  box-shadow: 0 1px 4px 0 rgba(59, 97, 163, 0.2);
  background-color: #ffffff;
  padding: 0;
  min-width: 0;
  position: fixed;
  top: 50%;
  z-index: 9;
  margin-left: -25px;
  transform: translateY(-50%);
} */

.shiftBarButtonWrap {
  position: relative;
  padding-bottom: 70px;
  height: 100%;
}

.medium-blue {
  color: var(--MedBlue);
}

/***************** Styling for root slider **********************/

.businessImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.templateSearchScroll {
  max-height: 500px;
  overflow-y: auto;
}

.templateAction {
  cursor: pointer;
}

.termsAndConText {
  font-size: 15px;
  line-height: 1.6;
  font-family: 'ManropeMedium', sans-serif;
  color: var(--DarkBlueGrey);
}

.blueTermsAndConText {
  font-size: 15px;
  color: var(--MedBlue);
  font-family: 'ManropeMedium', sans-serif;
}

.checkBoxContainer .MuiCheckbox-colorPrimary.Mui-checked {
  color: #2f74eb;
}

.MuiButtonBase-root.iconButtonWithBackground {
  background-color: rgba(59, 97, 163, 0.05);
  height: 40px;
  width: 40px;
  padding: 0;
}

.MuiButtonBase-root.iconButtonNoBackground {
  height: 40px;
  width: 40px;
  padding: 0;
}

.avatarContainer {
  width: 32px;
  height: 32px;
  border-radius: 16px;
}
.namePhoneContainer {
  display: flex;
}
.infoContainer {
  margin-left: 12px;
  line-height: 32px;
}

.menuItem {
  font-size: 14px;
  min-height: 40px;
  line-height: 1.33;
  color: var(--Slate);
  font-family: 'ManropeMedium', sans-serif;
}

.customHelperText {
  margin: 0;
  color: var(--Steel);
  min-height: 1em;
  text-align: left;
  font-weight: 400;
  line-height: 1em;
  font-size: 0.75rem;
  font-family: 'ManropeMedium', sans-serif;
}

.clickableRow {
  pointer-events: all;
}
/***************** Styling for root slider **********************/

.reportTypeSelector:after {
  border-bottom: 0 !important;
}
.reportTypeSelector:before {
  border-bottom: 0 !important;
}
.reportTypeSelector:hover:not(.Mui-disabled):before {
  border-bottom: 0 !important;
}

#typeSelector {
  font-size: 20px !important;
  line-height: 1.6 !important;
  margin-left: 5px !important;
  color: var(--MedBlue) !important;
  font-family: 'ManropeBold', sans-serif !important;
}

/***************** Styling for root slider **********************/

/***************** Styling for Use App Page **********************/

/***************** Styling for Use App Page **********************/

/***************** Styling for Progress pulse animation **********************/

.pulseWorkBtn {
  width: 80px;
  border: 0;
  height: 80px;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  border-radius: 50%;
  font-family: 'ManropeBold', sans-serif;
  background-color: var(--Azul);
  transform: scale(1);
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(47, 116, 235, 1);
}

.workBtn {
  width: 80px;
  border: 0;
  height: 80px;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  border-radius: 50%;
  font-family: 'ManropeBold', sans-serif;
  background-color: var(--Azul);
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(47, 116, 235, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(47, 116, 235, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(47, 116, 235, 0);
  }
}

.pulseBreakBtn {
  width: 80px;
  border: 0;
  height: 80px;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  border-radius: 50%;
  font-family: 'ManropeBold', sans-serif;
  background-color: rgb(255, 152, 0);

  transform: scale(1);
  animation: pulseYellow 2s infinite;
  box-shadow: 0 0 0 0 rgba(255, 152, 0, 1);
}

.breakBtn {
  width: 80px;
  border: 0;
  height: 80px;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  border-radius: 50%;
  font-family: 'ManropeBold', sans-serif;
  background-color: rgb(255, 152, 0);
}

@keyframes pulseYellow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 152, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
  }
}

.smallPulseBtn {
  width: 48px;
  height: 48px;
  display: flex;
  font-size: 12px;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  cursor: default;
}

@keyframes animatedGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/***************** Styling for Progress pulse animation **********************/

.deleteBtnTimeEntry {
  right: 0;
  width: auto;
  height: 48px;
  display: flex;
  position: fixed;
  cursor: pointer;
  min-width: 144px;
  margin: 0 30px 0 0;
  border-radius: 48px;
  align-items: center;
  border: 0 !important;
  justify-content: center;
  background-color: var(--MedBlue);
}

.deleteBtnBreakEntry {
  right: 0;
  width: auto;
  height: 48px;
  display: flex;
  position: fixed;
  cursor: pointer;
  min-width: 144px;
  margin: 0 30px 0 0;
  border-radius: 48px;
  align-items: center;
  border: 0 !important;
  justify-content: center;
  background-color: #e58800;
}

.menuContainer {
  height: 100%;
  cursor: pointer;
  margin-left: 32px;
}

.menuInnterContainer {
  height: 97%;
  display: flex;
  align-items: center;
}

.settingSelected {
  height: 3px;
  border-radius: 1.5px;
  background-color: var(--Azul);
}

.openStatusStripes {
  background: repeating-linear-gradient(
    -50deg,
    var(--MutedBlue25),
    var(--MutedBlue25) 20px,
    transparent 20px,
    transparent 36px
  );
}

.seatsCounter {
  height: 6px;
  border-radius: 4px;
  border: solid 2px #f5f7fa;
  animation: moveseats 5s linear;
  background-color: var(--SuccessGreen);
}

@keyframes moveseats {
  0% {
    width: 0;
  }
}

@media screen and (max-width: 980px) {
  .headerMenu {
    margin-left: 5px;
  }
  #progressMenu {
    margin-right: 5px;
  }
  .menuContainer {
    margin-left: 5px;
  }
  .menuName {
    margin-left: 10px;
    margin-right: 0px;
  }
  .businessProfileIconLeft {
    margin-left: 10px;
    margin-right: 10px;
  }
  .headerMenu .MuiTab-root {
    margin-right: 5px;
    margin-left: 5px;
    font-size: 13px;
  }
}
