/*form styles*/
#msform {
    text-align: center;
    position: relative;
    margin-top: 30px;
        width: 70%;
    margin: auto;
}
#msform fieldset:hover {
    background: #dedede;    border-radius: 5px;

transition: all 1s ease;

}
#msform fieldset small{color: #2c3e50;}
#msform fieldset:hover small{color: #2c3e50;}
#msform fieldset:hover .click_reset{color: #3f74ad;}
#msform fieldset:hover .btn_search{background: #ffffff00;}
#msform fieldset:hover input{    border-radius: 10px;transition: all 1s ease;}
/*#msform fieldset:hover input{    border-radius: 10px;transition: all 1s ease;}*/
#msform fieldset:hover .uname{    color: #004358;font-weight: 600;}
#msform fieldset:hover ::placeholder{color: #004358}
.txt_whit{
    color: #fff;
}




.shadow-inset {
    box-shadow: inset 2px 2px 5px #b8b9be, inset -3px -3px 7px #fff !important;
}
.shadow-soft {
    box-shadow: 6px 6px 12px #b8b9be, -6px -6px 12px #fff !important;
}

.reset_pass{  color: #2c3e50;}

.uname{ color: #1f8a70;font-weight: 600;}
#msform fieldset:hover .txt_white, #msform fieldset:hover .reset_pass{  color: #004358;}
#msform fieldset .reset_pass{  padding-left: 21px; margin-top: 14px;cursor:pointer;}
input{transition: all 1s ease;}
.click_reset{color: #3f74ad;}
#msform fieldset {
    background:#DEDEDE;
    border: 0 none;
    border-radius: 5px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
transition: all 1s ease;
    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform input::placeholder{color:#2C3E50; }
/*inputs*/
#msform input, #msform textarea {
   padding: 20px 15px;
    border-radius: 8px;
    border: 0;
    margin-bottom: 10px;
    margin-top: 20px;
    width: 100%;
    margin-right: 35px;
    box-sizing: border-box;
    font-family: montserrat;
    color: #282828;
    /* background: #ffffff82; */
    font-size: 13px;
    cursor: pointer;
    background: #dedede;
    box-shadow: 7px 7px 19px #a9a9a9, -7px -7px 19px #ffffff;
}
#msform input::placeholder{
  color:rgb(6, 90, 34);
}
#msform input:focus, #msform textarea:focus {
    outline-width: 0;    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
/*    border-radius: 50%;*/
background: linear-gradient(145deg, #c8c8c8, #eeeeee);
box-shadow:  7px 7px 19px #a9a9a9,
             -7px -7px 19px #ffffff;
}

/*buttons*/
#msform .action-button {
    width: 160px;
    background: #1f8a70;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    float: right;
}

#msform .action-button:hover, #msform #sign.action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #1f8a70;
    color: #168f71;
}
#msform .action-button:hover, #msform #sign.action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #1f8a70;
  color: #168f71;
  background: #f0f0f0;
}
#msform .action-button-previous {
    width: 100px;
    background: #bedb39;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    float: left;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #bedb39;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    /* letter-spacing: 2px; */
    font-weight: bold;
}
.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #2c3e50;margin: 0 0 0 20px;}
 #msform fieldset:hover .fs-subtitle {

    color: #2c3e50;

}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    width: 33.33%;
    float: left;
    position: relative;
    letter-spacing: 1px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 28px;
    height: 28px;
    line-height: 27px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
        font-weight: 600;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 13px;
    z-index: -1; /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #bedb39;
    color: #004358;    font-weight: 600;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ee0979;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}
        .ui-gradient-green {
            float: left;
/*    background: -moz-linear-gradient(45deg, #fab304 0%, #090504 100%);*/
  background: linear-gradient( 45deg , #bedb39 0%, #bedb39 100%);
    border: 1px solid #004358;
    color: #004358;
    padding: .6rem 1.5rem;
              line-height: 1.4;
    border-radius: 50rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

        .ffp_circle{
            border-radius: 100%;
  color: #004358;
    padding: 20px 5px 15px 5px;
/*    border: 2px solid #e2e0e0;*/
    width: 70px;
    height: 70px;
border-radius: 50%;
background: #dedede;
box-shadow:  7px 7px 19px #a9a9a9,
             -7px -7px 19px #ffffff;
}


        .btn_search{   position: absolute;
          float: right;
          padding: 18px 1px!important;
          color: #004358;
          top: 18px;
          right: 24px;
          border-radius: 0;
          background: #ffffff00;}
::placeholder{color: #fff; letter-spacing: 4;}
.img_width{width: 35%;margin-left: -14px;}
.mrg_bttm{    margin-bottom: 15px;}


/*img loader*/
.box {
  display: none;
  width: 143px;
  height: 147px;
  margin-left: -72px;

/*  border: 1px solid currentcolor;*/
  border-radius: 3px;
  font-size: 30px;
  padding:1.3em 1em;
  position: absolute;
  margin-bottom: 0;
  margin-top: 4.7px;
  vertical-align: top;
  transition: 0.3s color, 0.3s border, 0.3s transform, 0.3s opacity;
}
.box1 {
    display: inline-block;
    width: 143px;
    height: 147px;
    margin-left: -72px;

    /*  border: 1px solid currentcolor;*/
    border-radius: 3px;
    font-size: 30px;
    padding:1.3em 1em;
    position: absolute;
    margin-bottom: 0;
    margin-top: 4.7px;
    vertical-align: top;
    transition: 0.3s color, 0.3s border, 0.3s transform, 0.3s opacity;
}
/*
.box:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 0;
  padding: 0;
  border-width: 3px;
  line-height: 200px;
  opacity: 1;
  transform: scale(1.2);
  z-index: 2;
}
.box:hover [class*=loader-] {
  font-size: 70px;
  line-height: 200px;
}
*/

/*
button {
  display: inline-block;
  background: transparent;
  border: 2px solid currentcolor;
  color: white;
  padding: 0.5em 1em;
  border-radius: 5px;
  font-size: calc(16px + 2vw);
}
*/

[class*=loader-] {
  display: inline-block;
  width: 2em;
  height: 2em;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
}
.loader-08 {
  position: relative;
}
.loader-08:before, .loader-08:after {
  content: "";
  width: inherit;
  height: inherit;
  border-radius: 50%;
    background-color: #c9e6df9c;
    opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loader-08 2s infinite ease-in-out;
          animation: loader-08 2s infinite ease-in-out;
}
.loader-08:after {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
 /* SOCIAL MEDIA VERIFIED IMAGE STYLE START*/
 .sm-verified-img{
  height: 21.8px;
    max-width: 21.8px;
    width: 21.8px;
    object-fit: contain;
    margin-left: -3px;
}
.img-wrapper{
  position: relative;
    width: 43px;
    height: 43px;
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}
.img-wrapper img.show-img{
  position: absolute;
    border-top-right-radius: 10px;
    height: 100%;
    width: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    top: 0;
    left: 0;
}
.img-wrapper span.on-hover-show{
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
}
.img-wrapper:hover img.show-img{
  opacity: 0;
}
.img-wrapper span.on-hover-show.default-user{
  top: -8px;
    left: -8px;
}
.img-wrapper span.on-hover-show.twitter-img-div{
  top: -8px;
    left: -8px;
    z-index: -1;
}
.img-wrapper:hover span.on-hover-show.twitter-img-div{
  z-index: 2;
}
.tab-wrapper{
  position: relative;
}
/* .social-profile-nav-tab.nav-tabs::before{

} */
.social-profile-nav-tab.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff0;
  border-color: #dee2e600 #dee2e600 #1f8a70;
  border-bottom-width: 3px;
}
.social-profile-nav-tab.nav-tabs .nav-link {
  display: block;
  padding: 0.5rem 18.8px;
}
.social-profile-nav-tab.nav-tabs .nav-link:focus, .social-profile-nav-tab.nav-tabs .nav-link:hover {
  border-color: #e9ecef00 #e9ecef00 #dee2e600;
  border-bottom: 3px solid #1f8a70;
}
#prevThumb,#nextThumb{
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #004358;
    background: #dadada;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    box-shadow: inset 2px 2px 5px #b8b9be, inset -3px -3px 7px #fff !important;
    font-size: 16px;
    z-index: 2;
    cursor: pointer;
    font-weight: bolder;
    display: flex;
    justify-content: center;
    align-items: center;
}
#prevThumb{
  left: -18px;
}
#nextThumb{
  right: -18px;
}
.ulpoad-your-image-heading{
  width: 100%;
    height: 10%;
    font-size: 9px;
    position: absolute;
    bottom: 0px;
    left: 0;
    cursor: pointer;
    color: white;
    top: 120px;
}
/* .gender-col{
  text-align: left;
  margin-top: -13px;
} */
.gender-col .fs-subtitle{
  margin:0;
  font-weight: 600;
    font-size: 15px;
    color: #0b4254;
}
.mrg_top_30{margin-top: 30px;}
.gender-col .custom-radio .custom-control-input:checked~.custom-control-label::before {
  background-color: #1f8a70;
}
.gender-col .custom-control-input:focus~.custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgb(117 196 177);
}
.custom-control-label {
  cursor: pointer;
}
.male-div,.female-div{
  display: inline-block;
    margin-top: 5px;
    box-shadow: 7px 7px 19px #a9a9a9, -7px -7px 19px #ffffff;
    margin-bottom: 9px;
}
.male-div img{
  max-width: 60px;
  max-height: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.female-div img{
  max-width: 58px;
  max-height: 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
}
.selected-gender{
  border: 1px solid #dcdada;
    background: #dbd3d900;
    /* box-shadow: 0px 3px 11px -5px #1f8a70; */
    border-radius: 50%;
    padding: 3px 3px 0;
}
.social-profile-nav-tab{
  flex-wrap: nowrap;
    flex-direction: row;
    width: auto;
    padding: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    max-height: 64px;
    overflow-y: hidden;
}
.social-profile-nav-tab::-webkit-scrollbar {
  display: none;
  opacity: 0;
}
#msform input.rememberMeCheckbox{
  margin-right: 0;
    width: 10%;
    margin-left: 0;
}
.fs-subtitle.normal-username{
  margin-top: 18px;
}
  /* SOCIAL MEDIA VERIFIED IMAGE STYLE ENDS*/

#msform input.input-field{
  padding: 20px 46px 20px 12px;
}
#msform .btn.focus,#msform .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(255 255 255 / 0%);
}
.mobile-view{
  display: none;
}
#msform .action-button .loading {
  padding: 12px;
  width: 100%;

}
@-webkit-keyframes loader-08 {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

@keyframes loader-08 {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
.img_h_w{
/*    width: 140px;*/
/*    height: 140px;*/
    background: #004358;
    margin: 17px auto 21px;
  }
.uname_css{text-align: center;width: 80%;
    margin-top: 7px; position: absolute;}
.img_size{border: 2px solid #004358; width: 100%;
   }

.bg_img{    background: url(/webassets/images/login/login_1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.loading {
  display: flex;
  justify-content: center;
  margin-right: -3px;
}
.loading div {
  width: 8px;
  height: 8px;
  margin: -14px 2px 0px;
  background: #004358;
  border-radius: 50%;
  -webkit-animation: 0.9s bounce infinite alternate;
  animation: 0.9s bounce infinite alternate;
}
.loading div:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.loading div:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes bounce {
  to {
    opacity: 0.4;
    transform: translate3d(0, 11px, 0);
  }
}

@keyframes bounce {
  to {
    opacity: 0.4;
    transform: translate3d(0, 11px, 0);
  }
}
@media (max-width: 768px){
    .mrg_top_60{
      margin-top: 27px;
    }
    .img_width{    width: 50%;    margin-left: 0px;}

#msform { width: 104.8%;}
    .img_center{text-align: center;}
    .img_h_w{margin: auto;}
    .img_size{border: 0px solid #004358;
    }
    .box{    margin-left: 0;
      height: 143px;
      width: 100%;
      left: 0;}
    .box1{    margin-left: 0;
        height: 143px;
        width: 100%;
        left: 0;}
    /* .user-profile-pic.box{

    } */
.uname_css {    text-align: center;
  width: 87%;
    margin-top: 7px;
    position: absolute;
    color: #004358;}
.ffp_circle {
  padding: 13.7px 5px 15px 5px;
  width: 56px;
  height: 56px;
}
.font-size-sm-12{
  font-size: 12px;
}
.gender-col {
  text-align: center;
  margin-top: -11px;
}
.male-div img {
  max-width: 48px;
  max-height: 48px;
  width: 48px;
  height: 48px;
}
.gender-col .fs-subtitle {
  font-weight: 600;
  font-size: 12px;
}
#msform .action-button-previous {
  float: none;
}
#msform .action-button {
  margin: 10px auto;
  float: none;
}
.fs-title {
  font-size: 17px;
}
.fs-subtitle {
  margin-bottom: 6px;
  margin-top: 13px;
  width: 100%;
    margin-left: 0;

}
.fs-subtitle.normal-username{
  margin-bottom: 0;
  margin-left: 0;
  margin-top: -11px;
}

.img_h_w  .img_size {
  width:100%;
  height:140px;

}
.desktop-view{
  display: none;
}
.mobile-view{
  display: block;
}
.male-div, .female-div {

  margin-top: 15px;
  margin-bottom: 7px;
}
}








.gradient-border {
  --borderWidth: 5px;
  background: #1D1F20;
  position: relative;
  border-radius: var(--borderWidth);
}
.gradient-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #bedb39, #bedb39, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #bedb39);
  border-radius: calc(2 * var(--borderWidth));
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}
.gtr{transform: inherit !important;}

@keyframes animatedgradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.login-page-row .img_h_w{
    background: #0482aa00;
}
.uname_css{text-align: center;width: 80%;
    margin-top: 7px; position: absolute;}

.login-page-row .uname_css{
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    /*display: inline-block;*/
    padding-right: 6px;
    /*position: relative;*/
}
.profile-setting-sm-tab .uname_css{
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    /*display: inline-block;*/
    /*padding-right: 6px;*/
    /*position: relative;*/
}
/*.login-page-row .uname_css span.verified_social,.profile-setting-sm-tab .uname_css span.verified_social{*/
/*    position: absolute;*/
/*    top: -1px;*/
/*    right: 0;*/
/*}*/
.img_size{border: 2px solid #004358; width: 100%;
}

.login-page-row .img_size {
    height: 146px;
    margin-bottom: 0!important;
}

@media(max-width:480px){
  .login-page-row > div:first-child{
      text-align:center !important;
  }
  #forgotpassword{
      width:100% !important;
  }
}