body {
    background-color: rgba(248, 248, 248, 1);
}
.teacher-profile-container {
    max-width: 100%;
    padding: 0 1rem;
}
.teacher-profile-container .user-head-box {
    width: auto;
    height: 100px;
    max-width: 100px;
}
.teacher-info-title {
    padding: 6px 12px;
    background-color: #d1c2e8;
    color: #fff;
}
.teacher-info-title.info-title-2 {
    background-color: #dfdff4;
    color: #1b215b;
}
.teacher-info-title.info-title-3 {
    background-color: #e9b2b2;
    color: #fff;
}
.teacher-info-box {
    display: flex;
    background-color: #f5f5f5;
    padding: 6px 3px;
}
.teacher-info-box.info-box-2 .teacher-info-item {
    border: 1px solid #9f88d4;
    height: 100%;
}
.teacher-info-box.info-box-2 .teacher-info-item ul {
    list-style-type: disc;
}
.teacher-info-box.info-box-2 .teacher-info-item ul li {
    line-height: 1.2;
}
.teacher-info-box.info-box-2 .teacher-info-item ul li::before {
    display: none;
}
.teacher-info-box.info-box-2 .teacher-info-item ul li.listOne::before {
    display: none;
}
.teacher-info-box.info-box-2 .teacher-info-item ul li.listTwo::before {
    display: none;
}
.teacher-info-box.info-box-3 .teacher-info-item {
    border: 1px solid #9f88d4;
    height: 100%;
}
.teacher-info-box.info-box-3 .teacher-info-item ul {
    list-style-type: none;
    margin: 0;
}
.teacher-info-box.info-box-3 .teacher-info-item ul li {
    line-height: 1.2;
    position: relative;
}
.teacher-info-box.info-box-3 .teacher-info-item ul li::before {
    content: 'x';
    color: red;
    position: absolute;
    left: -20px;
    top: 0;
    background: none;
}
.teacher-info-box.info-box-3 .teacher-info-item ul li.listOne::before {
    display: none;
}
.teacher-info-box.info-box-3 .teacher-info-item ul li.listTwo::before {
    display: none;
}
.teacher-info-box .teacher-info-item {
    flex: 1;
    background: #fff;
    padding: 1rem;
    margin: 0 3px;
}
.teacher-info-box .teacher-info-item ul {
    list-style-type: none;
    margin-top: 12px;
}
.teacher-info-box .teacher-info-item ul li {
    position: relative;
    line-height: 1.8;
    color: #6170a6;
}
.teacher-info-box .teacher-info-item ul li::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
    left: -25px;
}
.teacher-info-box .teacher-info-item ul.listOne li::before {
    background: url('/frontend/img/list-icon-1.png') 0 0 no-repeat;
    background-size: auto 100%;
}
.teacher-info-box .teacher-info-item ul.listTwo li::before {
    background: url('/frontend/img/list-icon-2.png') 0 0 no-repeat;
    background-size: auto 100%;
}
.teacher-info-box .teacher-info-item-title {
    display: inline-block;
    background-color: #ffe1e2;
    padding: 3px 12px;
    border: 1px solid #e67eac;
}
.register-flow-box .list {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    padding-left: 0;
}
.register-flow-box .list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: rgba(223, 223, 244, 0.5);
    color: rgba(0, 0, 0, 0.5);
    padding: 3px 24px;
    border-radius: 15px;
}
.register-flow-box .list li.active {
    background: rgba(223, 223, 244, 1);
    color: rgba(0, 0, 0, 1);
}
.register-flow-box .list li + li {
    margin-left: 50px;
}
.register-flow-box .list li + li::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #333;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: -40px;
    margin: auto;
}
.user-banner-box {
    height: 300px;
    background-color: rgba(218, 223, 242, 1);
}
a {
    padding: 6px 12px;
    border-radius: 10px;
    text-align: center;
}
.purple-light {
    display: block;
    background-color: rgba(223, 223, 244, 1);
    color: #6170a6;
}
.btn-gray {
    background-color: rgba(152, 148, 148, 1);
    color: #fff;
}
.user-menu-box .user-head {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(0, 0, 0, 1);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    overflow: hidden;
}
.user-menu-box .user-head img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}
.user-menu-box ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.user-menu-box ul li + li {
    margin-top: 0.5rem;
}
.user-title {
    font-size: 20px;
    font-weight: 700;
}
.user-content-box {
    padding-left: 0;
}
.user-content-box .teacher-stats-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 14px;
}
.user-content-box .form-control.post-box {
    margin: 0;
}
.user-content-box #description {
    display: none;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    word-break: break-all;
}
.desktop.user-menu-box {
    display: none;
}
.profile-edit-btn {
    font-size: 14px;
    margin-bottom: 1rem;
}
.profile-edit-btn #mobile-description {
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
    word-break: break-all;
}
.profile-edit-btn .btn-group {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0 0 1rem 0;
}
.profile-edit-btn .btn-group a {
    margin: 0;
}
.mobile.user-menu-box {
    display: block;
}
.mobile.user-menu-box .menu-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.mobile.user-menu-box .menu-box li {
    margin-top: 0;
}
.mobile.user-menu-box .menu-box li + li {
    margin-top: 0;
}
.mobile.user-menu-box ul li + li {
    margin-top: 0;
}
.form-floating {
    position: relative;
}
.form-floating .textarea-hint {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: rgba(152, 148, 148, 1);
}
.user-edit-box .user-head {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: rgba(217, 217, 217, 1);
    color: #333;
    border-radius: 100%;
}
.search-box {
    position: relative;
}
.search-box i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 18px;
}
.search-box input {
    padding-left: 36px;
}
.rating-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 1rem;
}
.rating-box .rating {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.rating-box .rating .color-flower {
    display: none;
}
.rating-box .rating.active .color-flower {
    display: block;
}
.rating-box .rating.active .gray-flower {
    display: none;
}
.user-menu-container {
    display: none;
}
@media (min-width: 768px) {
    .teacher-profile-container {
        max-width: 720px;
   }
    .user-content-box {
        padding-left: 2rem;
   }
    .user-content-box .teacher-stats-block {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        font-size: 1rem;
   }
    .user-content-box #description {
        display: block;
   }
    .desktop.user-menu-box {
        display: block;
   }
    .profile-edit-btn {
        font-size: 16px;
        padding-left: 2rem;
   }
    .profile-edit-btn #mobile-description {
        display: none;
   }
    .user-menu-container {
        display: block;
   }
    .mobile.user-menu-box {
        display: none;
   }
}
@media (min-width: 992px) {
    .teacher-profile-container {
        max-width: 900px;
   }
}
