﻿body {
    background-color: var(--backgroundGrey);
    color: var(--textGrey) !important;
    font-family: "Roboto", sans-serif;
}

/*------------------icons-start---------------*/
.i-largest {
    font-size: var(--iconLargest);
}

.i-ex {
    font-size: var(--iconExtraLarge);
}

.i-lg {
    font-size: var(--iconLarge);
}

.i-md {
    font-size: var(--iconMedium);
}

.i-sm {
    font-size: var(--iconSmall);
}

/*------------------icons-end---------------*/

/*------------------border-start---------------*/
.border {
    border: var(--greyBorder);
    margin-bottom: 0px;
}

.border-bottom {
    border-bottom: var(--greyBorder) !important;
    margin-bottom: 0px !important;
}

.border-top {
    border-top: var(--greyBorder) !important;
    margin-top: 0px !important;
}

/*------------------border-end---------------*/

.hand-cursor {
    cursor: pointer;
}

/*-----------BACKGROUND COLOR start------------*/
.bg-light-grey {
    background-color: var(--backgroundGrey);
}

.bg-red {
    background-color: var(--red);
}

.bg-lightred {
    background-color: var(--lighRed);
}
/*-----------BACKGROUND COLOR end------------*/

.mt-20 {
    margin-top: var(--extraLarge)
}

/*width  start*/
.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-26 {
    width: 26%;
}

.w-30 {
    width: 30%;
}

.w-33 {
    width: 33%;
}

.w-40 {
    width: 40%;
}

.w-49 {
    width: 49%;
}

.w-70 {
    width: 70%;
}
/*width  end*/

/*gap  start*/
.g-10 {
    gap: 10px;
}

.g-20 {
    gap: 20px;
}

.g-30 {
    gap: 30px;
}

/*gap  end*/

/*form element start*/

.input-grp {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
}

.input-grp-txt {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    background-color: var(--buttonGrey);
    border: var(--greyBorder);
    border-left: unset;
    border-radius: 0px 4px 4px 0px;
}

.form-input {
    flex: 1;
    height: 100%;
    border-radius: 4px 0px 0px 4px !important;
}

/*form element end*/

/*display*/
.hidden{
    display:none;
}

.show {
    display: block;
}
/*display end*/

/*------shadow start--------------*/
.dropdown-shadow {
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.10);
}

/*------shadow end--------------*/

div.loading .loading-icon-wrapper {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    z-index: 100000;
}

