/*
  Button color: 
  green button background color code: var(--primary) ; //07bf55 new  //2eae3e old
  green button background color code on hover: #199028;

  Blue button background color code: var(--secondary) ;
  Blue button background color code on hover: #21638a;

  all action button border radius is 4px;

  all a tag color: var(--secondary);
  on hover: #21638a;;

  theme button css-
  background-color: var(--primary);
  border: none;
  border-radius: 2px;
  box-shadow: 0px 0px 12px rgba(0,0,0,0.2);
  warning color scheme:
  background-color: #fcbd01;
  border-color: #fcbd01;
  Error message font color: #da0400;
*/

/*header footer css */
body{
  font-family: 'Lexend', sans-serif !important; 
  background-color: var(--white) !important;
}
button, html, input, select, textarea {
  font-family: 'Lexend', sans-serif !important; 
}
html{
  background-color: var(--white) !important;
}
label {
  font-weight: 400;
}
:focus {
  outline: none !important;
}
.header {
  box-shadow: 0px 0px 0px 2px #00000036;
}
p{
  word-break: break-word;
}

/*Theme Buttons style*/

.btn.btn-normal{
  background-color: #f1f1f1;
  border:1px solid #f1f1f1;
  color: var(--gray-600);
  border-radius: 4px;
  font-size: 16px;
  padding: 6px 15px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  line-height: inherit;
}
/*.btn.btn-normal:hover, .btn.btn-normal:active, .btn.btn-normal:focus{
  background-color: #bbb;
  border:1px solid #bbb;
  color: #333;
  box-shadow: 0px 0px 0px 3px rgba(212, 212, 212, 0.3);
}*/
.btn.btn-border{
  background-color: var(--white);
  border:1px solid var(--gray-600);
  color: var(--gray-600);
  border-radius: 4px;
  font-size: 16px;
  padding: 6px 15px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.btn.btn-border:hover, .btn.btn-border:active, .btn.btn-border:focus{
  background-color: #bbb;
  border:1px solid #bbb;
  color: #333;
  box-shadow: 0px 0px 0px 3px rgba(212, 212, 212, 0.3);
}
.box-shd{
 box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
}
.btn.btn-sm, .btn-link.btn-sm, .btn-link-danger.btn-sm{
  font-size: 12px;
  padding: 5px 12px;
  font-weight: 500;
}
.btn.btn-lg{
  font-size: 18px;
  padding: 10px 25px;
}
.btn.btn-block{
  width: 100%;
  display: inline-block;
}
.btn.btn-blue{
  background-color: var(--secondary) ;
  border: 1px solid var(--secondary) ;
  color: var(--white);
}
.btn.btn-border-blue {
  background-color: var(--white);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.btn.btn-blue:hover, .btn.btn-blue:active, .btn.btn-blue:focus, .btn.btn-border-blue:hover, .btn.btn-border-blue:active, .btn.btn-border-blue:focus{
  background-color: #21638a ;
  border: 1px solid #21638a ;
  color: var(--white);
  box-shadow: 0px 0px 0px 3px rgba(61, 130, 171, 0.3);
}
.btn.btn-green{
  background-color: var(--primary) ;
  border: 1px solid var(--primary) ;
  color: var(--white);
}
.btn.btn-green.btn-border-green, .btn.btn-border-green {
  background-color: var(--white);
  border: 1px solid var(--primary);
  color: var(--primary);
  transition: 0.3s ease-in-out;
}
.btn.btn-green:hover, .btn.btn-green:active, .btn.btn-green:focus, .btn.btn-green.btn-border-green:hover, .btn.btn-green.btn-border-green:active, .btn.btn-green.btn-border-green:focus, .btn.btn-border-green:hover, .btn.btn-border-green:active, .btn.btn-border-green:focus{
  background-color: #199028 ;
  border-color: #199028 ;
  color: var(--white);
  box-shadow: 0px 0px 0px 3px rgba(46, 174, 62, 0.3);
}
a.btn-link, .btn-link{
  font-size: 16px;
  padding: 6px 15px;
  background-color: rgba(61, 130, 171, 0.20);
  border-radius: 4px;
  font-weight: 500;
  color: var(--secondary);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
a.btn-link.btn-link-lg, .btn-link.btn-link-lg{
  font-size: 18px;
  padding: 10px 25px;
}
a.btn-link:hover, a.btn-link:active, a.btn-link:focus, .btn-link:hover, .btn-link:active, .btn-link:focus, a.btn-link.btn-wot-bg:hover, a.btn-link.btn-wot-bg:active, a.btn-link.btn-wot-bg:focus, .btn-link.btn-wot-bg:hover, .btn-link.btn-wot-bg:active, .btn-link.btn-wot-bg:focus{
  background-color: rgba(61, 130, 171, 0.35);
  color: #21638a;
  text-decoration: none;
}
.btn-link[disabled], .btn-link[disabled]:focus, .btn-link[disabled]:hover{
  background-color: rgba(61, 130, 171, 0.35);
  color: #21638a;
  opacity: 0.7;
}
.btn.btn-link.btn-danger {
  background-color: rgb(218,4,0,0.12);
  color: #f51e1a;
}
.btn-link.btn-danger:hover, .btn-link.btn-danger:active, .btn-link.btn-danger:focus{
  background-color: rgb(218,4,0,0.2);
  color: #da0400;
  text-decoration: none;
}
a.btn-link.btn-wot-bg, .btn-link.btn-wot-bg{
  background-color: transparent;
}
a.btn-edit, .btn-edit{
  font-size: 16px;
  color: var(--primary);
  padding: 6px 15px;
  background-color: var(--white);
  border-radius: 4px;
  font-weight: 500;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
  transition: 0.2s ease-in-out;
}
a.btn-remove, .btn-remove{
  font-size: 16px;
  color: #d60b0b;
  padding: 6px 15px;
  background-color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
  transition: 0.2s ease-in-out;
}
/*a.btn-remove:hover, .btn-remove:hover {
  color: #d60b0b;
  text-decoration: none;
  box-shadow: 0px 0px 0px 3px rgb(214 11 11 / 30%);
}*/
img.edit-io {
  width: 15px;
  margin-right: 5px;
}
.btn-edit-round{
  font-size: 16px;
  color: var(--primary);
  background-color: var(--white);
  border-radius: 50%;
  font-weight: 500;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
  transition: 0.2s ease-in-out;
  border: none;
  cursor: pointer;
}
.btn-round-md{
  width: 40px;
  height: 40px;
}
.btn-round-sm{
  width: 30px;
  height: 30px;
}
.btn-round-lg{
  width: 50px;
  height: 50px;
}
.btn-edit-round img{
  width: 15px;
}
a.btn-edit:hover, a.btn-edit:active, a.btn-edit:focus, .btn-edit:hover, .btn-edit:active, .btn-edit:focus{
  color: #199028;
  text-decoration: none;
  box-shadow: 0px 0px 0px 3px rgba(46, 174, 62, 0.3);
}
.btn-link-danger{
  font-size: 16px;
  padding: 6px 15px;
  background-color: rgb(214 11 11 / 10%);
  border-radius: 4px;
  font-weight: 500;
  color: #ec1e1b;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.btn-link-danger:hover, .btn-link-danger:active, .btn-link-danger:focus{
  background-color: rgb(218,4,0,0.15);
  color: #da0400;
  text-decoration: none;
}
.btn-block+.btn-block {
  margin-top: 10px !important;
}
.btn.btn-red{
  background-color: #da0400;
  border: 1px solid #da0400 ;
  color: var(--white);
  transition: 0.3s ease-in-out;
}
.btn.btn-red:hover, .btn.btn-red:active, .btn.btn-red:focus{
  background-color: #c90602;
  border-color: #c90602;
  color: var(--white);
  box-shadow: 0px 0px 0px 3px rgba(201, 6, 2, 0.3);
}
/*Theme Buttons style*/
/*range slider*/
.rzslider .rz-bar-wrapper {
  z-index: 0;
}
.rzslider .rz-pointer {
  top: -4px;
  z-index: 0;
  width: 15px;
  height: 15px;
  box-shadow: 1px 0px 2px 0px;
  cursor: pointer;
  background-color: var(--white);
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  transition: all linear .3s;
}
.rzslider .rz-pointer:focus {
  outline: none;
}
.rzslider .rz-bar {
  height: 8px;
}
.rzslider .rz-pointer:after {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 0px;
  height: 0px;
  background: var(--white);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  content: '';
}
.rzslider .rz-selection {
  background: var(--primary);
}
/*/RNG Slider*/

/*steps header logo css*/
.logo_image{
  height:35px;
}
img.img-responsive.logo_image.center-block {
  margin-top: 10px;
}
img.img-responsive.logo_image.center-block {
  margin-top: 10px;
  margin-bottom: 10px;
}
/*//steps header logo css*/

.header a {
  float: left;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}
.header-right li a{
  font-size: 17px;
  transition: all 0.5s ease;
  background:#39b249;
  color: var(--white) ;
  margin: 6px 10px 0px 10px;
  padding: 10px 30px;
}
.header-right li a:hover{
  background:#39b249;
  color: var(--white) ;
}
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}
.header a img{
  width: 330px;
}
.header a.active {
  background-color: dodgerblue;
  color: white;
}
.header-right {
  float: right;
  margin: 5px 5px 0 0;
}
.header-right li{
  float: left;
}
#main-header{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  /*z-index: 1;*/
}
#main-header.fixed-slider-header {
  position: fixed;
  z-index: 9;
}
.verification-fixedheader-page {
  margin-top: 60px;
}
.dis-flex-link{
  display: flex;
  margin-top: 6px;
  box-shadow: 0px 0px 0px 1px #827d7dbf;
  border-radius: 4px;
  transition: all 0.5s ease;
}
.dis-flex-link:hover{
  transition: all 0.5s ease;
  box-shadow: 0px 0px 0px 2px #827d7dbf;
}
.dis-flex-link input{
  flex: 1 1 auto;
  border: 1px solid #eee;
  padding: 8px;
  width: 320px;
  border-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.dis-flex-link input:focus{
  outline: none;
}
.left-bor-link{
  border-left: 1px solid #8882828a;
}
.dis-flex-link button{
  background: #39b249;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 4px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border: none;
}
.sticky-none{
  display: none;
}
.left-bor-link a{
  background: #000 !important;
}
.left-bor-link a:hover{
  background: #39b249 !important;
  transition: all 0.5s ease; 
}
.sticky .header .sticky-none {
  display: block !important;
}
.sticky .header .aply-dev-link {
  display: none !important;
}
.body-content{
  height: 300px
}
.main-footer{
  overflow: hidden;
  background: #2a3646;
  color: #ced5e0;
  padding: 70px 0 10px;
}
.main-footer-heading h3{
  margin: 0;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: var(--white);
}
.footer-link-str ul li a {
  color: #ced5e0a6;
  font-size: 17px;
  letter-spacing: 1px;
  padding-bottom: 5px;
  display: inline-flex;
  text-decoration: none;
  transition: all 0.5s ease;
}
.footer-link-str ul li a:hover{
  transition: all 0.5s ease;
  color: var(--white);
}
.footer-community-link{
  text-align: center;
  padding-bottom: 70px;
  float: none;
  padding: 40px 0;
  border-top: 1px solid #636e7c;
  border-bottom: 1px solid #636e7c;
}
.footer-community-link li{
  display: inline-block;
  padding: 5px 30px;
  font-size: 20px;
  letter-spacing: 1px;
  position: relative;
}
.footer-community-link li a{
  font-size: 17px;
  transition: all 0.5s ease;
  background: #39b249;
  color: var(--white);
  padding: 12px 50px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
}
.footer-link-str{
  margin-bottom: 50px;
}
.p-absolute{
  position: absolute;
  bottom: -49px;
  font-size: 13px;
  left: 38px;
  text-align: center;
  color: var(--white);
}
.footer-flex-search{
  display: flex;
  border: 1px solid #eeeeee45;
  padding: 15px 20px;
  border-radius: 7px;
}
.newslatter{
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 15px;
}
.footer-flex-search input{
  border: none;
  background: transparent;
  width: 95%;
}
.footer-flex-search input:focus{
  outline: none;
}
.footer-flex-search i{
  padding:2px;
  font-size: 20px; 
}
.copy-write-text{
  padding: 43px 0;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
  line-height: 24px;
  color: var(--white);
}
.Social-link ul li{
  display: inline-flex;
}
.Social-link ul li a{
  font-size: 15px;
  background: var(--white);
  width: 40px;
  height: 40px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.5s ease;
}
.Social-link ul li a:hover{
  transition: all 0.5s ease;
  background: #39b249;
  color: var(--white) !important; 
}
.Social-link ul li a:hover i{
  color: var(--white) !important;  
}
.facebook{
  color:  #3B5998;
}
.linkedin{
  color:  #007bb5;
}
.twitter{
  color:  #55ACEE;
}
select.header-dropdown {
  padding: 6px;
}
/*/header footer*/

/*developer profile*/
.profile-box{
  border:1px solid #ebebeb;
  padding: 10px;
}
span.devloper-name {
  font-size: 16px;
  font-weight: 600;
}
span.span-green-model {
  background-color: var(--primary);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 30px;
  display: inline;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.22);
  margin-right: 8px;
  font-size: 10px;
}
.span-blue-model{
  background-color: var(--secondary);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 30px;
  display: inline;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.22);
  margin-right: 8px;
  font-size: 10px;
}
p.dev_exp {
  width: 100%;
  font-size: 14px;
  line-height: normal;
}
.vide0-box {
  border: 1px solid #ebebeb;
  padding: 10px;
}
.vide0-box span {
  font-size: 12px;
  color: #b7b7b7;
}
.vide0-box a {
  font-size: 12px;
  font-weight: 600;
}
input.ask-que-input.text-left {
  width: 450px;
  background: #efefef;
  border: none;
  height: 30px;
  padding: 5px;
  margin-top: 20px;
}
button.ques-ans-submit {
  background: #2eae3f;
  color: white;
  font-size: 14px;
  font-weight: 600;
  border: none;
  height: 30px;
  width: 100px;
  margin-left: -5px;
}
.qes-ans-box {
  border: 1px solid #ebebeb;
  padding: 40px;
}
textarea.review-textarea {
  margin: 0px;
  width: 320px;
  height: 100px;
  border-color: #ebebeb;
}
.review-box {
  border: 1px solid #ebebeb;
  padding: 15px;
}
button.review-submit {
  background: #2eae3f;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  padding: 8px 20px;
}
.edit-review a{
  position: absolute;
  right: 8px;
  top: 8px;
  transition: 0.5s ease-in-out;
  text-decoration: none;
}
.edit-review a:hover img {
  transform: scale(1.3);
}
.edit-review img {
  height: 16px;
  transition: 0.5s ease-in-out;
}
.marg-top{
  margin-top: 100px;
}
.dev-search-bock.submit-review {
  width: 65%;
  font-size: 16px;
  font-weight: 500;
  margin: 0 auto;
  background-color: var(--white);
  padding: 20px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.12);
  min-height: 85px;
  margin-bottom: 30px;
}
a.submit-review-btn {
  font-size: 18px;
  font-weight: 600;
  transition: all 0.5s ease;
  background: var(--primary);
  color: var(--white);
  margin: 0px;
  border-radius: 2px;
  padding: 10px 30px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.12);
  display: inline-block;
  cursor: pointer;
}
.incomplete-warning-modal a.submit-review-btn {
  font-size: 16px;
  font-weight: 500;
  transition: all 0.5s ease;
  padding: 8px 24px;
}
a.submit-review-btn:active, a.submit-review-btn:focus, a.submit-review-btn:hover {
  background: #199028;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.18);
}
.row.skills-row {
  margin-top: 35px;
} 
.edit-review.video-edit a{
  z-index: 9;
  background-color: var(--white);
  padding: 5px;
}
a.searchlist-achor-sec {
  color: #333;
  display: inline-block;
  width: 100%;
  position: relative;
}
.star-search .checked {
  color: #f6931d;
}
.devs-details1 strong {
  font-weight: 600;
}
.travel-status {
  font-size: 12px;
}
span.star-rating {
  font-size: 24px;
  color: #ddd;
  padding-left: 0px;
}
.star-reviews {
  padding-left: 15px;
  font-size: 14px;
  color: #444;
  font-weight: 600;
  border-left: 2px solid #444;
}
strong.pull-right {
  margin-right: 30px!important;
}
.dev-other-detail p {
  font-weight: 400;
  margin-bottom: 5px;
}
.dev-other-detail p span {
  text-transform: capitalize;
  color: var(--black);
}
.video-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  padding: 50px 10px 10px;
  background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 90%, rgba(0,0,0,0.82) 94%); 
  background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 90%,rgba(0,0,0,0.82) 94%); 
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 90%,rgba(0,0,0,0.82) 94%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); 
}
.video-title p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.all-skill-show {
  position: relative;
}
/*/developer profile*/

/*search page css*/
md-dialog.md-transition-in {
  max-height: 100%;
}
.skills-Dialog md-dialog.md-transition-in {
  max-height: 500px;
}
.skills-Dialog .modal-body {
  overflow-y: scroll;
}
.profile-box{
  border:1px solid #ebebeb;
  padding: 10px;
}
span.devloper-name {
  font-size: 16px;
  font-weight: 600;
}
span.dwn-resume {
  background-color: #ebebeb;
  color: var(--white);
  padding: 5px 12px;
  border-radius: 30px;
  display: inline;
  color: var(--secondary);
  font-weight: 600;
  margin-right: 8px;
  font-size: 12px;
}
span.tech-skill-modal {
  display: inline-block;
  color: #333;
  font-weight: 600;
  background: #d7d7d7;
  padding: 0px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-top: 5px;
  margin-right: 10px;
}
.share p {
  float: right;
}
.sidebar_div {
  display: inline-block;
}
p.profile-sidebar {
  font-size: 12px;
  line-height: normal;
}
i.fa.fa-check-circle-o {
  color: var(--primary);
}
.profile-sidebar span {
  font-style: italic;
  font-size: 10px;
  font-weight: 500;
}
.Liability p {
  font-size: 12px;
  margin-bottom: 0px;
  line-height: normal;
}
.Liability a {
  font-size: 10px;
  font-weight: 600;
}
a.schedule-btn {
  border-color: transparent;
  border-radius: 2px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  text-transform: uppercase;
  max-width: 100%;
  padding: 5px;
  border: 2px solid var(--primary);
}
.schedule-interview {
  margin-top: 15px;
}
.hourly-charge {
  border: 1px solid #ebebeb;
  padding: 10px;
  position: relative;
}
.hourly-charge hr {
  margin: 10px 0;
}
.ask-que {
  text-align: center;
  margin-top: 40px;
}
span.tech-skill-modal.ask-que {
  background: var(--secondary);
  color: var(--white);
  font-size: 14px;
  padding: 5px 15px;
}
.report {
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary);
  word-break: break-word;
}
.Languages-bubbol {
  background-color: #e1e1e1;
  color: black;
}
span.language-advance-blue {
  background-color: #5798d2;
  color: white;
  padding: 4px 12px 4px 12px;
  border-radius: 0px 14px 14px 0px;
}
span.language-advance-orange {
  background-color: #fcbc75;
  color: white;
  padding: 4px 12px 4px 12px;
  border-radius: 0px 14px 14px 0px;
}
span.language-advance-silver {
  background-color: #6ecec3;
  color: white;
  padding: 4px 12px 4px 12px;
  border-radius: 0px 14px 14px 0px;
}
span.badge.Languages-bubbol {
  margin-top: 10px;
  padding:5px 0px 5px 15px;
  margin-left: 5px;
}
p.right-content-title {
  font-weight: 600;
  color: #3d81aa;
  font-size: 14px;
  margin-bottom: 0;
}
span.badge.tools-bubbol {
  background-color: #e1e1e1;
  color: black;
  padding: 4px 12px;
  margin-top: 5px;
}
span.badge.pf-language-bubbol {
  background-color: #e1e1e1;
  padding: 5px 10px 5px 10px;
  color: black;
}
span.pf-language {
  color: #39b249;
  margin-left: 5px;
}
.hrsearch{
  margin:5px 0px;
}
p.achive {
  font-size: 12px;
}
span.top-blue {
  background: #40a6a8;
  font-size: 8px;
  color: white;
  padding: 2px 5px;
  border-radius: 30px;
}
span.top-green {
  background: #59bc52;
  font-size: 8px;
  color: white;
  padding: 2px 5px;
  border-radius: 30px;
}
span.top-orange {
  background: #e8922b;
  font-size: 8px;
  color: white;
  padding: 2px 5px;
  border-radius: 30px;
}
.row.interview-video {
  margin-top: 25px;
}
img.location {
  margin-top: 10px;
  width: 190px;
}

/* hiremodal*/
.dev-list-img.hire-modal-img {
  width: 65px;
  height: 65px;
}
.md-dialog-container {
  z-index: 999;
}
.hire-modal-header{
  background: #ebebeb;
  padding: 25px;
}
.modal-body.hire-modal-body {
  padding: 25px;
}
.hire-model-div .form-group {
  margin-bottom: 25px;
}
.modal-footer.hire-modal-footer {
  padding: 30px;
  text-align: left;
}
span.devloper-name.hire-dev-name.capitalize.ng-binding {
  font-size: 22px;
}
.qualified-blank-data {
  width: 90%;
  margin: 50px auto;
  background-color: #f3f9fd;
  border: 1px solid #00a3fa;
  padding: 50px;
  border-radius: 2px;
}
.banner-text p {
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  color: #374954;
}
.banner-text {
  margin: 40px 0px;
}
.banner-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 75px;
  color: #374954;
}
.mssg-button p {
  font-size: 14px;
}
.modal-jobtype-radio ul {
  padding-left: 0;
  display: flex;
}
.modal-jobtype-radio ul li {
  list-style: none;
  display: inline-block;
  width: 25%;
  padding: 0 5px;
}
.modal-jobtype-ul md-radio-button .md-container {
  position: absolute;
  top: 5px;
  -webkit-transform: none; 
  transform: none; 
}
.jobtype-option {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 2px;
  height: 100%;
  transition: 0.5s cubic-bezier(0.55, 0.13, 0.56, 1.04) all;
}
.dev-jobtype h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}
.dev-jobtype.modal-job-select {
  margin-top: 35px;
}
a.btn.btn-primary.modal-hire-btn {
  background: #2eae3f;
  border: none;
  color: var(--white);
  font-size: 16px;
  border-radius: 2px;
  font-weight: 600;
  padding: 8px 25px;
  box-shadow: 0px 0px 12px rgba(0,0,0,0.2);
}
a.btn.btn-primary.modal-cancel-btn {
  background: #ddd;
  border: none;
  color: var(--gray-600);
  font-size: 16px;
  border-radius: 2px;
  font-weight: 600;
  padding: 8px 25px;
  box-shadow: none;
}

/*job search page css*/
.col-md-8.center-cols {
  padding-left: 15px;
  padding-right: 15px;
}
.job-search-bar {
  background-color: var(--white);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 3px;
  border: 1px solid #f6f6f6;
}
.job-search-bar label {
  float: left;
  margin-right: 40px;
  font-size: 16px;
  margin-bottom: 0;
  color: #444;
  font-weight: 600;
}
.main-page {
  padding-top: 15px;
  min-height: 80vh;
  padding-bottom: 50px;
  background-color: var(--white);
}
.main-page.inner-main-page{
  padding-top: 15px;
}
.main-page.viewjob-section, .main-page.search-dev-page{
  padding-top: 0;
}
.job-search-bar form {
  margin-bottom: 0;
}
button.btn.btn-default.search-btn {
  height: 50px;
  background-color: #f1f1f1;
  border-color: #ddd;
  color: var(--primary);
  padding: 6px 15px;
}
button.btn.btn-default.search-btn:hover, button.btn.btn-default.search-btn:focus, button.btn.btn-default.search-btn:active{
  box-shadow: none;
  color: var(--white);
  background-color: var(--primary);
  outline: none;
}
.feed-tab-section {
  background-color: var(--white);
  padding: 15px;
  box-shadow: 0px 0px 14px rgb(0 0 0 / 7%);
  border-radius: 3px;
  margin-bottom: 15px;
}
.feed-tab-section ul.nav.nav-pills {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 15px;
}
.feed-tab-section .nav-pills>li.active>a, .feed-tab-section .nav-pills>li.active>a:focus, .feed-tab-section .nav-pills>li.active>a:hover {
  color: var(--primary);
  background-color: transparent;
  border-bottom: 3px solid var(--primary);
}
.feed-tab-section .nav-pills>li>a {
  border-radius: 0;
}
.feed-tab-section .nav>li>a:focus, .feed-tab-section .nav>li>a:hover {
  color: var(--primary);
  background-color: transparent;
  border-bottom: 3px solid var(--primary);
}
.feed-tab-section .nav-pills>li+li {
  margin-left: 0;
}
.feed-tab-section .nav-pills>li.sprt-line {
  margin: 15px 10px;
}
.feed-tab-section .nav>li>a {
  padding:15px 8px;
  color: #9e9c9c;
  font-weight: 500;
  transition: 0.5s ease-in-out;
  border-bottom: 3px solid transparent;
}
.feed-listing-block {
  background-color: var(--white);
  border: 1px solid #ddd;
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
  border-radius: 3px;
  /*box-shadow: 0px 0px 16px rgb(0 0 0 / 5%);*/
  transition: 0.3s ease-in-out;
}
.feed-listing-block:hover {
  background-color: var(--white);
  border: 1px solid var(--white);
  box-shadow: 0px 0px 20px rgb(0 0 0 / 8%);
}
.feed-listing-block.invited-job, .feed-listing-block.invited-job:hover  {
  border: 1px solid var(--primary);
}
.feed-listing-block.skipped-block {
  /*background-color: transparent;*/
}
.feed-listing-block.premium-feed {
  border: 2px solid var(--secondary);
}
.job-title{
  color: var(--secondary);
  position: relative;
}
.job-title:hover{
  color: #21638a
}
.job-title h1, .job-title h2 {
  margin: 5px auto 0;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
.job-title p {
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  color: var(--black);
}
.job-stats {
  margin: 15px 0;
  width: 70%;
}
span.selected-tag {
  border: 1px solid #ddd;
  display: inline-block;
  padding: 4px 15px;
  border-radius: 40px;
  margin-right: 5px;
  margin-bottom: 8px;
}
.selected-tag p {
  font-size: 12px;
  font-weight: 500;
  color: #199028;
  margin-bottom: 0;
  line-height: normal;
}
.checkmark img {
  width: 16px;
  margin-left: 8px;
}
.job-description p {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 5px;
  cursor: pointer;
}
.job-description a{
  color: #333;
}
.job-description a:hover, .job-description a:focus, .job-description a:active{
  text-decoration: none;
}
.job-other-txt p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 0;
}
.job-other-txt p span {
  font-weight: 600;
}
.job-stats p {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
.job-stats p i {
  font-size: 20px;
  color: var(--primary);
  vertical-align: middle;
  font-style: normal;
  width: 30px;
  text-align: center;
}
img.stats-img {
  width: 18px;
  margin-right: 5px;
  vertical-align: text-top;
}
span.small-txt {
  font-size: 11px;
  color: var(--gray-600);
}
span.sprt-line {
  margin: 0px 15px;
}
.client-dtl {
  margin-left: 30px;
  border-left: 2px solid #ddd;
  padding-left: 15px;
  display: inline-block;
}
span.prfl-img {
  width: 30px;
  height: 30px;
  display: inline-block;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 50%;
  float: left;
}
.prfl-detail1 {
  display: inline-block;
  width: calc(100% - 50px);
}
.prfl-img img {
  width: 100%;
}
.prfl-detail {
  float: left;
}
p.clnt-nm {
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-transform: capitalize;
}
.clnt-rating {
  display: inline-block;
}
.clnt-rating li {
  display: inline-block;
  letter-spacing: -3px;
  color: #444;
}
.clnt-rating li.active {
  color: #f7941d;
}
.clnt-pymnt img {
  width: 15px;
  vertical-align: text-top;
}
span.clnt-stats {
  font-size: 12px;
  font-weight: 400;
  color: #333;
}
.post-time p {
  margin-bottom: 0;
  display: inline-block;
  font-size: 12px;
  color: #333;
}
.btn.btn-apply{
  border-radius: 2px;
  font-size: 16px;
  width: 100%;
  font-weight: 600;
  padding: 8px 14px;
  margin: 0px;
  transition: 0.5s ease-in-out;
  margin-bottom: 15px;
}
.btn.btn-apply.btn-green{
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transition: 0.5s ease-in-out;
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.14);
  -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.14);
  box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.14);
}
.btn.btn-apply.btn-green:hover, .btn.btn-apply.btn-green:focus, .btn.btn-apply.btn-green:active{
  background-color: #199028;
  border-color: #199028;
  color: var(--white);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.18);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.18);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.18);
}
.btn.btn-apply.btn-applied-grn {
    background-color: rgba(46, 174, 62, 0.2);
    border-color: transparent;
    color: var(--primary);
    font-style: italic;
    cursor: unset;
}
.btn-applied-grn img{
  width: 16px;
}
.col-md-2.left-padless {
  padding-left: 0;
}
a.job-withdraw {
  color: var(--secondary);
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  font-style: italic;
  text-decoration: underline;
}
/*.apply-btns-section {
  text-align: center;
}*/
.devs-profile-options {
  background-color: var(--white);
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  padding: 15px 10px;
  margin-bottom: 15px;
}
span.dev-img {
  width: 40px;
  height: 40px;
  float: left;
  border-radius: 50%;
  margin-right: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.dev-img img {
  width: 100%;
  height: 100%;
}
.side-profile-dtl p {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-bottom: 0;
  margin-top: 6px;
}
a.edit-icon img {
  width: 16px;
  /*display: inline-block;*/
}
.side-profile-dtl {
  display: inline-block;
  width: 100%;
}
.dev-availbl {
  /*margin-top: 20px;*/
}
p.side-title {
  font-size: 14px;
  font-weight: 600;
}
.dev-type p {
  line-height: 1.5;
  font-weight: 400;
}
span.bold-txt {
  font-size: 14px;
  font-weight: 600;
}
p.catg-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  padding: 10px;
  background-color: #EAF0F5;
}
.catg-name span {
  font-size: 12px;
  font-weight: 500;
}
p.catg-amnt {
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
  padding: 15px 10px;
}
p.catg-amnt i {
  color: var(--primary);
}
span.amnt-type {
  display: inline-block;
}
.jobtype-catg-show {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
  border: 1px solid #dfe7ee;
  border-radius: 10px;
}
.btn.btn-view-profile {
  background-color: var(--primary);
  border-radius: 2px;
  color: var(--white);
  font-weight: 500;
  padding: 8px 14px;
  width: 100%;
  transition: 0.5s ease-in-out;
}
.btn.btn-view-profile:hover, .btn.btn-view-profile:focus, .btn.btn-view-profile:active{
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.dev-profile-btn {
  margin: 15px 0px;
}
span.icon-right {
  float: right;
}
.profil-link input {
  margin-bottom: 5px;
}
span.txt-right {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
}
.icon-right a {
  color: var(--gray-600);
  margin: 0px 1px;
  font-size: 12px;
}
.profil-link {
  margin-bottom: 10px;
}
.side-loction p {
  margin-bottom: 0;
}
.side-loction span {
  font-size: 13px;
  font-weight: 500;
}
.filter-result-cont b {
  font-weight: 600;
  font-size: 16px;
}
.search-wide {
  min-width: 65px;
  float: left;
}
.sortby-sec {
  float: right;
}
.filter-result-cont p {
  margin-bottom: 0;
  line-height: 30px;
  font-weight: 500;
}
.search-wide.form-group {
  margin-bottom: 0;
}
.search-wide p {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 30px;
}
.custom-col-10 {
  padding-left: 15px;
  padding-right: 15px;
  width: 78%;
  float: left;
}
.custom-col-2 {
  padding-left: 5px;
  padding-right: 15px;
  width: 22%;
  float: right;
}
.blank-section {
  /*background-color: var(--white);
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.1);*/
  border-radius: 2px;
  padding: 25px;
  width: 500px;
  margin: 40px auto;
  border: 1px solid #ddd;
}
.cont-side h4 {
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary);
}
.cont-side p {
  font-size: 22px;
  font-weight: 500;
  color: #21638a;
  margin: 15px 0;
}
/*.small-cont {
  margin-top: 50px;
}*/
.cont-full-sidebar md-backdrop.md-opaque.md-default-theme, .cont-full-sidebar md-backdrop.md-opaque {
  background-color: transparent;
}
.cont-full-sidebar md-sidenav {
  max-width: none;
  box-sizing: border-box;
  position: fixed;
  flex-direction: column;
  z-index: 60;
  width: 100%;
  max-width: none;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.cont-full-sidebar md-input-container, .sidebar-container {
  padding: 0px;
  margin: 0;
  vertical-align: middle;
  width: 95%;
  background-color: var(--white);
  float: right;
  height: 100vh;
  overflow-y: scroll;
}
.cont-full-sidebar md-container {
  padding: 0px;
  margin: 0;
  vertical-align: middle;
  width: 95%;
  background-color: var(--white);
  float: right;
  height: 100vh;
  overflow-y: scroll;
}
.cont-full-sidebar md-content {
  padding: 0px;
  margin: 0;
  vertical-align: middle;
  width: 95%;
  background-color: var(--white);
  float: right;
  height: 100vh;
  overflow-y: scroll;
}
.sidebar-top-nav p {
  font-weight: 600;
  color: #444;
  margin-bottom: 0;
}
.panel-profile-page {
  padding: 15px;
  background: var(--white);
}
p.view-right {
  text-align: right;
  float: right;
  font-weight: 600;
}
p.back-left {
  float: left;
  margin-bottom: 0;
}
.sidebar-top-nav p a:hover, .sidebar-top-nav p a:focus, .sidebar-top-nav p a:active{
  color: var(--secondary);
  text-decoration: none;
}
.sidebar-top-nav {
  padding: 20px 0px;
  border-bottom: 1px solid #ebebeb;
  background-color: #f1f1f1;
  margin-bottom: 30px;
}
.desktop-view-sec-filter{
  display: block;
}
.filter-icon-mob{
  display: none;
}
.job-type-selectMobile {
  display: none;
}
.result-count-mobile{
  display: none;
}
a.feat-li-options.header-li.why-us {
  padding: 20px 10px;
  font-weight: 500;
  font-size: 14px;
}
a.feat-li-options.header-li.why-us:hover{
  color: var(--primary);
}
nav.navbar.bootsnav ul.nav > li > a.dev-find-li {
  padding: 8px 26px !important;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
}
.banner-btns {
  display: inline-flex;
}
span.browse-btn-sec {
  margin-left: 15px;
}
button.btn.btn-ok-applyjob {
  background-color: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  float: right;
  padding: 5px 25px;
}
button.btn.confirm-yes-btn {
  font-size: 15px;
  background-color: var(--primary);
  border: none;
  font-weight: 500;
  padding: 5px 20px;
}
button.btn.confirm-yes-btn:hover {    
  background-color: #199028;
  box-shadow: 0px 0px 18px rgba(0,0,0,0.25);
}
button.btn.confirm-no-btn {
  font-size: 15px;
  background-color: #ddd;
  color: #444;
  border: none;
  font-weight: 500;
  padding: 5px 20px;
}
button.btn.confirm-no-btn:hover {    
  background-color: #444;
  color: var(--white);
  box-shadow: 0px 0px 18px rgba(0,0,0,0.25);
}
button.btn.delete-modal-btn {
  font-size: 15px;
  background-color: #da0400;
  border: none;
  border-radius: 2px;
  font-weight: 500;
  padding: 5px 20px;
  margin: 0px 10px;
  transition: 0.5s ease-in-out;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.2);
}
button.btn.delete-modal-btn:hover, button.btn.delete-modal-btn:focus, button.btn.delete-modal-btn:active{
  background-color: #b50300;
  color: var(--white);
}
button.btn.delete-no-btn {
  font-size: 15px;
  background-color: var(--gray-600);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-weight: 500;
  padding: 5px 20px;
  margin: 0px 10px;
  transition: 0.5s ease-in-out;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.2);
}
button.btn.delete-no-btn:hover, button.btn.delete-no-btn:active, button.btn.delete-no-btn:focus{
  background-color: #333;
  color: var(--white);
}
/*button.btn.btn-primary.available-btn {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: 2px;
  padding: 6px 25px;
  font-size: 16px;
  font-weight: 500;
  margin: 0px 5px;
}
button.btn.btn-primary.available-btn:hover, button.btn.btn-primary.available-btn:focus, button.btn.btn-primary.available-btn:active{
  background-color: #199028;
  border-color: #199028;
  color: var(--white);
}
button.btn.btn-primary.unavailable-btn {
    background-color: var(--white);
    border-radius: 2px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin: 0px 5px;
    border: 1.4px solid var(--primary);
}
button.btn.btn-primary.unavailable-btn:hover, button.btn.btn-primary.unavailable-btn:focus, button.btn.btn-primary.unavailable-btn:active{
  background-color: #ddd;
  border-color: #ddd;
  color: #444;
}*/
/*.confirm-modal-confirm-btns {
  padding: 15px 0px 15px 0px;
}*/
#widthdrawConfirmationDialog md-dialog {
  max-width: 100%;
}
#widthdrawConfirmationDialog .modal-body {
  padding: 30px;
}
#skipConfirmationDialog md-dialog {
  max-width: 450px;
}
#skipConfirmationDialog .modal-body {
  padding: 30px;
}
span.agree-btn-block {
  margin-left: 20px;
}
/*//job search page css*/

/*===view job post css===*/
.page-breadcrum {
  background-color: #f6f6f6;
  padding: 8px 0px;
}
.backtopage img {
  width: 14px;
}
.page-breadcrum p {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  margin-bottom: 0;
}
.backtopage a:hover, .backtopage a:focus, .backtopage a:active{
  color: var(--secondary);
  text-decoration: none;
}
.create-date p {
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 500;
  margin: 0;
}
.premuim-tag {
  background-color: var(--secondary);
  display: inline-block;
  float: right;
  padding: 3px 12px;
  color: var(--white);
  font-weight: 500;
  font-size: 13px;
  margin: 20px 0 0;
}
.premuim-tag p {
  margin-bottom: 0;
}
.view-page {
  margin: 20px 0px;
}
.job-options {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}
.job-options .col-md-6.col-sm-6.col-xs-6.mobile-rightPadding {
  padding-left: 0;
  padding-right: 0;
}
.job-content {
  background-color: var(--white);
  box-shadow: 0 0 12px 5px rgb(0 0 0 / 5%);
  padding: 25px;
}
.view-job-title h1 {
  font-size: 22px;
  font-weight: 500;
  color: #444;
  margin-top: 0;
  text-transform: capitalize;
}
.view-job-title p {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-600);
}
.view-job-description p {
  margin-top: 0px;
  font-weight: 300;
}
.stats-cont p {
  font-weight: 500;
  color: #3b515d;
  font-size: 16px;
  /*float: left;*/
  /*margin-bottom: 15px;*/
  /*width: calc(100% - 30px);*/
  display: contents;
  margin: 0;
  margin-left: 30px;
}
span.stats-icon {
  width: 20px;
  float: left;
  margin-top: 0px;
  font-size: 22px;
  color: var(--secondary);
  text-align: center;
  margin-right: 10px;
}
span.help-txt {
  display: block;
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
.view-job-timezone h2 {
  font-size: 16px;
  margin-bottom: 20px;
}
p.date-p {
  font-size: 16px;
}
.view-job-timezone b {
  font-weight: 500;
}
.view-job-timezone p span {
  margin: 0px 5px;
}
.italic-txt {
  margin-left: 35px !important;
  font-size: 12px;
  font-style: italic;
  color: var(--gray-600);
  font-weight: 600;
}
span.skill-tag {
  background-color: rgb(0 110 255 / 10%);
  color: var(--primary);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 40px;
  margin-right: 8px;
  margin-bottom: 10px;
  min-width: 85px;
  text-align: center;
}
.skill-tag p, .skill-tag h4 {
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  line-height: normal;
}
span.skill-tag.default {
  background-color: var(--secondary);
  color: var(--white);
}
.view-job-skills h2 {
  font-size: 16px;
  margin-bottom: 20px;
}
.view-job-lang h2 {
  font-size: 16px;
  margin-bottom: 20px;
}
.share-page {
  text-align: right;
  font-weight: 600;
}
.view-job-apply-btn {
  width: 200px;
}
.gmail-icon img {
  width: 16px;
}
span.gmail-icon {
  margin: 0px 5px;
}
.share-icon a {
  color: #444;
}
.client-short-brif {
  background-color: #fdfdfd;
  border: 1px solid #ebebeb;
  padding: 15px 10px;
}
.client-other p {
  font-size: 12px;
  font-weight: 600;
}
.client-other {
  margin-top: 20px;
}
.client-other span {
  display: inline-block;
}
/*===//view job post css===*/

/*header css*/
.top-nav-sec nav.navbar.bootsnav{
  display: block;
  width: 100%;
  height: auto;
  padding: 0px;
  background-color: var(--white);
  border: none;
  border-bottom: 1px solid var(--gray-200);
  /*box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.07);*/
  margin-bottom: 0;
  border-radius: 0;
}
/*.top-nav-sec .navbar-brand {
  padding: 0 0 0 6px;
  float: left;
  height: auto;
}*/
.top-nav-sec .navbar-brand {
  padding: 18px 10px;
  float: left;
  height: auto;
  margin-right: 0;
}
img.top-logo {
  width: auto;
  height: 26px;
}
.navbar-right.devs-btn-sec {
  margin-right: 0;
  margin-top: 10px;
}
nav.navbar.bootsnav ul.nav.devs-btn-sec > li > a.devs-btn {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  margin: 10px 0;  
  line-height: normal;
  transition: 0.3s ease-in-out;
  box-shadow: none;
  border-radius: 4px;
  font-size: 16px;
  padding: 6px 15px;
  font-weight: 500;
}
nav.navbar.bootsnav ul.nav.devs-btn-sec > li > a.devs-btn:hover {
  box-shadow: 0px 0px 0px 3px rgb(0 110 255 / 30%);
  background-color: var(--secondary);
}
.navbar-nav > li.btn-dvd {
  border-right: 0px solid #ddd;
  height: 40px;
  margin: 0 10px;
}
.dev-sidebar-inner .btn.btn-border.candidate-loginBtn{
  margin: 0;
}
nav.navbar.bootsnav ul.nav.devs-btn-sec > li > a.login-btn, .btn.btn-border.candidate-loginBtn {
  background-color: transparent;
  color: var(--primary);
  margin: 10px 0;   
  border: none;
  transition: 0.3s ease-in-out;
  box-shadow: none;
  border-radius: 4px;
  font-size: 16px;
  padding: 6px 15px;
  font-weight: 500;
}
nav.navbar.bootsnav ul.nav.devs-btn-sec > li > a.login-btn:hover {  
  background-color: rgb(0 110 255 / 18%);
  color: var(--secondary);  
}
.btn.btn-border.candidate-loginBtn:hover, .btn.btn-border.candidate-loginBtn:focus, .btn.btn-border.candidate-loginBtn:active{
  background-color: rgb(0 110 255 / 18%);
  border: none;
  box-shadow: none;
  color: var(--secondary);
} 
a.btn.btn-default.boost-btn {
  background-color: var(--secondary);
  border: none;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.21);
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  padding: 8px 15px;
}
.btn.btn-blue.btn-signup{
  color: var(--white);
}
.btn.border-tranparent.btn-login {
  background-color: transparent;
  border: none;
  color: var(--primary);
}
.btn.border-tranparent.btn-login:hover, .btn.border-tranparent.btn-login:focus {
  background-color: rgb(0 110 255 / 18%);
  border: none;
  color: var(--secondary);
  box-shadow: none;
}
.btn.btn-blue.btn-signup:hover, .btn.btn-blue.btn-signup:active, .btn.btn-blue.btn-signup:focus{
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  box-shadow: 0px 0px 0px 3px rgb(0 110 255 / 30%);
}

/*login custom dropdown*/
nav.navbar.bootsnav li.dropdown ul.dropdown-menu.login-custom-dropdown {
  width: 260px;
}
nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu li a {
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
}
span.login-img {
  display: block;
  margin-bottom: 10px;
}
/*//login custom dropdown*/

/*.top-nav-sec .navbar-collapse {
  padding: 6px 0;
}*/

/* Ripple effect */
.ripple {
  background-position: center;
  transition: background 0.8s;
}
.ripple:hover {
  background: #468EB8 radial-gradient(circle, transparent 1%, #468EB8 1%) center/15000%;
}
.ripple:active {
  background-color: var(--secondary);
  background-size: 100%;
  transition: background 0s;
}
/* Ripple effect */

.btn-hire.ripple, .btn-apply.ripple {
  background-position: center;
  transition: background 0.8s;
  background-color: var(--primary);
}
.btn-hire.ripple:hover, .btn-apply.ripple:hover {
  background: #229431 radial-gradient(circle, transparent 1%, #229431 1%) center/15000%;
}
.btn-hire.ripple:active, .btn-apply.ripple:active {
  background-color: var(--primary);
  background-size: 100%;
  transition: background 0s;
}
ul.nav.navbar-nav.navbar-right.left-li-items {
  float: left !important;
}
ul.nav.navbar-nav.navbar-right.right-li-items {
  float: right !important;
  margin-right: 0;
  margin-top: 0;
}
button.feat-li-options {
  background-color: transparent;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 5px;
  margin: 8px;
  line-height: normal;
}
a.feat-li-options {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: normal;
  color: #444;
  display: inline-block;
}
/*.navbar-nav>li>a.header-li{
  font-size: 18px;
  font-weight: 500;
  margin: 0px 4px;
  padding: 8px;
  color: var(--secondary);
  border-bottom: 2px solid transparent;
}*/

/*.navbar-nav>li>a.header-li.active{
  border-bottom: 2px solid #21638a;
  color: #21638a;
}*/
/*.custom-li-menu a.feat-li-options.header-li:hover,
.custom-li-menu a.feat-li-options.header-li:focus,
.custom-li-menu a.feat-li-options.header-li.active {
    background: #ebf2f6;
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
    padding: 19px 10px;
}*/
.custom-li-menu a.feat-li-options.header-li:hover .cls-head-search-jobs, 
.custom-li-menu a.feat-li-options.header-li:focus .cls-head-search-jobs, 
.custom-li-menu a.feat-li-options.header-li.active .cls-head-search-jobs {
    stroke: var(--secondary);
}
.custom-li-menu a.feat-li-options.header-li:hover .cls-head-icon-chat, 
.custom-li-menu a.feat-li-options.header-li:focus .cls-head-icon-chat, 
.custom-li-menu a.feat-li-options.header-li.active .cls-head-icon-chat {
    fill: var(--secondary);
}
.custom-li-menu a.feat-li-options.header-li:hover .cls-head-icon-jobs, 
.custom-li-menu a.feat-li-options.header-li:focus .cls-head-icon-jobs, 
.custom-li-menu a.feat-li-options.header-li.active .cls-head-icon-jobs {
    fill: #3b515d;
    stroke: var(--secondary);
}
.right-li-items li {
  margin-left: 10px;
  margin-right: 10px;
}
.right-li-items li:last-child {
  margin-right: 0px;
}
.right-li-items li .dropdown-menu.custom-dropdown li {
  margin: 0;
}
a.profile-btn {
  font-size: 16px;
  color: var(--secondary);
  background-color: var(--white);
  box-shadow: none;
  padding: 10px 0px;
  font-weight: 500;
  display: inline-block;
  height: 40px;
  line-height: 20px;
  /*max-width: 165px;*/
}
a.profile-btn:hover, a.profile-btn:focus, a.profile-btn:active{
  color: #21638a;
  text-decoration: none;
  /*background-color: #F9F9F9;*/
}
.limit-nm {
  width: auto;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}
.nav .open>a.profile-btn, .nav .open>a.profile-btn:focus, .nav .open>a.profile-btn:hover {
  background-color: var(--white);
  border-color: transparent;
}
.dropdown-menu.custom-dropdown>li>a,nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu.talent_dd_left li a {
  padding:10px 12px;
  font-weight: 500;
  font-size: 14px;
  border:0;
  color: #3b515d;
  border-radius: 4px;
/*   min-height: 50px;
  line-height: 50px; */
}
.dropdown-menu.custom-dropdown>li>a:hover,nav.navbar.bootsnav ul.navbar-right li.dropdown ul.dropdown-menu.talent_dd_left li a:hover{
  color: var(--secondary);
  background: rgb(0 110 255 / 10%);
}
.menu-profile-img {
  width: 35px;
  height: 35px;
  background-color: var(--gray-300);
  display: inline-flex;
  vertical-align: middle;
  border-radius: 50%;
  overflow: hidden;
}
.dropdown-menu>li.refer-li>a {
  background-color: var(--secondary);
  color: var(--white);
  padding: 10px 20px;
  font-weight: 600;
}
.menu-profile-img img {
  width: 100%;
}
.dropdown-menu.custom-dropdown {
  background-color: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 2px;
  min-width: 250px;
  padding:8px;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  box-shadow: 0 6px 12px rgba(0,0,0,.175);
  max-width: 300px;
  max-height: 90vh;
  overflow-y: auto;
}
.boost-img {
  height: 25px;
  margin-right: 10px;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.header-search-bar .input-group .form-control, .header-search-bar .input-group-addon, .header-search-bar .input-group-btn {
  display: inline-block;
}
.header-search-bar .input-group .form-control{
  width: auto;
  min-width: 250px;
  background-color: #f9f9f9;
  border-radius: 2px;
  border: 1px solid #f1f1f1;
  font-size: 14px;
  color: #444;
  box-shadow: none;
  height: 40px;
}
button.btn.btn-search {
  height: 40px;
  color: #989898;
  background-color: #f9f9f9;
  border: 1px solid #f1f1f1;
  box-shadow: none;
}
.add-coworker img {
  width: 35px;
  border-radius: 50%;
  margin: 4px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.22);
}
.header-search-bar form {
  margin-bottom: 0;
}

/* ==profile page css== */
.gmail-share img {
  width: 16px;
  margin: 0px 8px 0px 10px;
}
.clipboard-share a {
  color: var(--gray-600);
}
.intro-video-sec {
  position: relative;
  margin-right: 15px;
}
span.warning-mssg {
  display: inline-flex;
  width: 60%;
}
.incomplete-warning-modal span.warning-mssg {
  display: inline-flex;
  width: 70%;
  font-size: 16px;
  font-weight: 500;
}
span.warning-btn {
  display: inline-block;
  float: right;
}
.detail-top-sec {
  display: flex;
}
.dev-info-block {
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
  margin-left: 0px;
  position: relative;
  width: 100%;
  display: inline-block;
  border: 1px solid var(--gray-200);
  margin-bottom: 10px;
}
h1.dev-name {
  margin-top: 0;
  font-weight: 600;
  font-size: 28px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0px;
  vertical-align: middle;

}
.video-content {
  width: 450px;
}
span.feat-tag {
  font-size: 10px;
  color: var(--white);
  background-color: #ddd;
  padding: 3px 10px;
  border-radius: 15px;
  font-weight: 500;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.2);
  vertical-align: super;
}
span.feat-tag.feat-linkedin {
  background-color: #0077B5;
}
span.feat-tag.tag-green {
  background-color: var(--primary);
}
span.feat-tag.tag-blue {
  background-color: var(--secondary);
}
.dev-titlebar {
  margin-bottom: 5px;
}
h2.dev-title {
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.4;
  word-break: break-word;
  color: var(--black);
}
p.dev-location {
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.inline-edit a {
  /*display: inline-grid;*/
  transition: 0.5s ease-in-out;
}
.inline-edit img {
  width: 16px;
  transition: 0.5s ease-in-out;
}
.inline-edit a:hover img {
  transform: scale(1.3);
}
.common-left-title {
  width: 23%;
  float: left;
}
.common-right-cont { 
  float: left; 
  width: 77%;
}
.common-div {
  display: inline-block;
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid var(--gray-200);
  margin-bottom: 10px;
}
hr.common-hr {
  margin-top: 5px;
  margin-bottom: 5px;
}
.left-title h4 {
  margin-top: 0;
  font-weight: 600;
}
.common-detail-sec {
  margin-top: 10px;
}
.common-left-title h4, .common-left-title h2 {
  font-weight: 600;
  margin-top: 0;
  font-size: 16px;
  color: #3b515d;
  text-transform: uppercase;
}
span.inline-edit {
  margin-left: 10px;
  cursor: pointer;
}
span.seprate-dot {
  width: 5px;
  height: 5px;
  background-color: #333333;
  border-radius: 50%;
  display: inline-block;
  padding: 0 !important;
  margin: 0 10px 0 8px !important;
  vertical-align: middle;
  margin-bottom: 3px !important;
}
.devs-tzn span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  display: inline-block;
}
.devs-tzn span:last-child {
  border-right: 0px solid var(--gray-600);
  padding-right: 10px;
  margin-right:0px;
}
.devs-tzn span:last-child span.seprate-dot{
  display: none;
}
/*.view-section-box{
  background-color: #fdfdfd;
  border: 1px solid #f7f7f7;
  position: relative;
  margin-bottom: 20px;
  -webkit-box-shadow: box-shadow: 0px 8px 9px rgb(0 0 0 / 13%);
  -moz-box-shadow: box-shadow: 0px 8px 9px rgb(0 0 0 / 13%);
  box-shadow: 0px 8px 9px rgb(0 0 0 / 13%);
}*/
/*.view-section-box.payment-sec{
  padding: 20px;
}*/
.dev-video-block {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 2px;
  margin-bottom: 20px;
  background-color: #f9f9f9;
}
.about-intr-video-sec h4 {
  margin-top: 10px;
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.about-intr-video-sec p {
  font-size: 12px;
  color: var(--gray-600);
  font-style: italic;
}
.about-interview-video-sec p {
  margin-bottom: 0px;
  font-size: 11px;
  color: var(--gray-600);
  font-weight: 500;
}
.about-intro-video-sec p {
  margin-bottom: 0px;
  font-size: 16px;
  color: #444;
  font-weight: 600;
  margin-top: 10px;
  line-height: normal;
}
.novideo-img {
  width: 100%;
}
.novideo-img img {
  width: 100%;
}
.about-intr-video-sec .skill-toltip {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary);
  font-style: italic; 
}
.sidepanel-block {
  background-color: #f6f6f6;
  padding: 20px 15px;
  position: relative;
  margin-bottom: 10px;
  border-radius: 5px;
}
.side-title-sec {
  position: relative;
  /*border-bottom: 1px solid #ddd;
  padding-bottom: 10px;*/
  margin-bottom: 20px;
}
.side-title-sec h4, .side-title-sec h3 {
  font-size: 14px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0;
  color: #3b515d;
  text-transform: uppercase;
}
.side-title-sec .edit-review a {
  right: 0;
  top: -5px;
}
.linkedin-icon a {
  font-size: 28px;
  color: #0077b4;
}
.location-map-sec {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
p.side-block-cont{
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}
.achievment-para img {
  float: left;
  width: 36px;
  margin-right: 5px;
}
a.btn.btn-upload-res {
  width: 100%;
  padding: 8px 10px;
  color: var(--white);
  border: none;
  background-color: var(--primary);
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0;
}
a.btn.btn-upload-res:hover, a.btn.btn-upload-res:focus, a.btn.btn-upload-res:active {
  color: var(--white);
  border-color: transparent;
  background-color: var(--primary);
}
a.btn-download-res {
  width: 100%;
  padding: 8px 10px;
  color: var(--white);
  border: none;
  background-color: var(--secondary);
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0;
}
a.btn.btn-download-res:hover, a.btn.btn-download-res:focus, a.btn.btn-download-res:active {
  color: var(--white);
  border-color: transparent;
  background-color: var(--secondary);
}
.more-txt{
  font-size: 14px;
}
.btn.btn-upload-res {
  width: 100%;
  padding: 8px 10px;
  color: var(--white);
  border: none;
  background-color: var(--primary);
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  margin: 5px 0;
}
.btn.btn-upload-res:hover, .btn.btn-upload-res:focus, .btn.btn-upload-res:active {
  color: var(--white);
  border-color: transparent;
  background-color: var(--primary);
}
.profile-page {
  margin-top: 30px;
}
/*.developer-other-details {
  margin-top: 25px;
}*/
.panel-profile-page .profile-page {
  margin-top: 0px;
}
/*common proflle page section css*/

/*//common proflle page section css*/

/* ==//profile page css== */

/* ==tablet view sidebar css== */
button.md-close {
  background-color: transparent;
  border: none;
  width: 50px;
  display: inline-block;
  padding: 0;
  height: 50px;
  position: absolute;
  right: 5px;
}
.md-close img {
  width: 20px;
  opacity: 0.3;
}
.sidenav-toolbar {
  background-color: #f9f9f9;
  border-bottom: 1px solid #ebebeb;
  text-align: left;
  width: 80%;
  float: right;
  height: 60px;
}
.sidenav-content {
  padding:  0;
  background-color: var(--white);
  width: 80%;
  float: right;
  min-height: 100vh;
}
ul.menubar-menu-li {
  padding-left: 0;
  list-style: none;
}
.menubar-menu-li dt {
  padding: 10px 10px 0;
}
ul.sub-li {
  padding-left: 0;
  margin-bottom: 15px;
}
.sub-li li{
  list-style: none;
}
.sub-li li a {
  width: 100%;
  display: inline-block;
  padding: 15px;
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid #f1f1f1;
}
.sub-li li a:hover, .sub-li li a:focus, .sub-li li a:active{
  color: #444;
  background-color: rgba(61, 130, 171, 0.05);
  text-decoration: none;
}
.sub-li li a.active{
  color: var(--white);
  background-color: var(--primary);
}
li a.active .nav-svg-icon .cls-15{
  fill: var(--white);
}
.sub-li li a span.nav-icons {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  vertical-align: middle;
}
.sub-li li a span.nav-icons i {
  line-height: 30px;
}
.sub-li li a span.nav-icons.nav-svg-icon {
  height: 18px;
}
span.nav-icons.nav-svg-icon img {
  width: 18px;
  height: 18px;
}
.nav-svg-icon svg {
  width: 18px;
  height: 18px;
}
.tab-navbar .sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
  overflow-x: hidden;
  transition: 0.3s cubic-bezier(0.74, 0.32, 0.3, 0.76);
  box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.16);
}
/*.menubar-toggle {
  float: right;
}*/
button.btn.btn-primary.menu-bars {
  background-color: var(--white);
  border: none;
  display: inline-block;
  height: 39px;
  min-width: 39px;
  width: auto;
  color: var(--primary);
  padding: 0 10px;
  font-size: 16px;
  border-radius: 2px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  transition: 0.5s ease-in-out;
}
button.btn.btn-primary.menu-bars.logout-menubar{
  background-color: var(--primary);
  color: var(--white);
  margin-left: 10px;
}
button.btn.btn-primary.menu-bars:focus, button.btn.btn-primary.menu-bars:active{
  background-color: var(--secondary);
  border: none;
  color: var(--white);
  box-shadow: 0px 0px 0px 3px rgb(0 110 255 / 30%);
}
.user-info-bar a{
  display: inline-block;
  float: left;
  padding: 12px 15px;
  width: 100%;
}
.user-info-bar .menu-profile-img {
  width: 35px;
  height: 35px;
  background-color: #ddd;
  display: inline-flex;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
}
span.user-nm {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: var(--black);
  text-transform: capitalize;
}
.user-nm p {
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 3px;
}
.mobile-sm-dropdown{
  display: none;
}
.feed-tab-mobile{
  background-color: var(--white);
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
}
.feed-tab-select md-select-value {
  background-color: rgb(0 110 255 / 6%);
  border: 1px solid var(--primary);
  padding: 7px 10px;
  border-radius: 2px;
  font-weight: 600;
}
.feed-tab-select .md-select-value .md-select-icon:after {
  top: 0px;
  speak: none;
  font-size: 24px;
  color: var(--primary);
}
.feed-tab-select md-select.md-default-theme:not([disabled]):focus .md-select-value, .feed-tab-select md-select:not([disabled]):focus .md-select-value {
  background-color: #f4fbff;
  border: 1px solid var(--secondary);
  color: var(--black);
  padding-bottom: 0px;
}
.feed-tab-select md-select {
  margin: 0;
}
.mobile-search-container{
  display: none;
}
.mobile-search-container {
  width: 100%;
  padding: 10px 15px 0;
}
.mobile-search-container .input-group {
  width: 100%;
}
.xs-view-header{
  display: none;
}
.sm-view-header {
  display: none;
}
.navbar-right.sm-navbar {
  margin-right: 0;
  margin: 0;
}
/* ==//tablet view sidebar css== */

/*skills show tabs css*/
.skill-tags li {
  display: inline-block;
  list-style: none;
}
.Cview-skill-tags.skill-tags li{
  margin: 0px 12px 15px 0;
} 
span.badge.gry-badge {    
  text-transform: capitalize;
  margin: 0 12px 15px 0;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
  background-color: rgb(0 110 255 / 10%);
  border: 1px solid rgb(0 110 255 / 10%);
  color: var(--secondary);
  line-height: normal;
  border-radius: 40px;
}
.badge-year {
  color: #6e6e6e;
  border-radius: 40px;
  padding: 6px 0 6px 15px;
  line-height: normal;
  font-size: 13px;
  font-weight: 600;
  background-color: #e5e5e5;
}
.badge-expertise {
  color: #6e6e6e;
  border-radius: 40px;
  padding: 6px 0 6px 15px;
  font-size: 13px;
  font-weight: 600;
  background-color: #e5e5e5;
}
.badge-view .badge-year { 
  font-size: 12px;
  background-color: #e5e5e5;
}
.skills-languages {
  margin-top: 15px;
}
.tag-expertise p {
  display: inline-block;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
}
.tag-expertise img {
  width: 13px;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 1;
}
span.language-advance-advanced {
  background-color: #5798d1;
  color: var(--white);
  padding: 6px 0px 6px 15px;
  border-radius: 0px 40px 40px 0px;
  margin-right: 0;
  font-size: 13px;
  line-height: normal;
  margin-left: 7px;
}
span.language-advance-beginner {
  background-color: #6ecec4;
  color: var(--white);
  padding: 6px 0px 6px 15px;
  border-radius: 0px 40px 40px 0px;
  margin-right: 0;
  font-size: 13px;
  line-height: normal;
  margin-left: 7px;
}
span.language-advance-intermediate {
  background-color: #fdbd77;
  color: var(--white);
  padding: 6px 0px 6px 15px;
  border-radius: 0px 40px 40px 0px;
  margin-right: 0;
  font-size: 13px;
  line-height: normal;
  margin-left: 7px;
}
span.language-advance-expert {
  background-color: #25ca76;
  color: var(--white);
  padding: 6px 0px 6px 15px;
  border-radius: 0px 40px 40px 0px;
  margin-right: 0;
  font-size: 13px;
  line-height: normal;
  margin-left: 7px;
}
.badge-view span.language-advance-beginner, .badge-view span.language-advance-advanced, .badge-view span.language-advance-intermediate, .badge-view span.language-advance-expert, .item-badge.badge-year {
  padding: 6px 15px;
} 

/*New skills design css*/
.skill-full-badge {
  display: inline-flex;
  background-color: #e8f1fc;
  border-radius: 50px;
  overflow: hidden;
}
.badge-content {
  text-transform: capitalize;
  background-color: #e8f1fc;
  padding: 8px 16px;
  border-radius: 50px 0px 0px 50px;
  float: left;
  border: 1px solid rgb(0 110 255 / 10%);
  margin: 0;
  color: var(--secondary);
  font-weight: 400;
  font-size: 14px;
}
.badge-content.badge-content-warning {
  background-color: var(--white);
  border: 1px solid #ffd96a;
  border-radius: 50px;
  padding: 8px 15px 8px 30px;
  position: relative;
}
span.badge-expertise {
  background-color: #ddd;
  padding: 5px 15px;
  border-radius: 0px 50px 50px 0px;
  color: var(--white);
  float: left;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
span.badge-expertise.advanced{
  background-color: #3F51B5;
}
span.badge-expertise.intermediate{
  background-color: #00BCD4;
}
span.badge-expertise.expert{
  background-color: #009688;
}
span.badge-expertise.beginner{
  background-color: #2196F3;
}
span.badge-expertise.advanced p, span.badge-expertise.intermediate p, span.badge-expertise.expert p, span.badge-expertise.beginner p{
  color: var(--white);
  font-weight: 400;
}
.txt-gry {
  font-weight: 500;
  font-size: 13px;
}
span.badge-expertise p {
  margin-bottom: 0;
  white-space: nowrap;
  align-self: center;
  display: inline-block;
  font-weight: 500;
}
/*//skills show tabs css*/

.developer-profile-show img {
  width: 100%;
  max-height: 100%;
}
.developer-profile-show {
  width: 200px;
  float: left;
  margin-right: 20px;
}
.profile-img-show{
  width: 200px;
  height: auto;
  min-height: 180px;
  max-height: 200px;
  border: 1px solid #ebebeb;
  padding: 0px;
  border-radius: 5px;
  background-color: var(--white);
  overflow: hidden;
  position: relative;
}
.profile-info {
  display: inline-block;
  width: calc(100% - 140px);
}
.sm-navbar {
  display: none;
}
.hire-sidesection.sm-view{
  display: none;
}
.feed-count-sort-mobile .row {
  display: none;
  background-color: #f1f1f1;
  padding: 6px 0;
}
.intro-video-show.mobile-show{
  display: none;
}
.pagination-section {
  text-align: center;
}
.pagination-section .pagination>li>a, .pagination-section .pagination>li>span {
  position: relative;
  float: left;
  padding: 6px 15px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: var(--secondary);
  text-decoration: none;
  background-color: #f9f9f9;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
}
.pagination-section .pagination>li>a:focus, .pagination-section .pagination>li>a:hover, .pagination-section .pagination>li>span:focus, .pagination-section .pagination>li>span:hover {
  z-index: 2;
  color: #444;
  background-color: #ddd;
  border-color: #ddd;
}
.pagination-section .pagination>.active>a, .pagination-section .pagination>.active>a:focus, .pagination-section .pagination>.active>a:hover, .pagination-section .pagination>.active>span, .pagination-section .pagination>.active>span:focus, .pagination-section .pagination>.active>span:hover {
  z-index: 0;
  color: var(--white);
  cursor: default;
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.copyright-small-mobile{
  display: none;
}
.jobView-section {
  margin-top: 35px;
}
section.viewjob-section {
  margin-bottom: 50px;
  min-height: 80vh;
}
.country-img img {
  height: 16px;
}
.xs-view-btn{
  display: none;
}
.form-control.sortby-input {
  width: 100%;
  height: auto;
  border-radius: 2px;
  background-color: #f9f9f9;
  border: 1px solid #f1f1f1;
  box-shadow: none;
}
button.btn.btn-primary.searchbox-btn{
  display: none;
}
.xs-view-applybtn, .premuim-tag.xs-view {
  display: none;
}
.tools-modal-tags span.badge.gry-badge {
  margin-top: 0;
}
.wistia-video-sec {
  width: 100%;
  height: 200px;
  position: relative;

}
.sidenav-tab-mobile {
    display: none;
}
/* Profile Image Uploading and croping modal css*/
.croping-image-section img-crop {
  width: 100%;
  height: 300px;
  background-color: #f1f1f1;
}
.croping-image-section img-crop canvas {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0 !important;
  margin-left: 0 !important;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 300px;
  border: 2px dotted #ddd;
  background-color: white;
  padding: 20px;
  border-radius: 2px;
}
.uploading-custom-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.uploading-custom-btn i {
  font-size: 46px;
  color: #ddd;
}
.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.profile-image-preview-section {
  border-left: 1px solid #ddd;
  padding-left: 30px;
}
.table>tbody>tr>td.img-croping-td {
  width: 50%;
}
.profile-upload-body .table {
  margin-bottom: 0;
}
.profile-upload-body .table>tbody>tr>td {
  border: none;
}
button.rotate-btn {
  background-color: #f1f1f1;
  color: var(--gray-600);
  border: none;
  padding: 8px 10px;
  font-weight: 400;
  font-size: 12px;
  border-radius: 2px;
  transition: 0.5s ease-in-out;
}
button.rotate-btn:hover, button.rotate-btn:focus, button.rotate-btn:active{
  background-color: var(--secondary);
  color: var(--white);
}
.edit-nav-options {
  margin-bottom: 15px;
  margin-top: 5px;
}
.image-croper-modal .modal-content {
  border: 0px solid #999;
  border: 0px solid rgba(0,0,0,.2);
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}
.image-croper-modal .modal-header .close {
  top: 0;
}
.upload-btn-sec {
    margin: 25px 0;
}
span.align-left {
  float: left;
  font-style: italic;
  color: var(--gray-600);
  display: inline-block;
  padding: 8px 0;
}
span.cke_path {
  display: none;
}
span.cke_resizer  {
  display: none;
}
.cke_bottom {
  padding: 10px 8px 2px;
}
/* Profile Image Uploading and croping modal css*/

/* New Footer design css*/
.bottom-footer {
  background-color: #042c60;
  padding: 50px 0;
}
.copy-right {
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  color: var(--white);
}
.india-partner {
  font-size: 14px;
  font-weight: 400;
  opacity: .4;
  margin: 0;
  line-height: 26px;
  color: var(--white);
}
.footer-social-sec a .fa-linkedin {
  color: #0077b5;
}
.footer-social-sec a .fa-facebook {
  color: #3c66c4;
}
.footer-social-sec a .fa-youtube-play {
  color: red;
}
.footer-social-sec a .fa-instagram {
  color: #8a3ab9;
}
.footer-social-sec a .fa-twitter {
  color: #00aced;
}
.footer-social-sec li a:hover i, .footer-social-sec li a:focus i, .footer-social-sec li a:active i{
  color: var(--white);
}
.main-footer-sec {
  background-color: var(--secondary);
  padding: 60px 0 40px;
  text-align: center;
}
.footer-social-sec ul {
  padding-left: 0;
  display: inline-flex;
  margin: 0;
}
.support-number {
  padding-left: 0;
}
.footer-social-sec li {
  list-style-type: none;
}
.footer-social-sec li a {
  /*width: 60px;
  height: 60px;
  display: inline-block;
  background-color: var(--white);
  line-height: 60px;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.5s ease-in-out;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);*/
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  transition: .5s ease-in-out;
  -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 9%);
  -moz-box-shadow: 0 0 20px rgba(0,0,0,.09);
  box-shadow: 0 0 20px rgb(0 0 0 / 9%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
}
.footer-social-sec li a:hover, .footer-social-sec li a:focus, .footer-social-sec li a:active{
  background-color: var(--primary);
  color: var(--white);
  border: none;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
/*.footer-social-sec li a i{
  line-height: 60px;
}*/
.footer-social-sec .google-plus-cl, .footer-social-sec .facebook-cl, .footer-social-sec .twitter-cl{
  transition: 0.5s ease-in-out;
}
.footer-social-sec li a:hover .google-plus-cl, 
.footer-social-sec li a:hover .facebook-cl, 
.footer-social-sec li a:hover .twitter-cl,
.footer-social-sec li a:hover .svg.twitter-svg {
  color: var(--white);
}
.footer-social-sec li a:focus .google-plus-cl, 
.footer-social-sec li a:focus .facebook-cl, 
.footer-social-sec li a:focus .twitter-cl,
.footer-social-sec li a:hover .svg.twitter-svg {
  color: var(--white);
}
.footer-social-sec li a:active .google-plus-cl, 
.footer-social-sec li a:active .facebook-cl, 
.footer-social-sec li a:active .twitter-cl,
.footer-social-sec li a:hover .svg.twitter-svg {
  color: var(--white);
}
.btm-contact-detail {
  margin-top: 50px;
}
h4.support-title {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 18px;
}
.support-number li {
  display: inline-block;
  margin: 5px;  
}
.support-number li a{
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.support-number li a:hover, .support-number li a:focus, .support-number li a:active{
  text-decoration: none;
}
.country-flag img {
  width: auto;
  height: 18px;
  margin-right: 5px;
  border: 1px solid #ddd;
  border-radius: 2px;
}
span.saprate-dot {
  width: 7px;
  height: 7px;
  background-color: var(--white);
  display: inline-block;
  border-radius: 50%;
  margin: 0 10px;
}
.dev-support-num {
  margin-top: 50px;
}
.bottom-logo img {
  width: auto;
  height: 25px;
  margin-right: 10px;
  border-right: 1px solid #b5b5b5;
  padding-right: 10px;
}
.inner-footer-sec hr.footer-hr {
/*  margin-top: 30px;
  margin-bottom: 30px;
  border: 0;*/
  border-top: 1px solid #3179a2;
}
p.india-partner-txt {
  margin-top: 12px;
}
.inner-footer-sec .bottom-cpy p {
  text-align: center;
  color: var(--white);
  font-weight: 300;
  font-size: 13px;
  margin: 10px 0;
}
.btm-weblinks li {
  display: inline-block;
}
.btm-weblinks li a{
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}
.btm-weblinks li a:hover, .btm-weblinks li a:focus, .btm-weblinks li a:active{
  color: #21638a;
}
.blue-txt{
  color: #21638a;
}
a.privacy-link {
  color: var(--white);
  margin: 5px 0 0;
  display: inline-block;
  /* width: 100%; */
  font-weight: 300;
}
/* //New Footer design css*/

/*New checkout page design css*/
section.inner-pages {
  background-color: var(--white);
  padding: 0;
  padding-bottom: 50px;
}
.view-section-box.hire-page-box{
  background-color: var(--white);
  border: 1px solid #f6f6f6;
  border-radius: 5px;
  position: relative;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 9%);
  -moz-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 9%);
  box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 9%);
}
.box-section-title {
  padding: 10px 20px;
  border-bottom: 1px solid #f1f1f1;
}
.box-section-title h4 {
  font-size: 18px;
  font-weight: 600;
}
.box-section-content, .job-hire-sec .view-section-box.hire-page-box{
  padding: 20px;
}
.hired-jobtype .page-info-secblock{
  padding: 0;
}
.selected-jobtype h4.jobytype-name {
  font-size: 22px;
  font-weight: 500;
  color: #3b515d;
  margin-bottom: 10px;
}
.selected-jobtype .jobytype-name span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.hourly-rate-show p {
  font-weight: 500;
  color: #333;
  font-size: 24px;
  margin-bottom: 5px;
}
.change-rate-sec a {
  display: inline-block;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 3px 6px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 2px;
  margin-bottom: 3px;
  margin-top: 3px;
  transition: 0.2s ease-in-out;
}
.change-rate-sec a:hover, .change-rate-sec a:focus, .change-rate-sec a:active{
  border: 1px solid #21638a;
  background-color: #21638a;
  color: var(--white);
  text-decoration:none;
}
.change-rate-sec a.active{
  border: 1px solid #21638a;
  background-color: #21638a;
  color: var(--white);
  text-decoration:none;
}
.change-rate-sec p {
  font-size: 12px;
  font-style: italic;
  color: var(--gray-600);
}
.usd-currency {
  font-size: 12px;
  font-style: italic;
  color: var(--gray-600);
  display: block;
}
.additional-input-section .table>tbody>tr>td, .additional-input-section .table>tbody>tr>th {
  border-top: 0px solid #ddd;
  padding: 15px 8px;
}
.page-form-width {
  /*width: 550px;*/
}
.table>tbody>tr>th.input-label {
  width: 250px;
  min-width: 250px;
}
.input-label p {
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
  color: var(--gray-600);
}
.input-label span {
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--gray-600);
}
.payment-input i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  font-size: 20px;
  color: var(--primary);
  z-index: 8;
}
.payment-input .input-group-addon {
  padding: 6px 10px;
  font-size: 13px;
  color: var(--black);
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}
.payment-input .input-group-addon:not(:first-child):not(:last-child){
  border-radius: 5px;
}
.hired-jobtype .option-section-title {
  padding: 15px;
}
.hired-jobtype .option-section-content {
  padding: 10px 20px 0;
}
p.input-help-text {
  font-size: 13px;
  font-weight: normal;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 0;
  margin-top: 5px;
}
.deposit-section {
  padding: 10px 0px 50px;
}
.deposit-pay-title h4 {
  font-size: 22px;
  color: var(--primary);
}
.offer-letter-title h4 { 
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}
.payment-input.deposit-input {
  width: 200px;
}
span.title-optional {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  margin-left: 30px;
}
.attach-file-section input.form-control.custom-input {
  width: 100%;
  height: 100px;
  border: 1px dashed #ddd;
}
.table>tbody>tr>td.ml-title-td {
  width: 50%;
  border-top: 0px solid #ddd;
}
.table>tbody>tr>td.ml-date-td, .table>tbody>tr>td.ml-amount-td{
  width: 25%;
  border-top: 0px solid #ddd;
}
label.mlstn-label {
  font-size: 13px;
  font-weight: 500;
}
.ml-date-td .select-job-date .md-datepicker-input-container {
  width: auto;
}
.single-milestone {
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 10px 5px 0;
  position: relative;
  margin-top: 15px;
}
.single-milestone .table {
  margin-bottom: 0;
}
span.cancel-mlstn {
  position: absolute;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: #da0400;
  color: var(--white);
  text-align: center;
  padding: 2px;
  right: 0;
  top: 0;
}
.table>tbody>tr>td.pymnt-amnt {
  text-align: right;
}
.add-payment-sec {
  border: 1px solid #ddd;
  border-radius: 2px;
  padding: 10px 10px 0;
}
.add-payment-sec.section-error{
  border: 1px solid #da0400;
}
.add-payment-sec.section-error p a {
    color: #da0400;
}
p.payoption-nm {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--secondary);
  font-weight: 500;
}
.payoption-nm span {
  margin: 0px 10px;
}
md-radio-button:not([disabled]).md-primary.blue-theme-radio.md-checked .md-off, md-radio-group:not([disabled]) .md-primary.blue-theme-radio.md-checked .md-off{
  border-color: var(--secondary);
}
md-radio-button:not([disabled]).md-primary.blue-theme-radio .md-on, md-radio-group:not([disabled]) .md-primary.blue-theme-radio .md-on{
  background-color: var(--secondary);
}
.col-md-6.right-border {
  border-right: 1px solid #ebebeb;
  padding: 5px 15px;
}
.payment-term-box h4 {
  color: #e65c08;
  line-height: 1.5;
  font-size: 20px;
}
.payment-term-box {
  background-color: rgb(255 234 93 / 30%);
  text-align: center;
  padding: 15px;
  border-radius: 5px;
}
.input-group-addon.select-addon-left {
  padding: 0 10px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}
.select-addon-left md-select {
  margin: 0;
}
span.input-middle-addon {
  position: relative;
  display: inline-block;
}
.insurence-feat-checkout.payment-term-feat {
  border: 0px;
  margin: 25px 0;
  text-align: center;
}
.payment-term-feat .ins-feat-cont {
  display: inline-block;
  margin: 0 auto;
  background-color: var(--white);
  padding: 15px;
  border-radius: 2px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.12);
}
.job-hire-sec .hire-section {
  margin-bottom: 15px;
}
.hire-section .btn+.btn {
  margin-left: 10px;
}
.breadcrums {
  background-color: #ddd;
  padding: 8px 0;
}
.send-success-section {
  width: 100%;
  height: 80vh;
  position: relative;
}
.success-content-inner {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
h4.sccs-heading {
  font-weight: 300;
  color: var(--gray-600);
  font-size: 24px;
  line-height: 1.4;
}
p.sccs-help-txt {
  font-weight: 500;
  color: var(--gray-600);
}
a.btn.btn-gry-lg {
  background-color: var(--white);
  color: #21638a;
  border: 2px solid #21638a;
  font-weight: 500;
  border-radius: 2px;
  margin: 15px;
  width: 200px;
  transition: 0.5s ease-in-out;
  padding: 10px;
}
a.btn.btn-gry-lg:hover, a.btn.btn-gry-lg:active, a.btn.btn-gry-lg:focus{
  background-color: #21638a;
  color: var(--white);
}
.offer-job-details-sec .table>tbody>tr>th, .offer-job-details-sec .table>tbody>tr>td{
  border: none;
  font-size: 14px;
  padding: 15px 8px;
}
.offer-job-details-sec .table>tbody>tr>th{
  width: 160px;
  font-weight: 500;
  color: var(--gray-600);
  font-size: 14px;
}
td.rate-txt {
  font-weight: 600;
  color: var(--secondary);
}
.offer-sidnav {
  background-color: var(--white);
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 3px;
}
.offer-status-sec.offer-job-details-sec .table>tbody>tr>td {
  border: none;
  font-size: 13px;
  padding: 8px 0;
}
.job-start-date .offer-status-sec.offer-job-details-sec .table>tbody>tr>td {
  font-size: 14px;
  padding: 5px 0;
  font-weight: 500;
  vertical-align: middle;
}
.offer-job-fulldetails-sec .table>tbody>tr>td {
  border: none;
  font-size: 13px;
  padding: 8px 0;
}
.offer-job-fulldetails-sec .table>tbody>tr>td {
  font-size: 15px;
  padding: 5px 0;
  font-weight: 500;
}
span.rejected-txt {
  color: #ff0000;
  font-style: italic;
  font-weight: 500;
  text-transform: capitalize;
}
span.pending-txt {
  color: #f1b200;
  font-style: italic;
  font-weight: 500;
  text-transform: capitalize;
}
a.btn.btn-offer {
  display: inline-block;
  width: 100%;
  padding: 10px;
  background-color: #ddd;
  margin-bottom: 10px;
  border-radius: 2px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}
a.btn.btn-offer.btn-edit-offer {
  background-color: #fbeca0;
  color: #b37300;
}
a.btn.btn-offer.btn-edit-offer:hover, a.btn.btn-offer.btn-edit-offer:active, a.btn.btn-offer.btn-edit-offer:focus{
  background-color: #ffe175;
}
a.btn.btn-offer.btn-withdraw-offer {
  background-color: #ddd;
  color: var(--gray-600);
}
a.btn.btn-offer.btn-withdraw-offer:hover, a.btn.btn-offer.btn-withdraw-offer:active, a.btn.btn-offer.btn-withdraw-offer:focus{
  background-color: #dedede;
}
a.btn.btn-offer.btn-mssg {
  background-color: transparent;
  color: var(--secondary);
  /*border: 1px solid var(--secondary);*/
}
a.btn.btn-offer.btn-mssg:hover, a.btn.btn-offer.btn-mssg:active, a.btn.btn-offer.btn-mssg:focus{
  background-color: var(--white);
  color: #21638a;
  border: 1px solid #21638a;
}
a.btn.btn-offer.btn-accept-offer {
  background-color: var(--primary);
  color: var(--white);
}
a.btn.btn-offer.btn-accept-offer:hover, a.btn.btn-offer.btn-accept-offer:active, a.btn.btn-offer.btn-accept-offer:focus{
  background-color: #199028;
}
a.btn.btn-offer.btn-decline-offer {
  background-color: #ffe8e8;
  color: #da0400;
}
a.btn.btn-offer.btn-decline-offer:hover, a.btn.btn-offer.btn-decline-offer:active, a.btn.btn-offer.btn-decline-offer:focus{
  background-color: #fdd1d1;
}
h4.sccs-heading a {
  font-size: 16px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
}
h4.sccs-heading a:hover{
  color: #21638a;
  border-bottom: 2px solid #21638a;
  text-decoration: none;
}
.sm-morebtns-view a.btn.btn-offer {
  width: auto;
}
.sm-morebtns-view{
  display: none;
}
.offer-action-sec a.btn.btn-offer, .offer-action-sec button.btn.btn-mssg-profile{
  font-size: 12px;
  padding: 8px 15px;
  margin-bottom: 5px;
}
.btn-nav-options img {
  width: 14px;
}
a.btn.btn-offer.btn-nav-options {
  background-color: rgba(61, 130, 171, 0.15);
}
a.btn.btn-offer.btn-nav-options:hover, a.btn.btn-offer.btn-nav-options:focus, a.btn.btn-offer.btn-nav-options:active{
  background-color: rgba(61, 130, 171, 0.3);
  color: #21638a;
}
.offer-reject-modal .modal-content {
  border-radius: 2px;
  -webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.08);
  border: none;
}
.btn.btn-declined-modal {
  color: var(--white);
  border-radius: 2px;
  padding: 8px 20px;
  background-color: #da0400d9;
  margin-left: 15px;
}
.btn.btn-declined-modal:hover, .btn.btn-declined-modal:active, .btn.btn-declined-modal:focus{
  background-color: #da0400;
}
a.modal-cancel-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--secondary);
  margin: 0px 15px;
}
a.modal-cancel-btn:hover, a.modal-cancel-btn:active, a.modal-cancel-btn:focus{
  color: #21638a;
}
.reset-rate a {
  /*float: right;
  display: inline-block;
  font-size: 14px;
  text-decoration: underline;
  font-style: italic;*/
}
.deposit-section.milstones-section {
  padding: 10px 0px;
}
.total-amt-show h5 {
  color: var(--secondary);
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 0;
}
.hire-sec .offer-status-sec.offer-job-details-sec .table {
  margin-bottom: 0;
}
.milstone-create-section {
  margin-bottom: 20px;
}
.reset-rate {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -70px;
}
.sm-td-input .input-group.payment-input, .sm-td-input .select-job-date.hire-date{
  width: 210px;
}
.input-group.payment-input.trio-addon-input {
    width: 300px;
}
.additional-input-section .table {
    margin-bottom: 0;
}
.hired-page-attach .drag-drop-image .dropzone {
  height: 55px;
  /*border: 2px dashed #ddd;
  border-radius: 5px;
  background-color: var(--white);
  cursor: pointer;
  transition: 0.3s ease-in-out;*/
}
.hired-page-attach .drag-drop-image .dropzone .msg {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
}
.terms-panel .panel-title {
  position: relative;
  display: inline-block;
  width: 100%;
}
.terms-panel a.panel-title:after {
  content: '\f106';
  font-family: 'FontAwesome';
  font-size: 30px;
  text-align: center;
  width: 30px;
  height: auto;
  display: inline-block;
  position: absolute;
  right: 0;
  top: -12px;
  transition: 0.3s ease-in-out;
}
.terms-panel a.panel-title.collapsed:after {
  transform: rotate(180deg);
}
.terms-panel .panel-title h4 {
  font-size: 16px;
  margin: 0;
  width: calc(100% - 30px);
}
.terms-panel .panel-title:hover h4{
  text-decoration: none;
}
.terms-panel .panel-body p {
  font-size: 13px;
  line-height: 1.5;
}
.howpaywork-textbox li {
  font-size: 14px;
  line-height: 1.5;
  margin: 15px 0;
}
.payment-btn {
  margin: 20px 0 30px;
}
.payment-btn .help-txt{
  line-height: 36px;
}
.box-section-content.job-terms-box-content{
  padding: 0px 20px;
}
.hire-date .md-datepicker-input{
  font-size: 18px;
}
/*//New checkout page design css*/

.tabViewIcon {
  vertical-align: middle;
  margin-right: 5px;
  display: inline-block;
  width: 14px;
  height: 14px;
  transition: 0.3s ease-in-out;
  z-index: 1;
}
.svg-link-io .link-1, .svg-link-io .link-2 {
  fill: none ;
  stroke: var(--primary);
  stroke-width: 3px;
}
.svg-link-io .link-view-full-job {
  fill: none ;
  stroke: #007AB9;
  stroke-width: 3px;
}
.tabViewIcon.svg-link-io:hover {
  transform: scale(1.1);
}
.tabViewIcon img {
  width: 14px;
  transition: 0.2s ease-in-out;
}
.tabViewIcon img:hover{
  transform: scale(1.3);
}
.verified-tag {
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.feat-mark.rcm-tag {
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.annual-finderfree{
  border: 1px solid #fdfdfd00;
}
.div-border-error-red {
  border: 1px solid #da0400;
  width: auto;
}
.div-border-success-green{
  border: 1px solid  var(--primary);
}
.form-control.custom-input.border-error-red, textarea.form-control.custom-input.border-error-red {
  border: 1px solid #da0400;
}
/*input.form-control.custom-input.border-success-green:focus {
    border: 1px solid  var(--primary);
}*/
span.profile-block-error {
  position: absolute;
  color: #d60b0b;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}
span.profile-block-error-relative {
  position: relative;
  color: #d60b0b;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
}
p.help-txt-right {
  margin-bottom: 0;
  font-size: 11px;
  color: var(--gray-600);
  text-align: right;
  font-weight: 500;
}
.cke_inner.cke_reset.offer-editor-border-red{
  border: 1px solid #da0400;  
}
.cke_inner.cke_reset.offer-editor-border-green{
  border: 1px solid  var(--primary);
}
span.offer-required-star {
  color: #d60b0b;
  font-weight: 600;
  font-size: 12px;
  vertical-align: super;
  padding: 5px;
  font-style: normal;
}
.clear-rate {
  float: right;
  margin: 10px 0px;
}
button.offer-button {
  min-height: 42px;
}
button.offer-button:disabled {
  background-color: #2eae3f !important;
  opacity: 0.6;
}
 

.job-start-date .offer-status-sec.offer-job-details-sec .table>tbody>tr>td .newoffer-txt, .job-start-date .offer-status-sec.offer-job-details-sec .table>tbody>tr>td .ongoing-txt, .job-start-date .offer-status-sec.offer-job-details-sec .table>tbody>tr>td .completed-txt {
  font-weight: 500;
  font-size: 16px;
}
.newoffer-txt {
  color: #f9a40a;
}
.ongoing-txt {
  color: #03afc7;
}
.completed-txt {
  color: #39b148;
}
.offer-stats p {
  font-size: 16px;
  /*color: var(--gray-600);*/
  font-weight: 500;
}
.custom-dialog-hire md-dialog {
  width: 900px;
  max-width: 900px;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.2);
}
.custom-dialog-hire .modal-content {
  border-radius: 3px;
  border: none;
}
.jobtype-option.checked-jobtype {
  background-color: #21638a;
  color: var(--white);
  border: 1px solid #21638a;
  border-radius: 3px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.25);
}
.checked-jobtype .jobtype-custom-label span, .checked-jobtype p.pricing-label{
  color: var(--white);
}
.custom-radio.checked-jobtype md-radio-button:not([disabled]).md-primary.md-checked .md-off{
  border-color: var(--white);
}
.custom-radio.checked-jobtype md-radio-button:not([disabled]).md-primary .md-on{
  background-color: var(--white);
}
a.terms-sidpanel {
  display: none;
}
.payment-term-sec.showon-xs{
  display: none;
}
.single-milestone.section-error{
  border: 1px solid #da0400;
}
.uploading-placeholder span {
  display: inline-block;
  line-height: 1.4;
}
.added-files-show {
  text-align: left;
}
.hire-devmap.job_post {
  position: static;
}
/*Alert message designs*/
a.alert-box, .alert-box {
  display: table;
  width: 100%;
  /*min-height: 50px;*/
  background-color: #ddd;
  border-radius: 3px;
  /*margin: 5px 0;*/
  transition: 0.5s ease-in-out;
}
a.alert-box{
  cursor: pointer;
}
a.alert-box:hover, a.alert-box:active, a.alert-box:focus{
  text-decoration: none;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
}
a.alert-green-box,.alert-green-box {
  background-color: #d4f9d9;
  color: #009413;
}
a.alert-yellow-box, .alert-yellow-box {
  /*background-color: #fcbd01;
  color: var(--white);*/
  /*background-color: rgb(255 236 38 / 80%);
  color: #807508;*/
  background-color: rgb(255 205 0 / 75%);
  color: rgb(117 95 3);
}
a.alert-red-box, .alert-red-box { 
  background-color: #ffe7e8;
  color: #da0400;
}
.alert-box.alert-blue-box {
  background-color: #d0edfd;
  color: #21638a;
  padding: 10px;
  text-align: center;
  transition: 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*.alert-box.alert-blue-box:hover {
  background-color: #b6e4ff;
}*/
.alert-icon {
  text-align: center;
  display: table-cell;
  background-color: rgba(0,0,0,0.06);
  width: 50px;
  min-width: 50px;
  vertical-align: middle;
  font-size: 16px;
}
.alert-content {
  display: table-cell;
  padding: 10px 15px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.alert-content p {
  margin-bottom: 0;
  font-weight: 500;
}
.col-md-9.custom-col-sm {
  display: inline-flex;
}
.col-md-9.custom-col-sm.col-flex-disable {
  display: inline-block;
}
.custom-col-sm .col-9 {
  width: 65%;
  padding-right: 15px;
}
.custom-col-sm .col-3 {
  width: 35%;
}
.offer-stats p span {
  display: inline-block;
}

.btn.btn-submit-modal {
  border-radius: 2px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  padding: 4px 13px !important;
  line-height: 30px;
  min-width: 100px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.18);
}
.confirm-pass-title {
  text-align: center;
}
img.password_image {
  width: 100px;
  margin-bottom: 30px;
}
.confirm-pass-title h4{
  line-height: 1.4;
}
.password-input-section {
  margin: 30px 0;
}
.footer-button-section {
    padding: 10px 25px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.jobtitle-td::first-letter {
  text-transform: capitalize;
}
span.green-txt {
  color: var(--primary);
  font-weight: 600;
  font-size: larger;
}
button.btn.btn-mssg-profile.btn-mssg-icon {
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin-left: 10px;
  padding: 0;
}
.actions-dropdown button.btn.btn-primary.dropdown-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  border-color: transparent;
  color: #21638a;
  margin-left: 10px;
  padding: 0;
}
.actions-dropdown .dropdown-menu {
  right: 0;
  left: auto;
  top: 30px;
  border: 1px solid #ccc;
  border: 0px solid rgba(0,0,0,.15);
  border-radius: 5px;
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.3);
  padding: 0;
  transition: 0.3s cubic-bezier(0.74, 0.32, 0.3, 0.76);
  display: block;
  height: 0;
  overflow: hidden;
}
.actions-dropdown.dropdown-left .dropdown-menu {
  right: auto;
  left: 0;
}
.actions-dropdown.open>.dropdown-menu {
  height: 135px;
}
.actions-dropdown.open>.dropdown-menu.drp-menu-4 {
  height: 180px;
}
.actions-dropdown.open>.dropdown-menu.drp-menu-2 {
  height: 90px;
}
.actions-dropdown.open>.dropdown-menu.drp-menu-1 {
  height: 45px;
}
.actions-dropdown .dropdown-menu>li>a {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  font-weight: 500;
  cursor: pointer;
}
.actions-dropdown .dropdown-menu>li>a:hover {
  background-color: rgb(0 110 255 / 10%);
  color: var(--secondary);
}
.option-io{
  fill:var(--black);
}
.actions-dropdown .dropdown-menu>li>a:hover .option-io{
  fill:var(--secondary);
}
span.menu-io {
  width: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.actions-dropdown .dropdown-menu>li>a img {
  width: 20px;
  filter: grayscale(1);
}
.actions-dropdown.tab-dropdown .dropdown-menu>li>a {
    color:#9e9c9c; 
}
.actions-dropdown.tab-dropdown li.active a {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    background-color: #f1f1f1;
}
.actions-dropdown.tab-dropdown li.active.Deactive a {
    background-color: var(--white);
    color:#9e9c9c; 
    border-bottom: 1px solid #ddd;
}
/*.dropdown-menu > li > a i{
  color: var(--primary);
  margin-right: 5px;
}*/
ul.navdot {
  padding-left: 0;
  margin-bottom: 0;
}
.navdot li {
  display: inline-block;
  list-style: none;
  width: 5px;
  height: 5px;
  background-color: #21638a;
  text-align: center;
  margin: 0px 1px;
  border-radius: 50%;
}
button.btn.btn-mssg-profile {
  width: 100%;
  margin-bottom: 20px;
  background-color: rgba(61, 130, 171, 0.15);
  border-radius: 2px;
  color: #21638a;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  transition: 0.5s ease-in-out;
}
button.btn.btn-mssg-profile:hover, button.btn.btn-mssg-profile:focus, button.btn.btn-mssg-profile:active{
  box-shadow: none;
  background-color: rgba(61, 130, 171, 0.3);
  color: #21638a;
}
h4.end-txt-lg {
  margin-top: 0;
  font-style: italic;
  text-decoration: underline;
}
i.upload-status {
  font-size: 13px;
  color: var(--secondary);
}
.offer-attach-show {
  margin-top: 15px;
}
textarea.form-control.custom-input.border-error-red {
  border: 1px solid #da0400; 
}
p.help-txt {
  margin-bottom: 0;
  font-size: 11px;
  color: var(--gray-600);
  text-align: right;
  font-weight: 500;
}
img.offer-load-img {
  width: 20px;
}
.checkout-password-button {
    min-height: 40px;
}
.attachment-error{
    left: 20px;
}
.notify-count {
  background-color: var(--primary);
  color: var(--white);
  width: 18px;
  display: inline-block;
  height: 18px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}
.pymnt-summary .table>tbody>tr>td{
    /*padding: 8px 0;*/
    border-top: 0px solid #ddd;
}
.table>tbody>tr.amount-total>td{
    border-top: 1px solid #ddd;
}
.pymnt-summary .table {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    /*background-color: #f9f9f9;*/
}
.pymnt-txt p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}
.pymnt-amnt p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}
span.help-txt-small {
  font-size: 12px;
  display: block;
  color: var(--gray-600);
  font-weight: 500;
}
.pymnt-amnt span {
  font-size: 12px;
  font-weight: 500;
}
.amount-total .table>tbody>tr>td{
    padding: 0;
    border-bottom: 1px solid #ddd;
}
td.pymnt-txt {
  width: 60%;
}
.pymnt-txt h5, .pymnt-amnt h5 {
    font-size: 16px;
}
button.btn.btn-primary.btn-hire-lg {
  border-radius: 4px;
  background-color: var(--primary);
  border-color: transparent;
  border: 1px solid var(--primary);
  font-size: 18px;
  font-weight: 500;
  padding: 10px 25px;
  color: var(--white);
  min-width: 200px;
  box-shadow: 0px 2px 20px -3px rgba(0, 0, 0, 0.18);
  position: relative;
  /*height: 40px;*/
}
button.btn.btn-primary.btn-hire-lg:disabled {
  background-color: #9c9992;
}
.btn-hire-lg.ripple, .btn-apply.ripple {
  background-position: center;
  transition: background 0.8s;
}
.btn-hire-lg.ripple:hover, .btn-apply.ripple:hover {
  background: var(--secondary) radial-gradient(circle, transparent 1%, var(--secondary) 1%) center/15000%;
}
.btn-hire-lg.ripple:active, .btn-apply.ripple:active {
  background-color: var(--primary);
  background-size: 100%;
  transition: background 0s;
}
button.btn.btn-primary.btn-apply {
  border-radius: 2px;
  background-color: var(--primary);
  border-color: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 24px;
  color: var(--white);
  box-shadow: 0px 2px 20px -3px rgba(0, 0, 0, 0.18);
  position: relative;
  /*height: 40px;*/
}
.virtualRepeatdemoDeferredLoading .vertical-container {
  height: 300px;
  width: 100%;
  /*max-width: 400px;*/
  background-color:transparent;
}
.virtualRepeatdemoDeferredLoading .repeated-item {
  box-sizing: border-box;
  /*height: 25px;*/
  display: inline;
}
.virtualRepeatdemoDeferredLoading .repeated-item li {
  display: inline-block;
  list-style: none;
}
.interview-timing-show {
  background-color: #f6f6f6;
  border-radius: 4px;
  padding: 10px;
  text-align: left;
  margin-bottom: 10px;
}
.interview-timing-show.accept-int{
  background-color: var(--white);
  border: 1px solid var(--primary);
}
.interview-timing-show.accept-int h5{
  color: var(--primary);
}
.interview-timing-show.decline-int {
    background-color: var(--white);
    border: 1px solid #da0400;
}
.interview-timing-show.decline-int h5{
  color: #da0400;
  text-align: center;
}
/*.interview-timing-show h5 {
  text-align: center;
  border-bottom: 1px solid #c3c3c3;
  font-weight: 500;
  color: var(--secondary);
  margin-top: 0;
  padding-bottom: 8px;
  margin-bottom: 15px;
}*/
.interview-timing-show p {
  font-weight: 500;
  margin-bottom: 5px;
  text-align: center;
}

/*new search page css*/

.short-container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
.content-loader-img img{
  opacity: 0.5; 
  margin-bottom: 50px;
}
.cols-3 {
  width: 280px;
  float: left;
  padding: 0px 15px;
}
.cols-9 {
  width: calc(100% - 280px);
  float: left;
  padding: 0 15px;
}
.cols-9.cols-12 {
    max-width: 1024px;
    float: none;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}
.feed-tab-section .nav-pills>li+li.last-li {
  float: right;
}
.filterd-skills-show .txt-gry {
  font-weight: 400;
  font-size: 13px;
}
.filterd-skills-show .badge-content {
  padding: 3px 10px;
}
.filterd-skills-show span.badge-expertise {
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 400;
}
.skill-tags.filterd-skills-show li {
    margin: 2px 5px 5px 0;
}
.support-num-show h4 {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 400;
  margin-top: 12px;
}
.loader-img {
  padding: 25px 15px;
  opacity: 0.4;
}
.sidenav-tab-mobile {
  display: none;
}
/*//New search page css*/

/* New profile page css */
span.full-status-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #a9a9a9;
  padding: 3px 8px;
  color: var(--white);
  font-style: italic;
  border: 2px solid var(--white);
  box-shadow: -2px -4px 9px rgba(0, 0, 0, 0.18);
}
span.full-status-tag.online {
  background-color: var(--primary);
}
.other-stats-show {
    margin-top: 20px;
}
.other-stats-show span.status-txt {
    font-size: 14px;
}
.dev-titlenlocation p.location-st {
    margin-top: 0;
}

/*rating section css*/
.multi-rating-show {
  display: inline-flex;
  width: 100%;
  margin-bottom: 10px;
}
.multi-rating-show .ovr-rating, .multi-rating-show .exp-rating, .multi-rating-show .ovr-review{
  width: auto;
  float: left;
  margin-right: 15px;
  min-width: 150px;
}
.multi-rating-show .ovr-review {
  text-align: center;
  align-self: center;
}
h4.ovr-rating-title {
  font-weight: 400;
  font-size: 15px;
}
h4.ovr-rating-title span {
  font-size: 20px;
  font-weight: 300;
}
.dflt-ratings ul {
  padding-left: 0;
  margin-bottom: 0;
}
.dflt-ratings ul li {
  list-style: none;
  display: table-row;
}
.default-rt-nm {
  padding-right: 20px;
}
.default-rt-nm, .default-rt-cnt {
  display: table-cell;
}
.default-rt-nm p {
  font-size: 13px;
  margin-bottom: 5px;
}
.dflt-stars {
  color: #ddd;
}
.dflt-stars .chacked {
  color: #ffbd02;
}
span.default-rt-count {
  font-size: 12px;
  font-weight: 300;
}
.dev-rating-show ul li {
    display: inline-block;
    list-style: none;
    vertical-align: middle;
}
.star-rating i.chacked {
    color: #ffbd02;
}
.star-rating i {
    letter-spacing: -2px;
}
/*//rating section css*/

.intro-vd-link-flt a {
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}
.intro-vd-link-flt a span.status-icon {
  color: var(--secondary);
}
.hire-sidesection {
  text-align: center;
}
.top-skills-lg .top-skill-tag {
  font-size: 13px;
  padding: 4px 12px;
  font-weight: 500;
  margin-top: 0;
}
.prj-title {
  float: left;
  width: 80%;
}
.right-text-show {
  float: right;
  text-align: right;
  width: 20%;
}
.prj-title h5 {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 5px;
}
p.prj-duration {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-600);
  margin-bottom: 5px;
}
p.prj-amnt {
  color: var(--primary);
  margin-bottom: 0;
  font-weight: 500;
}
p.prj-type {
  font-style: italic;
  margin-bottom: 0;
}
.prj-skills {
  /*display: inline-block;*/
  width: 100%;
}
p.prj-rating-title {
  margin-bottom: 2px;
  font-style: italic;
}
.project-show-box, .reviews-show-box {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.project-show-box:last-child, .reviews-show-box:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.default-rating p {
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 500;
}
.inline-ratings li.avg-inline-rating {
  width: 170px;
  border-right: 1px solid #ddd;
}
.inline-ratings li.dfl-inline-rating {
  padding: 0 15px;
}
p.rcd-reason {
  font-weight: 300;
  margin-bottom: 5px;
}
.rcd-review p {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 5px;
  font-style: italic;
}
.rcd-text p {
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
}
/*.prj-skills p {
  font-weight: 300;
}*/
.skill-count a:after {
  content: '';
  width: 5px;
  height: 5px;
  display: inline-block;
  background-color: #ddd;
  margin: 0 10px;
  border-radius: 10px;
  vertical-align: middle;
}
.skill-count a:last-child:after{
  display: none;
}
.rcd-icon img {
  width: 18px;
  vertical-align: text-top;
}
.intro-video-left {
  width: 350px;
  height: 200px;
  /*background-color: #ddd;*/
  border-radius: 3px;
  float: left;
  margin-right: 25px;
  margin-bottom: 10px;
}
.intro-video-left .devVideo-sec{
  background-color: #ddd;
}
.about-txt-right h4, .about-txt-right h2 {
  margin-top: 0;
  font-size: 16px;
  color: #3b515d;
  text-transform: capitalize;
  font-weight: 600;
}
.single-reviews {
  margin-top: 30px;
}
p.cl-review-text {
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.5;
}
.star-rating.poor-rating i.chacked, .dflt-stars.poor-rating i.chacked{
  color: #f7411d;
}
.star-rating.average-rating i.chacked, .dflt-stars.average-rating i.chacked{
  color: #f7941d;
}
.star-rating.good-rating i.chacked, .dflt-stars.good-rating i.chacked{
  color: #ffbd02;
}
p.dfl-rt-text {
  margin-bottom: 0;
  margin-top: 5px;
  font-weight: 500;
  font-style: italic;
}
.prj-title h5 span {
  font-size: 13px;
  font-weight: 300;
}
.about-txt-right p {
  line-height: 1.8;
  color: #333;
  font-size: 15px;
  margin-bottom: 5px;
}
.other-sidebar-blocks {
  /*margin-top: 60px;*/
}
.verification-show-sec ul {
  padding-left: 0;
  margin-bottom: 0;
}
.verification-show-sec ul li {
    list-style: none;
}
span.id-icon {
    font-size: 17px;
    width: 25px;
    display: inline-block;
    text-align: center;
    color: var(--primary);
    vertical-align: text-top;
}
.verify-icon-right {
    float: right;
    width: 15px;
}
.verify-icon-right img {
    width: 100%;
}
.verified-show-li p {
    float: left;
    margin-bottom: 0px;
}
.verified-show-li {
    display: inline-block;
    width: 100%;
    margin: 4px 0;
}
.certified-show-li {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}
.certify-logo {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
}
p.certify-name {
    float: left;
    width: calc(100% - 50px);
    font-weight: 500;
}
span.org-name {
    display: block;
    color: var(--gray-600);
    font-weight: 400;
}
.certify-logo img {
    width: 40px;
    height: 40px;
    object-fit: none;
}
/*diksha*/
.verified-tag img {
  width: 18px;
}
.verified-tag.vf-lg img {
  width: 22px;
}
.location-st span.status-icon {
  float: left;
  margin-right: 5px;
  margin-top: 3px;
}
.status-icon img {
    width: 100%;
}
span.status-icon {
  width: 20px;
  height: auto;
  display: inline-block;
  font-size: 18px;
  color: var(--gray-600);
  vertical-align: middle;
  text-align: center;
  margin-right: 5px;
}
span.status-txt {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-600);
  vertical-align: middle;
  line-height: 20px; 
}
.dev-other-detail {
  margin-bottom: 10px;
  color: var(--gray-600);
}
.top-skills-verified {
  margin-bottom: 5px;
}
.top-skill-tag {
  border: 1px solid #ddd;
  color: var(--primary);
  padding: 3px 9px;
  border-radius: 40px;
  font-size: 12px;
  margin: 5px;
  margin-left: 0;
  font-weight: 400;
  display: inline-block;
}
.top-skill-tag p {
  margin-bottom: 0;
}
.language-section {
  margin-bottom: 15px;
}
p.skill-category-title, h3.skill-category-title {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
a.share-icon {
  width: 35px;
  height: 35px;
  display: inline-block;
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: 0.5s ease-in-out;
  text-align: center;
  line-height: 30px;
  vertical-align: middle;
  padding: 10px 0;
  margin: 0;
  cursor: pointer;
}
a.share-icon.sh-fb-icon {
  color: #3b5998;
}
a.share-icon.sh-tw-icon {
  color: #00acee;
}
a.share-icon.sh-wp-icon {
  color: #25d366;
}
a.share-icon.sh-ld-icon {
  color: #0e76a8;
}
a.share-icon.resume-icon {
  color: var(--primary);
}
a.share-icon.sh-gogle-icon {
  color: #4285F4;
}
a.share-icon.sh-fb-icon:hover {
  background-color: #3b5998;
  color: var(--white);
  box-shadow: 0px 0px 0px 3px rgb(59 89 152 / 15%);
  border-color: #3b5998;
}
a.share-icon.sh-tw-icon:hover {
  background-color: #00acee;
  color: var(--white);
  box-shadow: 0px 0px 0px 3px hsl(197deg 100% 47% / 15%);
  border-color: #00acee;
}
a.share-icon.sh-wp-icon:hover {
  background-color: #25d366;
  color: var(--white);
  box-shadow: 0px 0px 0px 3px hsl(142deg 70% 49% / 15%);
  border-color: #25d366;
}
a.share-icon.sh-ld-icon:hover {
  background-color: #0e76a8;
  color: var(--white);
  box-shadow: 0px 0px 0px 3px hsl(199deg 85% 36% / 15%);
  border-color: #0e76a8;
}
a.share-icon.resume-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0px 0px 0px 3px hsl(199deg 85% 36% / 15%);
  border-color: var(--primary);
}
a.share-icon.sh-gogle-icon:hover {
  background-color: #4285F4;
  color: var(--white);
  box-shadow: 0px 0px 0px 3px hsl(197deg 100% 47% / 15%);
  border-color: #4285F4;
}
.skill-count a {
  display: inline-block;
  line-height: 1.8;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
}
.profile-like-box.full-page-like.talent-modal {
    margin: 0px;
}
.profile-like-box.full-page-like.talent-modal span{
  display: inline-block;
  height: 36px;
}
.back-option.talent-modal {
    padding-top: 8px;
}
.fullpage-option.talent-modal {
    padding-top: 8px;
}
.panel-profile-page.talent-model .profile-like-box.full-page-like.hide-o-xs {
    display: none;
}
.sidelist-show-sec p:last-child {
  margin-bottom:5px;
}
/*.portfolio-view-list:last-child, .employe-view-list:last-child, .education-view-list:last-child {
  border: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}*/
.common-div.chat-sec{
  max-height: 450px;
  position: relative;
  padding: 0px;
  border-bottom: none;
  border: none;
}
/* //New profile page css */
/*editor css*/
.ta-editor {
  min-height: auto;
  height: 150px;
  overflow: auto;
  font-family: inherit;
  font-size: 100%;
  border-radius: 0px 0px 2px 2px;
  border-top: 0px;
}
.custom-editor .ta-editor.form-control:hover, .custom-editor .ta-editor.form-control:focus, .custom-editor .ta-editor.form-control:active{
  border: 1px solid var(--gray-600);
  border-top: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  background-color: var(--white);
}
.editor-button button.btn.btn-default,
.editor-button .btn[disabled] {
  color: #333;
  background-color: transparent !important;
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: none;
  border-right: 1px solid #ddd;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 3px;
}
.editor-button button.btn.btn-default.active, .editor-button button.btn.btn-default:active, .editor-button button.btn.btn-default:focus {
    background-color: var(--white) !important;
    box-shadow: 0px 0px 13px 0px rgba(0,0,0,0.19); 
    border-radius: 3px;
}
.editor-button button.btn.btn-default i{
  font-size: 16px;
}
.editor-button .btn-toolbar .btn-group{
  float: none;
}
.custom-editor .btn-toolbar {
  margin-left: 0;
  background-color: #f1f1f1;
  border-radius: 2px 2px 0px 0px;
  border: 1px solid #ddd;
  border-bottom: 0px;
}
/*//editor css*/
/*Compare box modal css*/
.modal-dialog.compare-custom-dialog {
  width: 900px;
  margin: 5em auto;
}
.compare-custom-dialog .modal-content {
  border-radius: 3px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.modal-header.compare-m-header {
  background-color: #f6f6f6;
  text-align: center;
  padding: 20px;
  border-radius: 3px 3px 0 0;
}
.confetti-show {
  width: 220px;
  height: 110px;
  margin: 0 auto;
}
.compare-m-header h4.modal-title {
  font-weight: 300;
  font-size: 26px;
  color: var(--primary);
}
p.com-title-p {
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}
p.com-title-p span {
  font-weight: 400;
}
.th-profile {
  text-align: center;
  position: relative;
}
img.prf-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--white);
}
.th-profile p {
  font-size: 16px;
  color: var(--secondary);
  margin-bottom: 0;
  margin-top: 5px;
}
.comparison-table-box table.table.table-bordered {
  border-color: #f4f4f4;
  background-color: #f1f1f1;
  border-radius: 3px;
  overflow: hidden;
}
thead.blue-thead {
  background-color: #b3d5ea;
}
thead.blue-thead>tr>td, thead.blue-thead>tr>th{
padding: 15px;
}
th.cp-th-sm {
  width: 190px;
  min-width: 190px;
  max-width: 190px;
}
td.cp-td-md {
  width: 265px;
  /*min-width: 265px;*/
  max-width: 265px;
}
.comparison-table-box .table-bordered>tbody>tr>td.cp-td-action {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  padding: 10px;
}
span.vs-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: var(--secondary);
  text-align: center;
  line-height: 40px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -36px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.15);
}
.comparison-table-box .table-bordered>tbody>tr>td, .comparison-table-box .table-bordered>tbody>tr>th, .comparison-table-box .table-bordered>thead>tr>td, .comparison-table-box .table-bordered>thead>tr>th {
  vertical-align: middle;
  padding: 15px;
  border-color: var(--white);
}
.comp-title h5 {
  font-size: 16px;
  margin-bottom: 5px;
}
.comp-title p {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0;
}
.cmp-txt p {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 14px;
}
.comp-title img {
  width: 30px;
}
.txt-itl {
  font-style: italic;
}
a.btn-action-rounded {
  background-color: #ddd;
  padding: 8px;
  border-radius: 50px;
  font-size: 12px;
  color: var(--gray-600);
  font-style: italic;
  font-weight: 600;
  width: 130px;
  display: inline-block;
  text-align: center;
}
a.btn-action-rounded.btn-grn-round {
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
}
a.btn-action-rounded:hover{
  text-decoration: none;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.11);
}
.comparison-table-box.comp-show-sm{
  display: none;
}
.fp-rate{
  display: inline-block;
}
.table.offer-term-table>tbody>tr>td h4, .table.offer-term-table>tbody>tr>th {
  margin: 0;
  line-height: 1.5;
}
/*//Compare box modal css*/
.avg-bid-rate span {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 13px;
}
.avg-bid-rate p {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 16px;
}

/*new job application css*/
span.invite-tag {
  font-size: 14px;
  background-color: rgb(46 174 62 / 10%);
  padding: 5px 15px;
  border-radius: 30px;
  color: #199028;
}
/*.job-content-box {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
}*/
.position-txt {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--gray-600);
}
.blank-prc-show p {
  font-size: 16px;
  color: #333;
  font-style: italic;
  font-weight: 500;
}
.blank-prc-show p.txt-req-form { 
  color: #d60b0b; 
}
.blank-prc-show p a {
  font-style: normal;
  font-weight: 500;
  margin-left: 10px;
  text-decoration: underline;
}
.blank-prc-show p span{
  font-style: normal;
  font-weight: 500;
  margin-right: 5px;
  color: var(--secondary);
}
.application-title {
  padding: 15px;
}
.warning-txt {
  color: #ef6817;
  font-weight: 500;
  font-size: 13px;
}
.btn.btn-update {
  background-color: var(--white);
  color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: 6px 10px;
  margin-left: 40px;
}
.btn.btn-update:hover, .btn.btn-update:active, .btn.btn-update:focus{
  background-color: var(--secondary);
  color: var(--white);
}
.apply-btns-section.view-job-apply-btn {
  width: auto;
  text-align: center;
}
/*.apply-btns-section.view-job-apply-btn .btn-apply {
  width: auto;
  margin-right: 15px;
  margin-bottom: 0;
}*/
.price-for-mobile{
  display: block;
}
/*tempraroy css main in jobpreviewbranch*/
.view-apply-candits h3 {
  font-size: 20px;
  color: var(--gray-600);
}
.txt-lighnbig {
  font-size: 30px;
  font-weight: 300;
  vertical-align: middle;
  color: #333;
}
/*//tempraroy css main in jobpreviewbranch*/

p.div-title {
  font-size: 18px;
  font-weight: 500;
}
.div-title span.help-txt {
  display: inline-block;
  font-size: 15px;
  vertical-align: middle;
}
/*.div-content.min-content {
  width: 90%;
}*/
p.warning-txt-p {
  color: rgb(228 171 19);
  font-size: 13px;
  font-style: italic;
  margin-bottom: 15px;
}
.view-apply-candits h3 {
  font-size: 20px;
  color: var(--gray-600);
}
.txt-lighnbig {
  font-size: 30px;
  font-weight: 300;
  vertical-align: middle;
  color: #333;
}
.optional-txt {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 400;
  display: inline-block;
}
.dev-application-sec {
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 2px;
  /*margin-bottom: 20px;*/
  box-shadow: 0px -2px 6px #00000029;
}
.application-title {
  padding: 15px;
  background-color: rgb(61 130 171 / 10%);
  margin-bottom: 25px;
  margin-top: -1px;
  color: #21638a;
  display: inline-block;
  width: 100%;
}
.dev-application-sec .view-section-box { 
  margin: 0 15px;
}
/*//new job application css*/

.optional-label{
  font-weight: 400;
  color: var(--gray-600);
}
button.btn.edit-application-btn {
  padding: 8px 0px;
  font-size: 13px;
}
a.job-skip {
  color: var(--gray-600);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
}
p.error-price-required {
    color: #d60b0b;
}
.job-skip img {
    width: 18px;
}
p.job-skip {
  /*color: var(--gray-600);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;*/
  display: inline-block;
  width: 100%;
  text-align: center;
}
span.nav-icons, .billing-io {
  display: inline-block;
  width: 30px;
  height: auto;
  text-align: center;
  font-size: 18px;
  vertical-align: middle;
  color: var(--primary);
}
.billing-io{
  fill: var(--primary);
}
.dropdown-menu.custom-dropdown>li>a:hover .billing-io{
  fill: var(--secondary);
}
.dropdown-menu.custom-dropdown>li>a:hover span.nav-icons, .dropdown-menu.custom-dropdown>li>a:hover span.nav-icons .cls-15, .dropdown-menu.custom-dropdown li>a:hover span.nav-icons .cls-15{
  color: var(--secondary);
  fill: var(--secondary);
}
.sub-li li a.active span.nav-icons{
  color: var(--white);
}
.sub-li li a.active .billing-io{
  fill: var(--white);
}
.show-o-sm {
  display: none;
}
.interview-sheduled-sec.show-o-xs {
  display: none;
}
.hire-section-fixed.show-o-xs {
  display: none;
}

/** Css for social sharing */
ul.social-share {
  padding-left: 0;
  text-align: center;
}

ul.social-share li {
  list-style-type: none;
}

ul.social-share a {
  font-size: 18px;
  display: inline-block;
  padding: 0 5px;
}
a.clear-filter {
    cursor: pointer;
    display: inline-block;
}
.resume-show {
    margin-top: 10px;
}
.autocomplete-custom-template .item-title,
.autocomplete-custom-template .item-metadata {
  display: block;
  /*line-height: 2; */
}  
.application-skill-dropdown md-autocomplete#custom-template {
    height: 50px;
}
.application-skill-dropdown md-autocomplete-wrap.md-whiteframe-z1.md-show-clear-button {
  height: 50px;
  box-shadow: none;
  border: 1px solid #ddd;
  /*z-index: 999;*/
  background-color: var(--white);
  cursor: pointer;
  border-radius: 3px;
}
.application-skill-dropdown md-autocomplete.down-carot-icon:after {
  content: "\f078";
  font-family: "FontAwesome";
  font-size: 11px;
  position: absolute;
  right: 5px;
  top: 17px;
  transition: 1.5s ease-in;
  color: #333;
}
.application-skill-dropdown md-autocomplete .md-show-clear-button button md-icon {
    -webkit-transform: translate3d(-50%,-50%,0) scale(.7);
    transform: translate3d(-50%,-50%,0) scale(0.7);
}
.custom-anchor-poiter {
  cursor: pointer;
}
p a.resume-tag {
    background-color: var(--white);
    color: var(--secondary);
    font-weight: 600;
    border: 2px solid var(--secondary);
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    text-decoration: none;
}
p a.resume-tag:hover {
    background-color: var(--secondary);
    color: var(--white);
}
/*span.price-error-block {
    position: absolute;
    top: 50px;
    font-size: 11px;
    color: #d60b0b;
}*/
span.hours-error-block {
    font-size: 11px;
    color: #d60b0b;
    position: absolute;
    margin-top: 40px;
    margin-right: 14px;
}
span.hours-error-block1 {
    font-size: 11px;
    color: #d60b0b;
    position: absolute;
    margin-top: 40px;
    right: 27px;
}
p.skill-help-text {
    margin-bottom: 0;
    color: #ffb000;
    font-style: italic;
    font-size: 12px;
}
p.refresh-help-text {
    font-size: 16px;
    font-weight: 500;
    color: #c7a204;
    font-style: italic;
}
.refresh-section {
    position: fixed;
    width: 100%;
    z-index: 99;
    background-color: rgba(0,0,0,0.8);
    padding: 10px;
    color: var(--white);
    top: 0;
}
a.pagereload-button {
    background-color: #337ab7;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
}
.view-section-box.new-apply-section{
    margin-top: 20px;
    margin-bottom: 20px;
}
img.refresh-btn-load-img {
    width: 17px;
}
span.city_bubble {
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 500;
    margin: 7px 10px;
    font-size: 13px;
    display: inline-table;
    -webkit-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.15);
}
a.remove_city {
    color: var(--white);
    cursor: pointer;
}
/** Css for social sharing */

.page-breadcrum.mobile-back-btn {
  display: none;
}
/* == css for checkout page new design start == */
.hired-dev-detail {
  background-color: #fafafa;
  position: relative;
  margin-bottom: 30px;
}
.dev-checkout-secblock { 
  display: inline-flex;
  width: 100%;
  padding-bottom: 15px;
  padding: 20px;
}
/* == css for checkout page new design end == */
/* == css for dev profile page client side start == */
.dev-profile-box-show {
    width: 120px;
    float: left;
    position: relative;
    margin-right: 20px;
}
.dev-profile-img-show {
    width: 120px;

   /* min-height: 100px;*/
    max-height: 120px;

    height: 120px;

    border: 1px solid #ebebeb;
    padding: 0px;
    /*float: left;*/
    border-radius: 50%;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
}
.dev-profile-img-show img {
    width: 100%;
    height: 100%;
}
.dev-xs-show{
  display: none;
}
.dev-xs-hide{
  display: block;
}
.developer-social-share{
    margin-top: 15px;
}
 
.apply-btn.developer-share-job {
    margin-top: 10px;
}
.developer-share a.share-icon {
    margin-right: 8px;
}
span.onsite-city {
    margin: 12px 0;
}
.input-group.prl-price {
    width: 185px;
    /*margin: auto;*/
}
.input-group.available-from-group.prl-date {
    width: 170px;
    float: right;
}
.input-group.available-from-group.prl-date-application {
    width: 170px;
}
input.form-control.search-input {
    height: 50px;
}
.input-group.prj-fx-price {
    width: 180px;
    float: right;
}
.input-group.ctr-hr-rate {
    width: 165px;
    float: right;
}
.table>tbody>tr>td.col-td.anl-salary {
    vertical-align: initial;
}
.custom-col-10.custom-col12-full.custom-col-itrvleft {
    width: 75%;
}
.custom-col-2.left-padless.custom-col12-full.custom-col-itrvright{
   width: 25%; 
   margin-top: 15px;
}
/* == css for dev profile page client side end == */

.custom-col-10.custom-col12-full.custom-col-itrvleft {
    width: 75%;
}
.custom-col-2.left-padless.custom-col12-full.custom-col-itrvright{
   width: 25%; 
}
a.metting-links-text {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    text-decoration: underline;
    margin: 10px;
}
button.btn.btn-ok-applyjob.decline-button {
    background-color: #da0400;
}
.interview-timing-show.itrv-pending {
    background-color: var(--white);
    border: 1px solid #d2cc0c;
    text-align: center;
}
.itrv-pending h5 {
    color: #c7c211;
    margin-top: 0;
    margin-bottom: 5px;
}
.acceptd-intw h5 {
    margin-top: 0;
    margin-bottom: 5;
}
.decln-intw h5 {
    margin-top: 0;
    margin-bottom: 5;
}
a.job-skip {
    cursor: pointer;
}
.job-stats.intv-stats {
    margin: 5px 0px;
}
button.btn.btn-apply.btn-acpt {
    background-color: var(--primary);
    color: var(--white);
    padding: 5px;
    margin-top: 10px;
}
button.btn.btn-apply.btn-dcl {
    margin-bottom: 0px;
    padding: 5px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #da0400;
    color: #da0400;
    background-color: var(--white);
}
button.btn.btn-apply.btn-dcl:hover, button.btn.btn-apply.btn-dcl:active {
    background-color: #da0400;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}
a.job-withdraw.cancel-intrv {
    text-align: center;
    display: block;
    color: #da0400;
    margin: 10px;
    font-size: 12px;
}
a.zoho-help-icon {
    font-size: 16px;
}
a.zoho-help-icon:hover { 
    text-decoration: none;
}
a.zoho-help-icon.help-nologged {
    margin: 0;
    font-size: 18px;
}
a.zoho-help-icon.help-nologged i.fa.fa-question {
    margin-top: 5px;
}
/*.alert-box-job-type { width: 700px; margin: auto; }*/
.alert-green-box-job { 
  background-color: var(--white); 
  color: #333; 
  box-shadow: 0 1px 5px 4px rgb(0 0 0 / 6%);
  border-radius: 3px;
}
.alert-box-job-type p.sub-text { 
  font-weight: 400; 
  color: var(--gray-600); 
}
.job-type-location { 
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 500;
}
.job-type-location span { 
  font-size: 14px; 
  color: var(--gray-600); 
}
.alert-content sub-text { 
  font-weight: 400; 
}
.job-type-show h3 {
  color: #3b515d;
  font-size: 20px;
  margin-top: 0px;
  font-weight: 500;
}
.alert-icon-jobtype {
  text-align: center;
  display: table-cell;
  width: 50px;
  min-width: 50px;
  vertical-align: middle;
  font-size: 16px;
  border-radius: 3px 0 0 3px;
  border-left: 4px solid var(--primary);
  padding: 5px;
}
.alert-icon-jobtype i { 
  color: var(--primary); 
  font-size: 30px; 
}
span.help-txt.lang-txt {
  text-transform: capitalize;
}
.job-view-content-sec { 
  background-color: var(--white);
  box-shadow: 0 0 12px 5px rgb(0 0 0 / 5%);
  margin: 20px 0px;
}
.jbr-border-right {
  padding: 15px 0px;
  border-right: 1px solid #ddd;
}
.content-9 {
  width: 75%;
}
.content-3 {
  width: 25%;
}
.content-3.jbr-right {
  padding: 0 0 0 20px;
}
.job-view-padding {
  padding: 15px 25px;
}
span.profile-share-option.dev-share {
  float: right;
  margin: 25px 0px;
  display: inline-block;
}
.job-view-padding-right-box {
  padding: 15px 25px 10px 0px;
}
h5.job-view-content-heading {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 10px;
}
.job-view-content h3 {
    color: #3b515d;
    font-size: 20px;
    margin-top: 0px;
    font-weight: 500;
}
.job-view-left { padding-top: 15px; }
.view-job-title h1 { color: var(--secondary); }
span.skill-tag-job.verify { 
  background-color: var(--primary); 
  color: var(--white); 
}
span.skill-tag-job {
  background-color: #F9F9F9;
  color: #333;
  padding: 6px 15px;
  border-radius: 50px;
  font-weight: 500;
  margin: 5px 10px 5px 0px;
  font-size: 14px;
  border: 1px solid #ececec;
  display: inline-table;
  white-space: normal;
  line-height: 1.4;
  text-align: center;
  min-width: 100px;
}
span.skill-tag-job p { 
  margin-bottom: 0px; 
}
.job-view-hr {
  border-top: 1px solid #ddd;
  margin: 10px 0px;
}
.view-job-skills-sec h2 {
  font-size: 17px;
  color: var(--gray-600);
  margin-top: 0;
  margin-bottom: 10px;
}
.view-job-lang-sec h2 {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 10px;
}
.svg-25 svg:not(:root) {
  height: 20px;
  width: 20px;
  vertical-align: text-top;
} 
span.price-error-block.cntrct-prc {
  right: 27px;
}
/*.input-group.ctr-hr-rate.hrs-week {
  width: 180px;
}*/
/*.hrs-week span.input-group-addon.custom-addon.inafter.sign-clr {
  padding: 5px;
}*/
.yr-appl-title {
  float: left;
  /*width: 90%;*/
}
.rht-currncy {
  float: right;
  /*width: 10%;*/
}
.alert-icon-skills {
  text-align: center;
  display: table-cell;
  width: 50px;
  min-width: 50px;
  vertical-align: middle;
  font-size: 16px;
  border-radius: 3px 0 0 3px;
  /*border-left: 4px solid var(--secondary);*/
  padding: 5px;
  /*background-color: #f6f6f6;*/
}
.alert-skills-content {
  display: table-cell;
  padding: 10px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.alert-skills-content p {
  margin-bottom: 0;
  font-weight: 500;
}
.sub-text-skills {
  font-weight: 400;
  color: var(--gray-600);
  font-size: 14px;
  font-style: normal;
}
p.skills-type {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 5px;
  font-weight: 500;
  /*font-style: italic;*/
  color: #dfac00;
  line-height: 1.6;
}
.alert-skills-box {
  width: 732px;
  background-color: var(--white)8df;
  color: #EBBA16;
  border-radius: 3px;
  text-align: left;
  margin-bottom: 15px;
}
.btn.btn-add-skills {
  /*background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);*/
  transition: 0.5s ease-in-out;
  -webkit-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.14);
  -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.14);
  box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.14);
  margin-top: 40px;
  margin-bottom: 30px;
}
.btn.btn-add-skills:hover, .btn.btn-add-skills:focus, .btn.btn-add-skills:active{
  background-color: #199028;
  border-color: #199028;
  color: var(--white);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.18);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.18);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.18);
}
.intro-text-msg { 
  margin: 65px 0 30px 10px;
  font-weight: 400;
  font-style: italic;
}
.btn-float-intro { 
  float: left; 
  margin-right: 10px; 
}
.alert-icon-skills img { 
  width: 30px; 
}
.alert-msg-skills { 
  font-weight: 600; 
  font-size: 15px; 
}
.devs-profile-bar {
  background-color: var(--white);
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  padding: 5px 10px;
  margin-bottom: 15px;
  box-shadow: 0px 0px 15px 3px rgb(0 0 0 / 4%);
}
.devs-profile-bar-desktop-view { 
  display: block; 
}
.text-capitalize { 
  text-transform: capitalize; 
}
.catg-availab {
  margin-bottom: 10px;
  padding: 10px;
}
.job-type-show a:hover {     
  color: #199028;
  text-decoration: underline; 
}
p.contact-row span.cont-io img {
  width: 14px;
  margin-right: 5px;
}

/*css for dev application form page new design start*/
.sidepanel-top-nav {
  padding: 15px 10px 5px;
  background-color: var(--white);
  margin-bottom: 10px;
  box-shadow: 0px -2px 6px #00000029;
}
p.back-left span.backtopage a {
  color: #0C4E87;
}
.location-show { 
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
}
.job-location-icon {
  text-align: center;
  width: 50px;
  min-width: 50px;
  vertical-align: middle;
  font-size: 24px;
  margin-right: 10px;
  color: var(--secondary);
}
.job-location-icon img {
  width: 34px;
}
.add-attach-icon i {
  text-align: center;
  vertical-align: middle;
  font-size: 24px;
  margin-right: 5px;
  color: var(--secondary);
}
.common-div-screening-question {
  display: inline-block;
  width: 100%;
  /*padding: 18px;*/
  border-radius: 0px;
  /*border-bottom: 1px solid #EAF0F5;*/
}
.common-div-apply-btn {
  display: inline-block;
  width: 100%;
  padding: 18px;
  border-radius: 0px;
}
p.share-text { 
  font-size: 16px;
  font-weight: 500;
}
/*css for dev application form page new design end*/
.reschedule-modal {
  width: 550px;
}
button.btn.btn-primary.btn-green.buttonLoader.reschedule-btn {
  font-size: 18px;
  height: 45px;
  width: 25%;
}
.dev-profile-btn.mobile-pr-btn {
  margin-top: 15px;
}
select.form-control.input-gray.skills-drop-down.border-success-on-green{
  border: 1px solid  var(--primary);
}
.select-box-section.select-box-section-width.appl-skills {
  margin: 20px 0;
}
span.input-error-filter{
  color: #d60b0b;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  margin-top: 2px;
  position: absolute;
  top: 87px;
}
img.job-btn-load-img {
  width: 20px;
}
a.job-save-chips {
  cursor: pointer;
  text-decoration: none;
  color: var(--primary);
}
a.disable-send-job{
  cursor: not-allowed;
  pointer-events: none;
}
.add-skill-application md-autocomplete.auto-input-gray.ng-isolate-scope {
  width: 35px;
}
.feed-listing-block.closed-feed {
  border-color: #da0400;
  cursor: not-allowed;
  pointer-events: none;
}
span.closed-tag{
  background-color: #da0400;
  padding: 4px 10px 6px;
  color: var(--white);
  font-weight: 600;
  position: absolute;
  top: 0;
  font-size: 13px;
  right: 0;
  line-height: normal;
  box-shadow: -2px 3px 7px rgba(0, 0, 0, 0.14);    
}
a.skls-not-mtch:hover {
    text-decoration: none;
}
li.header-currency-li.without-log-currency {
    margin-right: 25px;
    padding: 10px 0;
}
.without-log-currency select.form-control {
    height: 40px;
}
md-autocomplete.auto-input-lt-gray.autocomplete-border-red{
  border: 1px solid #da0400;  
}
.rectr-chat-div .btn-chat-profile-dev {
  text-align: center;
  margin: auto;
}
.rectr-chat-block {
  border: 1px solid #d9e6ee;
  margin-bottom: 10px;
  display: flex;
  background-color: #e0eaf07a;
  padding: 15px;
  width: 100%;
  align-items: center;
}

/*update Refer & Earn Footer Banner CSS Start*/
.refer-earn-banner{
	background: #e5f0ff;
	width: 100%;	
	height: 229px;	
	position: relative;
  padding: 10px 0;
}
.refer-earn-banner:before {
  content: ' ';
  background-image: url(../../img/banner-wav-bg1.png); 		
  height: 229px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  top: 0;
}
.refer-announce-img-box{
  height: 200px;
  width: 200px;
  border: 3px solid var(--white);
  border-radius: 100%;
}
.refer-announce-img{
  width:100%;
}
.refer-announce-text{
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 20px 0;
  max-width: 380px;
  color: var(--black);
}
.refer-announce-box a.paid-btn{
  font-size: 20px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0px 3px 7px 2px rgb(0 110 255 / 24%);
}
/*End update Refer & Earn Footer Banner CSS Start*/


/*Refer & Earn Footer Banner CSS Start*/
.refer-banner{
  background: #EAF0F5;
  width: 100%;
  height: 240px;
  padding: 30px 0;
}

.refer-banner img.refer-mic-bnr {
  width:100%;
  height: 180px;
  max-width:180px; 
}
.refer-banner img.invite_your_friends{
  width: 40%;
  height: 150px;
}
.banner-content{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  height: 180px;
  max-height: 180px;
}
.ref-bnr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  height: 180px;
  max-height: 180px;
}
.refer-banner .banner-content p{
  font-size: 24px;
  color: #000;
  text-align: left;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2px;
}
.refer-banner .container {
  width: 100%;
  max-width: 1170px;
}
.refer-circle-pos-rel {
  min-height: 180px;
  height: 180px;
  vertical-align: middle;
  position: relative;
}
.refer-circle {
  background-color: #007AB9;
  width: 90%;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  vertical-align: middle;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  height: 150px;
}
.btn-invite-bnr {
  background-color: var(--primary);
  border-radius: 5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 30px;
  border-bottom: 5px solid #288E36;
  /*width:100%;*/
  max-width:300px;
  /*margin:0px auto 5px auto;*/
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
}
.btn-invite-bnr:hover{
  background-color: #199028;
  border-color: #199028;
  color: var(--white);
  box-shadow: 0px 0px 0px 3px rgb(46 174 62 / 30%);
}
.btn.btn-normal.btn-green.btn-invite-bnr {
  color: var(--white);
  text-decoration: none;
  min-width: 250px;
  font-size: 18px;
  padding: 10px 25px;
}
/*Refer & Earn Footer Banner CSS End*/
.application-skill-dropdown md-autocomplete .md-show-clear-button button {
  width: 10px;
}
ul.breadcrumb.innerpage-breadcrum {
  margin-bottom: 0;
  background-color: #f1f1f1;
}
span.ntc-day {
  font-weight: 600;
}
.btn.btn-border.edit-fee-btn-xs {
  font-size: 11px;
  padding: 4px 6px;
  margin-left: 5px;
}
.sec-common-btn-response {
  display: inline-block;
  width: 100%;
  margin-top: 40px;
  text-align: center;
}
.sec-common-btn-response button {
  margin: 0 10px;
}
.intview-timer-box {
  text-align: left;
  border-radius: 0 0 0 5px;
  margin-bottom: 10px;
  /*margin-top: 10px;*/
}
.intview-timer-box .intview-title {
  margin-bottom: 0;
  font-size: 13px;
  color: #000;
}
.intview-timer-box .intview-timer {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  color: var(--primary);
}

/*contract jobs css*/
.contract-jobs-block{
  background-color: var(--white);
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 20px;
  transition: 0.5s ease-in-out;
  position: relative;
}
.contract-jobs-block:hover {
  box-shadow: 0px 3px 30px rgb(0 0 0 / 10%);
}
.contract-jobs-block.contract-active{
  border-color: var(--light-blue);
}
.contract-jobs-block.contract-complete{
  border-color:var(--green);
}
.contract-jobs-block.contract-waiting{
  border-color: var(--yellow);
}
.contract-jobs-block.contract-disabled {
  background-color: #f6f6f6;
  opacity: 0.6;
}
.contract-jobs-block.contract-disabled:hover {
  box-shadow: none;
}
.contract-jobs-block .premium-tag.prem-tag-sm.tag-absolute {
  position: absolute;
  top: 5px;
  left: 0;
}
.status-tag {
  display: inline-block;
  background-color: var(--gray-600);
  color: var(--white);
  padding: 3px 6px;
  font-size: 11px;
  border-radius: 20px;
  font-weight: 500;
}
.contract-jobs-block .status-tag {
  position: absolute;
  right: 5px;
  top: 5px;
}
.status-tag.inline-tag {
  vertical-align: middle;
  margin-left: 10px;
}
.status-tag.tag-active{
  background-color: var(--light-blue);
}
.status-tag.tag-complete{
  background-color: var(--green);
  color: var(--white);
}
.status-tag.tag-waiting{
  background-color: var(--yellow);
}
.status-tag.tag-closed{
  background-color: var(--red);
}
.status-tag.tag-active.light-tag{
  background-color: rgb(3 175 199 / 12%);
  color: #03afc7;
}
.status-tag.tag-complete.light-tag{
  background-color: rgb(0 166 81 / 12%);
  color: #00a651;
}
h5.contract-stats {
  margin: 15px 0;
  justify-content: flex-start;
  font-size: 14px;
  color: var(--gray-600);
}
.contract-details-wrap {
  width: calc(100% - 200px);
  padding-right: 30px;
}
.contract-action-wrap {
  width: 200px;
}
.contract-rating {
  margin-bottom: 10px;
}
.talent-short-box, .contract-short-box {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 15px 0 0;
  padding: 12px;
}
.btn-link:hover .chat-btn-icon, .btn-link:active .chat-btn-icon, .btn-link:focus .chat-btn-icon {
  fill: #21638a;
}
.contract-date p {
  margin: 15px 0;
  line-height: 1.5;
}
.newoffer-action .contract-date p{
  margin: 0;
}
.completejob-action .contract-date p{
  margin: 5px 0 10px;
}
.contract-date p .date-txt {
  display: block;
  font-size: 20px;
}
.contract-talent-detail .cont-talent-img{
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  /*border: 1px solid #ddd;*/
}
.contract-talent-detail .cont-talent-img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.contract-talent-detail {
  /*max-width: 500px;*/
  width: calc(100% - 300px);
}
.contract-talent-detail.green-box-wrap, .contract-talent-detail.gry-box-wrap {
  width: 100%;
  max-width: 500px;
}
.cont-talent-title a, .jobtitle-td h4 a {
  margin-left: 5px;
}
.cont-talent-title .tabViewIcon {
  vertical-align: top;
}
.cont-talent-title h5 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}
.contract-title h4 {
  margin: 5px 0 8px;
}
.contract-title h4:first-letter{
  text-transform: uppercase;
}
.btn.btn-normal.btn-skype {
  background-color: #00aff0;
  color: var(--white);
}
.btn.btn-normal.btn-skype:hover, .btn.btn-normal.btn-skype:active, .btn.btn-normal.btn-skype:focus {
  background-color: #069dd6;
  box-shadow: 0px 0px 0px 3px rgb(0 175 240 / 25%);
}
.btn-skype i {
  font-size: 20px;
  vertical-align: middle;
}
.talent-country{
  margin-bottom: 0;
}
.contract-amount h4 {
  font-size: 22px;
  margin: 0;
  line-height: 1.3;
  color: var(--primary);
}
.contract-title h4.cont-title-inn {
  font-size: 16px;
  color: #3b515d;
  font-weight: 500;
}
.contract-action-wrap button {
  margin: 10px 0;
}
.contract-amount {
  text-align: center;
  max-width: 300px;
}
.contract-short-box .contract-date p{
  margin: 0;
  text-align: right;
}
.contract-short-box h5.contract-stats {
  margin: 0;
}
.contract-talent-detail .cont-talent-img.talent-img-lg {
  width: 70px;
  height: 70px;
}
p.small-txt {
  margin-bottom: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
}
.contract-talent-detail h5.contract-stats {
  margin-bottom: 0;
}
.offerjob-tab{
  border-radius: 6px;
  box-shadow: 0px 0px 5px 3px rgb(0 0 0 / 9%);
  padding: 5px 15px;
}
.custom-md-tab md-tab-content>div>md-content {
  padding: 30px 10px;
  background-color: var(--white);
}
.talent-short-box .contract-talent-detail .cont-talent-title {
  margin-left: 10px;
  width: calc(100% - 50px);
}
.contract-flex-wrap .contract-talent-detail .cont-talent-title{
  margin-left: 10px;
  width: calc(100% - 70px);
}
.chat-btn-icon{
  fill:var(--primary);
}
.btn-link.btn-chat-link:hover .chat-btn-icon{
  fill:var(--secondary);
}
/*//contract jobs css*/
/*job offer new page css*/
.breadcrumb.innerpage-breadcrums {
  margin-bottom: 0;
}
.breadcrums-content h4 {
  font-size: 16px;
}
.breadcrums-content a:hover{
  text-decoration: none;
}
.back-svg {
  display: inline-block;
  width: 25px;
  height: 17px;
  vertical-align: middle;
}
.jbr-border-right.offer-terms-wrap, .content-3.jbr-right.offer-action-wrap {
  padding: 15px;
}
.table.offer-term-table>tbody>tr>td, .table.offer-term-table>tbody>tr>th {
  border: none;
  padding: 15px 10px;
}
.table.offer-term-table>tbody>tr>th {
  font-weight: 600;
  font-size: 15px;
}
h4.offertype-txt, .offer-date {
  margin: 0;
}
.offer-description, .offer-description p, .offer-description li, .offer-description table{
  font-size: 14px;
  line-height: 1.5;
}
.contract-talent-detail.gry-box-wrap, .green-box-wrap {
  background-color: #f6f6f6;
  border-radius: 8px;
  padding: 25px 15px;
  margin-bottom: 20px;
}
.contract-talent-detail.gry-box-wrap .cont-talent-title{
  margin: 15px 0 0;
}
.contract-talent-detail.gry-box-wrap button.btn-link{
  margin-top: 30px;
}
.contract-talent-detail.green-box-wrap .cont-talent-title{
  margin: 15px 0 30px;
}
.gry-box-wrap .cont-talent-title .talent-country, .green-box-wrap .cont-talent-title .talent-country {
  margin-bottom: 10px;
}
.offer-action-wrap button {
  margin: 10px 0;
}
p.talent-tagline {
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.manager-contact-sec.talent-contact-sec {
  text-align: left;
  margin: 0 0 20px;
}
.green-box-wrap{
  background-color: #e0f3e8;
}
.contract-talent-detail.green-box-wrap span.status-txt {
  color: #3b515d;
}
.jbr-content-sec {
  background-color: var(--white);
  box-shadow: 0 0 12px 5px rgb(0 0 0 / 5%);
  margin: 20px 0px;
}
.rate-txt h4, .jobtitle-td h4, h4.offertype-txt {
  margin: 0 0 10px;
}
.external-link-io{
  display: inline-block;
  vertical-align: middle;
  height: 16px;
}
/*//job offer new page css*/
.dropdown-menu.developer-side-dropdown>li>a.withdraw-menu.flex-center {
  display: flex;
  /* background-color: rgb(46 174 62 / 10%); */
}
.nav-fund span.txt-grn {
  display: block;
  font-size: 18px;
}
span.nav-fund {
  padding-left: 5px;
}
.grecaptcha-badge {
  visibility: hidden !important;
}
span.city-error-msg {
  position: absolute;
  color: #da0400;
  font-size: 12px;
}

/*without login pages css*/
#goTopBtn {
  display: block;
  position: fixed;
  bottom: 75px;
  right: 15px;
  z-index: 99;
  cursor: pointer;
}
.btn.btn-normal.btn-sqaure {
  width: 50px;
  height: 45px;
  padding: 0;
}
.grecaptcha-badge {
  visibility: hidden !important;
}
a.navbar-brand.navbar-brand-logo.without-login-logo img.top-logo {
  height: 30px;
}
header.top-nav-sec.dev-header.fixed-header-web {
  position: fixed !important;
  z-index: 9;
  box-shadow: 0px 0px 12px rgb(0 0 0 / 10%);
}
.main-page.talent-profile-page.fixed-header-page, section.search-result-section {
  padding-top: 62px;
}
.dev-card-img {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.dev-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a.sim-dev-card {
  margin-bottom: 25px;
  padding: 5px;
  position: relative;
}
a.sim-dev-card:hover {
  text-decoration: none;
  background-color: #f1f1f1;
}
.dev-card-content h4 {
  margin: 0;
  line-height: 1.5;
}
.dev-card-content p.help-txt {
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
span.dev-card-content {
  display: inline-block;
  width: calc(100% - 60px);
}
a.sim-dev-card:after {
  content: '';
  display: inline-block;
  width: calc(100% - 60px);
  height: 1px;
  background-color: #ddd;
  position: absolute;
  bottom: -10px;
  right: 0;
}
/*without login pages css*/

/*START: Google contacts model*/
.google-contact-profile {
  height: 110px;
}
.google-contact-profile span.dev-img {
  width: 60px;
  height: 60px;
  float: unset;
  display: inline-flex;
  margin-bottom: 4px;
  margin-right: 0;
}
.google-contact {
  text-align: center;
  background: #f1f1f1;
  padding: 10px;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  position: relative;
}
button.btn.btn-light.lg-btn.google-recommendation-btn {
  border: 1px solid #2eae3f;
  color: #2eae3f;
  /*width: 90%;*/
  padding: 5px 30px;
}
.google-contact-btn {
  margin-top: 10px;
  width: 100%;
}
button.btn.btn-light.lg-btn.google-recommendation-btn-active {
  width: 90%;
  color: white;
  background: #2eae3f;
}
p.client-name {
  font-weight: 600;
  margin-bottom: 0;
  overflow-x: hidden;
  white-space: nowrap;
}
p.client-title {
  font-size: 13px;
  font-weight: 300;
  margin: 0px;
}
li.google-contact-li {
  display: inline-block;
  list-style: none;
  vertical-align: middle;
  height: 175px;
  width: 180px;
  margin: 5px;
}
.search-google-contact input.form-control.custom-input {
  margin-right: 5px;
}
.search-google-contact {
  width: 300px;
  display: flex;
}
button.btn.btn-light.lg-btn.search-google-contact-btn {
  background: #ebebeb;
  color: #3f82ac;
  font-size: 20px;
}
.btn-contact-selected {
  height: 36px;
}
.contact-list-div {
  padding-top: 20px;
}
#jobViewGoogleContactsModal .full-content-model .modal-dialog {
    width: 800px;
    margin: 30px auto;
}
/*END: Google contacts model*/

/* start bootstrap based badge, label, status - ap*/
.label{
  padding: 6px 12px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 90%;
}
.label-primary{
  background: var(--primary);
}
.label-success{
  background: var(--green);
}
.label-warning{
  background: var(----yellow);
}
.label-danger{
  background: var(--red);
}
/* end bootstrap based badge, label, status -ap */

/* start user menu dd - anup*/
.dropdown-menu.custom-dropdown li.divider{
  border-top:1px solid #ddd
}
.dropdown-menu.custom-dropdown>li>a span.nav-icons{
  margin-right: 10px;
}
.client-prof .nav-img{
  width:30px;
  height: 30px;
  border: 1px solid #a3a3a3; 
  background: var(--white);
  border-radius: 50%; 
  overflow: hidden;
}
.client-prof .nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dropdown-menu.custom-dropdown.client-prof>li.active>a{
  color: var(--secondary);
  background:#f5f5f5;
}
/* end - user menu dd - anup*/
/*admin sidenav*/
.remove-admin-backdrop .modal-backdrop.in {
  display: none;
}
/*//admin sidenav*/

/**** start company setup dropdown css shanvi ****/
#main-header li.add_company {
    border-bottom: 1px solid #e7e2e2;
    border-radius: 0px;
    margin-bottom: 2px;
}
#main-header li.add_company a {
    margin-bottom: 2px;
}
#main-header li.company_list {
    margin-bottom: 2px;
}
#main-header li.br_top{
  border-top: 1px solid #e7e2e2;
  margin-top:2px;
}
#main-header li.br_top a {
    margin-top: 2px;
}
.tab-navbar .sidenav .nav-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tab-navbar .sidenav .nav-img {
  width: 30px;
  height: 30px;
  border: 1px solid #a3a3a3;
  background: var(--white);
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px !important;
}
.tab-navbar .sidenav .menubar-menu-li>li>a span.nav-icons {
    margin-right: 10px;
}
/**** End company setup dropdown css shanvi ****/
a.text-white{
  color:var(--white);
}
.pt_10{
  padding-top:10px;
}
/* for admin section error input class */
input.form-control.error-input{
  border: 1px solid #da0400;
  box-shadow: 0px 0px 12px rgb(218 4 0 / 15%);
}
input.form-control.success-input{
  border: 1px solid var(--primary);
  box-shadow: 0px 0px 0px 3px rgba(46, 174, 62, 0.3);
}
.text-danger{
  color: #da0400;
}
/* ///for admin section error input class */

#publicLoginExpireDialog .close {
  font-size: 45px;
  font-weight: 400;
  color: #333;
  opacity: 0.4;
  position: absolute;
  right: 15px;
  top: 0;
}
#publicLoginExpireDialog .close:hover {
  opacity: 0.6;
}
#publicLoginExpireDialog .modal-footer {
  text-align: center;
}
.info_icon {
  font-size: 24px;
  color: var(--blue);
}
#publicLoginExpireDialog h4.step-title {
  font-weight: 600;
  font-size: 20px;
}
#publicLoginExpireDialog .modal-body p {
  font-weight: 500;
  font-size: 16px;
}
/* for bullets in admin page about section and edit about in popup */
.dev-description ul li, .ta-editor ul li {list-style:disc}
.dev-description ol li, .ta-editor ol li {list-style:decicmal}
.sm-section-heading h2, .side-title-sec h3,.matching-projects-show h2{
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}
.dev-name.dektop-view .badge-free{
  margin-right: 7px;
}
.desktop-filter-sidebar md-switch{
  align-items: center;
  justify-content: space-between;
  margin: 5px 0;
}
.dropdown-menu.custom-dropdown>li>a:hover .cls-icon-talent{
  fill:var(--secondary)
}
.dropdown-menu.custom-dropdown>li>a span.badge-free{
  margin-left: 5px;
}
.navbar-right .dropdown-menu.talent_dd_left {
  right: auto;
  left: 0;
}
.sub-li li a.active .cls-icon-talent-mobile{
  fill: var(--white);
}
.short-container.mb-0{
  margin-bottom: 0;
}
.breadcrumb.innerpage-breadcrums.mb-10{
  margin-bottom: 10px;
}
.offer-ltr-visible {
  margin-bottom: 10;
}
.chat-interview {
    margin-top: 15px;
}
ul.nav.navbar-nav.navbar-right.right-li-items.custom-margin-tp{
  margin-top: 10px;
}
h3.skill-category-title.mt-0{
  margin-top: 0;
}
#adminUpdateLocationModal a.remove_city {
  font-size: 14px;
  padding: 3px 8px;
}
.skill_full_badge {
  display: inline-flex;
  background-color: #e5e5e5;
  border-radius: 50px;
  overflow: hidden;
}
.skill_full_badge.badge-location a {
  border-radius: 50px 0 0 50px;  
  border: 1px solid #e5e5e5;
  color: var(--secondary);
}
.skill_full_badge.badge-location a.badge-content {  
  padding: 0;
}
.view-job-skills .skill_full_badge.badge-location a h4 {
  font-size: 12px;
  display: inline-flex;
  margin: 0;
  text-transform: capitalize;
  padding: 6px 14px;
  float: left;
  font-weight: 600;
}
.view-job-skills .skill_full_badge.badge-location a.remove_city {
  background-color: #e5e5e5;
}
.skill_full_badge.badge-location a {  
  background-color: #f1f1f1;
}
.skill_full_badge.badge-location a.remove_city {
  padding: 0 8px;
}
.skill_full_badge.badge-location {
  margin: 0 12px 15px 0;
}
.inner-pages.withdraw-ui-sec {
  padding: 15px 0 0 0;
}
.skill-tags.location-tag {
  display: inline-block;
}
.skill-tags.location-tag .badge-content {
  margin: 0px 12px 15px 0;
}

/* ============== Start: bot feature section ============== */
.bot-call-form {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.bot-call-form .btn-helptext {
  font-size: 12px;
  font-weight: 300;
  margin-top: 10px;
}
span.input-error {
  position: absolute;
  color: #d60b0b;
  font-size: 11px;
  font-weight: 500;
  line-height: normal;
  margin-top: 2px;
}
.bot-after-call h5{
  font-size: 18px;
}
.bot-exp-rating img {
  width: 50px;
  transition: 0.5s ease all;
}
a.bot-exp-rating:hover img {
  scale: 1.1;
}
a.bot-exp-rating {
  display: inline-block;
  margin: 0 10px;
  position: relative;
}
.bot-call-survey {
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 15px;
}
a.bot-link {
  text-align: center;
  margin: 15px auto 0;
  display: inline-block;
  width: 100%;
  text-decoration: underline;
  font-size: 12px;
}
.bot-rate-title {
  font-size: 12px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%);
  transition: 0.5s ease all;
  margin-bottom: 0;
  width: max-content;
}
.bot-exp-rating:hover .bot-rate-title {
  bottom: -14px;
}
.bot-call-survey .survey-action{
  overflow: hidden;
  padding-bottom: 12px;
}
.bot-presection{
  padding-top: 12rem;
}
/* ============== End: bot feature section ============== */

.deactivate-confirmation-Dialog md-dialog.md-transition-in {
  width: 100%;
  max-width: 550px;
  text-align: center;
  padding: 10px;
}
.deactive-modal-content h3 {
  font-weight: 600;
  margin: 10px 0;
}
.deactive-modal-content p {
  color: var(--gray-600);
  margin-bottom: 15px;
}
button.btn.activate_account_btn {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  display: block;
  margin: auto;
  width: 100%;
  max-width: 100px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 2px;
  padding: 8px 18px;
}
/*header spacing css*/
.navbar.client-common-header>.container .navbar-brand {
  margin-left: 0;
  padding: 18px 10px 18px 0;
}
.client-common-header .navbar-collapse {
  padding: 0;
}
#main-header .right-li-items li:last-child{
  margin-right: 0px;
}
/*header spacing css*/
svg.twitter-svg {
  width: 16px;
}
a:hover svg.twitter-svg,
a:focus svg.twitter-svg,
a:active svg.twitter-svg {
  fill: var(--white);
}
.footer-social-sec svg.twitter-svg {
  width: 16px;
}
.sh-tw-icon svg.twitter-svg {
  width: 13px;
}

/*START: Media query css for responsive*/
@media (max-width: 2560px) and (min-width: 1600px){
  .container-fluid.container-fixed {
    width: 1366px;
  }
  .common-div.chat-sec{
    display: block;
    height: 100%;
    max-height: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 2560px){
  .container.content-container {
    width: 1366px;
  }
  .container-fluid.container-fixed {
    width: 1366px;
  }
  .helpbar-open .container-fluid.container-fixed {
    width: auto;
  }
  .container.green-inner-container {
    width: auto;
  }
  .fix-to-top .container.green-inner-container {
    width: 1366px;
  } 
  .container.full-container {
    width: 1366px;
  }
  .cont-full-sidebar md-input-container, .sidebar-container {
    width: 1526px;
  }
  .cont-full-sidebar md-container {
    width: 1400px;
  }
  .cont-full-sidebar md-content {
    width: 1400px;
  }
  .modal-dialog.image-croper-modal {
    margin: 150px auto;
  }
}
@media only screen and (max-width: 1536px){
  .job-view-panel.cont-full-sidebar md-input-container, .job-view-panel .sidebar-container {
    width: 1120px;
  }
  .cont-full-sidebar md-content {
    width: 95%;
  }
  .container.full-container {
    width: 100%;
  }
  .container.content-container {
    width: 90%;
  }
}
@media only screen and (max-width: 1440px){
  .container.content-container {
    width: 100%;
  }
  .container.green-inner-container {
    width: auto;
  }
  .fix-to-top .container.green-inner-container {
    width: auto;
  }
  .btm-browse-list {
    width: 100%;
    margin: 0 auto;
    display: inline-block;
  }
  .cont-full-sidebar md-input-container {
    width: 90%;
  }
  .cont-full-sidebar md-container {
    width: 95%;
  }
  .cont-full-sidebar md-content {
    width: 95%;
  }
  .container-fluid.container-fixed {
    width: 100%;
  }
  .modal-dialog.image-croper-modal {
    margin: 50px auto;
  }
  /*AI Bot banner help center sidebar css*/
  .helpbar-open .bot-exp-bg-help {
    background-position: -20px;
  }
}
@media only screen and (max-width: 1400px){
  .helpbar-open .container {
    width: auto;
  }
}
/*media css for 1366x580 screen*/
@media screen and (max-width: 1366px){
  .filterd-skills-show .txt-gry {
    font-size: 12px;
  }
  span.status-txt {
    font-size: 11px;
  }
  .refer-announce-text{
    font-size: 26px;
  }
  .refer-announce-box a.paid-btn{
    font-size: 16px;
  }
  .refer-earn-banner, .refer-earn-banner:before{
    height: 200px;
  }
  .refer-announce-img-box {
    height: 150px;
    width: 150px;
  }
  .dev-other-detail p, p.skill-category-title{
    font-size: 13px;
  }
  h1.dev-name{
    font-size: 24px;
  }
  .dev-profile-img-show {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 1280px){
  .cont-full-sidebar md-input-container {
    width: 95%;
  }
  .cont-full-sidebar md-content {
    width: 95%;
  }
  .jobtype-catg-show {
    font-size: 12px;
    margin-top: 22px;
  }
  .send-icon {
    width: 180px;
    margin: 0 auto;
  }
  .support-num-show h4 {
    font-size: 12px;
  }
  .custom-col-10 {
    width: 75%;
  }
  .custom-col-2 {
    width: 25%;
  }
  .interview-timing-show {
    padding: 6px;
  }
  .interview-timing-show p {
    font-size: 12px;
  }
  .feed-tab-section .nav>li>a {
    padding: 15px 5px;
  }
  .feed-tab-section .nav-pills>li.sprt-line {
    margin: 12px 5px;
  }
  .rht-currncy {
    float: right;
    width: auto;
  }
  .btn.btn-normal.btn-green.btn-invite-bnr {
    min-width: auto;
    padding: 10px 15px;
  }
  .refer-announce-img-box{
		margin: 0 auto;
	}
  .navbar.client-common-header>.container .navbar-brand {
    padding: 16px 10px 16px 0;
  }
}
@media screen and (max-width: 1152px){
  .col-md-9.padless-right {
    padding-right: 15px;
  }
  .col-md-3.paddmore-left {
    padding-left: 0;
  }
  .developer-profile-show {
    width: 200px;
    margin-right: 15px;
  }
  .profile-img-show {
    width: 200px;
    height: 200px;
  }
  .profile-info {
    /*max-width: 70%;*/
    width: calc(100% - 215px);
  }
  button.btn.btn-mssg-profile{
    font-size: 12px;
  }
  .cols-3 {
    width: 230px;
  }
  .cols-9 {
    width: calc(100% - 230px);
  }
  /*  .support-num-show.top-no-md {
    display: none;
  }*/
  .feed-tab-section .nav>li>a {
    font-size: 12px;
  }
  img.top-logo {
    width: auto;
    height: 22px;
  }
  .refer-banner .container {
    width: 100%;
  }
  .helpbar-open .dashboard-top-panel .tab-side-left {
    width: 100%;
  }
}
@media screen and (max-width: 1140px){
  span.dev-img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  .side-profile-dtl p {
    font-size: 14px;
    margin-top: 2px;
  }
  .devs-profile-options a.edit-icon img {
    width: 11px;
  }
  p.side-title {
    font-size: 14px;
  }
  .job-start-date .offer-status-sec.offer-job-details-sec .table>tbody>tr>td {
    font-size: 14px;
  }
  .job-start-date .offer-status-sec.offer-job-details-sec .table>tbody>tr>td .newoffer-txt, .job-start-date .offer-status-sec.offer-job-details-sec .table>tbody>tr>td .ongoing-txt, .job-start-date .offer-status-sec.offer-job-details-sec .table>tbody>tr>td .completed-txt {
    font-size: 14px;
  }
  .right-li-items li {
    margin-left: 10px;
  }
  .common-left-title h4, .common-left-title h2 {
    display: flex;
    align-items: center;
  }
  p.catg-amnt {
    font-size: 11px;
  }
}
@media (min-width: 991px) and (max-width: 1280px){
  .job-start-date .offer-status-sec.offer-job-details-sec .table>tbody>tr>td {
    vertical-align: top;
  }
}
@media screen and (max-width: 1024px){
  .header-search-bar .input-group .form-control {
    width: auto;
    min-width: 200px;
  }
  .feed-tab-section .nav>li>a.tab-icon:before {
    width: 16px;
    height: 16px;
  }
  .banner-text {
    margin: 20px 0px;
  }
  .qualified-blank-data .banner-text {
    margin: 0px 0px 20px;
  }
  .footer.dark-bg h4 {
    font-size: 14px;
  }
  section.viewjob-section {
    padding: 0;
  }
  p.catg-name {
    font-size: 13px;
  }
  .catg-name span {
    font-size: 11px;
  }
  button.feat-li-options {
    margin: 5px 0px;
  }
  a.btn.sec-btn-join {
    padding: 12px 0px;
    width: 230px;
  }
  .developer-profile-show {
    width: 180px;
    height: 180px;
  }
  .profile-info {
    width: calc(100% - 195px);
  }
  .wistia-video-sec {
    width: 100%;
    height: 150px;
  }
  .novideo-img {
    width: 100%;
    height: 150px;
  }
  .incomplete-warning-modal span.warning-mssg {
    display: inline-flex;
    width: 60%;
  }
  .modal-dialog.image-croper-modal {
    width: 90%;
  }
  nav.navbar.bootsnav ul.nav.devs-btn-sec > li > a.devs-btn, nav.navbar.bootsnav ul.nav.devs-btn-sec > li > a.login-btn{
    padding: 8px 20px;
    font-size: 14px;
  }
  .navbar-nav > li.btn-dvd {
    height: 35px;
  }
  p.stats-p {
    /*font-size: 12px;
    margin-bottom: 0;*/
  }
  .table>tbody>tr>td.ml-title-td {
    width: 40%;
  }
  .table>tbody>tr>td.ml-amount-td {
    width: 30%;
  }
  .col-md-3.col-sm-3.left-padless-3 {
    padding-left: 0;
  }
  a.profile-btn {
    padding: 5px 0;
  }
  .right-li-items li {
    margin-left: 8px;
    margin-right: 8px;
  }
  .custom-dropdown li {
    margin-left: 0;
  }
  .job-stats p {
    font-size: 13px;
    margin-bottom: 3px;
    line-height: 2;
  }
  img.stats-img {
    width: 16px;
  }
  .job-view-panel .sidebar-container {
    width: 830px;
  }
  .cols-3 {
    width: 250px;
  }
  .cols-9 {
    width: calc(100% - 250px);
  }
  .profile-img-show {
    width: 180px;
    height: 180px;
    min-height: 160px;
  }
  a.share-icon {
    width: 30px;
    height: 30px;
    padding: 8px 0;
    font-size: 11px;
  }
  .share-box-jb-view a.share-icon {
    width: 40px;
    height: 40px;
    padding: 10px 0;
    font-size: 16px;
  }
  .about-txt-right p {
    font-size: 13px;
  }
  .stats-cont p {
    margin-left: 30px;
  }
  .app-rt-sidebar-box {
    display: block;
  }
  .top-nav-sec .navbar-brand {
    padding: 20px 15px 0;
  }
  .alert-skills-box { 
    width: 100%; 
  }
  .referral-img img { 
    width: 60px;
   }
  /*.menu-profile-img {
    width: 30px;
    height: 30px;
  }*/
  .div-border-success-green {
    width: fit-content;
    width: -moz-fit-content;
  }
  .job-location-icon img {
    width: 36px;
  }
  .job-location-icon {
    text-align: center;
    width: 30px;
    min-width: 30px;
    vertical-align: middle;
    font-size: 16px;
    margin-right: 0;
    color: var(--secondary);
  }
  .btn.btn-update {
    margin-left: 30px;
  }
  .common-left-title p.title-optional {
    margin-left: 20px;
  }
  .add-attach-icon i {
    font-size: 18px;
  }
  .schedule-sec .btn.btn-normal, .mssg-sec .btn-link {
    font-size: 14px;
  }
  .referral-btn-sec .btn.btn-lg, .contract-amount h4 {
    font-size: 16px;
  }
  .limit-nm {
    max-width: 80px
  }
  .contract-action-wrap {
    width: 150px;
  }
  .contract-details-wrap {
    width: calc(100% - 150px);
    padding-right: 15px;
  }
  .contract-amount{
    max-width: 125px;
  }
  .contract-talent-detail {
    width: calc(100% - 125px);
  }
  .contract-date {
    max-width: 100px;
  }
  .contract-title{
    width: calc(100% - 100px);
  }
  .contract-jobs-block {
    padding: 15px
  }
  .contract-date p, .contract-date p .date-txt, .contract-title p, h5.contract-stats{
    font-size: 13px;
  }
  /* .dev-custom-navbar .navbar-header {
    float: none;
    width: 100%;
    margin: 0;
  } */
  .top-nav-sec nav.navbar.bootsnav {
    height: 63px;
  }
  .dev-custom-navbar .navbar-collapse {
    padding: 6px 0;
  } 
  .navbar.client-common-header>.container .navbar-brand {
    padding: 20px 10px 20px 0;
  }
}
@media screen and (max-width: 991px){
  .hire-sidesection.sm-view{
    display: block;
    /*border-bottom: 1px solid #ddd;*/
    padding-bottom: 15px;
    margin-top: 15px;
  } 
  .hire-sidesection {
    display: none;
  }
  .devs-profile-options {
    display: none;
  }
  .dev-availbl {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
  }
  .xs-view-header{
    display: inline-block;
    float: right;
  }
  .xs-view-header.support-xs-header {
    display: none;
  }
  .top-nav-sec .collapse.navbar-collapse.md-collapse {
    display: none !important;
  }
  .btm-browse-links ul li {
    width: 32%;
  }
  .send-success-section {
    height: auto;
    margin: 50px 0;
  }
  .success-content-inner {
    position: static;
    width: 100%;
    text-align: center;
    top: 50%;
    transform: none;
  }
  .col-md-9.custom-col-sm {
    display: inline-block;
  }
  .custom-col-sm .col-9, .custom-col-sm .col-3{
    width: 100%;
    padding-right: 0px;
  }
  .offer-job-details-sec tr {
    display: inline-block;
    margin-right: 15px;
  }
  .offer-job-details-sec.merging-table-sm tr{
    display: inherit;
  }
  .job-start-date .offer-status-sec.offer-job-details-sec .table>tbody>tr>td {
    padding-right: 10px;
  }
  a.btn.btn-mssg-icon {
    padding: 5px 0;
    margin: 0 5px;
    font-size: 24px;
    position: relative;
  }
  a.btn.btn-mssg-icon:hover, a.btn.btn-mssg-icon:active, a.btn.btn-mssg-icon:focus{
    background-color: transparent;
    color: #21638a;
    box-shadow: none;
  }
  .btn-mssg-icon .notify-count {
    font-size: 8px;
    width: 14px;
    height: 14px;
    line-height: 9px;
    position: absolute;
    top: 0px;
    right: -6px;
    border: 2px solid var(--white);
  }
  /*.cols-3 {
    width: 100%;
  }
  .cols-9 {
    width: 100%;
  }*/
  /*comparison table responsive*/
  .modal-dialog.compare-custom-dialog {
    width: 800px;
  }
  th.cp-th-sm {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
  }
  td.cp-td-md {
    width: 235px;
    min-width: 235px;
    max-width: 235px;
  }
  .comparison-table-box .table-bordered>tbody>tr>td, .comparison-table-box .table-bordered>tbody>tr>th, .comparison-table-box .table-bordered>thead>tr>td, .comparison-table-box .table-bordered>thead>tr>th {
    vertical-align: middle;
    padding: 30px 10px;
  }
  .comparison-table-box .table-bordered>tbody>tr>td.cp-td-action {
    width: 140px;
    min-width: 140px;
    max-width: 140px;
    padding: 10px;
  }
  .comp-title h5 {
    font-size: 14px;
  }
  .comp-title p {
    font-size: 12px;
  }
  a.btn-action-rounded {
    padding: 8px 5px;
    width: 120px;
  }
  span.vs-icon {
    right: -31px;
  }
  /*//comparison table responsive*/
  .feed-tab-section .nav>li>a {
    font-size: 13px;
    padding: 15px 8px;
  } 
  .other-sidebar-blocks.other-sidebar-sm {
    margin-top: 0px;
  }
  .other-sidebar-blocks.other-sidebar-sm .sidepanel-block {
    padding: 20px;
    background-color: var(--white);
    box-shadow: none;
    border-bottom: 1px solid #f6f6f6;
  }
  .col-md-3.paddmore-left {
    padding-left: 15px;
  }
  .verified-show-li {
    width: 100%;
    max-width: 300px;
    margin: 0;
  }
  .side-title-sec {
    width: 25%;
    position: static;
  }
  .side-content-sec {
    width: calc(100% - 25%);
  }
  .sidepanel-block.dev-location-view {
    display: none;
  }
  .side-title-sec {
    border-bottom: 0px solid #ddd;
    margin-bottom: 0;
    width: 20%;
    float: left;
    position: static;
  }
  .side-content-sec {
    width: calc(100% - 20%);
    float: left;
  }
  .sidepanel-block {
    display: inline-block;
    width: 100%;
    padding: 20px;
  }
  li.slect-currency-xs {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-top: 15px;
  }
  .top-nav-sec nav.navbar.bootsnav {
    padding: 10px 15px;
  }
  span.status-icon {
    width: 15px;
    height: auto;
    font-size: 14px;
  }
  .location-st span.status-icon {
    margin-right: 3px;
    margin-top: 0;
  }
  .location-st span.status-txt, span.status-txt {
    width: calc(100% - 18px);
    line-height: 1.5;
    font-size: 11px;
  }
  .status-icon img {
    width: 100%;
    height: auto;
  }
  .content-9.jbr-border-right{
    width: 70%;
  }
  .content-3.jbr-right{
    width: 30%;
  }
  .manager-action-xs{
    position: relative;
  }
  /*button.btn.btn-primary.menu-bars{
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  button.btn.btn-primary.menu-bars i{
    margin-left: 5px;
  }*/
  .tab-navbar .sidenav .nav-img{
    margin-right: 15px!important;
  }
  /*.xs-view-header.mobile-view button.btn.btn-primary.menu-bars i{
    margin-left: 0;
  }*/
}
@media screen and (max-width: 960px){
  .header-search-bar .input-group .form-control {
    width: auto;
    min-width: 180px;
  }
  .sm-navbar li {
    margin-left: 10px;
    display: inline;
  }
  .sm-navbar{
    display: inline-block;
  }
  .md-navbar{
    display: none;
  }
  .feed-tab-section .nav-pills>li.sprt-line {
    margin: 15px 10px;
  }
  /*.feed-tab-section .nav>li>a {
    padding: 0px 15px 8px;
    font-size: 12px;
  }*/
  .custom-dropdown li {
    margin-left: 0;
  }
  .footer ul {
    padding-left: 0px;
    margin-bottom: 0px; 
  }
  li.join-p {
    margin-right: 30px;
  }
  li.ftr-or {
    margin: 0px 15px;
  }
  .footer.dark-bg ul li a.btn.sec-btn-join {
    font-size: 16px;
    padding: 14px;
    width: auto;
    text-align: center;
  }
  
  .help-numb h4 span {
    display: inherit;
  }
  .sidenav-inner-sec {
    display: inline-block;
    width: 300px;
    float: right;
  }
  .sidenav-toolbar {
    width: 100%;
  }
  .sidenav-content {
    width: 100%;
  }
  span.skill-tag {
    padding: 5px 15px;
    margin-right: 5px;
    margin-bottom: 8px;
    min-width: 80px;
  }
  span.selected-tag {
    padding: 4px 10px;
  }
  .selected-tag p {
    font-size: 10px;
    font-weight: 500;
  }
  .checkmark img {
    width: 12px;
    margin-left: 5px;
    vertical-align: text-top;
  }
  span.stats-value {
    display: inline-block;
  }
  .qualified-blank-data {
    width: 94%;
    margin: 30px auto;
    padding: 30px;
  }
  .banner-text p {
    text-align: left;
    font-size: 18px;
  }
  .mssg-button p {
    font-size: 14px;
  }
  .sm-view-header{
    display: inline-block;
    float: right;
  }
  .sm-navbar {
    display: inline-block;
  }
  .ins-feat-icon img {
    width: 40px;
  }
  .ins-feat-cont {
    font-size: 12px;
  }
  span.help-blue-txt {
    font-size: 10px;
  }
  .wistia-video-sec {
    width: 100%;
    height: 150px;
  }
  .novideo-img {
    width: 100%;
    height: 150px;
  }
  .panel-profile-page {
    padding: 10px;
  }
  .filter-result-cont p, .search-wide p {
    font-size: 13px;
  }
  span.warning-mssg {
    display: inline-block;
    width: 100%;
  }
  span.warning-btn {
    display: inline-block;
    float: none;
    margin-top: 20px;
  }
  a.btn.btn-upload-res {
    width: 49%;
  }
  a.btn-download-res {
    width: 49%;
    float: right;
  }
  .logo_image {
    height: 25px;
  }
  a.profile-btn {
    padding: 3px 6px;
    height: 32px;
    font-size: 12px;
  }
  /*.menu-profile-img {
    width: 40px;
    height: 40px;
    margin-right: 5px;
  }*/
  .profile-btn i {
    height: 15px;
  }
  .common-detail-sec .common-right-cont {
    width: 75%;
  }
  .common-left-title h4, .common-left-title h2 {
    font-size: 15px;
  }
  .incomplete-warning-modal span.warning-btn {
    display: inline-block;
    float: right;
    margin-top: 0;
  }
  .custom-dialog-hire md-dialog {
    width: 90%;
  }
  .table>tbody>tr>td.ml-date-td {
    max-width: 100px;
  }
  .dev-info-block {
    padding: 15px;
  }
  .prf-link a {
    margin-bottom: 5px;
  }
  .common-div {
    padding: 20px;
  }
  .dev-location-view {
    display: none;
  }
  .alert-box-job-type {
    width: 100%;
    margin: auto;
  }
  .devs-profile-bar-desktop-view { 
    display: none; 
  }
  .job-view-panel .sidebar-container {
    width: 768px;
  }
}
@media only screen and (min-device-width : 862px) and (max-device-width : 1024px) {
  /*Refer & Earn Footer Banner CSS Start*/
  .col-lg-4.col-md-7.col-sm-4.col-xs-6.banner-content {
    width: 350px;
  }
  .col-lg-3.col-md-7.col-sm-3.col-xs-12.ref-bnr-btn {
    width: 200px;
  }
  .refer-banner .container {
    width: 100%;
  }
  /*Refer & Earn Footer Banner CSS End*/
}
@media screen and (max-width: 860px){
  .novideo-img {
    width: 100%;
    height: auto;
  }
  .about-intr-video-sec{
    display: inline-block;
    width: 100%;
  }
  .custom-col-10 {
    width: 75%;
  }
  .custom-col-2 {
    width: 25%;
  }
  .navbar-nav>li>a.header-li {
    margin: 2px 5px;
    font-size: 13px;
  }
  .custom-li-menu a.feat-li-options.header-li {
    padding: 2px 10px;
  }
  .btm-browse-links ul li a {
    font-size: 13px;
  }
  .offer-status-sec.offer-job-details-sec .table>tbody>tr>td {
    font-size: 10px ;
  }
  button.rotate-btn {
    padding: 5px;
    font-size: 10px;
  }
  .payment-term-sec h4 {
    font-size: 14px;
  }
  .page-form-width {
    width: 100%;
  }
  a.btn.btn-offer.btn-nav-options {
    padding: 8px;
    font-size: 12px;
  }
  .offer-job-fulldetails-sec .table tr {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
  }
  .offer-job-fulldetails-sec .table>tbody>tr>td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0px;
  }
  .job-description p {
    font-size: 13px;
    font-weight: 400;
  }
  .col-sm-3.col-sm-mobilefull, .col-mobilefull-9.col-sm-9, .cols-9, .cols-3 {
    width: 100%;
  }
  .feed-tab-section .nav-pills>li.sprt-line.last-li-hide {
    display: none;
  }
  a.zoho-help-icon {
    font-size: 20px;
    padding: 6px 20px 6px 6px;
  }
  .top-nav-sec .navbar-brand { 
    padding: 5px 15px 0; 
  }
  ul.pricing-stats.pricing-mobile { 
    width: 400px; 
  }
  .price-range-mobile { 
    min-width: 200px; 
  }
  .job-view-content-sec {
    margin: 10px 0px;
  }
  .add-attach-icon i {
    font-size: 16px;
  }
  .btn.btn-update {
    margin-left: 30px;
  }
  .div-border-success-green {
    width: auto;
  }
  .btn.btn-normal.btn-green.btn-invite-bnr {
    padding: 10px;
    font-size: 14px;
  }
  .refer-banner .banner-content p {
    font-size: 20px;
  }
  .navbar.client-common-header>.container .navbar-brand {
    padding: 5px 0px 0;
  }
  button.btn.btn-primary.menu-bars {
    height: 35px;
    width: 35px;
    border-radius: 25px;
    padding: 0;
    background-color: var(--gray-300);
    border: 1px solid var(--gray-400);
  }
}
@media only screen and (max-width: 812px) {
  /*Refer & Earn Footer Banner CSS Start*/
  .refer-banner .container {
    width: 100%;
  }
  /*Refer & Earn Footer Banner CSS End*/
}
@media screen and (max-width: 800px){
  /*comparison table responsive*/
  .modal-dialog.compare-custom-dialog {
    width: 750px;
  }
  th.cp-th-sm {
    width: 145px;
    min-width: 145px;
    max-width: 145px;
  }
  td.cp-td-md {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
  }
  .comparison-table-box .table-bordered>tbody>tr>td.cp-td-action {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
    padding: 10px;
  }
  a.btn-action-rounded {
    padding: 10px 0px;
    width: 110px;
    font-size: 11px;
  }
  .intro-text-msg { 
    margin: 37px 0 30px 10px; 
  }
  /*//comparison table responsive*/
  .alert-box {
    margin: 0;
  }
}
@media screen and (max-width: 768px){
  .mobile-sm-dropdown {
    display: inline-block;
    margin-right: 15px;
  } 
  .dropdown-menu.custom-dropdown {
    right: 0;
    left: auto;
  }
  .navbar-header {
    display: inline-block;
  }
  .sm-navbar {
    display: inline-flex;
  }
  .dev-name h5 {
    /*font-size: 22px;
    margin-right: 20px;*/
  }
  h2.dev-title {
    font-size: 14px;
  }
  h1.dev-name {
    font-size: 26px;
  }
  .dev-rating {
    margin-bottom: 7px;
  }
  p.dev-location {
    margin-bottom: 3px;
  }
  .dev-other-detail {
    margin-bottom: 5px;
  }
  .dev-jobtype-details p span {
    font-size: 11px;
  }
  .common-left-title {
    width: 25%;
    float: left;
  }
  .common-right-cont {
    width: 75%;
    float: left;
  }
  /*.col-md-9.padless-right {
    padding-right: 0;
  }*/
  /*.col-md-3.paddmore-left {
    padding-left: 15px;
  }*/
  .profile-info {
    width: 63%;
  }
  .features-points .bold-txt {
    font-size: 11px;
  }
  .devs-tzn span {
    font-size: 11px;
    line-height: 1.6;
  }
  p.dev-description {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
  }
  .dev-description p{
    margin-bottom: 0;
  }
  .sidepanel-block {
    padding: 20px;
    background-color: var(--white);
    /*box-shadow: 0px 0px 15px 3px rgb(0 0 0 / 5%);*/
    border: 1px solid #ddd;
  }
  .side-title-sec .edit-review a {
    right: 5px;
    top: 5px;
  }
  .badge-year {
    padding: 4px 0 5px 12px;
  }
  span.language-advance-intermediate, span.language-advance-beginner, span.language-advance-expert, span.language-advance-advanced {
    padding: 4px 0px 5px 15px;
  }
  .badge-warning {
    padding: 4px 0 5px 15px;
  }
  .badge-view .badge-year {
    font-size: 11px;
  }
  .badge-view span.language-advance-beginner, .badge-view span.language-advance-advanced, .badge-view span.language-advance-intermediate, .badge-view span.language-advance-expert, .item-badge.badge-year {
    padding: 4px 10px 5px;
  }
  .tag-expertise p {
    font-size: 11px;
  }
  .introVideo-sec {
    width: 150px;
    height: 150px;
  }
  .col-sm-8.col-tab-ful {
    width: 100%;
  }
  .col-sm-4.col-tab-ful {
    width: 100%;
  }
  p.content-description {
    /* font-size: 12px; 
    font-weight: 400;*/
  }
  .btn.btn-upload-res {
    width: 250px;
  }
  .footer .f-social-box ul li a i {
    width: 35px;
    height: 35px;
    line-height: 36px;
  }
  .list-heading h4, .list-heading h3 {
    font-size: 16px;
    width: 85%;
    line-height: 24px;
  }
  .top-nav-sec.fixed-slider-header .navbar-collapse {
    padding-right: 0;
    display: inline-block;
    float: right;
    margin-right: 0;
  }
  .fixed-slider-header ul.nav.navbar-nav.navbar-right.right-li-items {
    margin: 0;
  }
  h4.dev-name {
    font-size: 18px;
  }
  .feed-listing-block.premium-feed {
    padding: 30px 15px 15px;
  }
  .about-intro-video-sec p {
    font-size: 13px;
  }
  .video-title p {
    font-size: 14px;
  }
  .txt-gry, span.badge-expertise {
    font-weight: 500;
    font-size: 12px;
  }
  .top-nav-sec .navbar-brand-logo {
    padding: 8px 10px;
    float: left;
    height: auto;
  }
  .modal-jobtype-radio ul {
    display: inline-block;
  }
  .modal-jobtype-radio ul li {
    display: inline-block;
    width: 100%;
    padding: 5px 0;
  }
  .jobtype-option {
    width: 100%;
    display: inline-block;
    padding: 15px;
  }
  .search-wide {
    min-width: 55px;
    float: left;
  }
  .loader-img {
    padding: 15px;
  }
  .feed-tab-section .nav-pills>li.sprt-line {
    margin: 15px 5px;
  }
  span.full-status-tag {
    padding: 2px 6px;
    font-size: 12px;
    border: 1px solid var(--white);
  }
  p.skill-category-title {
    font-size: 13px;
  }
  .chat-interview-btn-profile p {
    font-size: 18px;
  }
  .dev-chat-block {
    padding: 10px;
  }
  .hire-sidesection.sm-view {
    padding-bottom: 0px;
    margin-top: 0px;
  }
  .job-feature-content {
    margin-bottom: 10px;
  }
  button.btn.btn-mssg-profile {
    margin-bottom: 12px;
  }
  .job-location-icon {
    text-align: center;
    width: 30px;
    min-width: 30px;
    vertical-align: middle;
    font-size: 16px;
    margin-right: 0;
    color: var(--secondary);
  }
  .div-border-success-green {
    width: 100%;
  }
  .input-page {
    margin-top: 10px;
  }
  .catg-availab {
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .div-border-success-green {
    width: 100%;
  }
  .div-border-error-red {
    border: 1px solid #da0400;
    width: 100%;
  }
  /*Refer & Earn Footer Banner CSS Start*/
  .refer-banner .container {
    width: 100%;
  }
  .refer-banner img.invite_your_friends {
    width: 56%;
    height: 150px;
  }
  .btn.btn-normal.btn-green.btn-invite-bnr {
    min-width: auto;
    font-size: 14px;
    padding: 10px;
  }
  /*Refer & Earn Footer Banner CSS End*/
  .dev-profile-btn {
    margin: 30px 0px;
  }
  .prj-price-box {
    width: 100%;
  }
  .alert-box.alert-blue-box {
    justify-content: flex-start;
  }
  .common-detail-sec {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px){
  .col-md-9.padless-right {
    padding-right: 15px;
  }
  .top-nav-sec.fixed-slider-header .navbar-collapse {
    display: none;
  }
  .col-xs-9.col-mobilefull-9 {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }
  .developer-profile-loaderdiv{
    display: none;
  }
  .developer-profile-loaderdiv.xs-view-loader {
    display: block;
  }
  .badge-content {
    text-align: center;
  }
  .developer-profile-loaderdiv.xs-view-loader.remove-loader{
    display: none;
  }
  .developer-profile-loaderdiv.xs-view-loader.add-loader{
    display: block;
  }
  h4.whole-page-title {
    float: left;
    margin-top: 10px;
    margin-bottom: 25px;
  }
  .sm-morebtns-view a.btn.btn-offer {
    width: auto;
    margin: 10px 0;
    font-size: 16px;
  }
  .btn-withdraw-offer img {
    width: 16px;
  }
  .offer-status-sec.offer-job-details-sec .table>tbody>tr>td {
    font-size: 14px ;
  }
 /* .top-nav-sec nav.navbar.bootsnav .navbar-brand {
    margin-left: -15px !important;
  }*/
  .xs-view-header.support-xs-header {
    display: inline-block;
  }
  a.terms-sidpanel {
    float: right;
    margin-top: 20px;
    display: inline-block;
  }
  .offer-job-details-sec .table>tbody>tr>th {
    width: 150px;
  }
  /*comparison table responsive*/
  .modal-dialog.compare-custom-dialog {
    width: 90%;
  }
  th.cp-th-sm, td.cp-td-md {
    width: auto;
    min-width: auto;
  }
  .comp-title img {
    width: 20px;
  }
  .comp-title h5 {
    font-size: 12px;
  }
  .comp-title p {
    font-size: 11px;
  }
  .cmp-txt p {
    font-size: 12px;
  }
  .comparison-table-box .table-bordered>thead>tr>td, .comparison-table-box .table-bordered>thead>tr>th {
    padding: 15px;
  }
  span.vs-icon {
    right: -36px;
  }
  /*//comparison table responsive*/
  .feed-tab-select md-select.md-default-theme:not([disabled]):focus .md-select-value, .feed-tab-select md-select:not([disabled]):focus .md-select-value {
    padding-bottom: 7px;
  }
  .page-breadcrum.mobile-back-btn {
    display: block;
  }
  span.like-opt-prof a.btn-like, a.btn-dislike {
    height: 38px;
    background-color: var(--white);
    padding: 10px 10px !important;
  }
  .jbr-border-right {
    border-right: none;
    padding: 10px 0 0;
  }
  .content-9.jbr-border-right {
    width: 100%;
  }
  .sub-li li a{
    font-size: 15px;
  }
  .sub-li li a span.nav-icons{
    width: 24px;
  }
  .tab-navbar .sidenav .nav-img{
    margin-right: 10px!important;
  }
  .sidebar-head .menu-profile-img{
    margin-right: 10px;
  }
  .tab-navbar .sidenav .nav-img img{
    display: block;
  }
}
@media screen and (max-width: 736px){
  .navbar-header {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .help-numb h4 span {
    display: inline-block;
  }
  .btm-browse-list {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
  .footer-logo img.top-logo {
    width: 100%;
    height: auto;
  }
  .xs-view-header.support-xs-header {
    float: none;
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }
  .support-xs-header span.mobile_contact {
    float: none;
    text-align: center;
  }
  .support-xs-header tr {
    display: inline-block;
    margin: 0px 15px;
  }
  .job-view-padding-right-box {
    padding: 0;
  }
  span.profile-share-option.dev-share { display: none; }
  .job-view-left { padding: 15px; }
  .developer-application-share {
    /*display: none;*/
  }
  .premuim-tag { float: none; } 
  a.share-icon {
    width: 40px;
    height: 40px;
    padding: 10px 0;
    font-size: 16px;
  }
  .intview-timer-box .intview-title {
    font-size: 16px;
  }
  .intview-timer-box .intview-timer {
    font-size: 20px;
  }
  .refer-banner {
    height: 310px;
  }
  .ref-bnr-btn {
    min-height: auto;
    height: auto;
    margin-top: 15px;
  }
  .btn.btn-normal.btn-green.btn-invite-bnr {
    font-size: 18px;
    padding: 12px 40px;
  }
}
@media screen and (max-width: 667px){
  .feed-tab-section .nav-pills>li.sprt-line {
    margin: 0px;
  }
  .feed-tab-section .nav>li>a {
    padding: 0px 10px 12px;
    font-size: 12px;
  }
  .footer-more-btn ul li {
    display: inline-block;
  }
  .help-numb h4 span {
    display: initial;
  }
  .footer-more-btn ul li.join-p {
    display: block;
    margin-right: 0;
  }
  .footer.dark-bg ul li a.btn.sec-btn-join {
    width: 250px;
    height: auto;
    padding: 12px;
  }
  .sm-view-header{
    display: none;
  }
  .btm-browse-list {
    width: 80%;
    margin: 0 auto;
  }
  
  .col-mobile-hide {
    display: none;
  }
  .devs-profile-options {
    display: none;
  }
  .support-number li {
    margin: 0px;
  }
  .support-number li a {
    font-size: 13px;
  }
  
  .ftr-contact .help-numb {
    margin-bottom: 0;
    font-size: 12px;
  }
  .btm-browse-links ul li {
    width: 49%;
  }
  .btm-browse-links ul li a {
    font-size: 14px;
  }
  .view-posting-modal{
    width: 75%;
  }
  .blank-section {    
    width: 500px;    
  }
  .offer-job-details-sec tr {
    margin-right: 5px;
  }
  .merging-table-sm.offer-job-details-sec tr {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
  }
  .merging-table-sm.offer-job-details-sec .table>tbody>tr>th {
    width: 100%;
    display: inline-block;
    padding: 5px 0;
  }
  .merging-table-sm.offer-job-details-sec .table>tbody>tr>td {
    padding: 0; 
  }
  button.btn.btn-primary.btn-apply {
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 4px;
  }
  span.sprt-line {
    margin: 0px 5px;
  }
  /*.search-wide {
    min-width: 40px;
  }*/
  .main-footer-sec { 
    padding: 30px 0 20px; 
  }
  .btm-contact-detail { 
    margin-top: 30px; 
  }
  span.stats-icon { 
    width: 22px; 
  }
  ul.pricing-stats.pricing-mobile { 
    width: 350px; 
  }
  .price-range-mobile { 
    min-width: 175px; 
  }
   /*Refer & Earn Footer Banner CSS Start*/
  .refer-banner {
    background: #EAF0F5;
    width: 100%;
    height: 180px;
    padding: 10px;
  }
  .refer-banner .container {
    width: 100%;
  }
  .refer-banner img.refer-mic-bnr {
    width: auto;
    height: 80px;
    max-width: 100px;
    margin-top: 10px;
  }
  .refer-circle {
    background-color: #007AB9;
    width: 136px;
    height: 86px;
    min-height: 80px;
    border-radius: 50%;
    text-align: center;
  }
  .refer-banner img.invite_your_friends {
    width: 50%;
    height: 88px;
  }
  .banner-content {
    display: inline-block;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    height: 100px;
    max-height: 100px;
    padding: 0;
  }
  .refer-banner .banner-content p {
    font-size: 20px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 1.5;
    margin-right: 0;
    letter-spacing: 1px;
    height: 100px;
    vertical-align: middle;
    display: table-cell;
  }
  .banner-content {
    display: inline-block;
    align-items: center;
    justify-content: center;
    /* min-height: 100px; */
    height: 100px;
    max-height: 100px;
    padding: 0;
  }
  .btn-invite-bnr {
    background-color: var(--primary);
    border-radius: 5px;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 5px solid #288E36;
    /* width: 100%; */
    max-width: 300px;
    margin: 5px auto 5px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
  }
  .ref-bnr-btn {
    display: inline-block;
    align-items: center;
    justify-content: center;
    min-height: 0; 
    height: 0;
    max-height: 0;
    padding: 0;
  }
  .refer-circle-pos-rel {
    min-height: 100px;
    height: 100px;
    vertical-align: middle;
    position: relative;
  }
}
@media screen and (max-width: 600px){
  /*comparison-mobile-view-css*/
  .comparison-table-box.comp-show-sm{
    display: block;
  }
  .comparison-table-box.comp-show-lg{
    display: none;
  }
  .comp-tabel-sec {
    text-align: center;
    margin-bottom: 15px;
  }
  .comp-table-title {
    background-color: #d0e9f9;
    text-align: center;
    padding: 10px 0px;
    border: 1px solid var(--white);
  }
  .comp-title h5 {
    font-size: 14px;
    display: inline;
  }
  .comp-title p {
    font-size: 12px;
  }
  thead.blue-thead>tr>td, thead.blue-thead>tr>th, .comparison-table-box .table-bordered>thead>tr>td {
    padding: 10px;
  }
  .th-profile p {
    display: inline;
  }
  img.prf-img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  span.vs-icon {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    top: 0;
    right: -25px;
  }
  .comparison-table-box .table-bordered>tbody>tr>td, .comparison-table-box .table-bordered>tbody>tr>th{
    padding: 20px;
    border-color: var(--white);
    vertical-align: top;
  } 
  .comparison-table-box table.table.table-bordered {
    border-color: var(--white);
    background-color: #f6f6f6;
    border-radius: 0;
    border: none;
  }
  td.cp-td-md {
    width: 50%;
  } 
  .cmp-txt p {
    font-size: 13px;
  }
  th.cp-th-sm{
    width: auto;
    min-width: auto;
    text-align: center;
    background-color: #f1f1f1;
  }
  a.btn-action-rounded {
    padding: 8px 15px;
    width: auto;
    font-size: 11px;
  }
  .modal-header.compare-m-header {
    padding: 30px;
  }
  /*//comparison-mobile-view-css*/
  .custom-col-10 {
    width: 70%;
  }
  .custom-col-2 {
    width: 30%;
  }
  .client-dtl {
    margin-left: 0;
    padding-left: 10px;
  }
  span.clnt-stats {
    font-weight: 300;
  }
  span.sprt-line {
    margin: 0px 5px;
  }
  .clnt-pymnt img {
    width: 12px;
  }
  .job-view-content-sec {
    margin: 0px auto 10px;
  }
  .alert-icon-skills img { 
    width: 30px; 
  }
  .price-range-skills { 
    font-size: 10px; 
  }
  .input-group.prl-price { 
    width: 158px; 
  }
  .input-group.prj-fx-price { 
    width: 158px; 
  }
  h4.avail-text-app { 
    font-size: 11px;
  }
  .job-location-icon img {
    width: 18px;
  }
  .client-sidebar.stats-sidebar .stats-cont p {
    font-weight: 500;
    color: #3b515d;
    float: none;
    font-size: 16px;
    display: block;
    margin-left: 32px;
  }
  .app-rt-sidebar-box {
    display: inline-block;
    width: 100%;
  }
  .help-txt.lang-txt-lt-align {
    margin-left: 34px;
  }
  .job-options {
    display: none;
  }
  .client-sidebar.stats-sidebar .stats-cont p {
    font-weight: 500;
    color: #3b515d;
    float: none;
    font-size: 16px;
    display: block;
    margin-left: 32px;
  }
  .app-rt-sidebar-box {
    display: inline-block;
    width: 100%;
  }
  .help-txt.lang-txt-lt-align {
    margin-left: 34px;
  }
    /*Refer & Earn Footer Banner CSS Start*/
  .refer-banner {
    background: #EAF0F5;
    width: 100%;
    height: 180px;
    padding: 10px;
  }
  .refer-banner .container {
    width: 100%;
  }
  .refer-banner img.refer-mic-bnr {
    width: auto;
    height: 80px;
    max-width: 100px;
    margin-top: 10px;
  }
  .refer-circle {
    background-color: #007AB9;
    width: 136px;
    height: 86px;
    min-height: 80px;
    border-radius: 50%;
    text-align: center;
  }
  .refer-banner img.invite_your_friends {
    width: 50%;
    height: 88px;
  }
  .banner-content {
    display: inline-block;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    height: 100px;
    max-height: 100px;
    padding: 0;
  }
  .refer-banner .banner-content p {
    font-size: 17px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 1.5;
    margin-right: 0;
    letter-spacing: 1px;
    height: 100px;
    vertical-align: middle;
    display: table-cell;
  }
  .banner-content {
    display: inline-block;
    align-items: center;
    justify-content: center;
    /* min-height: 100px; */
    height: 100px;
    max-height: 100px;
    padding: 0;
  }
  .btn-invite-bnr {
    background-color: var(--primary);
    border-radius: 5px;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 5px solid #288E36;
    /* width: 100%; */
    max-width: 300px;
    margin: 5px auto 5px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
  }
  .ref-bnr-btn {
    display: inline-block;
    align-items: center;
    justify-content: center;
    min-height: 0; 
    height: 0;
    max-height: 0;
    padding: 0;
  }
  .refer-circle-pos-rel {
    min-height: 100px;
    height: 100px;
    vertical-align: middle;
    position: relative;
  }
  /*Refer & Earn Footer Banner CSS End*/
  .intview-timer-box {    
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
  }
  .btn.job-skip {
    width: 30%;
    height: 50px;
    background-color: #f1f1f1;
    border: transparent;
    color: #333;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px;
    margin-right: 15px;
    font-weight: 500;
    transition: 0.3s ease-in-out;
  }
  button.btn.btn-primary.btn-apply {
    margin-bottom: 0;
    height: 50px;
  }
  .job-stats p {
    font-size: 22px;
    line-height: 1.4;
  }
  .job-stats p span {
    font-weight: 600;
  }
  .intview-timer-box .intview-title {
    font-size: 16px;
  }
  .intview-timer span {
    display: inline-block;
    width: 130px;
    text-align: left;
    font-size: 26px;
  }
  li.google-contact-li {
    height: 180px;
    width: 150px;
  }
  .google-contact-profile {
    height: 125px;
  }
  .google-contact {
    margin: 0;
  }
  .google-contact-btn {
    margin-top: 0;
  }
  .dev-search-bock1 .col-md-9.custom-col-sm{
    width: 64%;
  }
  .dev-search-bock1 .col-md-3.custom-col-sm{
    width: 36%;
  } 
  .main-page.talent-profile-page{
    padding-top: 0;
  }
  .talent-profile-page .profile-page{
    margin-top: 15px;
  }
  .refer-earn-banner:before {
    left: -200px;
  }
  .help-sidebar .tab-content {
    width: 100%;
  }
  .help-sec-box .btn.btn-blue.btn-help {
    margin-top: 15px;
  }
  .bot-exp-bg-help {
    background: url(/assets/img/bot-banner/bot-experience-min.png) no-repeat;
    background-size: auto 100%;
    background-position: -16px;
  }
  .bnr-txt-help {
    margin-left: 60px;
  }
  .bnr-txt-help p {
    font-size: 11px;
    line-height: 1.3;
    margin: 0 0 8px;
  }
  .toggle-arrow-btn svg {
    width: 10px;
    height: 10px;
  }
  .ai-bot-bnr-help {
    height: auto;
  }
  .notification-header {
    padding: 0;
    border-bottom: 0 solid var(--gray-200);
  }
  .helpbar-open.helpsidebar-overlay {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
  }
  .help-sidebar {
    box-shadow: -5px 0px 25px rgb(0 0 0 / 10%);
  }
  .location-st span.status-icon {
    float: left;
    margin-right: 5px;
    margin-top: 3px;
  }
}
@media screen and (max-width: 599px){
  .contract-date p .date-txt {
    display: inline-block;
  }
  .custom-md-tab md-tab-content>div>md-content {
    padding: 25px 5px;
    background-color: #f9f9f9; 
  }
  
  .job-subdetail-title .status-tag.inline-tag {
    margin-left: 0;
  }
  .cols-9{
    padding: 0px;
  }
  .virtualRepeatdemoDeferredLoading .vertical-container {
    background: var(--white);
  }
  .dev-title-section span.status-icon {
    width: 18px;
  }
  .dev-title-section span.status-txt {
    font-size: 13px;
  }
  .search-dev-page.main-page{
    padding-top: 0;
  }
  .referral-btn-sec .btn.btn-lg {
    font-size: 18px;
    padding: 10px 15px;
  }  
  .contract-talent-detail {
    max-width: none;
    width: 100%;
  }
  .chatnow-show-xs {
    width: 110px;
  }
  .talent-detail-inn-sec.flex-center {
    width: calc(100% - 110px);
    padding-right: 5px;
  }
  h4.whole-page-title {
    float: none;
  }
  .filterd-skills-show .badge-content {
    padding: 4px 12px;
  }
  .filterd-skills-show .txt-gry {
    font-size: 12px;
  }
  a.btn.btn-upload-res {
    width: 100%;
  }
  .disposable-table-xs{
    display: block;
    width: 100%;
  }
  .disposable-table-xs tr{
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .disposable-table-xs tr .input-label{
    display: block;
    width: 100%;
    padding-bottom: 6px;
  }
  span.offer-required-star{
    display: inline-block;
  }
   .table.disposable-table-xs>tbody>tr>th.input-label{
    width: 100%;
    padding:10px 0;
  }
  .col-xs-7.colxs-fullwidth, .col-xs-5.colxs-fullwidth {
    width: 100%;
  }
  .hire-page-box .hire-section{
    text-align: center;
  }
  .dev-feed-block .dev-name .badge-free{
    margin-left: 4px;
  }
  .badge-content {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 568px){
  .view-page {
    margin-top: 30px;
  }
  .reschedule-modal {
    width: 100%;
  }
  .search-result-section .view-page{
    margin-top: 10px;
  }
  button.md-close {
    position: absolute;
    right: 0;
  }
  .mobile-sm-dropdown{
    display: inline-block;
  }
  .header-search-bar .input-group .form-control {
    width: 89%;
    min-width: auto;
  }
  .footer-more-btn ul li {
    display: block;
  }
  .navbar-header {
    display: inline-block;
    width: 100%;
    margin-left: 0 !important;
  }
  .help-numb h4 span {
    display: inline-block;
  }
  .footer.dark-bg ul li a.btn.sec-btn-join {
    width: 100%;
  }
  .modal-jobtype-radio ul li {
    width: 100%;
  }
  .modal-footer.hire-modal-footer {
    padding: 15px;
  }
  a.btn.btn-primary.modal-hire-btn {
    padding: 8px 20px;
  }
  a.btn.btn-primary.modal-cancel-btn {
    padding: 8px 20px;
  }
  .hire-modal-header {
    padding: 15px;
  }
  .dev-profile-img.left-img {
    width: 35px;
    height: 35px;
  }
  .dev-name-sec h3 {
    margin-top: 5px;
    font-size: 18px;
  }
  .hire-model-div label {
    font-size: 12px;
  }
  h1.dev-name {
    font-size: 18px;
  }
  .common-left-title {
    width: 100%;
    float: none;
  }
  .common-right-cont {
    width: 100%;
    float: none;
  }
  .common-detail-sec .common-left-title {
    width: 100%;
  }
  .common-detail-sec .common-right-cont {
    width: 100%;
  }
  .common-left-title h4 br, .common-left-title h2 br {
    display: contents;
  }
  p.dev-description {
    /* font-size: 11px; */
  }
  .col-md-9.padless-right {
    padding-right: 15px;
  }
  .badge-year {
    padding: 3px 0 5px 12px;
  }
  .badge-view .badge-year {
    font-size: 10px;
  }
  .badge-view span.language-advance-beginner, .badge-view span.language-advance-advanced, .badge-view span.language-advance-intermediate, .badge-view span.language-advance-expert, .item-badge.badge-year {
    padding: 3px 8px 5px;
    margin-left: 3px;
  }
  .tag-expertise p {
    font-size: 10px;
  }
  
  .btn.btn-upload-res {
    width: 100%;
  }
  .developer-profile-show img {
    width: 100%;
    max-height: -webkit-fill-available;
  } 
  .form-control.sortby-input {
    font-size: 12px;
    padding: 7px 5px;
    width: 100%;
    height: auto;
    border-radius: 2px;
    background-color: #f9f9f9;
    border: 1px solid #f1f1f1;
    box-shadow: none;
  }
  .feed-count-sort-mobile .row {
    display: block;
  }
  .feed-count-sort-mobile {
    margin-bottom: 20px;
  }
  .filter-result-cont p {
    font-size: 11px;
  }
  .sortby-sec {
    float: right;
  }
  .btm-browse-list {
    width: 100%;
  }
  .col-xs-6.col-full-mobile {
    width: 100%;
  }
  .logo_image {
    height: 45px;
  }
  .job-stats p {   
    font-size: 14px;
    font-weight: 400;
    line-height: inherit;
  }
  .job-other-txt p {
    font-size: 12px;
  }
  .job-search-bar label {
    display: none;
  }
  .btn.btn-apply {    
    font-size: 13px;
  }
  .job-stats span {
    display: inline-block;
  }
  .pagination-section .pagination>li>a, .pagination-section .pagination>li>span {
    padding: 5px 10px;
    font-size: 12px;
  }
  .xs-view-applybtn{
    display: block;
    margin-bottom: 15px;
    text-align: center;
  }
  .premuim-tag.xs-view{
    display: block;
    float: left;
    padding: 3px 5px;
    font-size: 10px;
    margin-bottom: 10px;
  }
  .create-date p {
    margin-bottom: 3px;
  }
  .premuim-tag.md-view {
    display: none;
  }
  .view-job-apply-btn {
    display: block;
  }
  .col-xs-9.col-mobile-full {
    width: 100%;
  }
  .col-xs-3.col-mobile-full {
    width: 100%;
  }
  .client-sidebar {
    margin-top: 25px;
  }
  .job-content {
    padding: 20px;
  }
  .client-short-brif {
    padding: 20px;
  }
  .copyright-small-mobile{
    display: block;
  }
  .copyright-small{
    display: none;
  }
  .footer.dark-bg h4 {
    /*margin-top: 15px;*/
  }
  img.top-logo {
    width: auto;
    height: 22px;
  }
  .footer-logo img.top-logo {
    width: auto;
    height: auto;
    margin-bottom: 15px;
  }
  .feed-tab-select md-select-value {
    padding: 4px 15px;
    font-size: 12px;
    border-radius: 25px;
  }
  .feed-tab-select md-select.md-default-theme:not([disabled]):focus .md-select-value, .feed-tab-select md-select:not([disabled]):focus .md-select-value {
    padding-bottom: 4px;
  }
  hr.footer-hr {
    margin-top: 20px;
  }
  .list-detail-sec {
    margin-bottom: 5px;
  }
  .side-title-sec {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    width: 100%;
    float: none;
    padding: 10px 0 10px;
  }
  .side-content-sec {
    width: 100%;
    float: none;
  }
  .side-title-sec h4, .side-title-sec h3 {
    font-size: 16px;
  }
  .modal-dialog.image-croper-modal {
    width: 90%;
    margin: 30px auto;
  }
  .alert-content p {
    font-size: 12px;
  }
  .dev-name h5 {
    /*font-size: 18px;
    margin-right: 0;
    margin-bottom: 6px;
    margin-top: 0;*/
  }
  .sm-morebtns-view{
    display: flex;
    float: right;
  }
  .profile-upload-body .table>tbody>tr>td {
    width: 100%;
    display: inline-block;
  }
  .col-xs-8.col-xs8-full, .col-xs-4.col-xs4-full {
    width: 100%;
  }
  .offer-job-fulldetails-sec .table tr {
    width: auto;
    display: flex;
  }
  .col-md-3.col-sm-3.left-padless-3 {
    padding-left: 15px;
  }
  /*.feed-tab-section .nav>li>a {
    padding: 0px 5px 8px;
    font-size: 10px;
  }*/
  .loader-img {
    padding: 15px 5px;
  }
  button.btn.btn-default.search-btn {
    height: 40px;
  }
  span.invite-tag {
    display: inline-block;
    margin-top: 5px;
    padding: 3px 15px;
  }
  .blank-section {
    width: 100%;
  }
  .job-stats {
    margin: 8px 0;
    width: 100%;
  }
  .dev-application-sec .common-left-title {
    display: inline-block;
    margin-bottom: 10px;
  }
  .dev-application-sec .common-left-title h4, .dev-application-sec .common-left-title h2 {
    float: left;
  }
  .dev-application-sec .btn.btn-update {
    float: right;
    margin-left: 15px;
  }
  /*new profile page css*/
  .developer-detail-sec .col-sm-12.padless-right, .developer-detail-sec .col-sm-12.paddmore-left {
    padding: 0 5px;
  }
  .developer-detail-sec .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .hide-o-sm {
    display: none;
  }
  .show-o-sm{
    display: inline-block;
    width: 100%;
  }
  .dev-info-block {
    padding: 10px;
  }
  .profile-img-show {
    width: 60px;
    height: 60px;
    min-height: 60px;
    float: left;
    border-radius: 50%;
    margin-bottom: 5px;
    overflow: visible;
  }
  .profile-img-show a {
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
  }
  span.status-indicat.dev-status {
    right: -5px;
    bottom: 0px;
  }
  .profile-img-show a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .dev-titlebar {
    margin-bottom: 5px;
    width: calc(100% - 95px);
    float: left;
    margin-left: 15px;
    /*margin-top: 5px;*/
  }
  .intro-video-left {
    width: 100%;
    margin-right: 0;
    height: auto;
    margin-bottom: 15px;
  }
  .skill-count a {
    /*line-height: 2.2;*/
    /*font-size: 12px;*/
    /*color: var(--primary);*/
  }
  .sidepanel-block {
    padding: 10px;
    margin-bottom: 5px;
  }
  .common-left-title h4, .common-left-title h2 {
    padding: 4px 0 14px;
    margin-bottom: 0px;
  }
  .common-left-title.sm-section-heading h4 {
    margin-bottom: 10px;
  }
  /*hire fixed css*/
  .hire-section-fixed.show-o-xs {
    position: fixed;
    bottom: 0;
    background-color: var(--white);
    width: 100%;
    left: 0;
    padding: 12px 8px;
    z-index: 9;
    box-shadow: 0px -10px 40px rgb(0 0 0 / 8%);
    border-top: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .hire-option-show .jobtype-xs {
    width: 60%;
    float: left;
  }
  .hire-option-show .dev-hire-btn-section {
    padding: 0;
    margin: 0;
    width: 52%;
    float: right;
  }
  .hire-section-fixed .actions-dropdown button.btn.btn-primary.dropdown-toggle {
    margin-left: 0;
  }
  .hire-section-fixed .hire-option-show {
    width: 100%;
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
    align-items: baseline;
  }  
  .jobtype-xs .price-xs{
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0px;
    display: inline-block;
    width: 50%;
    /*vertical-align: super;*/
  }
  /*.jobtype-xs{
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    margin-top: 10px;
  }
  .jobtype-xs h4 {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0 0 5px;
  }*/
  .profile-info .jobtype-xs{
    display: inline-block;
  }
  .profile-info h4.prc-show-h3 {
    font-size: 22px;
    color: var(--primary);
  }
  .profile-info .availability-show-block.dev-profile ul li {
    width: 100%;
  }
  .resume-xs form{
    margin-bottom: 0px;
  }
  .profile-page {
    margin-top: 10px;
  }
  .hire-section-fixed button.btn.btn-primary.btn-hire {
    margin: 0;
    font-size: 18px;
  }
  .hire-section-fixed .dropdown.actions-dropdown {
    width: 36px;
    text-align: left;
  }
  .hire-section-fixed .actions-dropdown .dropdown-menu>li>a img {
    width: 16px;
    filter: grayscale(0);
    margin-right: 5px;
  }
  .page-breadcrum p {
    font-size: 16px;
    font-weight: 400;
    color: #444;
    margin-top: 0px;
    margin-bottom: 0;
  }
  .page-breadcrum p a{
    font-weight: 400;
  }
  button.btn.btn-primary.btn-remove-skip-mb {
    background: var(--white);
    font-size: 16px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 2px;
    width: 100%;
    /* padding: 10px 20px; */
  }
  h2.dev-title {
    /*font-size: 10px;
    margin-bottom: 5px;
    margin-top: 10px;*/
  }
  .resume-xs .btn.btn-primary.btn-resume {
    background-color: var(--white);
    color: #333;
    font-weight: 500;
    border: none;
    border-radius: 0px;
    padding: 0px;
    font-size: 14px;
    transition: 0.5s ease-in-out;
  }
  .resume-xs .btn.btn-primary.btn-resume i{
    margin-right: 5px;
    color: var(--primary);
    font-size: 16px;
  }
  .actions-dropdown .dropdown-menu>li>span {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
    display: block;
  }
  span.developer-share {
    display: block;
    margin-top: 20px;
    text-align: center;
  }
  span.mobile-application-share {
    float: right;
  }
  .dev-info-block.dev-top-sec {
    padding: 8px 10px 10px;
  }
  span.right-cont span {
    /* font-size: 12px; */
  }
  /*//new profile page css*/
  .top-nav-sec .navbar-brand { 
    padding: 0px 10px; 
  } 
  a.zoho-help-icon.help-nologged {
    margin: 0;
    font-size: 18px;
  }
  a.zoho-help-icon.help-nologged i.fa.fa-question {
    margin-top: 0;
  }
  .job-options { 
    display: none; 
  }
  .alert-box-job-type {
    width: 100%;
    margin-bottom: 10px;
  }
  .alert-box-job-type p.sub-text {
    font-size: 11px;
  }
  .job-type-location span {
    font-size: 10px;
    color: var(--gray-600);
  }
  .alert-icon-jobtype { 
    width: 30px;
    min-width: 30px;
  }
  .alert-icon-jobtype i {
    color: var(--primary);
    font-size: 20px;
  }
  .alert-content { 
    padding: 5px; 
  }
  .sub-text-skills { 
    font-size: 10px; 
  }
  .intro-text-msg {
    margin: 42px 0 30px 10px;
    font-size: 10px;
  }
  .apply-btns-section.view-job-apply-btn {
    width: auto;
    text-align: center;
    display: none;
  }
  .input-group.ctr-hr-rate.hrs-week { 
    width: 150px; 
  }
  .input-group.ctr-hr-rate { 
    width: 150px; 
    float: right; 
  }
  li.ft-currency-dropdown select {
    width: 100px;
    margin: 0 auto;
  }
  span.expect-rate {
    font-size: 12px;
    color: #333;
  }
  .price-xs p span, p.skills-type {
    font-size: 12px;
  }
  .price-xs p {
    margin-bottom: 5px;
    color: var(--primary);
  }
  .price-xs p small {
    font-size: 12px;
    color: var(--gray-600);
  }
  .price-xs p span.sd-currency-icon {
    font-size: 15px;
  }
  .left-padless {
    padding-left: 15px;
  }
  .jobtype-catg-show {
    margin-top: 10px;
  }
  .prfl-detail {
    margin-bottom: 10px;
  }
  .refer-banner .banner-content p {
    font-size: 14px;
    color: #000;
    text-align: left;
    font-weight: 500;
    line-height: 1.5;
    margin-right: 0;
    letter-spacing: 1px;
    height: 100px;
    vertical-align: middle;
    display: table-cell;
  }
  .refer-banner img.refer-mic-bnr {
    width: auto;
    height: 56px;
    max-width: 100px;
    margin-top: 20px;
  }
  .refer-circle {
    background-color: #007AB9;
    width: 96px;
    height: 76px;
    min-height: 80px;
    border-radius: 50%;
    text-align: center;
  }
  .refer-banner img.invite_your_friends {
    width: 60%;
    height: 76px;
  }
  .list-heading h4, .list-heading h3 {
    width: 75%;
  }
  .application-title {
    margin-bottom: 10px;
  }
  span.hours-error-block, span.hourly-price-error-block, span.hours-error-block1 {
    font-size: 10px;
  }
  .inner-footer-sec .bottom-cpy p {
    color: rgb(253,253,253,0.65);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
  }
  .botton-ftr-txt, .contract-short-box .contract-date p {
    text-align: left;
  }
  .india-partner-txt .botton-ftr-txt {
    text-align: center;
    width: 100%;
  }
  .job-quick-stats .jbr-content {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
  }
  .job-quick-stats .jbr-content h3, .job-quick-stats h5.jbr-content-heading, .job-quick-stats .jbr-content h6 {
    font-size: 14px;
    margin: 0;
  }
  .jbr-content-heading i {
    width: 20px;
    height: 20px;
    text-align: center;
    background-color: #ddd;
    border-radius: 50%;
    line-height: 20px;
    color: #3b515d;
    font-size: 10px;
  }
  .jbr-padding {
    padding: 10px;
  }
  .sec-common-btn-response button {
    margin: 0 5px;
  }
  .job-title h1, .job-title h2 {
    margin-top: 0;
    margin-bottom: 8px;
  }
  .contract-jobs-block {
    padding: 20px 10px;
  }
  .contract-details-wrap, .contract-action-wrap {
    width: 100%;
    padding-right: 0;
  }
  .contract-talent-detail .cont-talent-img {
    width: 30px;
    height: 30px;
  }
  .talent-short-box .contract-talent-detail .cont-talent-title {
    margin-left: 6px;
    padding-left: 0;
    width: calc(100% - 45px);
  }
  .talent-short-box.client-short-box .contract-talent-detail .cont-talent-title {
    margin-left: 10px;
    width: calc(100% - 50px);
  }
  .cont-talent-title h5 {
    margin: 0;
  }
  h5.contract-stats {
    font-size: 13px;
    font-weight: 400;
    margin: 15px 0 5px;
  }
  .contract-date p, .talent-short-box, .contract-short-box {
    margin: 5px 0 10px;
  }
  .contract-action-wrap button {
    margin: 8px 0;
  }
  .contract-talent-detail .cont-talent-img.talent-img-lg{
    width: 50px;
    height: 50px;
  }
  .contract-flex-wrap .contract-talent-detail .cont-talent-title, .contract-talent-detail .cont-talent-title {
    width: calc(100% - 50px);
  }
  .contract-amount h4 {
    margin: 15px 0 5px;
    display: inline-block;
  }
  .contract-amount small {
    display: inline;
    vertical-align: text-bottom;
  }
  .contract-short-box h5.contract-stats{
    font-size: 16px;
  }
  .col-xs-12.paddfull-mobile, .col-md-12.paddfull-mobile{
    padding: 0;
  }
  .col-xs-12.inner-paddless-mobile{
    padding: 0 5px;
  }
  .contract-jobs-block {
    box-shadow: 0px 1px 3px 1px rgb(0 0 0 / 10%);
    margin-bottom: 15px;
    border: none;
  }
  .offerjob-tab {
    padding: 10px 0;
    border-radius: 0;
  }
  .contract-amount {
    text-align: left; 
  } 
  .main-page.inner-main-page.paddless-xs{
    padding-top: 0;
  }
  .btn.btn-normal.btn-green.btn-invite-bnr {
    display: inline-block;
    width: 100%;
  }
  .talent-short-box .contract-talent-detail {
    max-width: unset;
    width: calc(100% - 105px);
  }
  .btn-link.link-trsnp.btn-chat-link {
    font-size: 13px;
    background-color: var(--white);
    padding: 6px;
  }
  .btn-link.link-trsnp.btn-chat-link:hover, .btn-link.link-trsnp.btn-chat-link:active, .btn-link.link-trsnp.btn-chat-link:focus{
    background-color: rgba(61, 130, 171, 0.20);
  }
  .profile-options-section.billing-statement .view-section-box{
    padding: 15px;
  }
  .profile-options-section.billing-statement .view-section-box{
    padding: 15px;
  }
  .feed-listing-block, .feed-listing-block:hover {
    border: none;
    box-shadow: none;
  }
  .main-page-bg-gray {
    background-color: #f6f6f6;
  }
  .feed-listing-block {
    padding: 15px;
  }
  .apply-btns-section {
    flex-direction: row;
    align-items: center;
  }
  a.share-icon {
    padding: 8px;
    font-size: 16px;
    border: 3px solid #d1e6d3;
  }
  p.job-withdraw {
    margin: 15px auto 0;
    color: var(--gray-600);
    font-size: 16px;
  }
  p.job-skip {
    width: 50%;
    margin: 0 10px;
    color: var(--gray-600);
    font-size: 16px;
  }
  .intview-timer-box .intview-title {
    font-size: 14px;
    margin-right: 5px;
  } 
  .intview-timer span {
    font-size: 18px;
  }
  .company-billing-details-show.flex-center, .jbr-content-sec.job-offer-wrap.flex-element {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-table th, .contact-table td {
    font-size: 13px;
  }
  .jbr-content-sec {
    margin: 20px 0px;
   }
  .content-3.jbr-right{
    width: 100%;
  }
  .breadcrumb.innerpage-breadcrums {
    padding: 5px 0px;
  }
  #goTopBtn{
    display: none !important;
  }
  a.position-txt {
    font-size: 14px;
  }
  /*START: css for google contact mobile view*/
  #jobViewGoogleContactsModal .full-content-model .modal-dialog{
    width: 90%;
    margin: 30px auto;
  }
  #jobViewGoogleContactsModal .form-field-modal .modal-body {
    padding-top: 20px;
  }
  .search-google-contact {
    width: auto;
  }
  /*END: css for google contact mobile view*/
  .footer-social-sec li a {
    margin: 0 4px;
  }
  span.hours-error-block {
    margin-right: 30px;
    line-height: initial;
  }
  .search-wide {
    float: right;
  }
  .btn.btn-normal.btn-green.btn-invite-bnr {
     font-size: 14px; 
     padding: 10px; 
  }
  .ref-bnr-btn {
    margin-top: 5px;
  }
  .select-box-section.select-box-section-width.appl-skills {
    margin: 0;
  }
  .dev-search-bock1 .col-md-9.custom-col-sm,.dev-search-bock1 .col-md-3.custom-col-sm{
    width: 100%;
  } 
  .contract-date {
    max-width: max-content;
  }
  .cont-talent-title p.small-txt {
    font-size: 10px;
  }
} 
@media screen and (max-width: 480px){
  .col-xs-6.view-full-6 {
    width: 100%;
  }
  .novideo-img {
    width: 100%;
    height: auto;
    text-align: center;
  }
  .novideo-img img {
    width: 200px;
  }
  .ftr-contact {
    margin-bottom: 20px;
  }
  span.badge.gry-badge {
    padding: 4px 10px;
  }
  span.language-advance-beginner, span.language-advance-advanced, span.language-advance-intermediate, span.language-advance-expert, .item-badge.badge-year {
    padding: 3px 8px 5px;
  }
  .badge-warning {
    padding: 3px 0 5px 15px;
  }
  .ftr-contact .help-numb {
    margin-bottom: 15px;
  }
  .selected-tag p {
    font-size: 9px;
  }
  span.selected-tag {
    padding: 3px 10px;
  }
  button.btn.btn-primary.searchbox-btn {
    background-color: var(--gray-600);
    border: 1px solid var(--gray-600);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0;
    display: inline-block;
    margin-right: 10px;
  }
  .col-xs-4.mobile-full, .col-xs-8.mobile-full{
    width: 100%;
  }
  .banner-text p {
    text-align: center;
    font-size: 12px;
  } 
  .col-xs-9.mobile-full-xs9, .col-xs-3.mobile-full-xs3 {
    width: 100%;
  }
  .badge-view .badge-year {
    font-size: 9px;
    font-weight: 500;
    padding: 3px 0 5px 10px;
  }
  .tag-expertise p {
    font-size: 10px;
    font-weight: 500;
  }
  .list-heading h4, .list-heading h3 {
    font-size: 14px;
  }
  p.content-title {
    font-size: 13px;
    margin-bottom: 3px;
  }
  /*.only-show-tag span.badge.gry-badge {
    padding: 3px 10px 5px;
    font-size: 9px;
    font-weight: 500;
  }*/
  .degree-text p {
    /* font-size: 12px; */
  }
  button.btn.btn-primary.available-btn {
    width: 100%;
    margin: 0px ;
    margin-bottom: 10px;
  }
  button.btn.btn-primary.unavailable-btn {
    width: 100%;
    margin: 0px;
  }
  .developer-profile-show {
    width: 100%;
    height: auto;
    max-height: 250px;
    margin-right: 0;
    overflow: hidden;
  }
  .profile-info {
    width: 100%; 
    margin-top: 0px; 
    max-width: 100%; 
  }
  span.badge-expertise {
    font-size: 9px;
  }
  span.badge-expertise {
    font-size: 9px;
    padding: 5px 15px;
    display: inherit;
  }
  span.badge-expertise a{
    align-self: center;
  }
  .feed-tab-section {
    padding: 15px 10px 10px;
  }
  .banner-btn-div {
    margin-top: 15px;
  }
  .banner-text h3 {
    font-size: 16px;
    margin-top: 0px;
    text-align: center;
  }
  .custom-col-2 {  
    width: 100%;    
  }  
  .custom-col12-full {
    width: 100%;
  }
  .apply-btns-section, .interview-timing-show {
    text-align: center;
  }
  .left-padless {
    padding-left: 15px;
  }
  .job-search-bar label {   
    margin-right: 15px;
  }
  .job-type-selectMobile {
    display: block;    
  }
  .btn.btn-apply {
    font-size: 16px;
  }
  .feed-tab-mobileSection {
    padding: 15;
    display: none;
  }
  .col-xs-7.full-col7-zeroResult{
    width: 100%;
  }
  .col-xs-5.full-col5-zeroResult {
    width: 100%;
  }
  .blank-section {   
     width:auto;
     margin: 5px auto; 
  }
  .small-cont {
    margin-top:0px;
  }
  .cont-side h4 {
    font-size: 24px;
  }
  span.badge.gry-badge {   
    font-size: 13px; 
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }
  .wistia-video-sec{  
    height: 180px;
  }
  span.warning-mssg {
    display: flex;
  }
  .warning-mobile-mssg span.error-dialog {    
    display: flex;
  }
  .qualified-blank-data img {
    height: 120px;
    width: auto;
    margin: 0 auto;
  }
  button.rotate-btn {
    padding: 6px 10px;
    font-size: 10px;
  }
  h4.support-title {
    margin-bottom: 30px;
    font-size: 22px;
  }
  .btm-browse-links ul li a {
    font-size: 13px;
  }
  span.dev-count-link {
    font-size: 11px;
  }
  .support-number li {
    margin: 0px;
    display: block;
    width: 100%;
    margin: 15px 0;
  }
  span.saprate-dot {
    width: 200px;
    height: 1px;
    background-color: #adadad;
    display: inline-block;
    border-radius: 0;
    margin: 5px 0;
  }
  .country-flag img {
    height: 20px;
  }
  .btm-browse-links ul li {
    width: 100%;
  }
  span.dev-count-link {
    font-size: 14px;
  }
  .profile-image-preview-section {
    border-left: 0px solid #ddd;
    padding-left: 0px;
    border-top: 1px solid #ddd;
  }
  .upload-btn-sec {
    text-align: center;
  }
  span.change-rate-sec {
    margin-left: 0;
    width: 100%;
  }
  .col-xs-7.colxs-fullwidth, .col-xs-5.colxs-fullwidth {
    width: 100%;
  }
  .payment-term-sec{
    display: none;
  }
  .payment-term-sec.showon-xs{
    display: inline-block;
  }
  .payment-term-sec h4 {
    font-size: 14px;
    margin-top: 0;
  }
  .single-milestone tr {
    display: inline-block;
    width: 100%;
  }
  .table>tbody>tr>td.ml-title-td {
    width: 100%;
    display: inline-block;
  }
  .single-milestone .table>tbody>tr>td {
    padding: 5px;
    width: 100%;
    display: contents;
  }
  /*.table>tbody>tr>td.ml-date-td, .table>tbody>tr>td.ml-amount-td {
    width: 50%;
  }*/
  .ml-amount-td .payment-input .input-group-addon {
    padding: 6px;
    font-size: 12px;
  }
  .page-form-width {
    width: 100%;
  }
  .additional-input-section .table>tbody>tr>td, .additional-input-section .table>tbody>tr>th {
    border-top: 0px solid #ddd;
    padding: 0;
  }
  .table>tbody>tr>th.input-label {
    width: 100%;
    padding-bottom: 10px;
  }
  .sm-td-input .input-group.payment-input, .sm-td-input .select-job-date.hire-date {
    width: 200px;
  }
  .single-milestone span.profile-block-error {
    font-size: 9px;
    font-weight: 400;
  }
  .input-group.payment-input.trio-addon-input {
    width: 100%;
  }
  .input-label p {
    margin-bottom: 0;
    margin-top: 0;
  }
  .flexible-jobtype {
    margin-bottom: 20px;
  }
  .col-xs-8.custom-col-sm, .col-xs-4.custom-col-sm {
    width: 100%;
  }
  .main-page, .main-page.inner-main-page {
  /*    padding-top: 70px; commented for alert-fullbar draft job and invoice by ap*/
    padding-bottom: 5px;
  }
  .dashboard-section .main-page{
    padding-top: 15px;
  }
  .action-navs-xsshow {
    display: inline-block;
    width: 100%;
  }
  span.condition-span {
    width: 100%;
    display: inherit;
  }
  .action-navs-xsshow button.btn.btn-mssg-profile, .action-navs-xsshow a.btn.btn-offer.btn-accept-offer {
    width: calc(100% - 50px);
  }
  .action-navs-xsshow .dropdown.actions-dropdown {
    float: right;
  }
  .action-navs-xsshow.post-actions {
    width: auto;
    display: inline-block;
    float: right;
  }
 /*  .confirm-pass-title h4 {
    text-align: left;
  } */
  .offer-action-sec.actions-mdshow{
    display: none;
  }
  a.btn.btn-mssg-icon {
    padding: 4px 0 4px 0;
    /*padding: 0;*/
    margin: 0;
    font-size: 18px;
  }
  .btn-mssg-icon .notify-count {
    top: 0px;
    right: -5px;
    font-size: 8px;
    width: 12px;
    height: 12px;
    line-height: 10px;
    position: absolute;
    border: 2px solid var(--white);
  }
  .dev-name h5 {
    /*margin-bottom: 6px;*/
  }
  .actions-dropdown .dropdown-menu {
    top: auto;
    bottom: 45px;
  }
  .actions-dropdown.dropdown-bottom .dropdown-menu {
    top: 45px;
    bottom: auto;
  }
  .actions-dropdown .dropdown-menu.drop-bottom{
    bottom: auto;
  }
  .actions-dropdown .dropdown-menu.dropdown-bottom {
    top: 100%;
    bottom: auto;
  }
  .search-wide p {
    display: none;
  }
  .feed-tab-section .nav-pills>li.sprt-line {
    margin: 0px 5px;
  }
  span.clnt-pymnt {
    display: inline-block;
    margin-bottom: 5px;
  }
  .div-content.min-content {
    width: 100%;
  }
  .btn.btn-normal, .btn.btn-border, a.btn-link, .btn-link {
    /*font-size: 14px;*/
    padding: 6px 10px;
  }
  .btn.btn-sm{
    font-size: 12px;
    padding: 5px 8px;
  }
  .btn.btn-lg{
    font-size: 16px;
    padding: 8px 14px;
  }
  /*client tab css*/
  .feed-tab-section.client-feed-tabs .nav>li>a {
    padding: 0px 12px 12px;
    font-size: 12px;
  }
  .feed-tab-section.client-feed-tabs .nav>li>a.tab-icon:before {
    width: 18px;
    height: 18px;
    display: block;
    margin: 5px auto;
  }
  .feed-tab-section.client-feed-tabs .nav-pills>li.sprt-line {
    margin: 15px 5px;
  }
  .feed-tab-section.client-feed-tabs .nav-pills>li+li.last-li {
    float: left;
  }
  .feed-tab-section .nav-pills>li.sprt-line.last-li-hide {
    display: block;
  }
  .resume-show {
    margin-top: 10px;
  }
  /*//client tab css*/
  .blank-prc-show p {
    font-size: 14px;
  }

  .interview-sheduled-sec.show-o-xs{
    display: block;
  }
  .hire-sidesection.sm-view.hide-o-xs{
    display: none;
  }
  .common-detail-sec {
    margin-top: 0px;
  }
  #addUpdateSkill-Dialog .modal-dialog.new-modal-skills {
    width: auto;
  }
  .refresh-section {  
    width: auto;
  }
  a.pagereload-button {  
      padding: 5px 20px; 
      line-height: 2.2;
  }
  .title-img {
    display: inline-block;
    margin-top: 0px;
    margin-right: 5px;
  }
  .chat-interview-btn-profile p {
    font-size: 10px;
    padding: 0; 
  }
  .chat-box-btn {
    margin-left: 10px;
    display: inline-block;
  }
  .chat-box-btn .interview-btn {
    margin: 0px 0; 
  }
  /*.dev-chat-block span {
    display: inline-block;
    vertical-align: top;
    margin-top: 8px;
  }*/
  .dev-chat-block span .btn-chat-profile-dev, .sch-int-btn-dev-prof {
    font-size: 12px;
    padding: 7px 18px 5px;
  }
  .title-img img {
    height: 50px;
    margin-right: 0px !important;
  }
  .dev-xs-show{
    display: block;
  }
  .dev-xs-hide{
    display: none;
  }
  .invite-container .title-img img {
    height: 50px;
  }
  .custom-col-10.custom-col12-full.custom-col-itrvleft {
    width: 100%;
  }
  .custom-col-2.left-padless.custom-col12-full.custom-col-itrvright{
     width: 100%; 
  }
  input.form-control.custom-input.search-input {
    height: 40px;
  }
  .yr-appl-title {  
    width: 65%;
  }
  .rht-currncy {  
    width: 35%;
  }
  a.delete-content {
    float: right;
  }
  .dev-chat-block {
    padding: 5px;
  }
  .common-left-title h4, .breadcrums-content h4 {
    font-size: 13px;
  }
  .contract-amount h4 {
    margin: 10px 0 5px;
  }
  .contract-amount {
    max-width: inherit;
  }
  .main-page.talent-profile-page.fixed-header-page{
    padding-top:0 ;
  }
  section.search-result-section {
    padding-top: 15px;
  }
  .contract-title {
    width: 100%;
  }
  span.badge.gry-badge {
    margin: 0 5px 10px 0;
  }
}
@media screen and (max-width: 414px){
  .col-xs-6.col-xs-full {
    width: 100%;
  }
  .modal-body.hire-modal-body {
    padding: 15px;
  } 
  .search-wide {
    min-width: 100%;
  }
  .intro-video-show.mobile-show{
    display: block;
  }
  .introVideo-sec {
    width: 100%;
    height: 250px;
  }
  .intro-video-show{
    display: none;
  }
  .skill-sm-txt-7, .skill-sm-txt-7 .tag-expertise p {
    font-size: 8px;
    padding: 0px 0px 2px;
  }
  .skill-sm-txt-6, .skill-sm-txt-6 .tag-expertise p{
    font-size: 6px;
    padding: 0px;
  }
  .badge-view .skill-sm-txt-6 span.language-advance-beginner, .badge-view .skill-sm-txt-6 span.language-advance-advanced, .badge-view .skill-sm-txt-6 span.language-advance-intermediate, .badge-view .skill-sm-txt-6 span.language-advance-expert, .item-badge.badge-year {
    padding: 3px 8px 5px;
  }
  .feed-tab-mobile {
    padding: 7px;
  }
  .client-sub-detail {
    margin-left: 0;
    border-left: 0px solid #ddd;
    padding-left: 0;
    margin-bottom: 10px;
  }
  span.sprt-line {
    margin: 0px 10px;
  }
  p.catg-availab {
    font-size: 11px;
    line-height: normal;
  }
  .image-croper-modal .modal-body {
    padding: 0px 10px;
  }

  /*comparison table responsive*/
  .comparison-table-box .table-bordered>tbody>tr>td, .comparison-table-box .table-bordered>tbody>tr>th {
    padding: 20px 12px;
  }
  img.prf-img {
    width: 25px;
    height: 25px;
    margin-right: 0px; 
  }
  .th-profile p {
    font-size: 12px;
  }
  span.vs-icon {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 10px;
    right: -22px;
  }
  /*//comparison table responsive*/
  .feed-tab-section {
    padding: 15px 10px 10px;
  }
  .job-msg button.btn.btn-mssg-profile {
    font-size: 14px;
    margin-bottom: 0;
  } 
  .feed-tab-section.client-feed-tabs .nav>li>a {
    padding: 0px 8px 12px;
    font-size: 12px;
  }
  .feed-tab-section.client-feed-tabs .nav-pills>li.sprt-line {
    margin: 15px 0px;
  }
  .dev-application-sec .view-section-box {
    margin: 5px;
  }
  .container-fluid.container-fixed {
    width: 100%;
  }
  .offer-stats p {
    font-size: 13px;
  }
  .status-tag{
    font-size: 9px;
  }
  .talent-short-box{
    padding: 12px 6px;
  }
  .cont-talent-title h5 {
    font-size: 12px;
  }
  .talent-country span.status-icon {
    margin-right: 0px;
  }
  .talent-country span.status-txt, span.usd-hr {
    font-size: 11px;
  }
  .contract-date p{
    font-size: 12px;
  }
  a.zoho-help-icon { 
    padding: 6px 12px 6px 6px; 
  }
  span.usd-hr { 
    font-size: 11px; 
  }
  ul.pricing-stats.pricing-mobile { 
    width: 239px; 
  }
  .price-range-mobile { 
    min-width: 160px; 
  }
  .tabViewIcon.svg-link-io {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 375px){
  .skill-sm-txt-7{
    font-size: 7.5px;
    padding: 0px 0px ;
  }
  .skill-sm-txt-7 .tag-expertise p {
    font-size: 7.5px;
        padding: 0px 0px;
  }
  .skill-sm-txt-6{
    font-size: 5.5px;
        padding: 0px 0px;
  }
  .skill-sm-txt-6 .tag-expertise p {
    font-size: 5.5px;
        padding: 0px 0px;
  }
  .post-time p {
    font-size: 10px;
  }
  span.prfl-img {
    width: 25px;
    height: 25px;
  }
  p.clnt-nm {
    font-size: 12px;
  }
  span.clnt-stats {
    font-size: 10px;
  }
  .view-job-title h1 {
    font-size: 14px;
  }
  .view-job-title p {
    font-size: 12px;
  }
  a.btn.btn-upload-res {
    width:100%;
  }
  a.btn-download-res {
    width: 100%;
    float: none;
  }
  .feed-tab-section.client-feed-tabs .nav>li>a {
    padding: 0px 10px 12px;
    font-size: 10px;
  }
  .dev-chat-block span .btn-chat-profile-dev, .sch-int-btn-dev-prof {
    font-size: 12px;
    padding: 5px 8px;
  }
  .chat-box-btn {
    margin-left: 5px;
  }
  span.usd-hr {
    font-size: 9px;
    display: block;
    margin-top: 5px;
    font-weight: 400;
  }
  .price-range-mobile { 
    min-width: 146px;
  }
  img.top-logo {
    width: auto;
    height: 21px;
  }
  .google-contact {
    width: 150px;
  }
  .pagination-section .pagination>li>a, .pagination-section .pagination>li>span{
    padding: 5px 8px;
  }
}
@media screen and (max-width: 360px){
  .feed-tab-section .nav>li>a {
    padding: 0px 2px 6px;
    font-size: 10px;
  }
  h4.sccs-heading {
    font-size: 20px;
  }
  p.payoption-nm {
    font-size: 16px;
  }
  /* .payment-custom-modal .modal-body {
    padding: 0;
  } */
  .feed-tab-section .nav>li>a.tab-icon:before {
    width: 13px;
    height: 13px;
    margin-right: 2px;
  }
  .feed-tab-section.client-feed-tabs .nav>li>a {
    padding: 0px 8px 12px;
  }
  .top-nav-sec .navbar-brand {
    padding: 0 2px 0 6px;
    float: left;
    height: auto;
  }
  .alert-content p {
    font-size: 11px;
  }
  .intro-text-msg {
    margin: 42px 0 30px 10px;
    font-size: 8px;
  }
  ul.pricing-stats.pricing-mobile { 
    width: 239px; 
  }
  .price-range-mobile { 
    min-width: 132px; 
  }
  .top-nav-sec .navbar-brand {
    margin-right: 0px;
  }
  .google-contact {
    width: 144px;
  }
  .table>tbody>tr>td.ml-date-td, .table>tbody>tr>td.ml-amount-td {
    width: 100%;
    max-width: none;
    display: block;
  }
  .intview-timer span {
    width: 136px;
  }
}
@media screen and (max-width: 340px){
  button.btn.btn-primary.menu-bars {
    height: 35px;
    min-width: 35px;
    font-size: 16px;
  }
  .menu-profile-img {
    width: 25px;
    height: 25px;
  }
  a.profile-btn {
    height: 35px;
  }
  .mobile-sm-dropdown {
    margin-right: 10px;
  }
  .navbar-default .navbar-brand img.logo {
    max-width: initial;
    height: 18px;
    margin-top: 0;
  }
  img.top-logo {
    width: auto;
    height: 25px;
  }
  .logo_image {
    height: 35px;
  }
  .sidenav-toolbar {
    width: 90%;
  }
  .sidenav-content {
    width: 90%;
  }
  .feed-tab-section .nav>li>a {
    padding: 0px 2px 4px;
    font-size: 9px;
  }
  a.btn.btn-mssg-icon {
    padding: 6px 0;
    font-size: 18px;
    margin-left: 0;
  }
  .btn-mssg-icon .notify-count {
    width: 10px;
    height: 10px;
  }
  .feed-tab-section.client-feed-tabs .nav>li>a {
    padding: 0px 8px 12px;
    font-size: 9px;
  }
  .dev-chat-block span .btn-chat-profile-dev, .sch-int-btn-dev-prof {
    font-size: 10px;
    padding: 5px 6px;
  }
  .chat-interview-btn-profile p {
    font-size: 11px;
    margin-bottom: 0;
    display: block;
    /*padding: 2px 0 0;*/
  }
    .title-img img {
    height: 40px !important;
    margin-bottom: 10px;
  }
  #mobile-shadow .xs-view-header {
    padding: 7px 0 0 0;
  }
  a.share-icon {
    width: 35px;
    height: 35px;
    padding: 10px 0;
    font-size: 14px;
  }
  .intview-timer-box .intview-title {
    font-size: 12px;
  }
  .virtualRepeatdemoDeferredLoading .vertical-container {
    height: 225px;
  }
}
@media screen and (max-width: 320px){
  .feed-tab-section.client-feed-tabs .nav>li>a {
    padding: 0px 8px 12px;
    font-size: 8px;
  }
  .mssg-sec.full-btn-show.chat-btn-xs button.btn.btn-mssg-profile {
    margin-bottom: 0px;
    font-size: 16px;
    height: 42px;
    padding: 10px;
  }
  .hire-option-show .dev-hire-btn-section {
    height: 42px;
  }
  .hire-section-fixed button.btn.btn-primary.btn-hire {
    font-size: 16px;
    height: 42px;
  }
  .page-breadcrum p { 
    font-size: 13px; 
    margin-top: 0; 
  }
  #frame .content .messages {
    min-height: calc(100% - 138px);
    max-height: calc(100% - 138px);
  }
  .btn.btn-lg { 
    font-size: 12px; 
  }
  account-name h4 { 
    font-size: 14px; 
  }
  .navbar-default .navbar-brand img.logo { 
    height: 16px; 
  }
  .top-nav-sec nav.navbar.bootsnav {
    padding: 10px 10px;
  }
  .botton-ftr-txt {
    font-size: 12px;
  }
  .dev-title-section span.status-txt{
    font-size: 11px;
  }
}


/*media query by diksha*/

@media screen and (max-width: 1024px){
  .feed-tab-section {
    padding: 15px;
  }
  span.stats-icon {
    width: 22px;
  }
  .job-stats span {
    display: inline-block;
  }
  .refer-announce-img-box{
		height: 160px;
		width: 160px;
	}
}
@media screen and (max-width: 990px){
  a.filter-modal-btn {
    display: inline-block;
    background-color: var(--secondary);
    font-size: 18px;
    padding: 7px 40px;
    border-radius: 2px;
    color: var(--white);
    margin: 5px auto 5px;
    transition: 0.5s ease-in-out;
    box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.24);
    cursor: pointer;
  }
  a.filter-modal-btn:hover, a.filter-modal-btn:focus, a.filter-modal-btn:active{
    text-decoration: none;
  }

  /*button flash blinking css*/
  .filter-modal-btn.pulse-button {
    position: relative;
    width: 160px;
    font-size: 14px;
    border: none;
    box-shadow: 0 0 0 0 rgba(33, 99, 138, 0.7);
    border-radius: 70px;
    background-color: #21638a;
    cursor: pointer;
    animation-name: pulse;
    animation-duration: 2.5s;
    animation-iteration-count: 10 !important;
    animation-direction: cubic-bezier(0.50, 0, 0, 1);
    -webkit-animation: pulse 2.5s infinite cubic-bezier(0.50, 0, 0, 1);
    -moz-animation: pulse 2.5s infinite cubic-bezier(0.50, 0, 0, 1);
    -ms-animation: pulse 2.5s infinite cubic-bezier(0.50, 0, 0, 1);
    animation: pulse 2.5s infinite cubic-bezier(0.50, 0, 0, 1);
  }
  @-webkit-keyframes pulse {to {box-shadow: 0 0 0 15px rgba(33, 99, 138, 0);}}
  @-moz-keyframes pulse {to {box-shadow: 0 0 0 15px rgba(33, 99, 138, 0);}}
  @-ms-keyframes pulse {to {box-shadow: 0 0 0 15px rgba(33, 99, 138, 0);}}
  @keyframes pulse {to {box-shadow: 0 0 0 15px rgba(33, 99, 138, 0);}}

  /* Ripple effect */
  .filter-modal-btn.ripple-btn {
    background-position: center;
    transition: background 0.8s;
  }
  .filter-modal-btn.ripple-btn:hover {
    background: var(--secondary) radial-gradient(circle, transparent 1%, var(--secondary) 1%) center/15000%;
  }
  .filter-modal-btn.ripple-btn:active {
    background-color: var(--secondary);
    background-size: 100%;
    transition: background 0s;
  }
  /*button flash blinking css*/

  .sub-btn-filter a.filter-modal-btn {
    display: inline-block;
    background-color: var(--secondary);
    font-size: 18px;
    padding: 5px 35px;
    border-radius: 120px;
    color: var(--white);
    margin: 15px auto 0;
    transition: 0.5s ease-in-out;
    -moz-box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
  .refer-announce-text{
		font-size: 28px;
	}
	.refer-announce-box a.paid-btn {
		font-size: 16px;
		padding: 10px 22px;
	}
  .refer-earn-banner:before{
    left: -30px;
  }
}
@media screen and (max-width: 959px){
  .desktop-view-sec-filter{
    display: none;
  }
}
@media screen and (max-width: 860px){
  span.help-txt {
    font-size: 10px;
  }
  /*.desktop-filter-sidebar {
    display: none;
  }*/
  .reset-btn {
    /*margin-left: 10px;*/
    float: none;
  }
  p.filter-desk {
    display: none;
  }
  
  .filter-icon-mob{
    display: block;
  }
  .job-search-bar .input-group {
    z-index: 0;
  }
  .refer-earn-banner:before{
    left: -80px;
  }
}
@media screen and (max-width: 768px){
  .feed-tab-section {
    padding: 25px 15px 15px;
  }
  .view-job-title h1 {
      font-size: 16px;
  }
  .view-job-title p {
    font-size: 14px;
  }
  .view-job-timezone h2{
    font-size: 16px;
  }
  p.date-p {
    font-size: 14px;
  }
  .view-job-skills h4 {
    font-size: 16px;
  }
  .view-job-lang h4 {
    font-size: 16px;
  }
  /*  .blank-section {   
    width: auto;
  }*/
  .incomplete-warning-modal span.warning-mssg {
    display: inline-flex;
    width: 50%;
    font-size: 14px;
  }
  .refer-earn-banner:before{
    left: -140px;
  }
}
@media screen and (max-width: 767px){
  .hide-sidenav-section {
    display: none;
  }
  .sidenav-tab-mobile {
    display: block;
  }
  .sidenav-tab-mobile, .sm-links-selectbar{
    background-color: var(--white);
    padding: 20px;
    /*box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);*/
    margin-bottom: 15px;
  }
  .col-md-8.center-cols.col-mobilefull001 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .col-xs-6.mobile-rightPadding {
    padding: 0;
  }
  .mobile-rightPadding{
    padding: 0;
  }
  .list-heading h4, .list-heading h3 {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .portfolio-title-sec .list-heading h4, .education-view-list .list-heading h4, 
  .portfolio-title-sec .list-heading h3, .education-view-list .list-heading h3 {
    white-space: inherit;
  }
  span.warning-mssg {
    display: inline;      
    font-weight: 600;
    font-size: 15px;
  }
  #main-header.fixed-slider-header  {
    position: relative;
  }
  .other-sidebar-blocks {
    margin-top: 0;
  }
  p.page-breadcrum-xs {
    display: inline-block;
    /*padding-top: 9px;*/
  }
  span.like-dislike-xs{
    display: inline-block;
    float: right;
  }
  span.like-dislike-xs span.dislike-opt {
    margin-left: 10px;
  }
  a.btn-like, a.btn-dislike {
    height: 38px;
    background-color: var(--white);
    padding: 10px 16px;
  }
  span.like-dislike-xs a.btn-like {
    width: 100px;
  }
  span.like-dislike-xs a.btn-like.active {
    width: 135px;
  }
  span.like-dislike-xs a.btn-dislike {
    width: 80px;
  }
  .profile-like-box.full-page-like.hide-o-xs {
    display: none;
  } 
	.refer-announce-img-box{
		width: 120px;
		height: 120px;				
	}
}
@media screen and (max-width: 736px){
  .incomplete-warning-modal span.warning-mssg {
    width: 100%;
    text-align: center;
  }
  .warning-sec.incomplete-warning-modal {
    text-align: center;
  }
  .incomplete-warning-modal span.warning-btn {
    display: inline-block;
    float: none;
    margin-top: 20px;
  }
}

@media screen and (max-width: 667px){
  /* Ashutosh Sinha CSS for footer Start */
  .refer-banner {
    height: 200px;
  }
  .currency-dropdown-alignment {
    margin-top: 10px;
  }
  /* Ashutosh Sinha CSS for footer End */
}
@media screen and (max-width: 568px){
  .view-posting.modal-title {
    font-size: 14px;
  }
  .view-posting-remove-modal .modal-content {
    border-radius: 2px;
    border: none;
    padding: 15px 20px;
  }
  button.btn.btn-primary.btn-delete {
    /*padding: 10px 18px;
    width: auto;*/
  }
  button.btn.btn-primary.btn-cancel {
    padding: 10px 18px;
  }
  .view-posting-modal-select{
    padding: 2px;
    font-size: 12px;
  }
  .view-job-title h1 {
      font-size: 18px;
  }
  .view-job-title p {
    font-size: 14px;
  }
  .view-job-timezone h2{
    font-size: 14px;
  }
  p.date-p {
    font-size: 14px;
  }
  .view-job-skills h4 {
    font-size: 12px;
  }
  .view-job-lang h4 {
    font-size: 14px;
  }
  .view-posting-modal{
    width: 90%;
  }
  .italic-txt.overlap{
    display: block;
    margin-left: 0px !important;
  }
  .view-job-timezone p {
    font-size: 12px;
  }
  .hire-model-div .form-group {
    margin-bottom: 15px;
  }
  .dev-jobtype.modal-job-select {
    margin-top: 20px;
  }
  .sidenav-tab-mobile, .sm-links-selectbar {
    background-color: var(--white);
    padding: 0;
  }
  .common-div {
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid #f6f6f6;
  }
  .matching-skills-show .common-div, .tools-show .common-div, .positions-show .common-div {
    padding: 10px;
  }
  .mobile-full-btn {
    width: 100%;
    margin-left: 20px;
  }
  .dev-info-block.mrg-btm-0{
    margin-bottom: 10px;
    margin-top: 0;
  }
  p.stats-p.stats-p-xs {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
  }
  .project-show-box, .reviews-show-box {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 5px;
  }
  .portfolio-view-list {
    /* padding-bottom: 5px;
    margin-bottom: 20px; */
  }
  .employe-view-list {
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  /*.portfolio-title-sec .list-heading h4, .education-view-list .list-heading h4,
  .portfolio-title-sec .list-heading h3, .education-view-list .list-heading h3 {
    white-space: inherit;
    line-height: 1.5;
    margin-top: 0px;
    font-size: 12px;
  }*/
  /*.c-logo-sec {
    display: inline-block;
  }*/
  .list-heading.c-title-sec {
    display: inline-block;
    width: calc(100% - 85px);
    vertical-align: middle;
  }
  .content-list-description {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .intro-vd-link-flt a {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-block;
  }
  .availability-show-block.dev-profile ul {
    margin-bottom: 0px;
  }
  /*.availability-show-block.dev-profile ul li p{
    margin-bottom: 0px;
    font-size: 14px;
  }*/
  /*.availability-show-block.dev-profile ul li p span{
    font-size: 13px;
  }*/
  span.like-dislike-xs a.dev-like-btn {
    width: 40px;
    padding: 10px 12px;
  }
  span.like-dislike-xs a.dev-like-btn.active {
    width: 40px;
    padding: 10px 12px;
  }
  span.like-dislike-xs a.dev-like-btn:after {
    left: 55px;
  }
  span.like-dislike-xs span.dev-dislike {
    margin-left: 5px;
  }
  /*.availability-show-block.dev-profile {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 0;
  }
  .availability-show-block.dev-profile ul li {
    width:50%;
  }*/
  .other-sidebar-blocks.other-sidebar-sm .sidepanel-block {
    padding: 10px;
    background-color: var(--white);
    box-shadow: none;
    margin-bottom: 8px;
    border: 1px solid #f6f6f6;
  }
  .common-div.chat-sec {
    display: block;
    height: 500px;
    min-height: 63%;
    position: relative;
    padding: 0px;
  }
  .refer-earn-banner{
		height: auto;		
		padding: 20px 0;
	}
	.refer-earn-banner:before{
		height: 132px;
    left: -35px;
	}
	.refer-announce-img-box{
		width: 90px;
		height: 90px;				
	}
	.refer-announce-text{
		font-size: 20px;
		margin: 0 0 10px 0;
	}
	.refer-announce-box a.paid-btn {
		font-size: 14px;
		padding: 8px 16px;		
	}
  .refer-announce-box{
    max-width: 250px;
  }
}
@media screen and (max-width: 480px){
  .footer-social-sec li a{
    width: 40px;
    height: 40px;
  }
  .footer-social-sec li a i {
    line-height: 38px;
  }
  .currency-dropdown-alignment {
    margin-top: 10px;
  }
  .refer-earn-banner:before{
		height: 132px;
    left: -110px;
	}
  
}
@media screen and (max-width: 400px){
  .refer-earn-banner:before {   
    left: -128px;
  }
  .refer-announce-box a.paid-btn {
		font-size: 13px;
		padding: 5px 10px;		
	}
}
@media screen and (max-width: 360px){
  .currency-dropdown-alignment {
    margin-top: 10px;
  }
  .refer-earn-banner:before{
		height: 132px;
    left: -110px;
	}
}
@media screen and (max-width: 320px){
  .price-range-mobile {
    min-width: 100px;
  }
  
  .refer-earn-banner:before{
    display: none;
  }
  .refer-announce-text {
    font-size: 18px;
  }
}