﻿.TeacherTextTitle {
    margin: 2pt 2pt;
    font-weight: bold;
}

.TeacherTextIntro {
    color: #3F3F3F;
    margin: 2pt 2pt;
}

.TeacherTextBody {
    color: #3F3F3F;
    margin: 2pt 2pt;
    text-align: right;
}

.TeacherTextLink {
    font-weight: bold;
    transition: 0.5s ease;
    text-decoration: none;
}

    .TeacherTextLink:hover {
        color: navy;
    }

.TeacherTextMessageNormal {
    text-align: center;
    margin: 5pt 5pt;
}

.TeacherTextMessageError {
    color: red;
    background: yellow;
    margin: 5pt 5pt;
}

.TeacherImageProfileSmall {
    width: 4rem;
    border-radius: .5rem;
    margin: .5rem;
    border: 1px silver solid;
}

.TeacherImageProfileLarge {
    width: 100%;
    border: 1px silver solid;
    border-radius: 1rem;
}

.TeacherProfilePane {
    position: sticky;
    top: 5rem;
}
.TeacherResumePane {
    position: sticky;
    top: 5rem;
}


//////////////////////////////////////////////////////////////////////// FORMS 
.TeacherFormTableMain {
    text-align: right;
    float: right;
    width: 500px;
    border: 0px solid #C0C0C0;
}

.TeacherFormCellIndicator {
    width: 20px;
}

.TeacherFormtCellLabel {
    text-align: left;
    vertical-align: top;
    width: 100px;
}

.TeacherFormCellInput {
    text-align: right;
    width: 550px;
    vertical-align: top;
}


.TeacherFormTextTitle {
    margin: 0px 5px;
    font-family: tahoma;
    font-weight: bold;
    color: #555555;
    height: 14px;
}

.TeacherFormTextTitleMandatory {
    font-family: tahoma;
    color: red;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 5px;
    margin-right: 5px;
}

.TeacherFormTextBox {
    width: 350px;
    font-family: tahoma;
    direction: rtl;
    text-align: right;
}

.TeacherFormDropList {
    width: 200px;
    font-family: tahoma;
    direction: rtl;
    text-align: right;
    margin-bottom: 0px;
}

.TeacherFormTextBoxNumeric {
    width: 200px;
    font-family: tahoma;
    direction: ltr;
    text-align: center;
}

.TeacherFormTextBoxLatin {
    width: 350px;
    font-family: tahoma;
    direction: ltr;
    text-align: left;
}

.TeacherFormTextBoxUpload {
    width: 357px;
    font-family: tahoma;
}

.TeacherFormTextBoxDateTime {
    width: 150px;
    font-family: tahoma;
    direction: ltr;
    text-align: center;
}

.TeacherFormTextInformation {
    width: 350px;
    font-family: tahoma;
    color: #555555;
    margin-top: 0px;
    margin-bottom: 10px;
}

.TeacherFormTextConfirmation {
    width: 200px;
    font-family: tahoma;
    color: #555555;
    margin-top: 0px;
    margin-bottom: 10px;
}

.TeacherFormTextConfirmationError {
    width: 200px;
    font-family: tahoma;
    color: red;
    margin-top: 0px;
    margin-bottom: 10px;
    background-color: yellow;
}

.TeacherFormTextConfirmationSuccess {
    width: 200px;
    font-family: tahoma;
    color: #019882;
    margin-top: 0px;
    margin-bottom: 10px;
}

.TeacherFormImageThumb {
    width: 80px;
    margin: 3pt;
    border: 1px gray solid;
}


.TeacherInfobarCellImage {
    width: 52px;
    vertical-align: top;
    text-align: center;
}

.TeacherInfobarCellContent {
    vertical-align: middle;
}

.TeacherInfobarImageProfile {
    width: 48px;
    border: 1px silver solid;
    border-radius: 7px;
    transition: all 0.3s ease;
}

    .TeacherInfobarImageProfile:hover {
        border: 1px gray solid;
    }

.TeacherInfobarTextTitle {
    font-weight: 500;
    margin: 0pt 5pt 0pt 0pt;
    transition: all 0.3s ease;
}

.TeacherInfobarTextIntro {
    font-weight: 300;
    font-size: .9rem;
    margin: 0pt 5pt 0pt 0pt;
    transition: all 0.3s ease;
}

.tch-infobar-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.tch-infobar-avatar {
    width: 4rem;
    height: 4rem;
    border: 1px solid var(--nx-box-soft-bordercolor);
    border-radius: 50%;
    margin: 3px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    opacity: 1;
    transition: all 0.5s ease;
    background-color: var(--nx-box-soft-backcolor);
}


@media screen and (max-width:767px){
    .TeacherImageProfileLarge {
        margin: 1rem auto;
        max-width: 17rem;
        display: block;
        width: calc(100% - 1rem);
    }

    .TeacherProfilePane {
        margin: 1rem 0 2rem;
    }
}