@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root{
    --text-color-normal: #212121;
    --border-color-bottom: #B3B3B3;
    --header-text-color:#00A2E8
}
body {
    margin: 0;
    font-family: 'Be Vietnam Pro', sans-serif !important;
}
.main{
    margin-top: 5.625rem;
    z-index: -1;
}
.list-style-non {
    list-style: none;
    padding-inline-start: 0;
    margin-inline-start: 0;
}

.displayFlex {
    align-items: center;
    display: flex;
    justify-content: space-around;
}

.flexCenter {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.container {
    height: 100%;
}

.row {
    height: 100%;
}

.btn-i {
    height:3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 44px;
    color: #fff !important;
    background: linear-gradient(90deg, #015BEA -2.75%, #01B3F9 100%);
    border-radius:3.125rem;
}

.btn-i:hover {
    background: linear-gradient(270deg, #0A43B6 0%, #13287E 100%);
    cursor: pointer;
}

.displayFlexColumn {
    display: flex;
    flex-direction: column;
}
.flexColumn{
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.flex01 {
    width: 50%;
}

.flex02 {
    flex: 2;
}
.gap10{
    gap: 0.625rem
}
.container {
    width: 100%;
    height: 100%;
}

.textAlignCenter{
    text-align: center;
}
.marginTop10{
    margin-top: 0.625rem;
}
@media screen and (min-width: 1400px) {
    .inputInfor{
        height: 56px !important;
    }
    .message{
        height: 190px !important;
    }
}


@media screen and (min-width: 768px) and (max-width: 1024px) {
    .btn-i {
        font-size: 1rem;
        padding: 0.625rem1.875rem
    }

    #header {
        height: 5.625rem;
    }
    .main{
        margin-top: 0px;
        z-index: -1;
    }
}

@media screen and (max-width: 768px) {
    .btn-i {
        font-size: 13px;
        padding: 1.25rem 0.625rem;
        height:1.875rem;
    }
    .popupTable {
        bottom: -200px;
    }
    .main{
        margin-top: 0px;
        z-index: -1;
    }
}

.popupTable {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    z-index: 9999;
    overflow-y: auto;
    animation: popup 0.3s ease-in;
    display: none;
}
@keyframes popup{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.popupbody{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: auto;
    position: absolute;
    padding: 1.25rem;
    height: 530px;
    border-radius:1.875rem;
    background: linear-gradient(180deg, #FFF 45.27%, #C1D2EB 115.89%);
    box-shadow: 0px 0px3.125rem 0px rgba(0, 25, 125, 0.15);
}

.popup-title {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.popup-title img {
    width: 2.5rem;
}

.popup-title span {
    color: #13287E;
    text-align: center;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height:1.875rem;
}

.popup-subtitle {
    padding: 0 2.5rem;
    color: var(--text-color-normal);
    text-align: center;
    font-size:0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height:1.875rem;
    margin-bottom: 1.25rem;
}

.marginBottom {
    margin-bottom: 0.625rem;
}

.inputInfor {
    font-size:0.875rem;
    padding-left: 0.625rem;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #015BEA;
    background: #FFF;
}
.message{
    height: 11.25rem;
}
.popupbody .btn-i{
    margin-top: 1.25rem;
    width: 12.5rem;
    text-align: center;
}
.close-icon img{
    width: 1.25rem;
}
.close-icon{
    position: absolute;
    right: 0.625rem;
    top: 5px
}
.close-icon img:hover{
    background-color: #C1D2EB;
    cursor: pointer;
}