
:root {
    --xred: #00a2ff;
    --white: #ffffff;
    --xblack: rgb(54 60 62);
}

.error-text {
  color: red;
  font-size: 12px;
  font-weight: 500;
  margin-top: 0px;
  display: block;
}

.super-app-theme--header {
  background-color: var(--xblack);
  color: white;
  font-weight: bold;
}

.super-error-app-theme--header {
  background-color: var(--xred);
  color: white;
  font-weight: bold;
}

.odd-row-bg {
  background-color: #f0f0f0;
}

/* overides grid-table css */

.css-1pe4mpk-MuiButtonBase-root-MuiIconButton-root {
  color: white !important;
}

.css-rtrcn9-MuiTablePagination-root .MuiTablePagination-selectLabel {
  margin: 0 !important;
}

.css-levciy-MuiTablePagination-displayedRows {
  margin-top: 12px !important;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.43;
  letter-spacing: 0.01071em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}



/*------------ button ---------------- */
.tf-btn {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  will-change: background-color, color, border;
  pointer-events: auto;
  overflow: hidden;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  box-sizing: border-box;
  padding: 14px 24px;
  display: inline-flex;
  border-radius: 3px;
  align-items: center;
}

.tf-btn.hover-icon .icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: scale(0);
  transform-origin: right;
  width: 0;
  display: inline-block;
  font-size: 9px;
}

.tf-btn.hover-icon:hover .icon {
  transform: scale(1);
  width: 10px;
  min-width: 10px;
  margin-inline-start: 8px;
}

.tf-btn span {
  z-index: 1;
  color: inherit;
}

.tf-btn.btn-primary {
  background-color: var(--xred);
  color: #ffffff;
}

.tf-btn.style-2 {
  padding: 0 24px;
  line-height: 44px;
}

.tf-btn.style-3 {
  padding: 0 24px;
  line-height: 42px;
}

.btn-icon .icon {
  margin-inline-start: 8px;
  display: inline-block;
  font-size: 9px;
}

.btn-xl {
  padding: 0px 30px;
  font-size: 18px;
  line-height: 50px;
}

.btn-xl .icon {
  font-weight: 600;
  margin-inline-start: 12px;
  font-size: 12px;
}

.btn-md {
  padding: 0 30px;
  min-height: 46.8px;
}

.btn-sm {
  padding-left: 18px;
  padding-right: 18px;
}

.btn-fill {
  background-color: var(--xblack);
  border: 1px solid var(--xblack);
  color: #ffffff;
}

.btn-outline {
  background-color: #ffffff;
  border: 1px solid var(--xblack);
}

.btn-outline-dark {
  background-color: transparent;
  border: 1px solid var(--xblack);
  color: var(--xblack);
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
  gap: 12px;
}

.btn-outline-dark i {
  font-size: 10px;
}

.btn-outline-dark:hover {
  color: var(--xred);
  border-color: var(--xred);
}

.btn-outline-light {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-outline-light:hover {
  color: var(--xred);
  border-color: var(--xred);
}

.fill-outline-light {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.fill-outline-light:hover {
  color: var(--xblack);
  border-color: #ffffff;
  background-color: #ffffff;
}

.btn-line {
  padding: 0;
  padding-bottom: 7px;
  color: var(--xblack);
  position: relative;
}

.btn-line .icon {
  margin-inline-start: 8px;
  display: inline-block;
  font-size: 8px;
}

.btn-line::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: var(--xblack);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-line:hover {
  color: var(--xred);
}

.btn-line:hover::after {
  background-color: var(--xred);
}

.btn-line.collection-other-link {
  padding-bottom: 4px;
}

.btn-light {
  background-color: #ffffff;
}

.btn-light .icon {
  color: #ffffff;
}

.btn-light:hover {
  background-color: var(--xblack);
  color: #ffffff;
}

.btn-light-icon {
  background-color: #ffffff;
}

.animate-hover-btn {
  position: relative;
  overflow: hidden;
}

.animate-hover-btn:after {
  background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.25), transparent);
  content: "";
  left: 150%;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: skew(-20deg);
  width: 200%;
}

.animate-hover-btn.btn-primary:after,
.animate-hover-btn.btn-fill::after {
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

@keyframes shine {
  100% {
    left: -200%;
  }
}

.tf-loading-default,
.tf-btn-loading {
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-loading-default.loading,
.tf-btn-loading.loading {
  background-color:var(--xblack);
}

.tf-loading-default.loading .icon,
.tf-loading-default.loading i,
.tf-btn-loading.loading .icon,
.tf-btn-loading.loading i {
  display: none;
}

.tf-loading-default.loading::before,
.tf-btn-loading.loading::before {
  border: solid 2px #ffffff;
  opacity: 1;
  animation-play-state: running;
}

.tf-loading-default::before,
.tf-btn-loading::before {
  width: 18px;
  height: 18px;
  border: solid 2px transparent;
  border-top-color: transparent !important;
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  animation: tf_rotator 0.6s linear infinite paused;
  opacity: 0;
}

.tf-loading-default {
  width: auto;
  height: 42px;
  min-width: 118px;
  border: 1px solid rgb(235, 235, 235);
  background-color: #ffffff;
  border-radius: 3px;
}

.tf-loading-default.loading {
  background-color: #ffffff;
}

.tf-loading-default.loading::before {
  border-color: rgb(0, 0, 0);
}

.tf-loading-default.loading .text {
  display: none;
}

.tf-loading-default .text {
  font-size: 14px;
  color: var(--xblack);
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-loading-default.style-2 {
  height: 38px;
  border-color:var(--xblack);
}

.tf-loading-default.style-2 .text {
  font-weight: 600;
}

.tf-loading-default.style-2.loading {
  border-color: var(--xred);
}

.tf-loading-default.style-2.loading::before {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-color:var(--xred);
}

.tf-loading-default.style-2:hover {
  border-color: var(--xred);
}

.tf-loading-default.style-2:hover .text {
  color: var(--xred);
}

@keyframes tf_rotator {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.tf-btn-filter {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  color: var(--xblack);
  border: solid 1px rgb(236, 236, 236);
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 22px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 600;
  max-width: 100%;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.tf-select {
  display: inline-block;
  padding: 6px 30px 6px 15px;
  color: #909090;
  border-radius: 3px;
  border: 1px solid rgb(235, 235, 235);
  height: 42px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  outline: none;
}

.tf-select:focus-visible {
  border: 1px solid var(--xblack);
}


.tf-field {
  position: relative;
}

.tf-field .tf-input {
  padding: 13px 10px;
}

.tf-field .tf-input:focus {
  border-color: rgb(134, 134, 134);
}

.tf-field .tf-input:not(:placeholder-shown)~.tf-field-label,
.tf-field .tf-input:focus~.tf-field-label {
  border-radius: 3px;
  background-color: rgb(242, 242, 242);
  font-size: 12px;
  top: 0;
  letter-spacing: 0.4px;
  padding: 0 8px;
}

.tf-field .tf-input::placeholder {
  color: transparent;
}

.tf-field-input {
  width: 100%;
}

.tf-field .tf-field-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  transition: all 0.1s ease;
  cursor: text;
}

.tf-field.style-1 .tf-input {
  padding: 25px 18px 6px;
  height: 50px;
  border: 1px solid rgb(235, 235, 235) !important;
}

.tf-field.style-1 .tf-input:not(:placeholder-shown)~.tf-field-label,
.tf-field.style-1 .tf-input:focus~.tf-field-label {
  left: 14px;
  transform: scale(0.8);
  background-color: transparent;
  padding: 0;
  font-size: 14px;
}

.tf-field.style-1 .tf-field-label {
  font-weight: 400;
  color: #909090;
  left: 18px;
}



.form-sign-in .modal-dialog {
  max-width: 640px;
}

.form-sign-in .modal-dialog .modal-content {
  border: 0;
  padding: 37px 35px;
  border-radius: 3px;
}

.form-sign-in .header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-sign-in .header .demo-title {
  font-size: 28px;
  line-height: 33.6px;
}

.form-sign-in .header .icon-close-popup {
  padding: 0 6px;
  font-size: 16px;
  cursor: pointer;
}

.form-sign-in .tf-login-form form>div {
  margin-top: 15px;
}

.form-sign-in .tf-login-form form .btn-link {
  margin: 10px 0;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  color: rgb(84, 84, 84);
}

.form-sign-in .tf-login-form form .btn-link .icon {
  font-size: 8px;
}

.form-sign-in .tf-login-form form .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.form-sign-in .tf-login-form form .bottom .btn-link {
  color: var(--xblack);
}

.react-date-picker__calendar .react-calendar {
  padding: 10px !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 5px !important;
}

.react-date-picker__button svg rect {
  display: none !important;
}

.react-date-picker__button {
  padding: 0px 6px !important;
}

.react-date-picker__calendar-button__icon {
  background-image: url('/calender.svg') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  width: 1.3em !important;
  height: 1.3em !important;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

th {
  background-color:var(--xblack);
  color: white;
}

.table .thead-light th {
  color: #ffffff;
  background-color: var(--xblack);
  border-color: #f6f6f6;
  text-align: center;
}

td {
  vertical-align: middle;
  background-color: white;
}

table label {
  margin-right: 100px;
  display: inline-block;
  font-family: Arial, sans-serif;
}

input[type="checkbox"] {
  margin-right: 20px;
}

tr:nth-child(even) {
  background-color: #f9f9f9;
}

tr:hover {
  background-color: #f1f1f1;
}

.circular-div {
  width: 25px;
  height: 25px;
  background-color: var(--xred);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

thead.sticky-top.zone-t tr th {
  border-top: 0;
  border-bottom: 0px;
}

.sticky-top.zone-t {
  top: -1px;
}

.quantity-button {
  display: flex;
  background: #F3F3F3;
  border-radius: 7px 0 0 7px;
  border-color: #D5D9D9;
  border-right: none;
  width: 40px;
  height: 36px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.quantity-button.increament_btn {

  padding: 0;
  text-align: center;
  text-decoration: none;
  background: #F3F3F3;
  border-radius: 0 7px 7px 0;
  border-color: #D5D9D9;
  border-left: none;
}

.qty-input {
  /* border: 1px solid #eee;
  border-radius: 5px;
  height: 25px; */
  display: flex;
  border-radius: 0;
  min-width: 70px;
  height: 36px;
  background: #FFF;
  border-color: #D5D9D9;
  padding: 0;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  border-style: solid;
  border-width: 1px;

}

.cart_quantity {
  display: flex;
  justify-content: center;
}

.quantity-button span {
  font-size: 16px;
  font-weight: bold;
  /* line-height: 0; */
}

table.table.mb-0.table-bordered tr td {
  white-space: nowrap;
}

.cart-detail-modal {
  background-color: rgb(72 66 66);
  padding: 10px;
  margin-bottom: 10px;
}

.user-balance {
  background-color: #e2f3fa;
  font-weight: 600;
  padding: 0.5rem 0.5rem;
  border-radius: 5px;
}

.user-balance-negative {
  background-color: #e2f3fa;
  color: red !important;
}

.user-balance-positive {
  background-color: #e2f3fa;
  color: rgb(5, 200, 64) !important;
}


.react-date-picker__calendar {
  z-index: 9 !important;
}

.table td,
.table th {
  padding: .45rem !important;
}

.dealer-notes textarea {
  resize: both;
}

/* Receipt-header  */
.receipt-header {
  background-color: var(--xblack);
}

.table td.bg-light,
.table th.bg-light,
.table tr.bg-light td,
.table tr.bg-light th {
  background-color: var(--xred) !important;
  color: #ffffff;
  white-space: nowrap;
}

/* Receipt-header  */

.content-model-one {
  background-color: #fff;
}

.btn-print-light {
  background-color: var(--xblack);
  border-color: var(--xblack);
  color: white !important;
  padding: 8px 25px !important;
}

.modal-receipt-two {
  padding: 21px 11px 0px !important;
}

.css-b62m3t-container {
  z-index: 999;
}

.css-1f43avz-a11yText-A11yText {
  z-index: 9999;
  position: relative;
  overflow: auto;
  width: 500px;
}

.css-1nmdiq5-menu {
  top: 30px !important;
  width: 200px !important;
  z-index: 999;
  margin-bottom: 8px;
  margin-top: 8px;
  box-sizing: border-box;
}

input[type=file]::file-selector-button {
  border: 1px solid var(--xblack);
  padding: .0.8em .1.2em;
  border-radius: .2em;
  background-color: var(--xblack);
  transition: 1s;
  color: white;
}


.PhoneInputInput {
  border: none !important;
  padding: 2px !important;
}

.plan-card {
  width: 20rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;

}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card .card-body {
  padding: 1.5rem;
}

.plan-card .card-title {
  font-size: 1.05rem;
  color: #333;
}

.plan-card .card-subtitle {
  font-size: 1rem;
  color: #888;
}

.plan-card .card-text {
  font-size: 0.90rem;
  color: #555;
}

.plan-card .card-text p {
  margin: 0.5rem 0;
  font-weight: 400;
}

.plan-card .card-subtitle span {
  font-weight: bold;
  color: var(--xblack);
}

.selected-plan-card {
  border: 2px solid var(--xred);
}

#psim-activation .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: var(--xblack);
}

.vendor-label {
  position: -webkit-sticky;
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 0 !important;
  background: #fff;
  width: 100%;
  padding-top: 5px;

}

.country-search .react-select__menu.css-1nmdiq5-menu {
   width: 100% !important;
   text-align: left !important;
}

.country-search .react-select__value-container{
  text-align: left !important;
}

.plan-search .react-select__menu.css-1nmdiq5-menu {
   width: 100% !important;
 
}

.react-select__menu.css-1nmdiq5-menu{
    z-index: 99999 !important;
}


.simList-date-picker {
  padding-left: 0 !important;
  padding-right: 5px !important;

}


.simList-date-picker .react-date-picker__inputGroup {
  padding-left: 4px !important;
}

.required-icon {
  color: red !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  margin-top: 0px !important;
}

.filter-container {
  /* border: 2px solid #e7e7e7 !important; */
  /* border-radius: 5px !important; */
  /* padding-top: 8px !important; */
  padding-bottom: 8px !important;
  margin: 0 !important;
  /* box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); */

}



.list-chk-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.list-chk-two {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 19px;
}

.list-chk-one,
.list-chk-two li {
  list-style: none;
}

.search-link-bg {
  cursor: pointer;
  background-color: var(--xblack);
  padding: 2px;
  border-radius: 2px;
  color: white;
}


.eway-close-modal {
  top: 12px;
  right: 15px;
}

.plan-description .ck-content{
  padding-left: 18px !important;
}

.notification-unread {
  background-color: #e2f3fa;
}

.psim-total-amount{
  background-color: #e2f3fa;
  padding: 8px;
  border-radius: 5px;
}

.custom-per-page-pagination select{
   outline: none !important;
   border: none !important;
}

.profile-circle{
  width: 50px;
  height: 50px;
  background-color: var(--xred);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: bold;
  
}

#change-password{
  background-color: #e2f3fa;
  padding: 10px;
}

input:invalid:focus {
  border: 2px solid var(--xred) !important;
}

.sale-summary-card{
  border-radius: 2px;
  background-color: white;
  /* box-shadow: 0px 2px 6px 0px grey; */
}

.sale-summary-card p {
  margin-top: 0;
  margin-bottom: 0.3rem;
  padding: 0.2rem;
}

.sale-summary-card .summary-card-header {
  background-color:var(--xred);
  color: white;
  padding: 2px;
  margin-bottom: 5px;
}

.horizon-line{
    border: 0.5px solid #d1d1d1;
    margin-bottom: 2px;
}

#order-detail .modal-dialog {
  height: auto;
}

.refund-card{
  border: 1px solid #ffe9e9;
  padding: 5px;
}
.refund-header{
  background-color: #ffe9e9;
  padding: 5px;
}

.project-logo {
    border: 1px solid #ddd6d6;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 7px;
    padding-top: 2px;
    margin-bottom: 3px;
}
.XAPIKey-btn{
    border-radius: 4px;
    padding: 4px;
    border: none;
    background-color: #18cb4d;
    color:white;
}

.XAPIKey-rebtn{
    border-radius: 4px;
    margin: 5px;
    color: white;
    padding: 3px;
    border: none;
    background-color: var(--xred);
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* Change cursor for disabled inputs */
input:disabled,
select:disabled,
textarea:disabled,
button:disabled {
  cursor: not-allowed; 
  opacity: 0.6;  
}


.split-screen__container {
  display: flex;
}

.left-screen__container {
  display: flex;
  justify-content: space-around;
  text-align: left;
  align-items: center;
  flex: 35vw;
  height: 100vh;
  background: url(/left-bg.jpeg) no-repeat center center;
  background-size: cover;
}

.left-screen {
  width: 70%;
}

.right-screen__container {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex: 65vw;
  height: 100vh;
  background: url(/right-bg.jpg) no-repeat center center;
  background-size: cover;
}

.right-screen__container h1, .right-screen__container a{
  color: #fff;
}

.left-screen__container h1, .left-screen__container a, .left-screen__container p{
  color: #fff;
}

.left-screen__container h1 {
  text-align: left;
}


@media (max-width: 992px) {
  .right-screen__container {
    display: none;
  }

  .left-screen__container {
    flex: 1 0 100%;
    width: 100%;
    padding: 1rem;
  }

  .left-screen {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }

}

.form-control:disabled{
    background-color: #f2f2f2 !important;
    opacity: 1 !important;
}

.width_modal th {
   background-color: var(--xred);
   color: white;
}

.modal-part-content .form-control {
    border: 1px solid var(--xred) !important;
}

.border-soft-danger{
  border-color:rgb(216, 213, 213) !important;
}

.modal.right .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  height: 100%;
  max-width: 500px; 
}

.modal.fade.right .modal-dialog {
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s ease-out;
}

.modal.fade.show.right .modal-dialog {
  transform: translate3d(0, 0, 0);
}

.modal.right .modal-content {
  height: 100vh;
  border: 0;
  border-radius: 0;
  margin: 0 !important;
  background-color: rgb(251 251 251);
}

.modal.right .modal-header {
  background-color: var(--xred);
  border-radius: 0;
}

.modal.right .modal-footer{
   position: absolute;
   bottom: 0;
   display: flex;
   justify-content: space-between;
}

.modal.right .modal-footer span{
    font-size: 20px;
    font-weight: 600;
}

table thead th {
  position: sticky;
  top: 0;
  background: var(--xred);  
  z-index: 10;   
}

[tooltip] {
  position: relative;
  cursor: pointer;
}

[tooltip]::before,
[tooltip]::after {
  position: absolute;
  display: none;
  opacity: 0;
  pointer-events: none;
}

[tooltip]::before {
  content: '';
  border: 6px solid transparent;
  border-top-color: #333;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

[tooltip]::after {
  content: attr(tooltip);
  background: #747373;
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 10;
}

[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
  animation: fadeUp 250ms ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

