/*
* define theme - sort off
* utilize like this var(--color-primary)
*/

html {
  scroll-behavior: smooth;
}

:root {
  --color-primary: white;
  --color-accent: #ab3881;
  --color-text: #200e32;
  --color-action: #ff1c26;
  --color-action-2: #ed2b30;
  --color-success: #00ba48;
  --color-nav-bg: #ffc928;
  --color-form-text: #11141a;
  --color-page-background: #f8f8f8;
  --color-header-text: #200e32;
  --color-brown-text: #700016;
  --color-nav-item: #f7941f;
  --color-purple: #190041;
  --color-text-neutral: #8e8e93;
  --color-vpay-purple: #ae207c;
  --color-text-faint: #3c3c4399;
  --color-dark-red: #b60008;
  --color-text-grey: #676e76;
  --color-text-red: #f3000b;
}

/* Scroll bar style */

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

/* Track */
/* ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--color-primary);
    border-radius: 10px;
} */

/* Handle */
/* ::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 10px;
} */

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

::placeholder {
  font-size: 15px !important;
  color: rgba(32, 14, 50, 0.3);
}

.brown-text {
  color: var(--color-brown-text);
}

.nav-item-color {
  color: var(--color-nav-item);
}

.nav-item-bg-color {
  background-color: var(--color-nav-item);
}

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

.action-color-bg {
  background: var(--color-action) !important;
}
.bg-none {
  background: none !important;
}
.faint-text {
  color: var(--color-text-faint);
}
.grey-text {
  color: var(--color-text-grey);
}

.action-color-bg-outline {
  background: transparent !important;
  border: 1px solid var(--color-action) !important;
  color: var(--color-action) !important;
}

.success-bg-outline {
  background: transparent !important;
  border: 1px solid var(--color-success) !important;
  color: var(--color-success) !important;
}

.action-color-2 {
  background-color: var(--color-action-2) !important;
}

.header-color {
  color: var(--color-header-text);
}

.page-color-background {
  background-color: var(--color-page-background);
}
.dark-red-bg {
  background-color: var(--color-dark-red);
}
.red-text-color {
  color: var(--color-text-red);
}

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

.nav-item-color {
  color: var(--color-nav-item);
}

.text-color {
  color: var(--color-text);
}
.text-neutral {
  color: var(--color-text-neutral);
}

.faded-text-color {
  color: #200e3280;
}

.text-dark-purple {
  color: var(--color-purple);
}
.text-vpay-purple {
  color: var(--color-vpay-purple);
}

.margin-auto {
  margin: 0 auto;
}

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

.primary-bg-color {
  background-color: var(--color-primary);
}

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

.accent-bg-color {
  background-color: #27143b;
}

.link-color {
  color: #1890ff;
}

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

html,
#root {
  height: 100%;
  width: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family:
    'PlusJarkataRegular',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    'Oxygen',
    'Ubuntu',
    'Cantarell',
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  color: var(--color-text);
  font-weight: normal;
  font-size: medium;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.p1 {
  padding: 2px;
}

.px4 {
  padding-left: 8px;
  padding-right: 8px;
}

.p2 {
  padding: 4px;
}
.p8 {
  padding: 8px;
}

.p10 {
  padding: 10px;
}

.p20 {
  padding: 20px;
}
.pl16rem {
  padding-left: 1.6rem;
}

.fw200 {
  font-family:
    'PlusJarkataLight',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    'Oxygen',
    'Ubuntu',
    'Cantarell',
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  font-weight: normal;
  font-style: normal;
}
.fw200i {
  font-family:
    'PlusJarkataLightItalic',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    'Oxygen',
    'Ubuntu',
    'Cantarell',
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  font-weight: normal;
  font-style: normal;
}

.fw400 {
  font-family:
    'PlusJarkataRegular',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    'Oxygen',
    'Ubuntu',
    'Cantarell',
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  font-weight: normal;
  font-style: normal;
}
.fw500 {
  font-family:
    'PlusJarkataMedium',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    'Oxygen',
    'Ubuntu',
    'Cantarell',
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  font-weight: normal;
  font-style: normal;
}
.fw500i {
  font-family:
    'PlusJarkataMediumItalic',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    'Oxygen',
    'Ubuntu',
    'Cantarell',
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  font-weight: normal;
  font-style: normal;
}
.fw700 {
  font-family:
    'PlusJarkataBold',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    'Oxygen',
    'Ubuntu',
    'Cantarell',
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  font-weight: normal;
  font-style: normal;
}
.fw700i {
  font-family:
    'PlusJarkataBoldItalic',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    'Roboto',
    'Oxygen',
    'Ubuntu',
    'Cantarell',
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  font-weight: normal;
  font-style: normal;
}

.content-padding {
  padding-left: 200px;
  padding-right: 200px;
}

.text-right {
  text-align: right;
}
.ml-20 {
  margin-left: 20px;
}

.ml-80 {
  margin-left: 80px;
}

.left-auto {
  margin-left: auto;
}
.left-ab-25 {
  left: 30px;
}
.head-padding-body {
  padding: 50px 150px 120px 200px;
}

.table-padding {
  padding: 0px 20px;
}
.border-none {
  border: none;
}
.small-content-padding {
  padding-left: 200px;
  padding-right: 150px;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.full-height {
  height: 100%;
}

.button-nav-padding {
  padding: 10px 25px !important;
}

.m-button-nav-padding {
  padding: 5px 25px !important;
}

.b-tn-padding {
  padding: 13px 25px !important;
}

.full-height-minus-80 {
  height: calc(100% - 80px);
}

.full-height-minus-150 {
  height: calc(100% - 150px);
}

.height55 {
  height: 55px !important;
}

.image-icon {
  width: 50px;
  height: 50px;
}

.full-vh {
  height: 100vh;
}
.vh80 {
  max-height: 80vh;
}

.half-vh {
  height: 50vh;
}

.full-vw {
  width: 100vw;
}

.width-275 {
  width: 275px !important;
}

.h-60 {
  height: 60px;
}

.h-50 {
  height: 50px;
}

.w-50 {
  width: 50%;
}
.w-25 {
  width: 25%;
}
.w-30 {
  width: 30%;
}
.w-33 {
  width: 33%;
}
.w-60 {
  width: 60%;
}
.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}
.w-90 {
  width: 90%;
}

.full-width {
  width: 100%;
}

.feature-max-width {
  max-width: 60%;
}

.max-width-600 {
  max-width: 600px;
}

.max-width-250 {
  max-width: 250px;
}

.form-layout-width {
  width: 500px;
}

.form-btn-width {
  width: 100%;
}

.small-dropdown-width {
  width: 245px;
}

.fit-content-width {
  width: fit-content;
}

.anchor-tag:hover,
.anchor-tag:active {
  color: initial !important;
}

.divider-margin {
  margin: 5px 0px !important;
}

p,
ul,
h1,
h2,
h3 {
  margin: 0 !important;
  padding: 0 !important;
}

input,
textarea {
  border: 0.5px solid rgba(25, 0, 65, 0.4);
  box-sizing: border-box;
  border-radius: 5px;
  padding: 10px;
  color: var(--color-form-text);
}

.half-width {
  width: 50%;
}

.width-35 {
  width: 35% !important;
}

.width-40 {
  width: 40% !important;
}

.max-width-500 {
  max-width: 500px;
}

.max-width-13em {
  max-width: 13em;
}

.min-width-30p {
  min-width: 30%;
}

.pink-gradient-background {
  background: linear-gradient(90deg, #ffffff -45.04%, rgba(255, 255, 255, 0) 102.87%), linear-gradient(270deg, #fff3fb 0%, rgba(255, 255, 255, 0) 94.94%);
}

.gradient-header {
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%), rgba(247, 148, 32, 0.17);
  width: 100%;
}

.overflow-auto {
  overflow: auto;
}

.height_auto {
  height: auto !important;
}

.border-radius5 {
  border-radius: 5px;
}
.border-radius35 {
  border-radius: 35px !important;
}

.no-border {
  border: none !important;
}

.dashboard-top-margin {
  margin-top: 20px;
}

.margin-top40 {
  margin-top: 40px;
}

.margin-top-negative-25 {
  margin-top: -25px;
}

.letter-spacing1 {
  letter-spacing: 1px;
}

.letter-spacing-em {
  letter-spacing: 0.15em;
}

.form-padding-lr {
  padding-left: 60px;
  padding-right: 60px;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-bold {
  font-weight: bold;
}

.text-light {
  font-weight: 200;
}

.text-bold-700 {
  font-weight: 700;
}

.text-bold-500 {
  font-weight: 500;
}

.text-bold-400 {
  font-weight: 400;
}

.app-padding-lr {
  padding-left: 60px;
  padding-right: 60px;
}

.ptb20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-medium {
  padding: 40px 40px 10px 40px;
}

.flex-one {
  flex: 1;
}

.align-right {
  align-items: flex-end;
}

.align-left {
  align-items: flex-start;
}

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

.justify-start {
  justify-content: flex-start;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}
.d-none {
  display: none;
}

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

.mb-2 {
  margin-bottom: 10px;
}

.flex-1 {
  flex: 1;
}

.j-evenly {
  justify-content: space-evenly;
}

.column-gap1 {
  column-gap: 1em;
}

.column-gap-half {
  column-gap: 0.5em;
}

.row-gap1 {
  row-gap: 1em;
}

.row-gap05 {
  row-gap: 0.5em;
}

.column-gap2 {
  column-gap: 2em;
}

.column-gap3 {
  column-gap: 3em;
}

.dropdown-grid-temp-col-1fr {
  grid-template-columns: 1fr 1fr;
}

.merchant-about-grid-temp {
  grid-template-columns: 1fr 1fr;
}

.merchant-feature-grid-temp-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-col-gap80 {
  grid-gap: 80px;
}

.grid-col-gap50 {
  grid-gap: 50px;
}

.grid-gap10 {
  grid-gap: 10px;
}

.grid-gap30 {
  grid-gap: 30px;
}

.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mr-2 {
  margin-right: 10px;
}

.mr-5 {
  margin-right: 5px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.app-padding-tb {
  padding-top: 100px;
  padding-bottom: 100px;
}

.app-padding-starter-tb {
  padding-top: 50px;
  padding-bottom: 50px;
}

.c-pointer {
  cursor: pointer;
}

.cursor-text {
  cursor: text;
}

.c-default {
  cursor: default !important;
}

.flex-vertical {
  flex-direction: column;
}

.grid-gap-10 {
  grid-gap: 10px;
}

.max-width500 {
  max-width: 500px;
}
.max-height500 {
  max-height: 500px;
}

.max-width-60em {
  max-width: 60em;
}

.unstyle-button {
  border: none;
  outline: none;
  background: none;
}

.more-details-btn {
  width: 150px;
  border: 0.5px solid rgba(25, 0, 65, 0.13);
  border-radius: 5px;
  padding: 10px 20px;
}

.cashier-change-btn {
  background: #ff1c26;
  border: 0.5px solid rgba(25, 0, 65, 0.13);
  border-radius: 5px;
  padding: 10px 50px;
}

.unstyle-button:focus {
  outline: none;
}

.text-white {
  color: white !important;
}
.text-black {
  color: #200e32;
}
.text-faded {
  color: rgba(255, 255, 255, 0.8) !important;
}
.text-faded2 {
  color: rgba(32, 14, 50, 0.5);
}

.app-primary-color {
  color: #13184d;
}

.p-relative {
  position: relative;
}

.z-index999 {
  z-index: 999;
}

.z-index1 {
  z-index: 1;
}

.z-index2 {
  z-index: 2;
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-sticky {
  position: sticky;
}
.opacity-0 {
  opacity: 0;
}
.opacity-3 {
  opacity: 0.3;
}

.opacity-5 {
  opacity: 0.5;
}

.tab-settings {
  padding: 0px !important;
}

/* ANT TABLE */

.ant-table {
  height: 100%;
}

.ant-table-wrapper {
  width: 100%;
}

.ant-table-thead > tr > th {
  background: #fff !important;
  font-family: 'PlusJarkataMedium';
}

.ant-table-cell {
  font-family: 'PlusJarkataRegular';
  cursor: pointer;
  max-width: 10em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cut-long-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ant-table-pagination-right {
  justify-content: center !important;
  margin-top: 30px !important;
  padding-bottom: 30px !important;
}

.ant-select > .ant-select-arrow {
  top: 50% !important;
}

.ant-select-selection-placeholder {
  line-height: 45px !important;
}

.ant-select-arrow > span > svg {
  color: #ab3882;
}

/* Table pagination style */

/* .ant-pagination-disabled .ant-pagination-item-link{
    border: none!important;
} */

.anticon {
  color: #200e32;
  font-size: 0.7rem;
}

.ant-pagination-item-link {
  border: 0px solid transparent !important;
}

.ant-pagination-next .ant-pagination-item-link {
  background-color: transparent !important;
}

.ant-pagination-prev .ant-pagination-item-link {
  background-color: transparent !important;
}

.ant-pagination-item-active a {
  color: white !important;
  font-weight: bold !important;
}

.ant-pagination-item {
  border: none !important;
  background-color: transparent !important;
  height: 29px !important;
}

.ant-pagination-item a {
  color: #d3d3d3 !important;
  font-weight: bold !important;
}

.ant-pagination-item-active {
  background: #200e32 !important;
  color: white !important;
  font-weight: bold !important;
  border-color: transparent !important;
}

.ant-pagination-options-size-changer.ant-select {
  display: none !important;
}

/* Ant Dropdown button */

.ant-btn {
  width: 350px;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border: 0.5px solid rgba(32, 14, 50, 0.15) !important;
  padding: 0px 30px !important;
  border-radius: 5px !important;
  height: 140px !important;
}

.anticon-down {
  font-size: 1.3em !important;
}

/* font-size: xx-small;
font-size: x-small;
font-size: small;
font-size: medium;
font-size: large;
font-size: x-large;
font-size: xx-large;
font-size: xxx-large; */

.font-size-little {
  font-size: small;
}

.footer-links,
.nav-links,
.home-about-link,
button {
  font-size: small;
}

.unstyle-ul {
  list-style-type: none;
  padding-left: 0;
}

.font-size-small {
  font-size: small;
}

.font-size-normal {
  font-size: medium;
}

.font-size-medium {
  font-size: large;
}

.font-size-big {
  font-size: x-large;
}

.mb-10 .app-input,
.mtb-10 .app-input,
.mb-10,
.ant-select.mb-10 {
  margin-bottom: 10px !important;
}

.mtb-10 .app-input,
.mt-10 {
  margin-top: 10px;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.font-size-bigger {
  font-size: xx-large;
}

.font-size-large {
  font-size: xxx-large;
}

.font-size-extra {
  font-size: 60px;
}

.recent-clamp-font {
  font-size: clamp(15px, 18px, 20px);
}

.mt70 {
  margin-top: 70px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.ml5 {
  margin-left: 5px;
}

.rounded-widget {
  border-radius: 50%;
}

.container-size-small {
  height: 35px;
  width: 35px;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
}

.font-size13em {
  font-size: 1.3em;
}
.font-size14em {
  font-size: 1.4em;
}
.font-size12em {
  font-size: 1.2em;
}
.font-size-25em {
  font-size: 2.5em;
}
.font-size-35em {
  font-size: 3.5em;
}

.font-size-5em {
  font-size: 5.5em;
}

.font-size-6em {
  font-size: 6em;
}

.font-size-10 {
  font-size: 10px;
}

.font-size-12 {
  font-size: 12px !important;
}

.font-size-13 {
  font-size: 13px;
}

.font-size-14 {
  font-size: 14px;
}

.font-size-16 {
  font-size: 16px;
}

.font-size-17 {
  font-size: 17px;
}

.font-size-18 {
  font-size: 18px;
}

.font-size-clamp {
  font-size: clamp(15px, 3vw, 18px);
}

.font-size-20 {
  font-size: 20px;
}

.font-size-60 {
  font-size: 60px;
}

.font-size-30 {
  font-size: 30px;
}

.font-size-22 {
  font-size: 22px;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-25 {
  font-size: 25px;
}

.font-size-35 {
  font-size: 35px;
}

.font-size-50 {
  font-size: 50px;
}

.line-height1 {
  line-height: 1;
}

.line-height12 {
  line-height: 1.2;
}

.line-height17 {
  line-height: 1.7;
}

.line-height20 {
  line-height: 2;
}
.line-height30 {
  line-height: 3;
}
.font-size-65 {
  font-size: 65px;
}

.font-size-43 {
  font-size: 43px;
}

.font-size-as-parent {
  font-size: 100%;
}

.font-size-32 {
  font-size: 32px;
}

.font-size-10 {
  font-size: 10px;
}

.font-size-11 {
  font-size: 11px;
}

.font-size-15 {
  font-size: 15px;
}
.font-size-13 {
  font-size: 13px;
}
.no-margin {
  margin: 0;
}

.text-font {
  font-size: 20px;
}

.no-padding {
  padding: 0;
}

.text-left {
  text-align: left;
}

.text-dec-none {
  text-decoration: none;
}

.text-justify {
  text-align: justify;
}

.align-self-center {
  align-self: center;
}

.align-self-end {
  align-self: end;
}

.align-baseline {
  align-items: baseline;
}

.contact-form {
  border: 1px solid #dbdde3;
  padding: 50px 60px;
}

.contact-form button.form-button {
  width: 50%;
}

.contact-element {
  margin-bottom: 30px;
}

.contact-image {
  margin-bottom: 30px;
}

.j-space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: start;
}

.align-self-start {
  align-self: start;
}

.align-end {
  align-items: end;
}

.j-center {
  justify-content: center;
}

.j-end {
  justify-content: flex-end;
}

.float-right {
  float: right;
}

.width-70-p {
  width: 70%;
}

.width-30-p {
  width: calc(30% - 20px);
}

.height-20-p {
  height: 20%;
}
.pt-5 {
  padding-top: 5px;
}
.pt-20 {
  padding-top: 20px;
}

.pl-20 {
  padding-left: 20px !important;
}
.pl-10 {
  padding-left: 10px !important;
}

.pl-40 {
  padding-left: 40px !important;
}
.pl-60 {
  padding-left: 60px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-15 {
  padding-right: 15px;
}
.pr-5 {
  padding-right: 5px;
}

.px-75 {
  padding-left: 75px !important;
  padding-right: 75px !important;
}

.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.px-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.ml-40 {
  margin-left: 40px !important;
}
.mr-40 {
  margin-right: 40px !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mx-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.height-80-p {
  height: 80%;
}

.height-35-p {
  height: 35%;
}

.height-65-p {
  height: 65%;
}

.page-color-height {
  height: 100%;
}

.reduce-letter-space-082 {
  letter-spacing: -0.78px;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.overflow-scroll {
  overflow: scroll;
}

.no-desktop-but-mobile {
  display: none;
}

.no-desktop-but-mobile-flex {
  display: none;
}

.no-mobile-but-desktop {
  display: block;
}

.w-124 {
  width: 124px;
}

.h-124 {
  height: 124px;
}

.display-inline-block {
  display: inline-block;
}

.btn-outline {
  border: var(--color-action) solid 1px;
  width: fit-content;
  padding: 10px 25px;
}

.action-color-hover {
  color: var(--color-action);
  background-color: var(--color-primary);
  transition: 0.15s ease;
}

.action-color-hover:hover {
  color: var(--color-primary);
  background-color: var(--color-action);
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}
.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.px-5 {
  padding-left: 5px;
  padding-right: 5px;
}
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.rounded-md {
  border-radius: 5px !important;
}
.resize-none {
  resize: none;
}

/* Animation */

.fade-in {
  animation: fade-in 0.2s linear;
}
.fade-out {
  animation: fade-out 1s linear;
}

/* custom calendar */
.custom-calendar-wrapper .CalendarDay__default,
.custom-calendar-wrapper .DayPickerNavigation_button__default {
  border: 0;
}
.custom-calendar-wrapper .DayPicker_weekHeader_li small {
  font-size: 16px;
  line-height: 16px;
  color: rgba(32, 14, 50, 0.5);
}
.ant-picker {
  padding: 6px 11px !important;
  border: 1.5px solid rgba(237, 43, 48) !important;
}
.ant-picker-date-panel .ant-picker-header-view button {
  cursor: none;
  font-weight: 400;
  font-size: 20px !important;
  line-height: 24px;
  letter-spacing: 0.12px;
  color: #000000;
}
.ant-picker-cell-in-view.ant-picker-cell-range-end .ant-picker-cell-inner,
.ant-picker-cell-in-view.ant-picker-cell-range-start .ant-picker-cell-inner {
  background: #ed2b30 !important;
  border: 0;
  border-radius: 5px;
}
.ant-picker-cell-in-view.ant-picker-cell-in-range::before {
  background: rgba(237, 43, 48, 0.05) !important;
  border: 1px double rgba(237, 43, 48, 0.05);
  color: #200e32;
}
.custom-calendar-wrapper .DayPickerKeyboardShortcuts_show::before {
  content: none;
}
.custom-calendar-wrapper .DayPickerNavigation_svg__horizontal {
  fill: #000;
}
.custom-calendar-wrapper .DateInput_input__focused {
  border-color: #ed2b30;
}

/* Ant Checkbox */
.ant-checkbox-inner:focus,
.ant-checkbox-inner:hover {
  border-color: #ed2b30 !important;
}

.ant-checkbox-checked .ant-checkbox-inner {
  background-color: #ed2b30 !important;
  border-color: #ed2b30 !important;
}

.ant-checkbox-wrapper:hover .ant-checkbox-inner {
  border-color: #ed2b30 !important;
}

.ant-checkbox:hover .ant-checkbox-inner {
  border-color: #ed2b30 !important;
}

.custom-calendar-wrapper .ant-picker-range .ant-picker-active-bar {
  background: #ed2b30;
}
.custom-calendar-wrapper .ant-picker-input > input {
  font-size: 20px;
}
.ant-picker-cell .ant-picker-cell-inner {
  min-width: 30px !important;
  height: 30px !important;
  line-height: 30px !important;
}
.ant-picker:hover,
.ant-picker-focused,
.ant-picker-focused {
  border-color: rgba(237, 43, 48) !important;
  box-shadow: 0 0 0 rgba(237, 43, 48) !important;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
/*Media query*/
@media (max-width: 760px) {
  .no-padding-important-mobile {
    padding: 0 !important;
  }

  .p-medium {
    padding: 40px 10px 10px 10px;
  }

  .no-desktop-but-mobile {
    display: block;
  }
  .w-sm-50 {
    width: 50%;
  }
  .w-sm-100 {
    width: 100%;
  }

  .no-desktop-but-mobile-flex {
    display: flex;
  }

  .no-mobile-but-desktop {
    display: none;
  }
  .j-end {
    justify-content: flex-end;
  }
  .no-mobile {
    display: none !important;
  }

  .max-width-13em {
    max-width: 100vw;
  }

  .mobile-font-size {
    font-size: 17px !important;
    line-height: 1.5rem !important;
  }

  .content-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pad-30 {
    padding: 30px 0px 0px 0px;
  }

  .p-0 {
    padding: 0;
  }

  .small-content-padding {
    padding-left: 20px;
    padding-right: 20px;
  }

  .table-padding {
    max-width: 100%;
    overflow: auto;
  }

  body {
    font-size: large;
    line-height: 1.5;
  }

  .footer-links,
  .nav-links,
  .home-about-link,
  button {
    font-size: large;
  }

  .font-size-extra,
  .font-size-large {
    font-size: xx-large;
  }

  .font-size-small {
    font-size: medium;
  }

  .flex-vertical-mobile {
    flex-direction: column;
  }

  .text-justify-mobile {
    text-align: justify;
  }

  .text-center-mobile {
    text-align: center;
  }

  .mobile-spacing {
    margin-top: 70px;
  }

  .form-layout-width {
    width: 100%;
  }

  .form-padding-lr {
    padding-left: 30px;
    padding-right: 30px;
  }

  .form-btn-width {
    width: 100%;
  }

  .small-dropdown-width {
    width: 100%;
  }

  .dropdown-grid-temp-col-1fr {
    grid-template-columns: 1fr;
  }

  .text-font {
    font-size: 1.3em;
  }

  .page-color-background {
    background-color: white;
  }
  .app-padding-starter-tb {
    padding-bottom: 0px;
  }
  .mb-0 {
    margin-bottom: 0px !important;
  }
  .page-color-height {
    height: unset;
  }

  .custom-calendar-wrapper .DateRangePicker_picker {
    left: 0 !important;
  }
  .divider-margin {
    margin: 30px 0px !important;
  }
}

@media screen and (min-width: 1820px) {
  .pricing.container {
    margin-left: auto;
    margin-right: auto;
  }
  .developer-cta > div {
    margin-left: auto !important;
  }
}
@media screen and (min-width: 3500px) {
  .developer-wrapper {
    padding: 0 33%;
  }
}
