.custom-auth-form .form-group input {
    font-family: 'Vazir-Bold-FD-WOL', sans-serif;
    width: 100%;
    padding: 15px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 14px;
}
.custom-auth-form .form-group input#login-password{
    margin: 20px 0;
}
.submit-and-return{
  margin-top: 20px;
}
.login-and-forgot, .submit-and-return{
  display: flex;
  justify-content: space-between;
}
.login-and-forgot button, .submit-and-return button{
    width: 48%;
    border: unset;
    background-color: transparent;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
}
.login-and-forgot button.submit-btn-login, .submit-and-return .submit-code{
    background-color: #ff4000;
    color: #fff;
}
.login-and-forgot button#switch-to-forgot-password, .submit-and-return .switch-btn-return{
  border: 2px solid #ff4000;
}
.switch-to-register-main, .switch-to-login-main{
  margin-top: 20px;
}
.switch-to-register-main #switch-to-register, .switch-to-login-main #switch-to-login{
    border: unset;
    background-color: transparent;
    margin-right: 5px;
    color: blue;
    font-family: 'Vazir-Bold-FD-WOL';
}
#custom-register-form .form-group:first-child{
  margin-top: 0;
}
#custom-register-form .form-group, .login-and-register-modal #reset-confirm-password{
  margin-top: 20px;
}
#register-phone{
  direction: rtl;
}
.form-message{
  margin-bottom: 15px;
  color: #fb0000cc;
}
.submit-btn-register{
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 20px;
}
.resend-box{
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.resend-box .resend-btn{
    border: unset;
    background-color: transparent;
    font-size: 14px;
}
.otp-form-body .form-group{
    position: relative;
}
.otp-form-body .tooltip-number{
    position: absolute;
    top: calc(50% - 10px);
    left: 10px;
}
.otp-form-body .tooltip-number svg{
    width: 20px;
    height: 20px;
}
.otp-form-body .tooltip-number span{
    display: none;
    font-size: 12px;
    background-color: #cccc;
    padding: 10px;
    border-radius: 8px;
    width: max-content;
    position: absolute;
    top: calc(50% - 22px);
    left: calc(100% + 10px);
}
.otp-form-body .tooltip-number:hover span{
  display: block;
}

/* ------------------------------------- profile page ------------------------------------ */
.profile-sidebar-body{
  background-color: #fff;
  box-shadow: 0 0 8px 0 #00000010;
  border-radius: 10px;
  padding: 0 20px 20px 20px;
}
#profile-image{
  position: relative;
  text-align: center;
}
#profile-image img, .edit-profile-image img{
    margin-top: -65px;
    width: 130px;
    height: 130px;
    border: 2px solid #ff4000;
    border-radius: 100px;
    background-color: #fff;
    padding: 10px;
    object-fit: cover;
}
.copy-link-profile{
    background-color: #ff4000;
    position: absolute;
    bottom: -14px;
    right: calc(50% - 14px);
    padding: 4px 6px 3px;
    border-radius: 50px;
    cursor: pointer;
}
.copy-link-profile svg{
    width: 18px;
    height: 18px;
}
#user-display-name{
  font-size: 20px;
  font-family: 'Vazir-Bold-FD-WOL', sans-serif;
  text-align: center;
  margin-top: 15px;
}
.user-name-profile{
    text-align: center;
    margin-top: 5px;
    font-size: 13px;
    color: #5d5d5dcc;
    font-family: 'Vazir-Bold-FD-WOL', sans-serif;
}
.profile-counter{
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.profile-followers{
  margin-left: 15px;
}
.profile-followers span:first-child, .profile-following span:first-child{
  font-weight: 700;
  font-size: 18px;
}
.profile-followers span:last-child, .profile-following span:last-child{
  font-weight: 700;
  color: #8C8C8C;
  margin-right: 5px;
}
.list-profile-sidebar{
  margin-top: 30px;
}
.items-profile-sidebar{
  position: relative;
}
.items-profile-sidebar::before{
    content: '';
    position: absolute;
    width: 4px;
    top: var(--before-top, 2px);
    right: var(--before-right, -22px);
    height: 35px;
    background-color: #ff4000;
    border-radius: 100px;
}
.item-profile-sidebar, .item-profile-sidebar-exit{
  padding: 5px 0;
  margin-top: 20px;
  cursor: pointer;
  transition: .2s;
}
.item-profile-sidebar a, .item-profile-sidebar-exit a{
  color: #000 !important;
}
.item-profile-sidebar:hover, .item-profile-sidebar-exit:hover{
  transform: scale(1.02);
}
.item-profile-sidebar svg, .item-profile-sidebar-exit svg{
  width: 25px;
  margin-left: 10px;
}
.item-profile-sidebar .item-counter, .item-profile-sidebar-exit .item-counter{
  float: left;
  padding: 1px 10px;
  border-radius: 5px;
  background-color: #EFEFEF;
  color: #FF4000;
}
.main-profile{
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 8px 0 #00000010;
  border-radius: 10px;
  padding: 20px;
  min-height: 400px;
}
.item-analytic-post{
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #C0C0C0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .2s;
    color: #000 !important;
}
.item-analytic-post:hover{
  transform: scale(1.02);
}
.top-analytic-posts img {
  height: 200px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  width: 100%;
}
.analytic-type{
    background-color: #ff4000;
    color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 13px;
}
.analytic-token{
    background-color: #fff;
    border: 2px solid #ff4000;
    border-radius: 5px;
    padding: 1px 10px;
    font-size: 13px;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #ff4000;
}
.midle-analytic-posts{
  margin: 10px 15px 15px;
  padding-top: 10px;
  border-top: 1px solid #c0c0c0;
}
.analytic-post-writer img{
    width: 25px !important;
    height: 25px !important;
    object-fit: cover !important;
    border: 1px solid #ff4000 !important;
    border-radius: 50px !important;
    margin-left: 5px !important;
}
.analytic-post-writer span{
    font-size: 14px;
    color: #000;
}
.analytic-post-writer-archive-page{
  padding: 10px 15px 0;
}
.analytic-post-texts h2{
    display: block;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    text-align: right;
    font-size: 14px;
    line-height: normal;
    margin: 0;
    color: #000;
}
.analytic-post-texts p, .like-counter-analytic span{
  font-size: 14px;
  color: #6E6E6E;
  font-family: 'Vazir-FD-WOL', sans-serif !important;
}
.upload-preloader {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 99999;
    font-family: sans-serif;
}

.upload-preloader .spinner {
    border: 4px solid #eee;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.bottom-analytic-posts{
    margin: 0 15px 15px;
    display: flex;
    justify-content: space-between;
}
.like-counter-analytic svg{
    width: 20px;
    height: 20px;
}
.like-counter-analytic{
      display: flex;
}
.like-counter-analytic svg{
    width: 20px;
    height: 20px;
    margin-left: 8px;
    margin-top: -2px;
}
.timestamp-analytic-post{
      color: #354379;
      font-family: 'Vazir-FD-WOL';
      font-size: 14px;
}
.cover-image-profile{
    height: 350px;
    margin-bottom: -150px;
}
.cover-image-profile img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    z-index: -1;
    position: relative;
}
.edit-profile-image{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.edit-profile-image img{
    margin-top: 0;
}
.upload-profile-image{
    border: unset;
    background-color: #ff4000;
    border-radius: 50px;
    margin-top: -16px;
}
.upload-profile-image svg{
    width: 30px;
    height: 30px;
    padding: 7px;
}
.input-edit-profile, .item-add-post{
  display: flex;
  flex-direction: column;
  position: relative;
}
.input-edit-profile label, .item-add-post label{
  font-family: 'Vazir-Bold-FD-WOL';
  margin-bottom: 15px;
}
.input-edit-profile input, .item-add-post input, .select-post-analysis{
  font-family: 'Vazir-FD-WOL', sans-serif;
  border: 1px solid #C7C7C7;
  padding: 12px 45px 13px 12px;
  border-radius: 10px;
}
#display-name{
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23FF4000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>');
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 20px;
}
#display-email{
  background-image: url('../images/email.svg ');
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 20px;
}

#display-phoneNumber{
  background-image: url('../images/telephone.svg');
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 20px;
}

#display-cover-image {
  background-image: url('../images/image.svg');
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 20px;
}
.upload-cover-image, .upload-analysis-post-image{
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: 'Vazir-Bold-FD-WOL';
  padding: 12px 18px;
  border: 2px solid #ff4000;
  border-radius: 10px 0 0 10px;
  color: #ff4000;
}
#save-edit-profile, #save-newPassword-profile, #publish-analysis-post{
    background-color: #ff4000;
    border: unset;
    color: #fff;
    font-family: 'Vazir-Bold-FD-WOL';
    padding: 8px 20px;
    border-radius: 8px;
}
#profile-message{
  display: none;
  top: 90px;
}
.clr-notice{
  top: 150px;
}
#profile-message, .clr-notice{
    position: fixed;
    left: 50px;
    font-family: 'Vazir-Bold-FD-WOL';
    font-size: 14px;
    background-color: #ececec;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #ff4000;
    z-index:99;
}
#new-password-message{
  display: none;
  position: absolute;
  bottom: 17px;
  right: 30px;
  font-family: 'Vazir-Bold-FD-WOL';
  font-size: 14px;
  background-color: #ececec;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ff4000;
  width: auto;
}
.title-resetPassword::before{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #091238;
  margin-bottom: -12px;
}
.title-resetPassword h2{
  font-size: 18px;
  font-weight: 700;
  background-color: #fff;
  padding-left: 10px;
  width: fit-content;
}
#confirm-password-profile, #new-password-profile{
  padding-right: 13px;
}
.input-add-post{
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 20px;
}
#display-title-post{
  background-image: url('../images/banner.svg');
}
.select-post-analysis{
  background-image: url('../images/touchscreen.svg');
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 20px;
  color: #757575;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
#input-analysis-post-image{
  background-image: url('../images/image.svg');
}
.mce-tooltip{
  display: none !important;
}
.analyst-info img{
    width: 36px;
    height: 36px;
    object-fit: cover;
    border: 1px solid #ff4000;
    border-radius: 50px;
    padding: 5px;
    margin-left: 10px;
}
.analyst-info span{
    font-family: 'Vazir-FD-WOL';
    color: #000;
    font-size: 14px;
}
.currency-post-analyst{
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #fff;
    padding: 4px 15px;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    border: 2px solid #ccc;
    border-right: unset;
}
.type-post-analyst{
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #fff;
    padding: 4px 15px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    border: 2px solid #ccc;
    border-left: unset;
}
.post-container-comment .accordion .accordion-item{
  border: 1px solid #CFCFCF;
}
.post-container-comment .accordion-item .accordion-button{
    padding: 10px;
    cursor: pointer;
}
.post-container-comment .accordion-item .wp-post-image, .post-container-comment .accordion-item .attachment-post-thumbnail{
    width: 150px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}
.post-container-comment .accordion-item .analytic-type, .post-container-comment .accordion-item .analytic-token{
  position: unset;
  top: unset;
  left: unset;
  right: unset;
}
.post-container-comment .accordion-item .analytic-type{
  margin-left: 5px;
}
.content-post-comment{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
}
.title-post-comment{
  margin-top: 15px;
  font-size: 16px;
}
.bottom-post-comment{
  display: flex;
  margin-top: 5px;
}
.bottom-post-comment .timestamp-analytic-post{
    margin-right: 25px;
}
.post-container-comment .accordion-button::after{
  background-color: #00bfff;
  filter: invert(1);
  padding: 13px;
  border-radius: 50px;
  background-size: 16px;
  background-position: center;
}
.post-container-comment .accordion-button:not(.collapsed){
  background-color:#fff;
  color: #000;
}
.meta-comment-post{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.meta-comment-post img{
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50px;
  margin-left: 15px;
}
.author-time-comment-post{
  display: flex;
  flex-direction: column;
}
.author-time-comment-post .comment-author{
    font-size: 16px;
    font-weight: 600;
    font-family: 'Vazir-FD-WOL', sans-serif !important;
    margin-bottom: 4px;
}
.comment-question p{
  font-family: 'Vazir-FD-WOL', sans-serif !important;
}
.author-time-comment-post .comment-date{
  color: #9A9A9A;
  font-size: 13px;
}
.post-container-comment .accordion-body{
  padding: 15px;
}
.post-container-comment .comment-question{
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.post-container-comment .comment-question:last-child{
  border: unset;
  padding: 0;
  margin: 0;
}
.post-container-comment .item-comment-reply{
    background-color: #F5F5F5;
    padding: 15px;
    margin: 10px 10px 0 0;
    border-radius: 10px;
}
.show-post-comment{
    margin-left: 20px;
    color: #ff4000;
}
.box-follow{
  text-align: center;
}
.follow-profile-btn{
  border: unset;
  background-color: #ff4000;
  color: #fff;
  font-family: 'Vazir-Bold-FD-WOL';
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 8px;
}
.follow-profile-btn.following{
  background-color: #fff;
  border: 2px solid #ff4000;
  color: #ff4000;
}
.main-user-not-exists{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}
.main-user-not-exists svg{
  width: 250px;
  opacity: 0.6;
  height: 250px;
}
.main-user-not-exists p{
  margin: 25px 25px 0 0;
  margin-bottom: 0px;
  font-size: 20px;
  font-family: 'Vazir-Bold-FD-WOL' !important;
}
.item-follow-profile{
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.item-follow-profile img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50px;
    border: 1px solid #cccccc;
    padding: 5px;
}
.item-follow-profile .profile-counter{
    margin-top: 10px;
}
.item-follow-profile .profile-followers span, .item-follow-profile .profile-following span{
    font-size: 14px;
}
.item-follow-profile .url-profile-follow{
    border: 2px solid #ff4000;
    color: #ff4000;
    font-family: 'Vazir-Bold-FD-WOL';
    font-size: 14px;
    padding: 7px 14px;
    border-radius: 8px;
    width: 47%;
    text-align: center;
}
.item-follow-profile .follow-profile-btn{
    width: 47%;  
}
.p-item-follow{
  margin-bottom: 15px;
}
.p-item-follow:last-child{
  margin-bottom: 0;
}
.main-profile .page-numbers{
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-btn-notif{
  position: relative;
}
.cf-notif-dot {
    position: absolute;
    top: 4px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: #b30803;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    z-index: 10;
    pointer-events: none;
}
.profile-btn-login button, .profile-btn-notif button{
    padding: 0;
    border: unset;
    margin-right: 5px;
}
.profile-btn-login .dropdown-toggle::after, .profile-btn-notif .dropdown-toggle::after{
    content: unset;
}
.profile-btn-login ul{
    width: 200px;
    padding: 10px;
}
.profile-btn-login .analyst-info{
    text-align: right;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}
.profile-btn-login ul li{
    padding: 5px 0;
    margin-bottom: 5px;
}
.profile-btn-login ul li:last-child{
  padding-bottom: 0;
  margin-bottom: 0;
}
.profile-btn-login ul li a{
    color: #000;
    font-family: 'Vazir-FD-WOL';
    text-align: right;
    width: 100%;
    display: block;
    font-size: 14px;
    transition: .2s;
}
.profile-btn-login ul li a:hover{
  transform: scale(0.98);
}
.profile-btn-login ul li a svg{
  width: 25px;
  height: 25px;
  margin-left: 5px;
}
.profile-btn-login ul li a svg.logout-btn{
    width: 20px;
    height: 20px;
}
.profile-btn-notif .dropdown-menu{
    text-align: center;
    padding: 10px;
    min-width: 370px;
}
.profile-btn-notif .dropdown-menu svg{
    width: 65px;
    height: 65px;
    opacity: 30%;
}
.profile-btn-notif .dropdown-menu p{
  font-size: 14px;
}
.profile-btn-notif ul li{
  position: relative;
    margin-bottom: 10px;
    border-bottom: 1px solid #cccc;
    padding-bottom: 10px;
}
.profile-btn-notif ul li:last-child{
  margin-bottom: 0;
  border-bottom: unset;
}
.profile-btn-notif ul li a .thumbnail-lastpost{
    width: 90px;
    height: 60px;
    object-fit: cover;
    margin-left: 10px;
    border-radius: 8px;
}
.item-info-lastpost{
  color: #000;
  max-width: 100%;
  overflow: hidden; 
}
.item-info-lastpost span:first-child {
    display: block;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    text-align: right;
        font-size: 13px;
}
.time-lastpost{
    width: 100%;
    font-size: 11px;
    text-align: left;
    color: #505050;
}
.image-writer-lastpost img{
    width: 15px;
    height: 15px;
}
.image-writer-lastpost{
    font-size: 12px;
    margin-top: 5px;
}
.profile-btn-notif ul li.cf-new::before{
    position: absolute;
    top: calc(50% - 15px);
    right: -12px;
    content: '';
    width: 4px;
    height: 20px;
    background-color: #ff4000;
    border-radius: 30px;
}
.profile-btn-notif ul li.cf-old { 
  content: unset; 
  opacity: 0.9;
}
.single-user_analysis .content-post img{
    max-width: 100%;
    width: auto !important;
    height: auto;
}
.top-analytic-posts .btn-open-edit-modal{
    background-color: #ff4000;
    border: unset;
    padding: 3px 3px 3px 5px;
}
.top-analytic-posts .btn-delete-post{
    background-color: #ff4000;
    border: unset;
    padding: 3px 4px;
    margin-right: 10px;
}
.top-analytic-posts .btn-open-edit-modal svg, .top-analytic-posts .btn-delete-post svg{
    width: 20px;
    height: 20px;
}
.edit-and-remove-post{
    position: absolute;
    bottom: -12px;
    left: calc(50% - 33px);
}
#edit-post-user button.btn-close, #confirmDeleteModal .btn-close{
    margin: 0;
}
#edit-post-user .modal-dialog{
    max-width: 850px;
}
#confirmDeleteModal .button-delete{
    background-color: #ff4000;
    border: unset;
    color: #fff;
    font-family: 'Vazir-Bold-FD-WOL';
    padding: 8px 20px;
    border-radius: 8px;
}
.select-token-post{
    font-family: 'Vazir-Bold-FD-WOL';
}
.select-token-post .dropdown-toggle{
    width: 100%;
    text-align: right;
    padding: 13px;
    border: 1px solid #C7C7C7;
    color: #757575;
    border-radius: 10px;
}
.select-token-post .dropdown-toggle::after{
  content: unset;
}
.select-token-post .dropdown-toggle svg{
    width: 20px;
    margin-left: 8px;
}
.select-token-post .dropdown-menu{
    width: 100%;
    padding: 10px;
    max-height: 350px;
    overflow-y: scroll;
    border: 1px solid #ff4000;
}
.select-token-post .dropdown-menu li{
    border-bottom: 1px solid #cccc;
    padding: 8px 0;
    transition: .2s;
    cursor: pointer;
}
.select-token-post .dropdown-menu li:last-child{
  border-bottom: unset;
}
.select-token-post .dropdown-menu li:hover{
  background-color: transparent;
  transform: scale(0.98);
}
.select-token-post .dropdown-menu li:active{
  background-color: transparent;
}
.input-token-search{
    width: 100%;
    padding: 13px !important;
    background-color: whitesmoke;
    border: unset;
    border-radius: 8px;
    text-align: left;
}
.select-token-post .dropdown-menu li img{
    width: 35px;
}
.select-token-post .dropdown-menu li span{
      font-family: sans-serif;
}
.loader-tempalte{
  font-family: 'Vazir-Bold-FD-WOL';
  position: absolute;
  top: calc(50% - 12px);
  width: auto;
  right: calc(50% - 70px);
}
.empty-contaier-template{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: calc(50% - 100px);
    right: calc(50% - 120px);
    width: auto;
    padding: 0;
}
.empty-contaier-template svg{
    width: 180px;
    height: 180px;
    opacity: 0.5;
}
.result-users .user-search-box a{
    display: flex;
    align-items: center;
    transition: .2s;
    margin: 8px 0 0 0;
}
.result-users .user-search-box a:hover{
  transform: scale(1.01);
}
.result-users .user-search-box a img{
    width: 35px;
    height: 35px;
    border-radius: 5px;
}
.result-users .user-search-box a h2{
    font-size: 14px;
    font-family: 'Vazir-FD-WOL';
    color: #000;
    margin-right: 8px;
    margin-bottom: 0;
}
.result-users .user-search-box a h2 span{
      color: #7d7d92;
      margin-right: 5px;
}

/* ------------------------------------- responsive ------------------------------------ */
@media only screen and (min-width:320px) and (max-width:992px) {
  .cover-image-profile{
    height: 280px;
    margin-bottom: -120px;
  }
  .main-profile{
    margin-top: 25px;
    padding: 10px
  }
  .profile-btn-login .dropdown-menu{
    text-align: center;
    right: calc(100% - 30px) !important;
  }
  .profile-btn-notif .dropdown-menu{
    left: calc(50% - 34px) !important;
    min-width: 300px;
  }
  .profile-btn-notif ul li a .thumbnail-lastpost{
    width: 60px;
    height: 50px;
  }
  .empty-contaier-template{
    top: calc(50% - 90px);
    right: calc(50% - 95px);
  }
  .empty-contaier-template svg{
    width: 140px;
    height: 140px;
  }
}

@media only screen and (min-width:320px) and (max-width:768px) {
  .input-edit-profile input, .item-add-post input , .upload-cover-image, .upload-analysis-post-image, .title-post-comment
  , .author-time-comment-post .comment-author,
  .item-profile-sidebar, .item-profile-sidebar-exit{
    font-size: 14px;
  }
  .currency-post-analyst, .type-post-analyst{
    padding: 0px 10px;
    font-size: 12px;
  }
  .post-container-comment .accordion-item .wp-post-image, .post-container-comment .accordion-item .attachment-post-thumbnail{
    width: 80px;
    height: 70px;
  }
  .post-container-comment .accordion-item .analytic-type,
  .post-container-comment .accordion-item .analytic-token,
  .author-time-comment-post .comment-date{
    font-size: 10px;
  }
  .bottom-post-comment .timestamp-analytic-post{
    margin-right: 15px;
    font-size: 12px;
  }
    .like-counter-analytic{
      align-items: center;
    }
    .like-counter-analytic svg{
      width: 15px;
      height: 15px;
    }
    .post-container-comment .accordion-button::after{
      padding: 8px;
      background-size: 10px;
      left: 10px;
    }
    .meta-comment-post{
      flex-direction: column;
    }
    .meta-comment-post img{
      width: 25px;
      height: 25px;
    }
    .show-post-comment{
      font-size: 12px;
    }
    .post-container-comment .item-comment-reply{
      margin-right: 0;
      padding: 10px;
    }
    .main-user-not-exists {
      min-height: 50vh;
    }
    .main-user-not-exists svg {
      width: 150px;
      opacity: 0.6;
      height: 150px;
    }
    .main-user-not-exists p {
      font-size: 16px;
    }
    .copy-link-profile{
      padding: 2px 6px 1px;
    }
    .copy-link-profile svg {
      width: 15px;
      height: 15px;
    }
}

@media only screen and (min-width:320px) and (max-width:576px) {
  #profile-image img{
    margin-top: -50px;
    width: 100px;
    height: 100px;
  }
  .cover-image-profile{
    height: 230px;
    margin-bottom: -140px;
  }
  #user-display-name{
    font-size: 18px;
  }
  .search-results-section{
    left: 10%;
    width: 80%;
  }
}