/* Genel Stil Ayarları */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    font-family: "Outfit", sans-serif;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.page{
    display: flex;
    min-height: 100vh; /* Sayfa yüksekliği kadar yüksek olsun */
}
.container{
    width: 1300px;
    margin: auto;
}
.container3{
    width: 1190px;
    margin: auto;
}
a{
    text-decoration: none;
}
a:hover{
    opacity: .7;
}

/* Sidebar */
.sidebar{
    width: 265px;
    background-color: #F9F9F9;
    display: flex;
    flex-direction: column;
}
.sidebar_flex{
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sidebar_menu{
    margin-top: 3%;
}
.sidebar_menu>ul>li>a{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}
.sidebar_menu>ul>li>a>img{
    width: 20px;
}
.sidebar_menu>ul>li>a>p{
    color: #929292;
    font-weight: 400;
}
.sidebar_logo{
    margin-top: 6px;
    padding-bottom: 25px;
}
.sidebar_bottom_nav>a{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}
.sidebar_bottom_nav>a>p{
    color: #717171;
    font-weight: 300;
}
.sidebar_hover{
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgb(0, 209, 255);
    background: linear-gradient(111deg, rgba(0, 209, 255, 1) 0%, rgba(0, 173, 211, 1) 100%);
    width: 210px;
    height: 20px;
    border-radius: 50px;
    margin-left: -15px;
    padding: 15px;
}
.sidebar_hover>p{
    color: #FFFFFF !important;
}
/* Sidebar END */

/* Main Side */
.main_side{
    padding: 30px;
}
.main{
    width: 1190px;
}
.head_profile_dropdown {
    position: relative;
    display: inline-block;
}
.profile_dropdown_content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    z-index: 1;
    right: 0;
    top: 12px;
}
.profile_dropdown_content>a{
    color: #000000;
}
.head_profile_dropdown:hover .profile_dropdown_content {
    gap: 13px;
    display: flex;
    flex-direction: column;
}
.main_head_page{
    display: flex;
    align-items: center;
    gap: 10px;
}
.main_head_page>p{
    font-weight: 700;
    font-size: 23px;
}
.head_search_box{
    margin-left: -140px;
    gap: 10px;
    padding: 15px;
    border: 1px solid #E2E2E2;
    width: 350px;
    height: 15px;
    border-radius: 25px;
    background-color: #F5F7FB;
    display: flex;
    align-items: center;
}
.head_search_text{
    border: 1px solid transparent;
    background-color: #F5F7FB;
    width: 100%;
}
.head_search_text:focus-visible {
    outline: 0px;
}
.head_search_text::placeholder {
    color: #5D5b73;
}
.main_head_profile{
    display: flex;
    align-items: center;
    gap: 20px;
}
.head_notifications{
    background-color: #F9F9F9;
    padding: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 99px;
}
.head_profile_names>h6{
    font-weight: 600;
    color: #1A1A1A;
}
.head_profile_names>p{
    color: #5D5B73;
    font-size: 10px;
    float: right;
    margin-top: 5px;
}
.head_profile_photo>img{
    width: 44px;
    height: 44px;
    border-radius: 99px;
}
.main_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main_head{
    padding: 30px;
}
/* Main Side END */

/* Slider */
.main_slider{
    margin-top: 50px;
}
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 40px;
}
.slider_img {
    position: relative;
    max-width: 650px;
    min-width: 650px;
}
.slider_img .slide {
    border-radius: 20px;
    width: 100%;
    height: 225px;
    display: block;
}
.slider_img .overlay {
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,209,255,1) 100%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}
.slider_img>p {
    position: relative;
    font-size: 35px;
    color: #FFFFFF;
    margin-top: -110px;
    width: 280px;
    font-weight: 600;
    margin-left: 40px;
    z-index: 99;
}
.slider_img .slide {
    z-index: 0;
}
.slide.active img {
    transform: scale(1.2);
}
.slide.prev img,
.slide.next img {
    transform: scale(0.8);
}
/* Slider END */

/* Ana Sayfa Kategoriler */
.home_category_first{
    width: 270px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.home_category_first>a>img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.home_category_second_categories{
    width: 250px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.home_category_second_categories>a>img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.home_category_top{
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.home_category_second{
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.main_best_categories{
    width: 48%;
}
.main_mine_infos{
    width: 50%;
}
.main_bottom{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.home_category_bot_category {
    position: relative;
    width: 165px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
}
.home_category_bot_category > a {
    display: block;
    position: relative;
}
.home_category_bot_category > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.category_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}
.home_category_bottom{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.main_best_categories_head{
    display: flex;
    align-items: center;
    gap: 10px;
}
.main_best_categories_head>p{
    font-weight: 600;
    font-size: 19px;
}

/* Ana Sayfa Kategoriler END */



/* Ana Sayfa Bilgiler */

.main_date{
    display: flex;
    justify-content: space-between;
}
.main_date_side{
    margin-top: 30px;
}
.dates{
    background-color: #F7F7F7;
    border: 1px solid #E5E5E5;
    height: 90px;
    width: 12%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.dates_border{
    border: 1px solid #D9D9D9;
    background-color: #D9D9D9;
    height: 10px;
    width: 10px;
    border-radius: 999px;
}
.dates>p{
    font-weight: 800;
}
.dates_done_border{
    border: 1px solid #00D1FF;
    background-color: #00D1FF;
    height: 10px;
    width: 10px;
    border-radius: 999px;
}
.current_date{
    background-color: #A9EFFF30;
    border: 1px solid #00D1FF;
    height: 90px;
    width: 12%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.dates_current_border{
    border: 1px solid #00D1FF;
    background-color: #00D1FF;
    height: 10px;
    width: 10px;
    border-radius: 999px;
}
progress {
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
    appearance: none;
}
progress::-webkit-progress-bar {
    background-color: #EEEEEE;
    border-radius: 5px;
    overflow: hidden;
}
progress::-webkit-progress-value {
    background-color: #00D1FF;
    border-radius: 5px;
    transition: width 0.5s;
}
progress::-moz-progress-bar {
    background-color: #00D1FF;
    border-radius: 5px;
    transition: width 0.5s;
}
.progress-container{
    width: 86%;
}
.progress_info{
    display: flex;
    align-items: flex-end;
    gap: 2px;
    width: 14%;
    justify-content: flex-end;
}
.progress_info>h6{
    font-size: 20px;
    font-weight: 600;
}
.progress_info>p{
    color: #C3C3C3;
}
.main_progess{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main_infos{
    margin-top: 20px;
}
.main_infos_top_left{
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    width: 235px;
    height: 105px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 24px;
}
.main_infos_top_right{
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    width: 235px;
    height: 105px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 24px;
}
.main_infos_top_left_info{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.main_infos_top_left_info>h6{
    font-size: 30px;
    font-weight: 600;
}
.main_infos_top_left_info>p{
    font-size: 20px;
    color: #C3C3C3;
}
.main_infos_top{
    display: flex;
    justify-content: space-between;
}
.main_infos_bottom_info{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    margin-top: 25px;
    border-radius: 24px;
    gap: 100px;
}
.main_infos_bottom_info_writes{
    text-align: center;
    width: 18%;
}
.main_infos_bottom_info_writes>p{
    color: #BBBBBB;
    line-height: 17px;
    font-size: 12px;
}
.main_infos_bottom_info_writes>h6{
    margin-top: 5px;
    font-size: 30px;
    font-weight: 600;
}
.main_infos_bottom_info_middle{
    border: 1px solid #E9E9E9;
    height: 65px;
}
.main_progess_bottom {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F2FDFF;
    width: 92%;
    height: 30px;
    padding: 20px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
}
.progress_info_bottom{
    display: flex;
    align-items: flex-end;
    gap: 5px;
    width: 14%;
    justify-content: flex-end;
}
.progress_info_bottom>p{
    color: #00D1FF;
    font-size: 12px;
}
.main_bottom_panda>img{
    margin-bottom: -40px;
    margin-left: 420px;
    margin-top: 5px;
}

/* Ana Sayfa Bilgiler END */



/* Category Detail */

.category_detail{
    padding: 30px;
}
.category_detail_head {
    position: relative;
    display: inline-block;
}
.category_detail_head img {
    display: block;
    width: 100%;
    height: 150px;
    border-radius: 24px;
}
.overlay_kategori {
    border-radius: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}
.category_stars{
    height: 12px;
}
.detail_category_articles_top{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.detail_category_articles_left{
    display: flex;
    align-items: center;
}
.detail_category_articles_left>a>img{
    width: 65px;
    height: 65px;
    border-radius: 17px;
}
.detail_category_articles_left_info{
    margin-left: 10px;
}
.detail_category_articles_left_info>a>h6{
    font-weight: 600;
    font-size: 17px;
    color: #000000;
}
.detail_category_articles_left_info>a>p{
    color: #A1A1A1;
    font-size: 10px;
    margin-top: 5px;
}
.detail_category_articles_right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.detail_category_articles_right>img{
    height: 19px;
}
.detail_category_articles_right_bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 7px;
}
.detail_category_articles {
    margin-top: 20px;
    width: 45%;
    background-color: #FBFBFB;
    padding: 20px;
    border-radius: 25px;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
}
.detail_category_articles_right_bottom>p{
    color: #C2C2C2;
    font-size: 13px;
}
.progress_container_category{
    width: 100%;
}
.category_progess{
    height: 7px;
}
.category_detail_bottom{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Category Detail END */



/* Articles Details */

.articles_detail{
    padding: 30px;
}
.articles_detail_head{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.articles_detail_head>img{
    height: 115px;
    width: 115px;
    border-radius: 24px;
}
.articles_detail_head>h1{
    font-size: 24px;
    font-weight: 600;
    margin-top: 12px;
}
.articles_detail_head>h3{
    color: #A1A1A1;
    margin-top: 12px;
    font-size: 12px;
}
.articles_detail_head_info{
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.articles_clock{
    display: flex;
    align-items: center;
    gap: 3px;
}
.articles_clock>p{
    color: #C2C2C2;
    font-size: 12px;
}
.articles_detail_bottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 70px;
}
.articles_detail_bottom_left{
    width: 38%;
    border-right: 1px solid #D9D9D9;
}
.articles_detail_bottom_middle{
    padding-right: 20px;
    width: 28%;
    border-right: 1px solid #D9D9D9;
}
.articles_detail_bottom_right{
    width: 28%;
}
.users_ai{
    gap: 10px;
    display: flex;
    align-items: center;
}
.users_ai_a{
    background-color: #EDEDED;
    padding: 10px;
    border-radius: 99px;
    border: 1px solid #D4D4D4;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
}
.articles_teachers{
    width: 30px;
    height: 30px;
    border-radius: 99px;
}
.ai_star{
    position: absolute;
    padding: 5px;
    border: 1px solid transparent;
    margin-top: -15px;
    background-color: #FFFFFF;
    border-radius: 99px;
    margin-left: 27px;
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
}
.articles_detail_users{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px;
}
.articles_play_area{
    display: flex;
    align-items: center;
    gap: 13px;
}
.article_wrotes{
    margin-top: 20px;
    font-size: 21px;
    line-height: 35px;
    padding-right: 30px;
}
.article_word_area:last-child{
    border-bottom: 0px;
}
.article_word_area{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 20px;
}
.word_area_left{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.word_area_left_head{
    display: flex;
    align-items: center;
    gap: 10px;
}
.word_area_left_head>h6{
    font-size: 19px;
    font-weight: 600;
}
.word_area_left_head>p{
    color: #878787;
    font-size: 14px;
}
.language_info{
    line-height: 27px;
    margin-top: 20px;
    margin-left: 15px;
}
.language_info>ol>li{
    font-weight: 300;
}
.language_info>ol>li>b{
    font-weight: 600;
}
.articles_page_write>a{
    background-color: #00D1FF;
    border-radius: 99px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 97px;
    height: 97px;
    position: relative;
    left: 890px;
}

/* Articles Details END */




/* Words Page */

.words_area{
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}
.word{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    margin-right: 5px;
}
.word>p{
    color: #00D1FF;
    font-weight: 600;
    padding: 15px 40px 15px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    -webkit-box-shadow: 3px 3px 2px 9px rgba(232, 232, 232, 0.56);
    -moz-box-shadow: 3px 3px 2px 9px rgba(232, 232, 232, 0.56);
    box-shadow: 5px 7px 0px -2px rgba(232, 232, 232, 0.56);
}
.word>a{
    margin-left: 15px;
}

/* Word Page END */


/* Profile */

.main_bottom_profile{
    display: flex;
    justify-content: center;
}
.profile_photo_img{
    height: 150px;
    width: 150px;
    border-radius: 99px;
}
.profile_head>p{
    font-size: 28px;
    font-weight: 500;
    margin-top: 25px;
}
.profile_head{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile_star_area{
    background-color: #FFEDAB;
    border: 1px solid #FFCB11;
    border-radius: 99px;
    padding: 14px;
    position: absolute;
    margin-top: 95px;
    margin-left: 70px;
}
.profile_badges{
    margin-top: 25px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.profile_badges>img{
    height: 59px;
    width: 54px;
}
.hexagon {
    position: relative;
    width: 52px;
    height: 30px; /* 52px * sin(60deg) */
    background-color: #EBEBEB;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 14px; /* Text size adjusted for smaller hexagon */
    font-weight: bold;
}
.hexagon::before,
.hexagon::after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 26px solid transparent; /* 52px / 2 */
    border-right: 26px solid transparent; /* 52px / 2 */
}
.hexagon::before {
    bottom: 100%;
    border-bottom: 15px solid #EBEBEB; /* 52px / 2 * tan(30deg) */
}
.hexagon::after {
    top: 100%;
    width: 0;
    border-top: 15px solid #EBEBEB; /* 52px / 2 * tan(30deg) */
}
.hexagon span {
    position: relative;
    z-index: 1;
    color: #535353;
}
.main_profile_top_left{
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    width: 232px;
    height: 105px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 24px;
}
.main_profile_top_right{
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
    width: 232px;
    height: 105px;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 24px;
}

/* Profile END */



/* Social */

.social_page{
    display: flex;
    align-items: flex-start;
}
.social_page_left{
    padding-right: 30px;
    width: 30%;
}
.chat_user{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 30px;
}
.chat_user_left{
    display: flex;
    align-items: center;
    gap: 10px;
}
.chat_user_left>img{
    width: 52px;
    height: 52px;
    border-radius: 99px;
}
.chat_user_left_info>a>h6{
    color: #000000;
    font-weight: 500;
}
.chat_user_left_info>a>p{
    color: #ACACAC;
    font-size: 13px;
    margin-top: 5px;
}
.chat_user_right{
    gap: 15px;
    display: flex;
    align-items: center;
}
.chat_user_svg>a{
    background-color: #F0F0F0;
    border: 1px solid #E5E5E5;
    padding: 10px;
    border-radius: 99px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chat_score{
    display: flex;
    align-items: center;
    gap: 5px
}
.chat_score>p{
    color: #00D1FF;
    font-weight: 700;
}
.social_page_right{
    width: 70%;
    padding-left: 30px;
    border-left: 1px solid #D9D9D9;
}
.social_page_right_head{
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #D2D2D2;
    padding-bottom: 20px;
}
.social_page_right_head>a{
    display: flex;
    align-items: center;
    gap: 15px;
}
.social_page_right_head>a>p{
    color: #000000;
}
.chat_right_photo{
    height: 36px;
    width: 36px;
    border-radius: 999px;
}
.chat_back_a{
    margin-left: 40px;
}
.social_page_chat_side{
    display: flex;
    flex-direction: column;
}
.social_page_chat_side_user{
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}
.social_page_chat_side_user_photo>img{
    height: 40px;
    width: 40px;
    border-radius: 999px;
}
.social_page_chat_side_user_message{
    background-color: #F2F2F2;
    padding: 20px;
    border-radius: 20px;
    max-width: 250px;
}
.social_page_chat_side_user_message>h6{
    font-weight: 200;
}
.social_page_chat_side_user_message>p{
    color: #C6C6C6;
    font-size: 10px;
    margin-top: 20px;
    font-weight: 100;
}
.social_page_chat_side_user:first-child{
    margin-top: 30px;
}
.social_page_chat_side_me{
    display: flex;
    align-items: flex-start;
    margin-left: auto;
    margin-bottom: 20px;
    gap: 20px;
}
.social_page_chat_side_me_photo>img{
    height: 40px;
    width: 40px;
    border-radius: 999px;
}
.social_page_chat_side_me_message{
    background-color: #00D1FF;
    padding: 20px;
    border-radius: 20px;
    max-width: 250px;
    text-align: right;
}
.social_page_chat_side_me_message>h6{
    font-weight: 200;
    color: #FFFFFF;
}
.social_page_chat_side_me_message>p{
    color: #FFFFFF;
    font-size: 10px;
    margin-top: 20px;
    font-weight: 100;
}




.input-area{
	background: #e4eaee;
	padding: 6px;
	overflow: hidden;
	border-top: 1px solid #cfdae1;
}
.input-area .input-wrapper{
	background: #fff;
	border: 1px solid #cfdae1;
	border-radius: 5px;
	overflow: hidden;
	float: left;
}
.input-area .input-wrapper input{
	height: 30px;
	line-height: 30px;
	border: 0;
	margin: 0;
	padding: 0 10px;
	outline: none;
	color: #5D7185;
	min-width: 271px;
}
.input-area .input-wrapper i{
	font-size: 18px;
	color: #a0b4c0;
	margin-right: 10px;
    margin-top:8px;
	cursor: pointer;
}
.input-area > input{
	background: #a0b4c0;
	border: none;
    letter-spacing:1px;
	font-weight: bold;
	color: #fff;
	border-radius: 4px;
	float:right;
	height: 36px;
	line-height: 30px;
	cursor: pointer;
	font-family: 'Open Sans', Arial, sans-serif;
    outline: none;
}
.chat_comment_area{
    display: flex;
    align-items: center;
    width: 108%;
    background-color: #FBFBFB;
    height: 100px;
    margin-left: -30px;
    box-shadow: 0px -2px 2px 0px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0px -2px 2px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px -2px 2px 0px rgba(0,0,0,0.05);
}
.text_chat_input{
    width: 80%;
    margin-left: 30px;
    margin-right: 30px;
    height: 25px;
    color: #989898;
    border: 1px solid #DADADA;
    border-radius: 13px;
    padding: 15px;
}

/* Social END */



/* Notifications */

.notifications{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.notifications_page{
    padding: 30px;
}
.notification{
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.notification_image>img{
    border-radius: 999px;
    width: 60px;
}
.notification_box{
    border: 1px solid #ECECEC;
    background-color: #ECECEC;
    padding: 20px;
    border-radius: 10px;
}
.notification_box>h6{
    color: #000000;
    font-weight: 400;
    font-size: 17px;
}
.notification_box>p{
    color: #BABABA;
    font-size: 15px;
    margin-top: 15px;
    font-weight: 300;
}
.notification_date>p{
    color: #BBBBBB;
    font-size: 13px;
    margin-top: 16px;
}

/* Notifications END */


/* 404 */

.wrong_page{
    display: flex;
    margin-top: 200px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wrong_page>h6{
    font-weight: 600;
    font-size: 20px;
    width: 400px;
    text-align: center;
    line-height: 25px;
}
.wrong_page>a{
    background-color: #00D1FF;
    border: 1px solid #00D1FF;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}
.wrong_page>a>p{
    color: #FFFFFF;
}
.suprised_benguo>img{
    position: absolute;
    top: 50%;
    left: 29%;
    width: 200px;
    z-index: -99;
}

/* 404 END */