:root {
    --themecolor: #4070f4;
    --themecolorhover: #300047;
}

.width-40-per{
    width: 40%;
}
.width-50-per {
    width: 50%;
}
.width-60-per {
    width: 60%;
}
.d-block{
    display: block;
}
.disp-flex{
    display:flex;
}
.disp-none {
    display: none;
}
.margin-bottom-10{
    margin-bottom: 10px;
}
.padding-10{
    padding: 10px;
}
.text-left{
    text-align: left;
}
.text-right{
    text-align: right;
}
.text-center {
    text-align: center;
}
.themed-color {
    background-color: var(--themecolor);
}

.baseflex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-align-center {
    align-items: center;
}
.themed-button {
    background-color: var(--themecolor);
    color: white;
    border: 2px solid var(--themecolor) !important;
    --display: none;
    padding: 5px 15px;
    border-radius: 20px;
}

.themed-button-disabled {
    background-color: #aaa;
    color: white;
    padding: 5px;
    border-radius: 5px;
    cursor: not-allowed;
    border: 2px solid #aaa !important;
}

.themed-button-pill {
    background-color: var(--themecolor);
    color: white;
    border: 2px solid var(--themecolor) !important;
    --display: none;
    padding: 0px 15px;
    border-radius: 20px;
}
.input-hover:hover {
    outline: 1px solid #3b82f680;
}
.cursor-pointer{
    cursor: pointer;
}
.position-relative{
    position: relative;
}
.padding-5{
    padding: 5px;
}