:root {
    --chapa-green: #7DC400;
    --chapa-blueblack: #0D1B34;
    --chapa-grey: #F2F3FA;
}


.flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.items-center {
    align-items: center;
}
.items-start {
    align-items: start;
}
.items-end {
    align-items: end;
}
.justify-start {
    justify-content: start;
}
.justify-end {
    justify-content: end;
}

.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}

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

.w-full {
    width: 100%;
}

.py-2 {
    padding-top: 0.5rem/* 8px */;
    padding-bottom: 0.5rem/* 8px */;
}

.px-4 {
    padding-left: 1rem/* 16px */;
    padding-right: 1rem/* 16px */;
}

.max-w-screen-lg {
    max-width: 1024px;
}

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

.break-all {
    word-break: break-all;
}

.uppercase {
    text-transform: uppercase;
}

.border-b {
    border-bottom: .7px solid rgb(44, 43, 43);
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.pb-1 {
    padding-bottom: 1em;
}

.pb-2 {
    padding-bottom: 2em;
}

.text-gray {
    color: gray;
}

.text-white {
    color: white;
}

.text-black {
    color: black;
}

.text-darkgray {
    color: rgb(105, 104, 104);
}

.font-thin {
    font-weight: 400;
}


.font-normal {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

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

.font-extrabold {
    font-weight: 800;
}
.font-weight-extrabold {
    font-weight: 900;
}

.txt-chapa-green {
    color: var(--chapa-green);
}

.txt-chapa-blueblack {
    color: var(--chapa-blueblack);
}

.txt-chapa-grey {
    color: var(--chapa-grey);
}

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

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

.bg-chapa-grey {
    background-color: var(--chapa-grey);
}
.modal-header {
    background: rgb(233, 250, 231);
    border-bottom: .5px solid rgb(216, 224, 217);
    padding: .7em 1em !important;
}
.cursor-pointer {
    cursor: pointer;
}

.space-x-1\.5 > * + *
{
    margin-left: 0.375rem; /* 6px */
}

button#submitsingle {
    background-color: var(--chapa-blueblack);
    color: white;
}

.success-gradient {
    background-image: linear-gradient(to bottom left, #096F82, #228A09, #096F82);
}

.h-screen {
    height: 100vh !important;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.capitalize {
  text-transform: capitalize;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.left-0 {
    left: 0;
}
.top-0 {
    top: 0;
}
.text-left {
    text-align: left;
}
