:root {
    --black-1: #111c28;
    --black-2: #000;
    --black-3: #2e2e32;
    --black-4: rgb(25, 27, 28);
    --white-1: #fff;
    --white-2: #f9fafb;
    --white-t: #f9fafb80;
    --white-3: #eeeeee80;
    --grey-1: #eeeeee;
    --grey-1-t: #eeeeee20;
    --grey-2: #999;
    --grey-3: #555;
    --green-1: #29caab;
    --green-1-t: #29caab80;
    --green-2: #0c8c72;
    --green-3: #29caaa26;
    --red-1: #ff0061;
    --red-1-t: #ff006180;
    --red-2: #a5154a;
    --orange-1: #ffbf3f;
    --orange-1-t: #ffbf3f80;
    --orange-2: #a87206;
    --lilac-1: #8f8ebe;;
    --lilac-1-t: #8f8ebe80;
    --lilac-2: #434272;
    --blue-1: rgb(76, 195, 255);
    --blue-2: #085479;
    --bs-card-border-width: 1px;
    --bs-card-border-color: rgba(0, 0, 0, 0.175);
    --bs-card-border-radius: 0.375rem;
}

body {
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.pos-fix {
    position: fixed;
}

.pos-sti {
    position: sticky;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

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

.hidden {
    display: none !important;
}

.pointer {
    cursor: pointer;
}

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

.corners-bs{
    border-radius: var(--bs-card-border-radius);
}

.corners-7 {
    border-radius: 7px;
}

.corners-20 {
    border-radius: 20px;
}

.circle {
    border-radius: 50%;
}

.equal-wh {
    aspect-ratio: 1;
}

.rect-wh {
    aspect-ratio: 1.7;
}

.wide-wh {
    aspect-ratio: 3;
}

.shadow {
    box-shadow:  20px 20px 60px #bebebe,
             -20px -20px 60px #ffffff;
}

.trans-03 {
    transition: 0.3s;
}

.trans-1 {
    transition: 1s;
}

.scroll {
    overflow-y: scroll;
}

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

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

.z-10 {
    z-index: 10;
}

.z-100 {
    z-index: 100;
}
.z-1000 {
    z-index: 1000;
}

.border-0 {
    border: solid 0px black;
}

.border-black-1 {
    border: 1px solid var(--black-1);
}

.border-black {
    border: 1px solid var(--black-1);
}

.border-white {
    border: 5px solid var(--white-1);
}

.border-black-3d {
    box-shadow: 1px 1px 0 0 var(--black-1),
        2px 2px 0 0 var(--black-1),
        3px 3px 0 0 var(--black-1),
        4px 4px 0 0 var(--black-1),
        5px 5px 0 0 var(--black-1);
}

.border-green-3d {
    box-shadow: 1px 1px 0 0 var(--green-2),
        2px 2px 0 0 var(--green-2),
        3px 3px 0 0 var(--green-2),
        4px 4px 0 0 var(--green-2),
        5px 5px 0 0 var(--green-2);
}

.border-white-3d {
    box-shadow: 1px 1px 0 0 var(--white-2),
        2px 2px 0 0 var(--white-2),
        3px 3px 0 0 var(--white-2),
        4px 4px 0 0 var(--white-2),
        5px 5px 0 0 var(--white-2);
}

.border-r-1 {
    border-right: 1px solid var(--black-1);
}

.border-t-1 {
    border-top: 1px solid var(--black-1);
}

.border-green-t-1 {
    border-top: 1px solid var(--green-1);
}

.border-grey-1 {
    border: 1px solid var(--grey-1);
}

.border-grey-t-1 {
    border-top: 1px solid var(--grey-1);
}

.border-grey-b-1 {
    border-bottom: 1px solid var(--grey-1);
}

.border-20-green {
    border: 20px solid var(--green-1);
}

.border-20-orange {
    border: 20px solid var(--orange-1);
}

.border-20-lilac {
    border: 20px solid var(--lilac-1);
}
.border-slim-grey{
    border: 1px solid var(--grey-1)
}
.border-bs{
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.mrg-0 {
    margin: 0;
}

.mrg-10px {
    margin: 10px;
}

.mrg-auto {
    margin: auto;
}

.mrg-auto-r {
    margin-right: auto;
}

.mrg-auto-l {
    margin-left: auto;
}

.mrg-auto-tb {
    margin-top: auto;
    margin-bottom: auto;
}

.mrg-auto-t {
    margin-top: auto;
}
.mrg-auto-b {
    margin-bottom: auto;
}

.mrg-auto-t-min-10{
    margin-top: min(10px, 80vh);
}

.mrg-auto-side {
    margin-left: auto;
    margin-right: auto;
}

.mrg-auto-r {
    margin-right: auto;
}

.mrg-side-10 {
    margin-left: 10px;
    margin-right: 10px;
}

.mrg-tb-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mrg-r-5 {
    margin-right: 5px;
}

.mrg-r-30 {
    margin-right: 30px;
}

.mrg-l-0 {
    margin-left: 0;
}

.mrg-l-5 {
    margin-left: 5px;
}

.mrg-l-10 {
    margin-left: 10px;
}

.mrg-l-20 {
    margin-left: 20px;
}

.mrg-r-5 {
    margin-right: 5px;
}

.mrg-t-10 {
    margin-top: 10px;
}

.mrg-t-20 {
    margin-top: 20px;
}

.mrg-b-10 {
    margin-bottom: 10px;
}

.mrg-b-20 {
    margin-bottom: 20px;
}

.mrg-b-30 {
    margin-bottom: 30px;
}

.mrg-side-5 {
    margin-left: 5px;
    margin-right: 5px;
}

.mrg-tb-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mrg-tb-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}


.padding-0 {
    padding: 0
}

.padding-5 {
    padding: 5px
}

.padding-7 {
    padding: 7px
}


.padding-10 {
    padding: 10px;
}

.padding-20 {
    padding: 20px;
}

.padding-30 {
    padding: 30px;
}

.padding-l-0 {
    padding-left: 0;
}

.padding-r-10 {
    padding-right: 10px;
}

.padding-l-10 {
    padding-left: 10px;
}

.padding-l-5 {
    padding-left:5px;
}

.padding-side-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.padding-20-side,
.padding-side-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.padding-40-side,
.padding-side-40 {
    padding-left: 40px;
    padding-right: 40px;
}

.padding-5-tb {
    padding-top: 5px;
    padding-bottom: 5px;
}

.padding-10-tb,
.padding-tb-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-tb-20,
.padding-20-tb {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-10-t {
    padding-top: 10px;
}
.padding-10-b {
    padding-bottom: 10px;
}

.padding-15-tb {
    padding-top: 15px;
    padding-bottom: 15px;
}

.padding-10pcnt-side {
    padding-left: 10%;
    padding-right: 10%;
}

.disp-block {
    display: block;
}

.disp-flex-c {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.disp-flex-r {
    display: flex;
    flex-direction: row;
}

.jc-cntr {
    justify-content: center;
}

.jc-sb {
    justify-content: space-between;
}

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

.flex-g {
    flex-grow: 1;
}

.flex-w {
    flex-wrap: wrap;
}

.bg-blur {
    backdrop-filter: blur(5px);
}

.bg-white {
    background-color: var(--white-2) !important;
    color: var(--black-1);
}

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

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

.bg-grey-1 {
    background-color: var(--grey-1);
    color: var(--black-1);
}

.bg-grey-2 {
    background-color: var(--grey-2);
    color: var(--black-1);
}

.bg-green {
    background-color: var(--green-1) !important;
    color: var(--black-1) !important;
}

.bg-dark {
    background-color: var(--black-1) !important;
    color: var(--white-1);
}

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

.bg-red {
    background-color: var(--red-1) !important;
    color: var(--black-1) !important;
}

.bg-orange {
    background-color: var(--orange-1) !important;
    color: var(--black-1) !important;
}

.bg-orange-2 {
    background-color: var(--orange-2);
    color: var(--black-1);
}

.bg-lilac {
    background-color: var(--lilac-1);
    color: var(--black-1);
}
.bg-blue-1 {
    background-color: var(--blue-1);
    color: var(--black-1);
}
.bg-green-t{
    background-color: var(--green-1-t) !important;
}
.bg-lilac-t{
    background-color: var(--lilac-1-t);
}
.bg-orange-t{
    background-color: var(--orange-1-t)  !important;
}

.bg-red-t {
    background-color: var(--red-1-t) !important;
    color: var(--black-1) !important;
}

.bg-transparent {
    background-color: rgba(0, 0, 0, 0);
}

.bg-transparent-grey {
    background-color: rgb(238, 238, 238, .5);
}

.bg-h-dark:hover {
    background-color: var(--black-1)  !important;
    color: var(--white-1) !important;
}
.bg-h-green:hover{
    background-color: var(--green-1) !important;
    color: var(--black-1) !important;
}


.txt-green {
    color: var(--green-1) !important
}


.txt-red {
    color: var(--red-1) !important
}


.txt-orange {
    color: var(--orange-2) !important
}

.txt-black {
    color: var(--black-1);
}

.txt-white {
    color: var(--white-2);
}

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

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

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

.txt-h-green:hover {
    color: var(--green-1);
}

.txt-h-black:hover {
    color: var(--black-1);
}

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

.txt-r {
    text-align: right;
}
.txt-l {
    text-align: left;
}

.fnt-light{
    font-weight: lighter;
}

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

.fnt-400 {
    font-size: 400%;
}

.fnt-300 {
    font-size: 300%;
}

.fnt-200 {
    font-size: 200%;
}

.fnt-150 {
    font-size: 150%;
}

.fnt-175 {
    font-size: 175%;
}

.fnt-90 {
    font-size: 90%;
}
.fnt-15 {
    font-size: 15%;
}
.fnt-25 {
    font-size: 25%;
}
.fnt-35 {
    font-size: 35%;
}
.fnt-45 {
    font-size: 45%;
}
.fnt-55 {
    font-size: 55%;
}
.fnt-65 {
    font-size: 65%;
}

.fnt-70 {
    font-size: 70%;
}
.fnt-75 {
    font-size: 75%;
}

.fnt-50 {
    font-size: 50%;
}

.fnt-w-900 {
    font-weight: 900;
}

.fnt-w-700 {
    font-weight: 700;
}

.fnt-w-500 {
    font-weight: 500;
}

.fnt-w-300 {
    font-weight: 300;
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.opacity-01 {
    opacity: 0.1;
}

.w-5px {
    width: 5px;
}
.w-10px {
    width: 10px;
}
.w-15px {
    width: 15px;
}
.w-20px {
    width: 20px;
}

.w-25px {
    width: 25px;
}
.w-30px {
    width: 30px;
}
.w-35px {
    width: 35px;
}
.w-40px {
    width: 40px;
}
.w-45px {
    width: 45px;
}
.w-50px {
    width: 50px;
}
.w-55px {
    width: 55px;
}
.w-60px {
    width: 60px;
}
.w-65px {
    width: 65px;
}
.w-70px {
    width: 70px;
}
.w-75px {
    width: 75px;
}
.w-80px {
    width: 80px;
}
.w-85px {
    width: 85px;
}
.w-90px {
    width: 90px;
}
.w-95px {
    width: 95px;
}
.w-100px {
    width: 100px;
}


.w-5 {
    width: 5%;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}
.w-19 {
    width: 19%;
}
.w-20 {
    width: 20%;
}
.w-24 {
    width: 24%;
}
.w-25 {
    width: 25%;
}

.w-30 {
    width: 30%;
}
.w-31 {
    width: 31%;
}
.w-32 {
    width: 32%;
}

.w-33 {
    width: 33%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-85 {
    width: 85%;
}

.w-90 {
    width: 90%;
}

.h-255px{
    height: 255px;;
}
.h-55px{
    height: 55px;
}
.h-500px{
    height: 500px;
}
.h-400px{
    height: 400px;
}
.h-450px{
    height: 450px;
}
.h-300px{
    height: 300px;
}
.h-320px{
    height: 320px;
}
.h-350px{
    height: 350px;
}
.h-5px {
    height: 5px;
}
.h-10px {
    height: 10px;
}
.h-15px {
    height: 15px;
}
.h-20px {
    height: 20px;
}
.h-25px {
    height: 25px;
}
.h-30px {
    height: 30px;
}
.h-35px {
    height: 35px;
}
.h-40px {
    height: 40px;
}
.h-45px {
    height: 45px;
}
.h-50px {
    height: 50px;
}
.h-55px {
    height: 55px;
}
.h-60px {
    height: 60px;
}
.h-65px {
    height: 65px;
}
.h-70px {
    height: 70px;
}
.h-75px {
    height: 75px;
}
.h-80px {
    height: 80px;
}
.h-85px {
    height: 85px;
}
.h-90px {
    height: 90px;
}
.h-95px {
    height: 95px;
}
.h-100px {
    height: 100px;
}


.h-10 {
    height: 10%;
}

.h-15 {
    height: 15%;
}

.h-20 {
    height: 20%;
}

.h-30 {
    height: 30%;
}

.h-40 {
    height: 40%;
}

.h-50 {
    height: 50%;
}

.h-60 {
    height: 60%;
}

.h-70 {
    height: 70%;
}

.h-80 {
    height: 80%;
}

.h-85 {
    height: 85%;
}

.h-90 {
    height: 90%;
}

.h-95 {
    height: 95%;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.h-40-vh {
    height: 40vh;
}

.h-30-vh {
    height: 30vh;
}

.h-10-vh {
    height: 10vh;
}

.h-20-vh {
    height: 20vh;
}

.h-50-vh {
    height: 50vh;
}

.h-60-vh {
    height: 60vh;
}
.h-70-vh {
    height: 70vh;
}
.h-80-vh {
    height: 80vh;
}

.h-100-vh {
    height: 100vh;
}

.mh-80-vh {
    min-height: 80vh;
}

.mh-90-vh {
    min-height: 90vh;
}

.w-40px {
    width: 40px;
}

.h-40px {
    height: 40px;
}

.w-60px {
    width: 60px;

}
.min-w-150px {
    min-width: 150px;
}

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

.max-h-10px {
    max-height: 10px;
}

.max-h-20px {
    max-height: 20px;
}

.max-h-30px {
    max-height: 30px;
}

.max-h-40px {
    max-height: 40px;
}

.max-h-50px {
    max-height: 50px;
}

.max-h-60px {
    max-height: 60px;
}

.max-h-70px {
    max-height: 70px;
}

.max-h-80px {
    max-height: 80px;
}

.max-h-90px {
    max-height: 90px;
}

.max-h-100px {
    max-height: 100px;
}

.max-h-200px {
    max-height: 200px;
}

.max-h-300px {
    max-height: 300px;
}


.max-h-320px {
    max-height: 320px;
}

.max-h-350px {
    max-height: 350px;
}


.max-h-400px {
    max-height: 400px;
}

.max-h-450px {
    max-height: 450px;
}

.max-h-500px {
    max-height: 500px;
}

@media screen and (max-width: 768px) {
    .w-30 {
        width: 90%;
    }

    .w-33 {
        width: 90%;
    }

    .w-40 {
        width: 90%;
    }

    .w-50 {
        width: 90%;
    }

    .w-60 {
        width: 90%;
    }

    .fnt-200 {
        font-size: 100%;
    }
}