:root {
  --yellow:#ffe815;
  --link-red:#ff8989;
  --overlay-bg:rgba(0,0,0, 0.6);
}

* {
  box-sizing: border-box;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

img {
  display: block;
}

a {
  text-decoration: none;
}

input:focus, button:focus, select:focus {
  outline: none;
}

input {
  font-size: 16px;
}

.btn {
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 700;
}

.btn-yellow {
  background-color: var(--yellow);
  color: #000;
}

.btn-black {
  background-color: #000;
  color: #fff;
}

.btn-black.hasApprovied {
  opacity: 0.4;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
  font-size: 16px;
  background-color: #f0f0f0;
}

.login_bg {
  background: url("../img/banner_bg.jpg");
  width: 100%;
  height: max-content;
  min-height: 100%;
  position: absolute;
  z-index: 1;
  background-position: center;
  background-size: cover;
}
.login_bg .login_overlay {
  width: 100%;
  height: 100%;
  background-color: var(--overlay-bg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.login_container {
  width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  min-height:800px;
  margin-bottom:30px;
}
.login_container .logo {
  width: 200px;
  margin: 0 auto 15px auto;
}
.login_container .logo img {
  width: 100%;
}
.login_container .summary p {
  color: #fff;
  font-size: 24px;
  line-height: 29px;
}
.login_container .title {
  width: 100%;
  margin: 20px 0;
}
.login_container .title h3 {
  font-size: 40px;
  color: #fff;
}
.login_container .login_card_body {
  width: 100%;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
}
.login_container .login_card_body .login_switch {
  width: 100%;
  margin-bottom: 20px;
}
.login_container .login_card_body .login_switch a {
  color: #939393;
  font-size: 24px;
  margin-right: 20px;
}
.login_container .login_card_body .login_switch a.active {
  color: #333;
  text-decoration: underline;
}
.login_container .login_card_body .login_form {
  width: 100%;
}
.login_form .avatar{
    width:80px;
    margin:0 auto 20px auto;
}

.login_form .avatar img{
    width: 80px;
    height:80px;
    border-radius:50%;
}

.login_container .login_card_body .login_form .login_input {
    width: 100%;
    margin-bottom: 20px;
    height: 35px;
    border: none;
    border-bottom: 1px solid #939393;
}
.login_container .login_card_body .login_form .login_input::-moz-placeholder {
  font-weight: 300;
}
.login_container .login_card_body .login_form .login_input:-ms-input-placeholder {
  font-weight: 300;
}
.login_container .login_card_body .login_form .login_input::placeholder {
  font-weight: 300;
}
.login_container .login_card_body .login_form .select_input {
  width: 100%;
  height: 35px;
  padding: 0 5px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #939393;
  margin-bottom: 20px;
}

.form-check{
    margin-bottom:8px;
}
.form-check a{
    color:#3085d6;
}
.form-check a:hover{
    text-decoration:underline;
}
.form-check .form-check-input{
    height: 17px;
    width: 18px;
}

.login_container .login_card_body .login_action {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 0;
    align-items: center;
}
.login_container .login_card_body .login_action a {
  color: var(--link-red);
}

.login_container .verified_card_body {
  width: 100%;
  padding: 30px;
  text-align: left;
}
.login_container .verified_card_body .login_action {
  display:flex;
}
.login_container .verified_card_body .otp_form{
    margin-bottom:20px;
}
.login_container .verified_card_body .otp_form input {
  height:80px;
  text-align:center;
  font-size:50px;
  padding:0;
  margin:0;
  width:69px;
  border-radius:6px;
  border:1px solid #dedede;
  font-weight:700;
}
.login_container .verified_card_body .otp_form input::-webkit-outer-spin-button,
.login_container .verified_card_body .otp_form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.login_container .verified_card_body .otp_form input[type=number] {
    -moz-appearance: textfield;
}

.city_bar {
  width: 100%;
  background-color: #000;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  color: #fff;
  font-size:13px;
}
.city_bar a {
  padding-left: 10px;
  color: #d8d8d8;
  cursor: pointer;
}
.city_bar a::before {
  content: "|";
  padding-right: 10px;
  color: #fff;
}

header {
  width: 100%;
  background-color: #a7a7a7;
  height: 60px;
  position: relative;
  z-index: 3;
}
header nav {
  width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
}
header .logo img {
  width: 100%;
}
header .account::after {
  display: table;
  content: "";
  clear: both;
}
header .account .info {
  float: left;
  margin-right: 20px;
  text-align: right;
  padding-top: 7px;
}
header .account .info span {
  color: #fff;
}
header .account .info a {
  margin-top: 5px;
  color: #fff;
  font-size:14px;
}
header .account .info a:hover {
  color: var(--link-red);
}
header .account .avatar {
  float: right;
  width: 48px;
  height: 48px;
}
header .account .avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.page_banner {
  width: 100%;
  background: url("../img/city_bg.jpg");
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_banner .banner_overlay {
  width: 100%;
  height: 100%;
  background-color: var(--overlay-bg);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.banner_city {
  height: 100%;
}

.banner_skill {
  height: 500px;
}

.search_banner {
  width: 575px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.search_banner h1 {
  margin: 20px 0;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
.search_banner p {
  margin: 20px 0;
  font-size: 26px;
  color: #fff;
  text-align: center;
  text-decoration: underline;
}
.search_banner .search_form {
  width: 70%;
  margin: 0 auto;
}
.search_banner .search_form .select_city {
  width: 100%;
}
.search_banner .search_form .search_bar {
  width: 100%;
  min-height: 40px;
  height: auto;
  display: block;
}
.search_banner .search_form .select2-container {
  width: 80% !important;
  float: left;
  height: 40px;
}
.search_banner .search_form .select2-container .select2-selection--single {
  height: 40px;
}
.search_banner .search_form .select2-container .select2-selection--multiple {
  min-height: 40px;
}
.search_banner .search_form .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
}
.search_banner .search_form .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}
.search_banner .search_form .select2-container--default .select2-selection--single {
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.search_banner .search_form .select2-container--default .select2-selection--multiple {
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.search_banner .search_form .btn {
  float: left;
  width: 20%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  height:40px;
}

.banner_fix {
  height: 460px;
}

.isShow {
  display: block !important;
}

.isHidden {
  display: none !important;
}

.container {
  width: 800px;
  margin: 0 auto;
}
.container::after {
  clear: both;
  content: "";
  display: table;
}

.ads {
  width: 100%;
  padding: 20px 10px;
  background-color: #fff;
  border-radius: 8px;
  max-width: 800px;
  overflow-x: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ads::after {
  clear: both;
  display: table;
  content: "";
}
.ads .ads_item {
  width: 50px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 10px;
  display: inline-block;
}
.ads .ads_item:last-child {
  margin-right: 0;
}
.ads .ads_item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.mt-30 {
  margin-top: 30px;
}

.post_entry_card{
    width:100%;
    background:#fff;
    padding:20px;
    border-radius:10px;
    margin-bottom:20px;
}

.post_entry_card .custom-file-input{
    width: 50%;
    margin-bottom: 15px;
    float: left;
}
.post_input {
    width:100%;
}
.post_input::after {
    clear: both;
    content: "";
    display: table;
}
.post_entry_card p{
    margin-bottom:15px;
    font-weight:700;
}
.post_entry_card textarea{
    width:100%;
    height:120px;
    padding:10px;
    font-family: 'Raleway', sans-serif;
    margin-bottom:15px;
    border:1px solid #dedede;
    border-radius:6px;
    resize:none;
    float:left;
    font-size:18px;
}
.post_entry_card textarea:focus{
    outline:none;
}
.post_entry_card .action{
    width:100%;
    text-align:right;
}
.image_box {
    width: 16%;
    margin-left: 4%;
    float: left;
}
.image_box img{
    width:100%;
    max-height:120px;
}

.news_feed {
    width: 50%;
    margin-right: 2%;
    float: left;
}
.news_feed::after {
  display: table;
  content: "";
  clear: both;
}
.news_feed .news_item {
  width: 100%;
  background: #fff;
  margin-bottom: 30px;
  border-radius:6px;
}
.news_feed .news_item .news_header {
  border-bottom: 2px solid #d8d8d8;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.news_feed .news_item .news_header .avatar {
  width: 80%;
}
.news_feed .news_item .news_header .avatar img {
  float: left;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.news_feed .news_item .news_header .avatar p {
  line-height: 48px;
  padding-left: 15px;
  float: left;
}
.news_feed .news_item .news_header .meta {
  font-size: 12px;
}
.news_feed .news_item .news_header .meta .edit_post{
  color:#3085d6;
}
.news_feed .news_item .news_header .meta .edit_post:hover{
  text-decoration:underline;
  cursor:pointer;
}
.news_feed .news_item .news_text {
  padding: 20px;
  border-bottom: 2px solid #d8d8d8;
  width: 100%;
  background-color: #d3d3d3;
  color: #333;
}
.news_feed .news_item .news_image {
  width: 100%;
  border-bottom: 2px solid #d8d8d8;
}
.news_feed .news_item .news_image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.news_feed .news_item .news_meta {
  padding: 10px;
}
.news_feed .news_item .news_meta .like_meta {
  margin-bottom: 10px;
  display:flex;
}
.news_feed .news_item .news_meta .like_meta .icon-bubble2 {
  margin-left:10px;
  color:#333;
}
.news_feed .news_item .news_meta .like_meta i {
  cursor:pointer;
}
.news_feed .news_item .news_meta .meta_description {
  margin-bottom: 10px;
  font-size:13px;
}
.news_feed .news_item .news_meta .meta_description strong{
  font-size:16px;
}
.news_feed .news_item .news_meta .meta_description .more{
  font-size:12px;
  font-weight:700;
}
.news_feed .news_item .news_meta .meta_comments {
  width: 100%;
}
.news_feed .news_item .news_meta .meta_comments .comment {
  width: 100%;
  margin-bottom: 10px;
  font-size:12px;
}
.news_feed .news_item .news_meta .meta_comments .comment .deleteComment {
    padding: 1px 4px;
    background: var(--link-red);
    position: relative;
    top: -3px;
    border-radius: 7px;
    color: #fff;
    cursor:pointer;
}
.news_feed .news_item .news_meta .meta_comments .comment a{
  color:#333;
  font-weight:700;
  font-size:12px;
}
.news_feed .news_item .news_meta .meta_comments .comment a:hover{
  color:var(--link-red);
}
.news_feed .news_item .news_meta .post_comment_detail{
  width:100%;
  margin-bottom:10px;
}
.news_feed .news_item .news_meta .post_comment_detail a{
  font-size:13px;
  color:#333;
  font-weight:700;
}
.news_feed .news_item .news_meta .post_comment_detail a:hover{
  color:var(--link-red);
}
.news_item a{
    color:#333;
    font-weight:700;
}
.news_item a:hover {
    color:var(--link-red);
}
.news_feed .news_item .news_meta .meta_comments .comment:last-child {
    margin-bottom: 0;
}

.user_feed {
  width: 48%;
  float: left;
}
.user_feed::after {
  display: table;
  content: "";
  clear: both;
}
.user_feed .friend_box {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 20px;
}
.user_feed .friend_box .btn {
  margin-bottom: 20px;
}
.user_feed .user_box {
  width: 100%;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.user_feed .user_box .user_info {
  width:100%;
}
.user_feed .user_box .user_info::after{
    clear:both;
    display:table;
    content:"";
}
.user_feed .user_box .user_info .avatar {
  width: 30%;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  float:left;
}
.user_feed .user_box .user_info .avatar img {
  border-radius: 50%;
  width:80px;
  height:80px;
}
.user_feed .user_box .user_info .name {
  font-size: 18px;
  font-weight:500;
  padding-top:15px;
}
.user_feed .user_box .user_info p {
  margin-bottom: 10px;
}
.user_feed .user_data_table {
  display: flex;
  margin-bottom: 10px;
}
.user_feed .user_data_table .table_item {
  width: 25%;
  text-align: center;
  border-right: 1px solid #646464;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3px;
}
.user_feed .user_data_table .table_item:last-child {
  border-right: none;
}
.user_feed .user_data_table .table_item p {
  font-size: 12px;
}
.user_feed .user_data_table .table_item p:first-child {
  font-size: 16px;
  font-weight: 700;
}
.user_feed .friend_notif {
  width: 100%;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
}
.user_feed .friend_notif::after {
  clear: both;
  display: table;
  content: "";
}
.user_feed .friend_notif .friend_icon {
  float: left;
  margin-right: 15px;
  width: 60px;
}
.user_feed .friend_notif .friend_icon i {
  width: 30px;
  height: 30px;
  background-color: var(--yellow);
  color: #000;
  font-size: 15px;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -0.5px;
  border-radius: 50%;
}
.user_feed .friend_notif .friend_icon span {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
  position: relative;
  left: -5px;
}
.user_feed .friend_notif .friend_text {
  display: flex;
  align-items: center;
  height: 30px;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 13px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #d8d8d8;
  color: #333;
}

.modal {
  display: none;
  position: fixed;
  z-index: 5;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal_content {
  background-color: #fefefe;
  border-radius: 5px;
  margin: auto;
  border: 1px solid #888;
  width: 50%;
}
.modal .modal_content .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  height: 18px;
}
.modal .modal_content .close:hover, .modal .modal_content .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.modal .modal_header {
  width: 100%;
  padding: 20px;
  border-bottom: 2px solid #aaaaaa;
}
.modal .modal_header::after {
  content: "";
  clear: both;
  display: table;
}
.modal .modal_header h3 {
  float: left;
}
.modal .modal_header span {
  font-size: 18px;
  margin-left: 15px;
}
.modal .modal_description {
  padding: 20px;
}
.modal .modal_description .modal_friends_list {
  width: 100%;
}
.modal .modal_description .modal_friends_list .friend_item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #646464;
}
.modal .modal_description .modal_friends_list .friend_item:last-child {
  border-bottom: none;
}
.modal .modal_description .modal_friends_list .friend_item .avatar {
  width: 48px;
  height: 48px;
  margin-right: 15px;
}
.modal .modal_description .modal_friends_list .friend_item .avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.modal .modal_description .modal_friends_list .friend_item .name {
  flex:1;
  font-weight:700;
}
.modal .modal_description .modal_friends_list .friend_item .btn {
  font-weight: 400;
}
.modal .modal_description .modal_friends_list .friend_item .btn-success {
  margin-right:10px;
}

.profile_box {
  width: 100%;
  background-color: #fff;
  padding: 30px;
  display: flex;
}
.profile_box::after {
  display: table;
  content: "";
  clear: both;
}
.profile_box div {
  min-height: 150px;
}
.profile_box .avatar {
  margin-right: 20px;
  border-right: 2px solid #646464;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align:center;
}
.profile_box .avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom:10px;
}
.profile_box .avatar a{
    font-size:12px;
    color:#3085d6;
}
.profile_box .avatar a:hover{
    text-decoration:underline;
}
.profile_box .info {
  margin-right: 20px;
  border-right: 2px solid #646464;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile_box .info h1 {
  font-weight: 500;
  margin-bottom: 10px;
}
.profile_box .info p {
  margin-bottom: 5px;
}
.profile_box .biography {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  line-height: 20px;
}

.add_friend {
  width: 100%;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}
.add_friend .btn {
  width: 100%;
}

.profile_skill_list {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  margin-bottom: 20px;
}
.profile_skill_list .skill_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--yellow);
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 10px;
}
.profile_skill_list .skill_item:last-child {
  margin-bottom: 0;
}
.profile_skill_list .skill_item .font_bold {
  font-size: 16px;
}
.profile_skill_list .see_all_skills {
  width: 100%;
  height: 40px;
  line-height: 40px;
}
.profile_skill_list .see_all_skills a {
  text-align: center;
  display: block;
  color: #000;
  text-decoration: underline;
  font-weight: 700;
}

.font_bold {
  font-weight: 700;
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  background-color: #c82333;
  border-color: #c82333;
}

.skill_profile {
  width: 100%;
  background-color: #fff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  border-radius: 6px;
}
.skill_profile div:first-child {
  flex: 1;
}
.skill_profile .avatar {
  float: left;
  margin-right: 15px;
}
.skill_profile .avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.skill_profile h1 {
  height: 50px;
    display: flex;
    align-items: center;
}
.skill_profile div:last-child {
  padding-top: 18px;
}
.skill_profile div:last-child a {
  color: #646464;
}
.skill_profile div:last-child a:hover {
  text-decoration: underline;
}

.skill_card_body {
    width:100%;
    background:#fff;
    padding:20px;
    border-radius:6px;
}
.skill_card_body .float-right{
    text-align:right;
    margin-top:10px;
}

.skill_list {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
}
.skill_list .skill_item {
  background-color: var(--yellow);
  border-radius: 6px;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.skill_list .skill_item:last-child {
  margin-bottom: 0;
}
.skill_list .skill_item .name {
  flex: 1;
}
.skill_list .skill_item .name .avatar {
  width:48px;
  height:48px;
  float:left;
  margin-right:10px;
}
.skill_list .skill_item .name .avatar img {
  width:48px;
  height:48px;
  border-radius:50%;
}
.skill_list .skill_item .name .font_bold{
    font-size: 26px;
}
.skill_list .skill_item .name .description{
    font-size: 12px;
}
.skill_list .skill_item .skill_refs {
  padding: 10px;
  background-color: #fff;
  width: 33%;
  margin-right: 10px;
  border-radius: 5px;
}
.skill_list .skill_item .skill_refs div:nth-child(2){
    height:32px;
    display:flex;
    align-items:center;
}
.skill_list .skill_item .skill_refs .avatars{
    float:left;
    margin-right:10px;
}
.skill_list .skill_item .skill_refs .avatars ul{
    list-style:none;
    padding: 0;
    margin: 0;
    display:inline-flex;
}
.skill_list .skill_item .skill_refs .avatars ul li:nth-child(2){
    margin-left:-15px;
}
.skill_list .skill_item .skill_refs .avatars ul li:nth-child(3){
    margin-left:-15px;
}
.skill_list .skill_item .skill_refs .avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.skill_list .skill_item .skill_refs p {
  font-size:12px;
}

.add_friend_card {
  width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  text-align: center;
}
.add_friend_card h1 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}
.add_friend_card .summary {
  font-size: 26px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 300;
}
.add_friend_card .reference_form {
  width: 60%;
  margin: 0 auto;
}
.add_friend_card .reference_form .form_input {
  width: 100%;
  margin-bottom: 20px;
}
.add_friend_card .reference_form .form_input {
  width: 100%;
  margin-bottom: 20px;
}

.add_friend_card .reference_form .form_input input {
  width: 100%;
  height: 50px;
  border: 1px solid #000;
  border-radius: 6px;
  padding-left: 10px;
}
.add_friend_card .reference_form .form_input .tagify {
  text-align:left;
}
.add_friend_card .reference_form .form_input input::-moz-placeholder {
  color: rgba(0,0,0, 0.4);
}
.add_friend_card .reference_form .form_input input:-ms-input-placeholder {
  color: rgba(0,0,0, 0.4);
}
.add_friend_card .reference_form .form_input input::placeholder {
  color: rgba(0,0,0, 0.4);
}
.add_friend_card .reference_form .form_input .select2-container {
  width: 100% !important;
  height: 50px;
  border: 1px solid #000;
  border-radius: 6px;
}
.add_friend_card .reference_form .form_input .select2-container--default .select2-selection--single {
  height: 48px;
  border: none;
}
.add_friend_card .reference_form .form_input .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  text-align: left;
  color: #000;
}
.add_friend_card .reference_form .form_input .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px;
}
.add_friend_card .reference_form .form_buttons {
  width: 100%;
  text-align: right;
}
.add_friend_card .reference_form .form_buttons .send {
  background-color: #d6d1a1;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  width: 80px;
  height: 50px;
  margin-right: 15px;
  position: relative;
  top: 9px;
  cursor: pointer;
}
.add_friend_card .reference_form .form_buttons .sendNew {
  background-color: var(--yellow);
  width: 170px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


.tagify{
    width:100%;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.icon-heart5{
    color:#dc3545;
}
.icon-heart6 {
    color: #333;
}
.icon-bubble2{
    color:#333;
}
.comment_modal{
    width:100%;
    text-align:right;
}
.comment_modal textarea{
    width:100%;
    border:1px solid #dedede;
    border-radius:6px;
    margin-bottom:15px;
    padding:10px;
    height:150px;
    resize:none;
}
.comment_modal textarea:focus{
    outline:none;
}

.custom-file-input {
  color: transparent;
}
.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
    content: 'Resim Ekle';
    color: black;
    display: inline-block;
    background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
    border: 1px solid #999;
    border-radius: 3px;
    padding: 9px 12px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    text-shadow: 1px 1px #fff;
    font-weight: 700;
    font-size: 10pt;
}
.custom-file-input:hover::before {
  border-color: black;
}
.custom-file-input:active {
  outline: 0;
}
.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9); 
}

.loader {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader div {
  animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.loader div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #333;
  margin: -4px 0 0 -4px;
}
.loader div:nth-child(1) {
  animation-delay: -0.036s;
}
.loader div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.loader div:nth-child(2) {
  animation-delay: -0.072s;
}
.loader div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.loader div:nth-child(3) {
  animation-delay: -0.108s;
}
.loader div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.loader div:nth-child(4) {
  animation-delay: -0.144s;
}
.loader div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.loader div:nth-child(5) {
  animation-delay: -0.18s;
}
.loader div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.loader div:nth-child(6) {
  animation-delay: -0.216s;
}
.loader div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.loader div:nth-child(7) {
  animation-delay: -0.252s;
}
.loader div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.loader div:nth-child(8) {
  animation-delay: -0.288s;
}
.loader div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.page_loading {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255, 0.9);
    z-index: 99;
    display: none;
    justify-content: center;
    align-items: center;
}
.page_loading .container{
    width:150px;
}

.page_loading .message{
    position: absolute;
    top: 20px;
    font-size: 23px;
    font-weight: 700;
    width: 80%;
    text-align: center;
    left: 10%;
}
.page_loading .message .title{
    margin-bottom:20px;
}
.font_bold{
    font-weight:700;
}

.modal_post{
    width:100%;
}

.modal_post::after {
    clear:both;
    content:"";
    display:table;
}

.modal_post .modal_post_image{
    float: left;
    width: 45%;
    margin-right: 5%;
}
.modal_post .modal_post_image img{
    width:100%;
}
.modal_post .modal_post_input{
    float: left;
    width: 50%;
}
.modal_post .modal_post_input textarea{
    width:100%;
    height:150px;
    padding:10px;
    border:1px solid #dedede;
    border-radius:8px;
    resize:none;
    margin-bottom:15px;
}
.modal_post_action{
    display:flex;
    justify-content:space-between;
}
textarea {
    font-family: 'Raleway', sans-serif;
}
textarea:focus {
    outline: none;
    border: 1px solid #333;
}

.updateProfileForm{
    width:100%;
    background:#fff;
    padding:20px;
    border-radius:8px;
    margin-bottom:30px;
}
.updateProfileForm .login_input{
    width:100%;
    margin-bottom:15px;
    height:30px;
}
.updateProfileForm .login_textarea{
    width:100%;
    margin-bottom:15px;
    height:100px;
    padding:10px;
    resize:none;
}
.updateProfileForm .custom-file-input{
    margin-bottom:15px;
}
.updateProfileForm .select2-container{
    width:100%!important;
}
.page_container{
    width:100%;
    background:#fff;
    border-radius:8px;
    padding:10px;
}
.page_title {
    width: 100%;
    margin-bottom: 20px;
}

@media only screen and (max-width: 501px) {
    .login_container {
        width: 90%;
    }

        .login_container .login_card_body {
            padding: 15px;
        }

            .login_container .login_card_body .login_switch a {
                font-size: 18px;
            }

            .login_container .login_card_body .login_form .form-check label {
                font-size: 16px;
                padding-left: 30px;
            }

        .login_container .summary p {
            font-size: 18px;
            line-height: 23px;
        }

        .login_container .title h3 {
            font-size: 30px;
        }

    .login_bg {
        padding: 20px 0;
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
        min-height: 100%;
        overflow: scroll;
    }
    
}
@media only screen and (max-width: 801px) {
    .container {
        width: 100%;
        padding:0 15px;
    }
    header nav{
        width:100%;
        padding:0 15px;
    }
    .search_banner h1{
        font-size:33px;
    }
    .search_banner p{
        font-size:20px;
    }
    .search_banner .search_form{
        width:90%;
    }
    .news_feed{
        width:100%;
        margin:0;
        float:unset;
    }
    .user_feed{
        width:100%;
    }
    .profile_box{
        display:block;
        padding:10px;
    }
    .profile_box .avatar{
        margin-right:0;
        border-right:0;
        padding-right:0;
    }
    .profile_box .info{
        margin-right:0;
        border-right:0;
        padding-right:0;
        text-align:center;
    }
    .profile_box .info div{
        border-bottom:none;
    }
    .profile_box .biography{
        width:100%;
    }
    .profile_box div{
        height:auto;
        margin-bottom:10px;
        padding-bottom:10px;
        border-bottom:1px solid #333;
        min-height:0;
    }
    .profile_box div:last-child{
        border-bottom:none;
        margin-bottom:0;
        
    }
    .modal .modal_content{
        width:90%;
    }
    .skill_profile h1{
        font-size:12px;
    }
    .skill_list .skill_item .name p:last-child{
        font-size:11px;
    }
    .skill_list .skill_item .name .font_bold{
        font-size:15px;
    }
}