.containerx{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
}
.containerx2{
    width: 70%;
}
.img1{
    width: 100%;
    border-radius: 20px;
    box-shadow: 2px 2px 20px gray;
    margin-bottom: 10px;
}
.img2{
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    border: 4px solid var(--bs-secondary);
}
.commentImg{
    width: 60px;
    height: 60px;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 50%;
}
.boldx{
    font-weight: bold;
}
.txt-justify{
    text-align: justify;
    margin-top: 10px;
}
.shareIconBtn{
    color: white;
    background-color: var(--bs-secondary);
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    transition: 0.3s;
}
.shareIconBtn:hover{
    transform: scale(1.1);
    box-shadow: 1px 1px 5px grey;
}
.textAreaInputComment{
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    border-color: gray;
}
.btnComment{
    padding-top:10px;
    padding-bottom:10px;
    padding-left:40px;
    padding-right:40px;
    color: white;
    background-color: var(--bs-secondary);
    font-weight: bold;
    border: none;
    border-radius: 5px;
}
.textAreaInputComment:focus{
    outline: rgba(38, 212, 140, 0.2) solid 6px;
}
.mbx-0{
    margin-bottom: 0px;
}
.comment-paragraph{
    text-align: justify;
    margin-bottom: 30px;
}

.full-screen{
    width: 100%;
    min-height: 100vh;
    margin-top: 20px;
    margin-bottom: 20px;
}
.full-width{
    width: 100%;
}
.center-xx{
    justify-content: center;
}
.center-yx{
    align-items: center;
}
.center-all{
    justify-content: center;
    align-items: center;
}
.form-card{
    border-radius: 10px;
    box-shadow: 2px 2px 5px var(--bs-primary);
    width: 70%;
    min-height: 70vh;
    padding: 20px;
}
.btnx{
    width: 200px;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: none;
    margin: 10px;
    font-weight: bold;
}
.btnx.w-100x{
    width: 100%;
}
.btnx.mx-0x{
    margin-left: 0px;
    margin-right: 0px;
}
.btnx.pbtn{
    color: white;
    background-color: var(--bs-primary);
}
.btnx.sbtn{
    color: white;
    background-color: var(--bs-secondary);
}
.boldx{
    font-weight: bold;
}
.x-end{
    justify-content: end;
}
.x-btwn{
    justify-content:space-between;
}
.application-input-text{
    width: 100%;
    margin-bottom: 10px;
    border: 2px solid grey;
    border-radius: 5px;
    padding: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}
.application-input-text:focus{
    outline: rgba(38, 212, 140, 0.4) solid 4px;
}
.application-input-text.hlf{
    width: 50%;
}
label{
    font-weight: bold;
}
.flex-direction-colx{
    flex-direction: column;
}
.btnx-application-type{
    width: 250px;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 2px solid var(--bs-secondary);
    color: var(--bs-secondary);
    background-color: white;
    margin: 5px;
    font-weight: bold;
    transition: all 0.5s ease-in;
}
.btnx-application-type:hover{
    background-color: rgba(38, 212, 140, 0.05);
}
.btnx-application-type.activex{
    color: white;
    background-color: var(--bs-secondary);
}
.infomation-icon-applications{
    width: 35px;
    height: 35px;
    border: 4px solid var(--bs-primary);
    color: var(--bs-primary);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}
.itemx{
    display: none;
}
.itemx.showx{
    display: flex;
}
.loginContainer{
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loginContainer{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loginForm{
    width: 400px;
    min-height: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px grey;
}
.blueLink{
    color: blue;
    transition: 0.3s all ease-in;
}
.blueLink:hover{
    color: blue;
    text-decoration: underline;
    transform: scale(1.1);
}

.modalx{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.3s all ease-in;
}
.modalx.showx{
    display: flex;
    transition: 0.3s all ease-in;
}
.modalx-body{
    min-width: 400px;
    min-height: 70vh;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px;
}
.btnEdit{
    background-color: blue;
    border-radius: 5px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    font-weight: bold;
    color: white;
}
.btnEdit.fixedx.topRightx{
    position: absolute;
    right: 5px;
    top: 10px;
    z-index: 3;
}
.relativexx{
    position: relative;
}

.btnAddBlog{
    background-color: var(--bs-secondary);
    border-radius: 5px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    font-weight: bold;
    color: white;
}
.appbtnx{
    border: none;
    border-radius: 5px;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: var(--bs-primary);
    color: white;
    font-weight: bold;
}
.appbtnx.biggerx,.badge.biggerx{
    font-size: 16px;
}
.appbtnx.biggerx{
    display: block;
    width: fit-content;
    padding-top: 2px;
    padding-bottom: 2px;
}
.appFormDiv{
    border-radius: 5px; 
    width: 100%;
    min-height: 30px;
    margin-top:10px;
    margin-bottom:10px;
    padding: 10px;
    padding-bottom: 10px;
    box-shadow: 2px 2px 5px #94a3b8;
}
.appFormDivChild{
    width: 47%;
}
.appFormDivChild2{
    width: 49%;
}
.btn-showpassword{
    background-color: transparent;
    border:none;
    color:var(--bs-secondary);
    font-weight:bold;
}