﻿@import url('https://fonts.googleapis.com/css?family=Inter');
body {
    font-family: Inter;
    font-feature-settings: 'clig' off, 'liga' off;
    margin: 0px;
    height:100%;
}
.logo {
    display: inline-flex;
    width: 27.382px;
    height: 29.217px;
    flex-shrink: 0;
}

.logoMenuLayout {
    padding: 1.5% 1.5% 0.5% 1.5%;
}
.logoText2 {
    color: var(--gray-600, #4B5563);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.755px; /* 168.776% */
    padding:1%;

}
.logoText {
    color: var(--gray-600, #4B5563);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.755px; /* 168.776% */
}
h2 {
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.225px;
}

p {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
    margin:1px;
}
.small {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px; /* 100% */
}

input[type="text" i], input[type="password" i] {
    display: flex;
    width: 392px;
    height: 24px;
    padding: 8px 16px;
    align-items: center;
    align-self: stretch;
    border-radius: 6px;
    border: 1px solid #CBD5E1;
    background: #FFF;
}
    input[type="text" i] ::selection, input[type="password" i] ::selection {
        border: none !important;
        outline: 0 none !important;
    }
input::placeholder {
    color: var(--slate-400, #94A3B8);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
}
a {
    color: var(--gray-700, #374151);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration-line: underline;
}
.subTitle {
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    color: var(--gray-500, #6B7280);
}
.downArrow {
    color: var(--slate-500, #64748B);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    vertical-align: bottom;
}
.scroll::-webkit-scrollbar-thumb {
    background: var(--sky-500, #0EA5E9);
    border-radius: 10px;
}

    /* Handle on hover */
    .scroll::-webkit-scrollbar-thumb:hover {
        background: var(--sky-500, #0EA5E9);
    }

.scroll::-webkit-scrollbar {
    width: 10px;
    border-radius: 25px;
    border: 1px;
    padding-right: 10px;
    margin-right: 15px;
    height: 17px;
}
.closeIcon {
    background-position: right top;
    background-repeat: no-repeat;
    position: absolute;
    cursor: pointer;
    width: 17px;
    font-size: 18px;
    top: 1px;
    height: 17px;
    right: 10px;
}
.btn {
    width: 70% !important;
    height: 40px;
    padding: 5px 15px;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    border:1px solid white;
    border-radius: 6px;
    background: var(--sky-500, #0EA5E9);
}

    .btn:hover {
        border-radius: 6px;
        background: var(--sky-600, #0284C7);
    }

    .btn:active {
        border-radius: 6px;
        background: var(--sky-700, #0369A1);
    }

    .btn:disabled {
        border-radius: 6px;
        opacity: 0.3;
        background: var(--sky-500, #0EA5E9);
    }

.btntxt {
    color: #FFF;
    /* body-medium */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 171.429% */
}
.Cpointer {
    cursor: pointer;
}
.page-item {
    padding-right: 10px !important;
    color: #8F949F !important;
    border-radius: 4px;
}

.page-link {
    color: var(--slate-500, #64748B);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
}

.page-item.active .page-link {
    border-radius: 4px;
    border: 1px solid var(--slate-400, #94A3B8);
    color: white;
    background: var(--sky-500, #0EA5E9) !important;
}
.page-item.disabled .page-link {
    color: #8F949F !important;
    border-radius: 4px;
    opacity:0.8;
    background: #f2f2f2;
}
.Popup {
    width:60%;
    left: 16%;
    top: 50%;
    position: fixed;
    z-index: 100;
    margin-top: -310px;
    text-align: left;
    background: white;
    border: 1px solid rgb(231, 239, 247);
    border-radius: 10px;
    box-shadow: 5px 5px 8px 8px var(--slate-300, #334766);
}

@media (min-height:200px) and (max-height:300px) {
    #MainContentDiv {
        height: 200px !important;
    }
}

@media (min-height:301px) and (max-height:499px) {
    #MainContentDiv {
        height: 301px !important;
    }
}

@media (min-height:500px) and (max-height:700px) {
    #MainContentDiv {
        height: 500px !important;
    }
}

@media (min-height:701px) and (max-height:800px) {
    #MainContentDiv {
        height: 701px !important;
    }
}
@media (min-height:801px) and (max-height:900px) {
    #MainContentDiv {
        height: 801px !important;
    }
}
@media (min-height:901px) and (max-height:1200px) {
    #MainContentDiv {
        height: 900px !important;
    }
}

