@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

img {
    max-width: max-content;
}

a {
    text-decoration: none;
}

:root {
    --white: #ffffff;

    --darkblue: #172B4D;
    --blue: #0052CC;
    --lightBlue: #0052CC;
    --yellow: #FFB843;
    --voilet: #5243AA;
    --darkOrange: #DE350B;
    --orange: #FF540D;
    --red: #E53935;
    --green: #00875A;

    /* black shades */

    --black: #171717;
    --darkblack: #121212;
    --black1: #262626;
    --black2: #404040;
    --black3: #525252;
    --black4: #737373;
    --black5: #121112;
    --black6: #252525;
    --black7: #101010;

    /* grey shades */

    --grey: #A3A3A3;
    --grey1: #D4D4D4;
    --grey2: #FAFAF9;
    --grey3: #F5F5F5;
    --grey4: #FAFAFA;
    --grey5: #EEEEEE;
    --grey6: #5A5A5A;
    --grey7: #E7E7E7;

    /* icon colors */
    --blue-icon : #0251FD;
}


/* margin-top classes starts*/

.mt-2 {
    margin-top: 2px;
}

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

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

.mt-12 {
    margin-top: 12px;
}

.mt-15 {
    margin-top: 15px;
}

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

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

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

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

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

/* margin-top classes ends */

/* margin-bottom classes starts*/

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

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

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

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

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

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

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

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

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

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

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

/* margin-bottom classes ends */

/* flex gap start */

.gap5 {
    gap: 5px;
}

.gap10 {
    gap: 10px;
}

.gap12 {
    gap: 12px;
}
.gap15 {
    gap: 15px;
}

.gap20 {
    gap: 20px;
}
.gap40 {
    gap: 40px;
}

/* flex gap ends */


.flexbox {
    display: flex;
    align-items: center;
    justify-content: inherit;
}

.box2col {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flexstart {
    align-items: start;
}

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


.g-Tag {
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    color: var(--green);
    background: rgba(0, 135, 90, 0.1);
    border-radius: 3px;
    padding: 1px 7px;
    text-transform: uppercase;
}

.b-Tag {
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    color: var(--blue);
    background: rgba(0, 82, 204, 0.1);
    border-radius: 3px;
    padding: 1px 7px;
    text-transform: uppercase;
}

.grey-Tag {
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    color: #A3A3A3;
    background: #F5F5F5;
    border-radius: 3px;
    padding: 5px 10px;
    text-transform: uppercase;
}

.grey-Tag img {
    display: none;
}


.pd0 {
    padding: 0 !important;
}

.pd-16 {
    padding: 16px ;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 15px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

.mb40 {
    margin-bottom: 40px;
}

.text12Upper {
    color: #404040;
    font-size: 12px;
    font-weight: 700;
    line-height: 125%;
    text-transform: uppercase;
}

.w100 {
    width: 100%;
}

.mb8 {
    margin-bottom: 8px;
}

.textGreen {
    color: #00875A !important;
    font-size: 13px;
    font-weight: 500;
    line-height: 120%;
}

.colBlockTwo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.badgeTag {
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
    padding: 1px 7px;
    text-align: center;
    width: max-content;
    border-radius: 3px;
}

.blueBadge {
    color: #0052CC;
    background: rgba(0, 82, 204, 0.10);
}

.greyBadge {
  background-color: #E7E7E7;
  color: #101010;
}

.blackBadge {
  background-color: #1C1C1C;
  color: #FFFFFF;
}

.removeButton {
    width: max-content;
    color: var(--red);
    font-weight: 500;
    line-height: 120%;
    font-size: 13px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 5px;
}

.removeButton:hover {
    filter: contrast(8);
}

.whiteBlockBox{
    background: var(--white);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #eee;
}