@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap");
html,
body {
  font-family: "Open Sans", sans-serif;
}
a {
  color: #0033ae;
}
.btn {
  padding: 0.5rem 2rem;
  text-transform: capitalize;
  border-radius: 30px;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 600;
  transition: width height 0.8s ease-in-out;
}
.btn.has-loading {
  width: 190px;
  height: 44px;
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}
.btn-primary {
  background-color: #0033ae;
  border-color: #0033ae;
}
.btn-revoke {
  color: #cc0101;
  border: 1px solid;
  border-color: #cc0101;
  margin: 0 auto;
  display: block;
  width: fit-content;
  font-size: 14px;
  padding: 0.7rem 2rem;
}
.btn-revoke .loading-spin div {
  position: absolute;
  width: 77.55px;
  height: 77.55px;
  border: 7.05px solid #cc0101;
  border-top-color: transparent;
  border-radius: 50%;
}
@keyframes loading-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.loading-spin div {
  position: absolute;
  width: 77.55px;
  height: 77.55px;
  border: 7.05px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
}
.loading-spin div {
  animation: loading-spin 0.8s linear infinite;
  top: 70.5px;
  left: 70.5px;
}
.loading-spin-wrapper {
  width: 37px;
  height: 37px;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin-top: 2px;
}
.loading-spin {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(0.25);
  backface-visibility: hidden;
  transform-origin: 0 0;
}
.loading-spin div {
  box-sizing: content-box;
}
.export-button .btn {
  margin-right: 10px;
}
.print-button {
  background-color: #005eeb;
  color: #fff;
  width: 120px;
  font-size: 18px;
  padding: 7px 10px;
  border: 0;
  text-align: center;
}
.print-button svg {
  width: 14px;
  margin-right: 5px;
}
.card {
  background: #ffffff;
  box-shadow: 0px 0px 4px rgba(38, 71, 106, 0.1);
  border-radius: 3px;
  border: none;
  padding: 30px;
}
.pop-message {
  box-shadow: 0 0.3px 1.4px rgba(38, 71, 106, 0.008),
    0 0.8px 3.3px rgba(38, 71, 106, 0.012),
    0 1.5px 6.3px rgba(38, 71, 106, 0.015),
    0 2.7px 11.2px rgba(38, 71, 106, 0.018),
    0 5px 20.9px rgba(38, 71, 106, 0.022), 0 12px 50px rgba(38, 71, 106, 0.03);
  position: fixed;
  width: 300px;
  left: 50%;
  transform: translate(-2%, 0);
  margin-left: auto;
  margin-right: auto;
  bottom: -200px;
  transition: all 0.5s ease-in-out;
  transform: scale(1);
  z-index: 9999999999;
}
.pop-message .close {
  position: absolute;
  top: 10px;
  right: 17px;
}
.pop-message .pop-message-content {
  text-align: center;
}
.pop-message .pop-message-content .message-icon {
  width: 50px;
  margin-bottom: 10px;
}
.pop-message .pop-message-content p {
  margin-bottom: 0px;
  color: #829bbc;
  font-size: 15px;
}
.pop-message.active {
  bottom: 50px;
  animation: pop-message 0.7s;
  transform: translate(-50%, 0);
}
.pop-message.refund-confirmation {
  left: 50%;
  transform: translate(-50%, 0);
}
.pop-message.refund-confirmation .pop-message-content p {
  margin-bottom: 10px;
}
.modal.show {
  background-color: rgba(0, 0, 0, 0.25);
}
.modal-top-buttons {
  display: flex;
}
.modal-top-buttons .print {
  border: 0;
  background: none;
  padding: 0px;
  padding: 1rem 1rem;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 960px;
  }
  .print-voucher-modal .modal-dialog {
    max-width: 600px;
  }
}
@keyframes pop-message {
  from {
    bottom: -200px;
    transform: scale(0.2);
  }
  to {
    bottom: 50px;
    transform: scale(1);
    transform: translate(-50%, 0);
  }
}
label {
  color: #47576d;
}
.form-control {
  border-color: #d9e5f6;
  padding: 0.375rem 0.75rem;
}
.form-control::placeholder {
  color: #98acc7;
}
input.form-control,
select.form-control,
textarea.form-control {
  color: #8592aa;
}
input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus {
  color: #454f63;
}
input[name="daterange"] {
  background-image: url("../images/icons/calendar-icon.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #8592aa 50%),
    linear-gradient(135deg, #8592aa 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-footer {
  grid-column: 1 / -1;
  text-align: center;
  width: 600px;
  margin: 20px auto 0px;
}
.form-footer small {
  margin-bottom: 20px;
  display: block;
  color: #829bbc;
}
.has-button {
  margin: 38px 20px;
}
.has-icon {
  position: relative;
}
.has-icon input {
  padding: 0.375rem 0.75rem 0.375rem 30px;
  background-repeat: no-repeat;
  background-position: 10px 11px;
}
.has-icon.credit-card-input input {
  padding: 0.375rem 0.75rem 0.375rem 35px;
}
.has-icon .form-icon {
  width: 18px;
  height: 18px;
  top: 44px;
  left: 12px;
  position: absolute;
  background-repeat: no-repeat;
}
.has-icon .form-icon.credit-card-icon {
  background-image: url("../images/icons/card-payment.svg");
}
.has-icon .form-icon.exp-date-icon {
  background-image: url("../images/icons/calendar.svg");
}
.has-icon .form-icon.security-icon {
  background-image: url("../images/icons/security.svg");
}
.has-icon .form-icon.client-icon {
  background-image: url("../images/icons/user.svg");
}
.has-icon .form-icon.invoice-icon {
  background-image: url("../images/icons/invoice.svg");
}
.has-icon .form-icon.order-icon {
  background-image: url("../images/icons/order.svg");
}
.has-icon .form-icon.amount-icon {
  background-image: url("../images/icons/amount.svg");
}
.has-icon .form-icon.mail-icon {
  background-image: url("../images/icons/mail.svg");
  top: 46px;
  left: 11px;
}
.credit-card-form-icon {
  width: 40px;
  height: 25px;
  display: inline-block;
  margin: 0px 5px;
  background-position: 0px 25px;
  background-size: 40px;
  transition: 0.5s ease-in-out;
}
.credit-card-form-icon:first-child {
  margin-left: 0px;
}
.credit-card-form-icon.active {
  background-position: 0px 0px;
}
.credit-card-form-icon.visa {
  background-image: url("../images/payment/visa-bg.png");
}
.credit-card-form-icon.mc {
  background-image: url("../images/payment/mc-bg.png");
}
.credit-card-form-icon.ae {
  background-image: url("../images/payment/ae-bg.png");
}
.credit-card-form-icon.discover {
  background-image: url("../images/payment/discover-bg.png");
}
.credit-card-form-icon.dc {
  background-image: url("../images/payment/dc-bg.png");
}
.credit-card-form-icon.jcb {
  background-image: url("../images/payment/jcb-bg.png");
}
.two-column-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}
.merchant-info {
  margin-bottom: 20px;
}
.center-form-check {
  padding-top: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.center-form-check .form-check-input {
  margin-top: 0px;
}
.search-by-type .type-search:first-child {
  border-bottom: 1px solid #eef3fd;
}
.search-by-type .form-buttons {
  float: right;
  clear: both;
  margin-bottom: 20px;
}
.search-by-type .form-buttons .btn {
  font-size: 14px;
  margin-right: 20px;
}
.search-by-type input[type="radio"] {
  margin-right: 5px;
}
.type-search {
  display: flex;
  font-size: 12px;
  margin-bottom: 20px;
}
.type-search > .form-group {
  flex: 1;
}
.type-search .form-control {
  font-size: inherit;
  max-width: 300px;
  width: 200px;
}
.type-search .type-search-content {
  flex: 8;
}
.type-search .type-search-content label[for="invoiceId"] {
  margin-right: 20px;
  justify-content: flex-end;
}
.type-search .type-search-content.form-two-column {
  display: flex;
}
.type-search .type-search-content.form-two-column .form-inline label {
  flex: 1;
  justify-content: flex-end;
  margin-right: 20px;
}
.type-search .type-search-content.form-two-column > div {
  margin-right: 30px;
}
.type-search .second-column .form-inline {
  width: fit-content;
}
.type-search .second-column .form-inline label {
  width: 110px;
}
.type-search .second-column .two-inputs {
  display: flex;
}
.type-search .second-column .two-inputs .form-inline:first-child {
  margin-right: 10px;
}
.type-search .second-column .two-inputs .form-inline:first-child input {
  max-width: 150px;
}
.type-search .second-column .two-inputs .form-inline:nth-child(2) label {
  width: fit-content;
}
.type-search .second-column .two-inputs .form-inline:nth-child(2) input {
  max-width: 100px;
}
.form-inline label {
  text-align: right;
}
.login-wrapper {
  height: 100%;
  min-height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-content: center;
  align-items: center;
}
.login-wrapper img {
  width: 300px;
  margin-bottom: 30px;
}
.login-wrapper .card {
  width: 420px;
  padding: 40px;
  text-align: center;
}
.login-wrapper .card h4 {
  text-align: center;
  color: #03256c;
  font-weight: 600;
}
.login-wrapper .card .btn {
  padding: 0.7rem 5rem;
  margin-bottom: 20px;
}
.login-wrapper .card .form-group {
  text-align: left;
}
.login-wrapper .card .form-group input {
  padding: 1.375rem 0.75rem;
}
html,
body {
  height: 100%;
}
body {
  background-color: #fcfdff;
}
#root {
  height: 100%;
  min-height: 100%;
}
.approved {
  color: #248028 !important;
}
.declined {
  color: #c13636 !important;
}
.refunded {
  color: #2064bd !important;
}
.content-wrapper {
  display: grid;
  grid-template: 1fr auto / 215px 1fr;
}
.content-wrapper .main-nav {
  grid-column: 1 / -1;
}
.content-wrapper aside {
  position: fixed;
  width: 215px;
  height: 100vw;
  background-color: #03256c;
  color: #fff;
  z-index: 1;
}
.content-wrapper .main-content {
  color: #323e53;
  padding: 110px 30px 30px 30px;
  grid-column: 2;
  position: relative;
}
.table-options {
  display: flex;
}
.table-options label {
  font-size: 20px;
}
.table-options form {
  display: flex;
}
.table-options form .form-mixed {
  position: relative;
}
.table-options form .form-mixed input {
  background-image: url("../images/icons/search-icon.svg");
  background-position: 10px 10px;
  background-repeat: no-repeat;
  padding-left: 35px;
  width: 450px;
}
.table-options form .form-mixed select {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  padding: 0.375rem 2rem 0.375rem 0.75rem;
  height: 38px;
}
.table-options .date-filter {
  margin-left: 10px;
}
.table-options .date-filter input {
  width: 250px;
}
.table-options .btn {
  padding: 0.4rem 1.5rem;
  font-size: 16px;
  text-transform: capitalize;
}
.export-excel {
  background: transparent;
  border: none;
  color: #0033ae;
  padding: 0.4rem 1rem;
  display: block;
  width: fit-content;
  position: absolute;
  right: 14px;
  bottom: 38px;
}
.export-excel img {
  margin-top: -4px;
  margin-right: 5px;
}
.export-excel:hover {
  color: #03256c;
}
.separator-vertical {
  width: 1px;
  height: 30px;
  background-color: #d9e5f6;
  margin-top: 43px;
  margin-right: 10px;
}
td svg {
  width: 20px;
}
.pagination {
  width: fit-content;
  margin: 0 auto;
}
.pagination .page-item a {
  border-color: #d8dfea;
  color: #0033ae;
}
.pagination .page-item.disabled a {
  color: #c8cfd8;
}
.pagination .page-item.active a {
  color: #fff;
  background-color: #03256c;
  border-color: #03256c;
}
/* react-paginate */
.paginate .next {
  border-color: #d8dfea;
  color: #0033ae;
}
.paginate .previous {
  border-color: #d8dfea;
  color: #0033ae;
}

.special-td
{
  visibility: visible;
  max-width: 0;
  overflow: scroll;
  text-overflow: ellipsis;
  white-space: nowrap;


 }

 .hidden-parent{
   visibility: hidden;
 }



.modal-title span {
  font-weight: bold;
}
.payment {
  grid-column: 2;
  margin: 0 auto;
  width: 1100px;
}
.payments-methods img {
  width: 50px;
  margin: 0px 4px;
  display: inline-block;
}
.payment-details {
  display: flex;
}
.payment-details .customer,
.payment-details .payment {
  flex-grow: 1;
  flex-basis: 0;
  margin: 0 10px;
}
.payment-details .customer .details h6,
.payment-details .payment .details h6 {
  font-weight: bold;
  margin-bottom: 5px;
  color: #3b4a5f;
}
.payment-details .customer .details h6 img,
.payment-details .payment .details h6 img {
  margin-right: 5px;
  margin-top: -4px;
}
.payment-details .customer .details p,
.payment-details .payment .details p {
  color: #96a3b4;
  margin-left: 23px;
  margin-bottom: 25px;
}
.payment-details .customer .details p.card-venue img,
.payment-details .payment .details p.card-venue img {
  width: 35px;
  margin-right: 5px;
}
.refund-details {
  padding-top: 20px;
  border-top: 1px solid #d9e5f6;
}
.refund-details p {
  text-align: center;
  font-size: 14px;
  color: #98acc7;
}
.refund-details .form-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  column-gap: 20px;
}
.refund-details.no-border {
  padding-top: 0px;
  border-top: none;
}
.title-section {
  text-align: center;
  margin-bottom: 30px;
  color: #03256c;
}
.title-section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}
.payment-form .form-three-column {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.payment-form .form-three-column .form-group {
  margin: 0px 5px;
}
.payment-form .form-three-column .form-group:first-child {
  margin-left: 0px;
  width: 100%;
}
.payment-form .form-three-column .form-group:last-child {
  margin-right: 0px;
}
.payment-form .form-two-column {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.payment-form .form-two-column .form-group {
  margin: 0px 5px;
}
.payment-form .form-two-column .form-group:first-child {
  margin-left: 0px;
}
.payment-form .form-two-column .form-group:last-child {
  margin-right: 0px;
}
.payment-form .two-column-section {
  grid-column: 1 / -1;
}
.merchant-select {
  margin-bottom: 20px;
}
.iframe-voucher {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  top: 0;
  visibility: hidden;
}
.invoice-information {
  font-size: 12px;
}
.invoice-information .form-inline label {
  flex: 1;
  max-width: 150px;
  justify-content: flex-end;
  margin-right: 15px;
}
.invoice-information .form-inline input {
  font-size: inherit;
  width: 280px;
}
.payment-history-card {
  padding: 20px;
}
.print-voucher-modal .signature {
  width: 100%;
  text-align: center;
  margin-top: 60px;
}
.print-voucher-modal .signature .signature-line {
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-print-color-adjust: exact;
  box-shadow: inset 0 0 0 1000px #000;
  display: block;
}
.print-voucher-modal ul {
  margin-left: 0;
  padding-left: 0;
}
.print-voucher-modal ul li {
  list-style-type: none;
  padding: 7px 0px;
}
.print-voucher-modal .modal-body {
  margin: 0 auto;
  width: 400px;
}
@media print {
  body {
    visibility: hidden;
    width: fit-content;
    height: fit-content;
  }
  .iframe-voucher,
  .signature .signature-line,
  .print-voucher-modal .modal-body {
    visibility: visible;
  }
  .payment-details-modal {
    display: none;
  }
}
.main-nav {
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(35, 124, 235, 0.1);
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 99;
}
.main-nav .nav-logo {
  width: 260px;
  padding: 5px 20px;
  height: 100%;
  display: block;
  text-align: center;
}
.main-nav .nav-logo img {
  width: 100%;
  object-fit: contain;
  height: 100%;
  height: -moz-available;
  height: -webkit-fill-available;
  height: fill-available;
}
.main-nav .nav-items {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 0px 30px;
}
.main-nav .nav-items > * {
  margin: 0px 15px;
}
.main-nav .nav-items > *:last-child {
  margin-right: 0px;
}
.company {
  color: #0033ae;
}
.content-wrapper .main-nav {
  position: fixed;
}
aside {
  padding: 110px 0px;
}
.logged-user {
  padding: 0px 20px;
}
.logged-user h6 {
  margin-bottom: 1px;
  font-size: 18px;
}
.logged-user p {
  color: #8faae3;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-nav ul {
  list-style-type: none;
  padding: 0px;
}
.sidebar-nav ul li {
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
  position: relative;
}
.sidebar-nav ul li svg {
  width: 20px;
  margin-right: 10px;
  position: absolute;
  left: 20px;
}
.sidebar-nav ul li a {
  color: #fff;
  display: block;
  font-size: 14px;
  padding: 0.75rem 20px 0.75rem 50px;
  width: 100%;
}
.sidebar-nav ul li a:hover {
  text-decoration: none;
}
.sidebar-nav ul li:hover {
  background-color: #061748;
}
.sidebar-nav ul li.active {
  background-color: #fcfdff;
  border-radius: 20px 0px 0px 20px;
}
.sidebar-nav ul li.active::before,
.sidebar-nav ul li.active::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  right: -1px;
  background-image: url("../images/icons/item-curve.svg");
  background-size: cover;
}
.sidebar-nav ul li.active::before {
  top: -15px;
  transform: rotate(90deg);
}
.sidebar-nav ul li.active::after {
  bottom: -15px;
  right: -1px;
}
.sidebar-nav ul li.active svg path {
  fill: #0033ae;
  filter: drop-shadow(0px 0px 4px rgba(0, 51, 174, 0.3));
}
.sidebar-nav ul li.active a {
  color: #03256c;
}
.table {
  font-size: 12px;
}
.table thead {
  background-color: #ebf4ff;
  color: #566880;
  border: none;
}
.table thead th {
  border: none;
}
.table tr td {
  color: #67768a;
  border-top: none;
  border-bottom: 1px solid #eaf1fb;
}
.table tr td.approved {
  color: #248028;
}
.table tr td.declined {
  color: #c13636;
}
.table tr td.refunded {
  color: #2064bd;
}
.payment-actions .btn {
  padding: 0.3rem 0.7rem;
  font-size: 13px;
}
.payment-actions .btn svg {
  width: 16px;
  margin-top: -2px;
  margin-right: 3px;
}
.payment-actions a {
  margin-right: 7px;
  margin-bottom: 5px;
}
.payment-actions a:hover {
  text-decoration: none;
}

.concentric-loading {
  display: inline-block;
  position: relative;
  width: 164px;
  height: 164px;
}
.concentric-loading div {
  position: absolute;
  background: rgb(32, 24, 145);
  opacity: 1;
  border-radius: 50%;
  animation: concentric-loading 1.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.concentric-loading div:nth-child(2) {
  animation-delay: -.7s;
}
@keyframes concentric-loading {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    opacity: 0;
  }
}



.itranx-list-modal {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.itranx-list-modal td, #itranx-list-modal th {
  border: 1px solid #ddd;
  padding: 8px;
}

/* .itranx-list-modal tr:nth-child(even){background-color: #f2f2f2;} */

.itranx-list-modal tr:hover {background-color: #ddd;}

.even-itranx-list-modal{background-color: #f2f2f2;}

.itranx-list-modal th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #03256c;
  color: white;
}

.rose {
  background-color: #b76e79
}

.table-container {
  overflow: auto;
  max-height: 360px;
}

sticky-th {
  position: sticky;
  top: 0;
  background: white;
}

.table-scroll-style {
  overflow-y: 'scroll';
  white-space: 'nowrap' ;
}

.scrollable-y{

  overflow-y: auto;
}

.displayNone{
  display: none;
}

.fivePxML{
  margin-left: 5px;
}

.resizableScrollableXdiv{
  overflow-x: scroll;
  white-space: nowrap;
  width: 80vw;
  padding-right: 0%;
}


.tabs-container {
  width: auto;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tab-list {
  height: auto;
  line-height: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 16px;

  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.tab-list-item {
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: #aa9c9c;
  margin-right: 16px;
  position: relative;
  cursor: pointer;
}
.tab-list-item.tab-list-active {
  color: #000;
}
.tab-list-item.tab-list-active::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #2158e8;
  left: 0;
  bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.tab-content {
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
}

.payment-terminal-marginBottomFifteenPx {
  margin-bottom: 15px;
}

.payment-terminal-paddingBottomFifteenPx {
  padding-bottom: 15px;
}

.weekdayWrapper {
  margin: 1rem;
}
.weekdayWrapper .weekdayButton {
  border: none;
  padding: 1rem;
}
.weekdayWrapper .weekdayButton:first-child {
  border-radius: 5px 0 0 5px;
}
.weekdayWrapper .weekdayButton:last-child {
  border-radius: 0 5px 5px 0;
}
.weekdayWrapper .weekdayButton.active {
  background-color: #03256c;
  color: white;
}


.react-calendar, .zIndex10 {
  z-index: 10;
  position: absolute;
}

.big-z-index{
  z-index: 100;
}

/* switch component css */
.react-switch-checkbox {
  height: 0;
  width: 0;
  visibility: hidden;
}

.react-switch-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 50px;
  height: 25px;
  background: grey;
  border-radius: 50px;
  position: relative;
  transition: background-color .2s;
}

.react-switch-label .react-switch-button {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 21px;
  height: 21px;
  border-radius: 21px;
  transition: 0.2s;
  background: #fff;
  box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
}

.react-switch-checkbox:checked + .react-switch-label .react-switch-button {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}

.react-switch-label:active .react-switch-button {
  width: 60px;
}

.row-on-hover:hover {
  background-color: #d4d1d1;
}