:root {
    --bgColor: #F7F9FC;
    --whiteBg: #FFFFFF;
    /* --secondaryBg: rgb(23,26,40); */
    --borderColor: #E7EBF3;
    --textColor: #0A1223;
    --pupColor: #9733FF;

    --default: #232323;
    --defaultInverse: #fff;
    --primary: #2B7279;
    --secondary: #d0692d;
    --terciary: #C75246;
    --colors1: #9733FF;
    --colors2: #60D138;
    --colors3: #F34970;
    --colors4: #017BFF;
    --colors5: #FFC700;
    --colors6: #39C0C7;
}

body {
    background-color: var(--bgColor);
    color: var(--textColor);
    overflow-x: hidden;
}

.pointer {
    cursor: pointer;
}

/* - With & Height */
.width-100 {
    width: 100%;
}
.width50 {
    width: 50px;
}
.width35 {
    width: 35px;
}
.height-100 {
    height: 100%;
}

/* - Display Options */
.Flex {
    display: flex;
}

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

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

.borderNone {
    border:none;
}

.flexEnd {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.spaceBetween {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* - Align text */
.align-right {
    text-align: right;
}

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

/* Paddings */
.padding4 {
    padding: 4px
}

.padding8 {
    padding: 8px
}

.padding16 {
    padding: 16px
}

.padding32 {
    padding: 32px
}

/* Margins  */
/* - Margin top */
.top4 {
    margin-top: 4px;
}

.top8 {
    margin-top: 8px;
}

.top16 {
    margin-top: 16px;
}

.top32 {
    margin-top: 32px;
}

/* - Margin bottom */
.bottom4 {
    margin-bottom: 4px;
}

.bottom8 {
    margin-bottom: 8px;
}

.bottom16 {
    margin-bottom: 16px;
}

.bottom32 {
    margin-bottom: 32px;
}

/* - Margin right */
.right4 {
    margin-right: 4px;
}

.right8 {
    margin-right: 8px;
}

.right16 {
    margin-right: 16px;
}

.right32 {
    margin-right: 32px;
}

.right64 {
    margin-right: 64px;
}

/* - Margin left */
.left4 {
    margin-left: 4px;
}

.left8 {
    margin-left: 8px;
}

.left16 {
    margin-left: 16px;
}

.left32 {
    margin-left: 32px;
}

.white {
    background: white;
}

.txtAlignCent {
    text-align: center;
}

.downloadBtn {
    background: #F6EEFF;
    border: 1px solid #9733FF;
    width: 110px;
    font-size: 12px;
    height: 32px;
    font-weight: bold;
    border-radius: 8px;
    color: #9733FF;
}

.search-icon-style {
    height: 100%;
    display: flex;
    padding: 3px 12px;
    align-items: center;
    border: 1px solid #e7ebf3;
    border-right: none;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
}

.form-control:focus#title-search-bar {
    box-shadow: none;
    border-color: var(--borderColor);
}

.input-field-style {
    border: 1px solid var(--borderColor);
    height: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}


.transcriptCellStyle {
    overflow-y: scroll;
    margin-top: 4px;
    padding: 8px;
    height: 100%;
    display: flex;
    align-items: center;
}
/* 

.totalThemesNum {
    width: 75px;
    color: #8F9BB3;
    font-size: 11px;
} */