.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.main {
  margin-left: 20%;
}

.mcp-padding {
  margin-top: 40px;
  padding: 0 2em 2em;
}

.section-padding {
  padding: 2em;
}

.acc-filter {
  background-color: #fff;
  z-index: 22;
}

/* Center elements */

.position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reg-modal-bg {
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  padding: 45px;
  background-color: #fff;
  transform: translateY(70%) !important;
}

.reg-modal-bg h1 {
  color: #474747;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}
.reg-modal-bg p {
  color: rgba(71, 71, 71, 0.9);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}
.reg-modal-bg p span {
  color: #5f4b85;
}

@media (min-width: 1204px) {
  .reg-modal-bg {
    width: 500px;
  }
}

/* MARGINS */
.mt-12 {
  margin-top: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}

/* COMMON CSS */

/* COMPONENT */

.price_preview_item {
  margin: 16px 0;
}

.subs-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.subs-main-item {
  background-color: #5f4b851a;
  padding: 36px;
}

.sus-list ul li {
  display: block;
  padding: 10px 0;
  position: relative;
  padding-left: 36px;
}

.sus-list ul li::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("/play-icon.svg");
  background-repeat: no-repeat;
  background-size: 32px 32px;
  background-position: center;
  left: 0;
  top: 12px;
}

.choose-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
}
.choose-plan.active {
  background-color: rgba(95, 75, 133, 0.12);
}

.choose-plan-left {
  display: flex;
}

.choose-plan-left h3 {
  color: #5f4b85;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.choose-plan-right strong {
  color: #5f4b85;
  font-size: 20px;
  font-weight: 600;
}
.choose-plan-right span {
  color: rgba(95, 75, 133, 0.5);
  font-size: 12px;
  font-weight: 600;
}

/* TEXT */

.heading-md {
  color: #000;
  font-size: 27px;
  font-weight: 500;
}

.heading-30-upper {
  color: #5f4b85;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.heading-md-20 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
}
.text-card-price {
  color: #5f4b85;
  font-size: 26px;
  font-weight: 700;
  line-height: 26px;
}

.text-sm-p-18 {
  color: #000;
  font-size: 18px !important;
  font-weight: 500;
}

.text-sm-p-16 {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.text-md-p-16 {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.text-sm-light-14 {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 500;
}

/* LAYOUT */

.flex-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* custom checkbox */
.chk-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chk-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 1px solid #5f4b85;
}

.chk-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.chk-container input:checked ~ .checkmark {
  background-color: #5f4b85;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.chk-container input:checked ~ .checkmark:after {
  display: block;
}

.chk-container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 8px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* checkbox-end */
body {
  margin: 0;
  padding: 0;
}

:root {
  --primaryColor: #E5FFF9;
  --secondaryColor: #1F1F1F;
  --tertiaryColor: #004C54;
  --whiteColor: #FFFFFF;
  --greyColor: #575F6E;
  --lightGreyColor: #696C71;
  --darkInputTextColor: #D2D2D2;
  --borderColor: #D5DBE1;
  --redColor: #D40E07;
  --success: #259323 ;
}

body,
button,
input,
label,
span,
p,
a,
.MuiOutlinedInput-root,
.MuiTextField-root,
.MuiSelect-select,
.MuiMenuItem-root,
.MuiPaper-root {
  font-family: "Montserrat", sans-serif !important;
}

.flexCenter {
  justify-content: center;
  align-items: center;
  display: flex;
}

.loadingData,
.noDataText {
  margin: 16px;
}

.loadingData::after {
  content: "";
  animation: loading 0.5s infinite;
  display: inline-block;
}

@keyframes loading {
  0%, 100% {
    content: ".";
  }
  25% {
    content: "..";
  }
  50% {
    content: "...";
  }
  75% {
    content: "";
  }
}

.modalHead {
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--borderColor);
}

.modalHead .modalCloseIcon {
  cursor: pointer;
}

.modalHead .logoHead {
  gap: 10px;
}

.modalData {
  padding: 16px;
}

.modalActions {
  border-top: 1px solid var(--borderColor);
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.modalButtonSuccess {
  padding: 10px 25px;
  border: 1px solid var(--success);
  outline: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  background-color: var(--success);
  color: var(--whiteColor);
}

.modalButtonReject {
  border-color: var(--redColor);
  background-color: var(--redColor);
}

.modalButtonSecondary {
  border-color: var(--greyColor);
  background-color: transparent;
  color: var(--greyColor);
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(123, 123, 123, 0.368627451);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tertiaryColor);
}

.authMain {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100vh;
}

.login__left {
  background-color: var(--primaryColor);
}

.login__right {
  background-color: var(--secondaryColor);
  flex-direction: column;
  overflow-y: scroll;
  padding: 50px 0;
}

.login__right .authHead {
  font-size: 2rem;
  font-weight: 700;
  color: var(--whiteColor);
  margin-bottom: 0;
  margin-top: 50px;
}

.login__right .authForm {
  flex-direction: column;
  width: 80%;
  max-width: 450px;
}

.login__right .authForm .MuiTextField-root {
  width: 100%;
  margin-bottom: 10px;
}

.login__right .authForm .MuiInput-input {
  font-size: 1rem;
  color: var(--darkInputTextColor);
  border-bottom: 1px solid var(--darkInputTextColor);
}

.login__right .passwordInputDiv {
  position: relative;
}

.login__right .passwordInputDiv .eyeIcon {
  position: absolute;
  right: 10px;
  top: 5px;
  color: var(--greyColor);
  cursor: pointer;
}

.login__right .authInputHead {
  margin-bottom: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--whiteColor);
}

.login__right .rememberButtonDiv {
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}

.login__right .rememberButtonDiv .rememberInput {
  font-size: 0.75rem;
  color: var(--whiteColor);
}

.login__right .rememberButtonDiv .authButton {
  background-color: var(--primaryColor);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondaryColor);
  outline: none;
  border: none;
  cursor: pointer;
}

.login__right .rememberButtonDiv .registerButton {
  width: 100%;
}body {
  margin: 0;
  padding: 0;
}

:root {
  --primaryColor: #E5FFF9;
  --secondaryColor: #1F1F1F;
  --tertiaryColor: #004C54;
  --whiteColor: #FFFFFF;
  --greyColor: #575F6E;
  --lightGreyColor: #696C71;
  --darkInputTextColor: #D2D2D2;
  --borderColor: #D5DBE1;
  --redColor: #D40E07;
  --success: #259323 ;
}

body,
button,
input,
label,
span,
p,
a,
.MuiOutlinedInput-root,
.MuiTextField-root,
.MuiSelect-select,
.MuiMenuItem-root,
.MuiPaper-root {
  font-family: "Montserrat", sans-serif !important;
}

.flexCenter {
  justify-content: center;
  align-items: center;
  display: flex;
}

.loadingData,
.noDataText {
  margin: 16px;
}

.loadingData::after {
  content: "";
  animation: loading 0.5s infinite;
  display: inline-block;
}

@keyframes loading {
  0%, 100% {
    content: ".";
  }
  25% {
    content: "..";
  }
  50% {
    content: "...";
  }
  75% {
    content: "";
  }
}

.modalHead {
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--borderColor);
}

.modalHead .modalCloseIcon {
  cursor: pointer;
}

.modalHead .logoHead {
  gap: 10px;
}

.modalData {
  padding: 16px;
}

.modalActions {
  border-top: 1px solid var(--borderColor);
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.modalButtonSuccess {
  padding: 10px 25px;
  border: 1px solid var(--success);
  outline: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  background-color: var(--success);
  color: var(--whiteColor);
}

.modalButtonReject {
  border-color: var(--redColor);
  background-color: var(--redColor);
}

.modalButtonSecondary {
  border-color: var(--greyColor);
  background-color: transparent;
  color: var(--greyColor);
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(123, 123, 123, 0.368627451);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tertiaryColor);
}

.dashboarMain {
  display: grid;
  height: 100vh;
  grid-template-columns: 300px calc(100% - 300px);
}

.dashboarMain .dashboardSidebar {
  background-color: var(--primaryColor);
  border-right: 1px solid var(--borderColor);
}

.dashboarMain .dashboardSidebar .logoImg {
  width: 60%;
  margin: 30px 20%;
}

.dashboarMain .dashboardSidebar .adTab {
  background-color: var(--tertiaryColor);
  padding: 20px 50px;
  color: var(--whiteColor);
  justify-content: flex-start;
  gap: 15px;
  font-weight: 500;
  cursor: pointer;
}

.dashboarMain .dashboardSidebar .adTabUnselect {
  background-color: transparent;
  color: var(--tertiaryColor);
}

.dashboarMain .logoutButton {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: var(--tertiaryColor);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboarMain .dashboardData {
  height: 100vh;
  overflow-y: scroll;
}

.dashboarMain .rightFullScreen {
  margin-bottom: 20px;
}

.dashboarMain .dashboardRightHead {
  padding: 20px 50px;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--borderColor);
}

.dashboarMain .dashboardRightHead .profileInfo {
  gap: 15px;
  cursor: pointer;
}

.dashboarMain .dashboardRightHead .profileInfo .profileImage {
  height: 25px;
  width: 25px;
  background-color: var(--darkInputTextColor);
  border-radius: 50px;
  padding: 5px;
}

.dashboarMain .dashboardRightHead .profileInfo .profileEmail {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--greyColor);
}

.dashboarMain .dashboardRightDataHeadDiv {
  justify-content: space-between;
  margin-right: 16px;
}

.dashboarMain .dashboardRightDataHeadDiv .rightHeadButton {
  padding: 12px 40px;
  background-color: var(--tertiaryColor);
  color: var(--whiteColor);
  font-weight: 500;
  border-radius: 100px;
  border: none;
  outline: none;
  cursor: pointer;
}

.dashboarMain .dashboardRightDataHead {
  margin: 30px 16px 16px 16px;
  font-size: 1.5rem;
}

.dashboarMain .dashboardSearchDiv {
  width: fit-content;
  position: relative;
}

.dashboarMain .dashboardSearchDiv .dashboardSearchIcon {
  position: absolute;
  left: 30px;
}

.dashboarMain .dashboardSearchDiv .dashboardSearch {
  height: 35px;
  width: 20vw;
  border-radius: 100px;
  background-color: none;
  outline: none;
  padding-left: 45px;
  padding-right: 10px;
  border: 1px solid var(--lightGreyColor);
  margin: 16px;
  font-size: 1rem;
}body {
  margin: 0;
  padding: 0;
}

:root {
  --primaryColor: #E5FFF9;
  --secondaryColor: #1F1F1F;
  --tertiaryColor: #004C54;
  --whiteColor: #FFFFFF;
  --greyColor: #575F6E;
  --lightGreyColor: #696C71;
  --darkInputTextColor: #D2D2D2;
  --borderColor: #D5DBE1;
  --redColor: #D40E07;
  --success: #259323 ;
}

body,
button,
input,
label,
span,
p,
a,
.MuiOutlinedInput-root,
.MuiTextField-root,
.MuiSelect-select,
.MuiMenuItem-root,
.MuiPaper-root {
  font-family: "Montserrat", sans-serif !important;
}

.flexCenter {
  justify-content: center;
  align-items: center;
  display: flex;
}

.loadingData,
.noDataText {
  margin: 16px;
}

.loadingData::after {
  content: "";
  animation: loading 0.5s infinite;
  display: inline-block;
}

@keyframes loading {
  0%, 100% {
    content: ".";
  }
  25% {
    content: "..";
  }
  50% {
    content: "...";
  }
  75% {
    content: "";
  }
}

.modalHead {
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--borderColor);
}

.modalHead .modalCloseIcon {
  cursor: pointer;
}

.modalHead .logoHead {
  gap: 10px;
}

.modalData {
  padding: 16px;
}

.modalActions {
  border-top: 1px solid var(--borderColor);
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.modalButtonSuccess {
  padding: 10px 25px;
  border: 1px solid var(--success);
  outline: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  background-color: var(--success);
  color: var(--whiteColor);
}

.modalButtonReject {
  border-color: var(--redColor);
  background-color: var(--redColor);
}

.modalButtonSecondary {
  border-color: var(--greyColor);
  background-color: transparent;
  color: var(--greyColor);
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(123, 123, 123, 0.368627451);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tertiaryColor);
}

.modalUserData {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0;
  color: var(--greyColor);
}

.modalUserData .modalUserData1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondaryColor);
}body {
  margin: 0;
  padding: 0;
}

:root {
  --primaryColor: #E5FFF9;
  --secondaryColor: #1F1F1F;
  --tertiaryColor: #004C54;
  --whiteColor: #FFFFFF;
  --greyColor: #575F6E;
  --lightGreyColor: #696C71;
  --darkInputTextColor: #D2D2D2;
  --borderColor: #D5DBE1;
  --redColor: #D40E07;
  --success: #259323 ;
}

body,
button,
input,
label,
span,
p,
a,
.MuiOutlinedInput-root,
.MuiTextField-root,
.MuiSelect-select,
.MuiMenuItem-root,
.MuiPaper-root {
  font-family: "Montserrat", sans-serif !important;
}

.flexCenter {
  justify-content: center;
  align-items: center;
  display: flex;
}

.loadingData,
.noDataText {
  margin: 16px;
}

.loadingData::after {
  content: "";
  animation: loading 0.5s infinite;
  display: inline-block;
}

@keyframes loading {
  0%, 100% {
    content: ".";
  }
  25% {
    content: "..";
  }
  50% {
    content: "...";
  }
  75% {
    content: "";
  }
}

.modalHead {
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--borderColor);
}

.modalHead .modalCloseIcon {
  cursor: pointer;
}

.modalHead .logoHead {
  gap: 10px;
}

.modalData {
  padding: 16px;
}

.modalActions {
  border-top: 1px solid var(--borderColor);
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.modalButtonSuccess {
  padding: 10px 25px;
  border: 1px solid var(--success);
  outline: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  background-color: var(--success);
  color: var(--whiteColor);
}

.modalButtonReject {
  border-color: var(--redColor);
  background-color: var(--redColor);
}

.modalButtonSecondary {
  border-color: var(--greyColor);
  background-color: transparent;
  color: var(--greyColor);
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(123, 123, 123, 0.368627451);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tertiaryColor);
}

.fullTable {
  display: flex;
  flex-direction: column;
}

.fullTable .tableBody {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  border-top: 1px solid var(--borderColor);
  border-bottom: 1px solid var(--borderColor);
}

.fullTable .tableBody:hover {
  background-color: #F3F5FB;
}

.fullTable .tableBody .tableData {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--greyColor);
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fullTable .tableBody .tableData .tableSvg {
  height: 20px;
  width: 20px;
  cursor: pointer;
  margin-right: 20px;
}

.fullTable .tableBody .tableData .verifiedButton {
  border: none;
  border-radius: 100px;
  padding: 5px 10px;
  outline: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--whiteColor);
  background-color: var(--greyColor);
}

.fullTable .tableBody .tableData .acceptButton {
  background-color: #259323;
  cursor: pointer;
}

.fullTable .tableBody .tableData .rejectButton {
  background-color: var(--redColor);
  cursor: pointer;
}

.fullTable .tableBody .usernameData,
.fullTable .tableBody .nameData {
  width: 30%;
}

.fullTable .tableBody .usernameData .tableImg,
.fullTable .tableBody .nameData .tableImg {
  height: 35px;
  width: 35px;
  border-radius: 50px;
}

.fullTable .tableBody .usernameData .userDetail,
.fullTable .tableBody .nameData .userDetail {
  max-width: calc(100% - 50px);
}

.fullTable .tableBody .usernameData .userDetail .userName,
.fullTable .tableBody .nameData .userDetail .userName {
  margin: 0;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fullTable .tableBody .usernameData .userDetail .userEmail,
.fullTable .tableBody .nameData .userDetail .userEmail {
  font-weight: 500;
  font-size: 0.75rem;
  margin: 3px 0 0 0;
  color: var(--lightGreyColor);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fullTable .tableBody .roleData,
.fullTable .tableBody .actionData {
  width: 15%;
}

.fullTable .tableHead {
  background-color: var(--primaryColor);
  padding: 0px 20px;
  border: none;
}

.fullTable .tableHead:hover {
  background-color: var(--primaryColor);
}

.fullTable .tableHead .tableData {
  font-weight: 500;
}

.tagsTable .fullTable .tableData {
  width: 24%;
}

.tagsTable .fullTable .checkboxDiv {
  width: 4%;
  margin-right: 20px;
}

.paginationContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--borderColor);
}

.paginationContainer .paginationText {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--greyColor);
  margin: 0 10px 0 0;
  gap: 10px;
}

.paginationContainer .paginationSelect {
  border-radius: 5px;
  padding: 5px 10px;
  outline: none;
  border: 1px solid var(--borderColor);
}

.paginationContainer .paginationButton {
  background-color: transparent;
  cursor: pointer;
  margin: 0;
}body {
  margin: 0;
  padding: 0;
}

:root {
  --primaryColor: #E5FFF9;
  --secondaryColor: #1F1F1F;
  --tertiaryColor: #004C54;
  --whiteColor: #FFFFFF;
  --greyColor: #575F6E;
  --lightGreyColor: #696C71;
  --darkInputTextColor: #D2D2D2;
  --borderColor: #D5DBE1;
  --redColor: #D40E07;
  --success: #259323 ;
}

body,
button,
input,
label,
span,
p,
a,
.MuiOutlinedInput-root,
.MuiTextField-root,
.MuiSelect-select,
.MuiMenuItem-root,
.MuiPaper-root {
  font-family: "Montserrat", sans-serif !important;
}

.flexCenter {
  justify-content: center;
  align-items: center;
  display: flex;
}

.loadingData,
.noDataText {
  margin: 16px;
}

.loadingData::after {
  content: "";
  animation: loading 0.5s infinite;
  display: inline-block;
}

@keyframes loading {
  0%, 100% {
    content: ".";
  }
  25% {
    content: "..";
  }
  50% {
    content: "...";
  }
  75% {
    content: "";
  }
}

.modalHead {
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--borderColor);
}

.modalHead .modalCloseIcon {
  cursor: pointer;
}

.modalHead .logoHead {
  gap: 10px;
}

.modalData {
  padding: 16px;
}

.modalActions {
  border-top: 1px solid var(--borderColor);
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.modalButtonSuccess {
  padding: 10px 25px;
  border: 1px solid var(--success);
  outline: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  background-color: var(--success);
  color: var(--whiteColor);
}

.modalButtonReject {
  border-color: var(--redColor);
  background-color: var(--redColor);
}

.modalButtonSecondary {
  border-color: var(--greyColor);
  background-color: transparent;
  color: var(--greyColor);
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(123, 123, 123, 0.368627451);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tertiaryColor);
}

.modalDiv {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal {
  width: 400px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 5px 5px 20px var(--lightGreyColor);
}

.modal .modalData {
  padding: 30px 16px;
}

.modal .modalTextInput {
  width: calc(100% - 40px);
  border-radius: 100px;
  padding: 0 20px;
  height: 35px;
  border: 1px solid var(--greyColor);
  outline: none;
}body {
  margin: 0;
  padding: 0;
}

:root {
  --primaryColor: #E5FFF9;
  --secondaryColor: #1F1F1F;
  --tertiaryColor: #004C54;
  --whiteColor: #FFFFFF;
  --greyColor: #575F6E;
  --lightGreyColor: #696C71;
  --darkInputTextColor: #D2D2D2;
  --borderColor: #D5DBE1;
  --redColor: #D40E07;
  --success: #259323 ;
}

body,
button,
input,
label,
span,
p,
a,
.MuiOutlinedInput-root,
.MuiTextField-root,
.MuiSelect-select,
.MuiMenuItem-root,
.MuiPaper-root {
  font-family: "Montserrat", sans-serif !important;
}

.flexCenter {
  justify-content: center;
  align-items: center;
  display: flex;
}

.loadingData,
.noDataText {
  margin: 16px;
}

.loadingData::after {
  content: "";
  animation: loading 0.5s infinite;
  display: inline-block;
}

@keyframes loading {
  0%, 100% {
    content: ".";
  }
  25% {
    content: "..";
  }
  50% {
    content: "...";
  }
  75% {
    content: "";
  }
}

.modalHead {
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--borderColor);
}

.modalHead .modalCloseIcon {
  cursor: pointer;
}

.modalHead .logoHead {
  gap: 10px;
}

.modalData {
  padding: 16px;
}

.modalActions {
  border-top: 1px solid var(--borderColor);
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.modalButtonSuccess {
  padding: 10px 25px;
  border: 1px solid var(--success);
  outline: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  background-color: var(--success);
  color: var(--whiteColor);
}

.modalButtonReject {
  border-color: var(--redColor);
  background-color: var(--redColor);
}

.modalButtonSecondary {
  border-color: var(--greyColor);
  background-color: transparent;
  color: var(--greyColor);
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(123, 123, 123, 0.368627451);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tertiaryColor);
}

.betData .profileImage {
  height: 32px;
  width: 32px;
  border-radius: 100px;
}

.betTags {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.betTags .tag {
  border-radius: 100px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--whiteColor);
}

.videoPlayer {
  width: 400px;
  height: 250px;
}

.modalData {
  padding: 10px 16px;
  width: 368px;
}

.modalData .betData {
  justify-content: flex-start;
  gap: 10px;
}

.modalData .betData .modalUserName {
  margin: 0;
}

.modalData .betData .modalUserEmail {
  font-size: 0.875rem;
  color: var(--greyColor);
}

.modalData .betCaption {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  width: 80%;
  margin: 15px 0;
}body {
  margin: 0;
  padding: 0;
}

:root {
  --primaryColor: #E5FFF9;
  --secondaryColor: #1F1F1F;
  --tertiaryColor: #004C54;
  --whiteColor: #FFFFFF;
  --greyColor: #575F6E;
  --lightGreyColor: #696C71;
  --darkInputTextColor: #D2D2D2;
  --borderColor: #D5DBE1;
  --redColor: #D40E07;
  --success: #259323 ;
}

body,
button,
input,
label,
span,
p,
a,
.MuiOutlinedInput-root,
.MuiTextField-root,
.MuiSelect-select,
.MuiMenuItem-root,
.MuiPaper-root {
  font-family: "Montserrat", sans-serif !important;
}

.flexCenter {
  justify-content: center;
  align-items: center;
  display: flex;
}

.loadingData,
.noDataText {
  margin: 16px;
}

.loadingData::after {
  content: "";
  animation: loading 0.5s infinite;
  display: inline-block;
}

@keyframes loading {
  0%, 100% {
    content: ".";
  }
  25% {
    content: "..";
  }
  50% {
    content: "...";
  }
  75% {
    content: "";
  }
}

.modalHead {
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  margin: 0;
  font-size: 1.5rem;
  border-bottom: 1px solid var(--borderColor);
}

.modalHead .modalCloseIcon {
  cursor: pointer;
}

.modalHead .logoHead {
  gap: 10px;
}

.modalData {
  padding: 16px;
}

.modalActions {
  border-top: 1px solid var(--borderColor);
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.modalButtonSuccess {
  padding: 10px 25px;
  border: 1px solid var(--success);
  outline: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  background-color: var(--success);
  color: var(--whiteColor);
}

.modalButtonReject {
  border-color: var(--redColor);
  background-color: var(--redColor);
}

.modalButtonSecondary {
  border-color: var(--greyColor);
  background-color: transparent;
  color: var(--greyColor);
}

::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(123, 123, 123, 0.368627451);
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--tertiaryColor);
}

.VideoThumbnail {
  background-color: rgb(204, 199, 199);
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.videoBetContainer {
  border-radius: 16px;
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.videoBetContainer:hover {
  outline: 2px solid var(--tertiaryColor);
}

.betContainer {
  padding: 16px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.videoBetData {
  bottom: 0;
  position: absolute;
  width: 100%;
}

.videoBetData .betReactions {
  padding: 10px 0;
  background-color: rgba(66, 79, 97, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--whiteColor);
}

.videoBetData .betReactions .reactIconCount {
  flex-direction: column;
  gap: 5px;
}

.videoBetData .betReactions .reactionCount {
  margin: 0;
}

.videoBetData .profileImage {
  height: 32px;
  width: 32px;
  border-radius: 10px;
}

.videoBetData .userData {
  display: flex;
  align-items: flex-start;
  color: var(--whiteColor);
  gap: 10px;
  margin: 16px;
}

.texData {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.texData .betUsername {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.tags {
  display: flex;
}

.tags * {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
  margin-right: 10px;
}