body,
html {
    font-family: 'nunito', sans-serif;
    font-size: 15px;
    line-height: 22px;
}
.pb-130 {
  padding-bottom:130px;
}
.ctm-i-size {
    font-size: 26px;
}
.app_action{
  float: right;
  padding: 5px;
}
/***new form input****/
.inputholder {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}
.inputholder.focus{
    border-color: #3f51b5;
}
.inputholder.error{
    border-color: #f44336;
}
.inputholder.valid{
    border-color: #4caf50;
}
.inputholder.focus .floating-label{
    color: #3f51b5;
}
.inputholder.error .floating-label{
    color: #f44336;
}
.inputholder.valid .floating-label{
    color: #4caf50;
}

.inputholder.focus i{
    color: #3f51b5;
}
.inputholder.error i{
    color: #f44336;
}
.inputholder.valid i{
    color: #4caf50;
}

.inputholder,
.inputholder * {
  transition: all 0.3s;
}
.inputholder input {
  border-width: 0px !important;
  box-shadow: 0px 0px;
  font-size: 13px;
  color: #000;
  padding: 0px 25px;
  margin-top: 9px;
  box-shadow: 0px 0px;
  border-radius:0px;
}
.inputholder input:focus {
  box-shadow: 0px 0px;
}
.inputholder .floating-label {
  position: absolute;
  font-size: 12px;
  color: #2cc35d;
  font-weight: normal;
  top: 8px;
  left: 35px;
  pointer-events:none;
}
.form-ani > .floating-label {
  font-size: 16px;
  top: 15px;
  color: #9c9c9c;
}

.error > .floating-label {
  font-size: 12px;
  top: 10px;
}
.input_icn {
  position: absolute;
  font-size: 18px;
  top: 15px;
  color: #c2c2c2;
}
i.fas.fa-lock.input_icn {
    font-size: 26px;
}
/*****new form input*******/
/***social share css****/
  .social {
  display: flex;
  align-items: center;
  position: relative;
  width: 280px;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px #dbe3ea;
  border-radius: 50px;
  color: #9aa9b5;
  background: #fff;
  overflow: hidden;
  margin: auto;
  transition: box-shadow .2s ease-out;
}
.social span, .social div {
  margin: auto;
}
.social .social-links {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(62, 130, 251, 0);
  width: 100%;
  height: 100%;
  padding: 0 30px;
  transition: all .25s ease;
}
.social .social-links a {
  margin: auto;
  background: #fff;
  color: #3e82fb;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  line-height: 40px;
  font-size: 15px;
  transform: translate3d(0, 60px, 0);
  transition: all .2s;
}
.social .social-links a:hover {
  background: #89b3fd;
  color: #fff;
}
.social:hover {
  box-shadow: inset 0 0 0 2px #dbe3ea, 0 1rem 20px rgba(62, 130, 251, 0.2);
}
.social:hover .social-links {
  background: #3e82fb;
}
.social:hover .social-links > a {
  animation: elastic .5s ease-out forwards 0s;
}
.social:hover .social-links > a:nth-child(2) {
  animation-delay: 0.05s;
}
.social:hover .social-links > a:nth-child(3) {
  animation-delay: 0.1s;
}
.social:hover .social-links > a:nth-child(4) {
  animation-delay: 0.15s;
}
.social:hover .social-links > a:nth-child(5) {
  animation-delay: 0.2s;
}

@keyframes elastic {
  0% {
    transform: translate3d(0, 60px, 0);
  }
  40% {
    transform: translate3d(0, -5px, 0);
  }
  70% {
    transform: translate3d(0, 5px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
/******end social share css*******/

/******star rating css******/
#half-stars-example {
  /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
  /* make hover effect work properly in IE */
  /* hide radio inputs */
  /* set icon padding and size */
  /* add padding and positioning to half star labels */
  /* set default star color */
  /* set color of none icon when unchecked */
  /* if none icon is checked, make it red */
  /* if any input is checked, make its following siblings grey */
  /* make all stars orange on rating group hover */
  /* make hovered input's following siblings grey on hover */
  /* make none icon grey on rating group hover */
  /* make none icon red on hover */
}
#half-stars-example .rating-group {
  display: inline-flex;
}
#half-stars-example .rating__icon {
  pointer-events: none;
}
#half-stars-example .rating__input {
  position: absolute !important;
  left: -9999px !important;
}
#half-stars-example .rating__label {
  cursor: pointer;
  /* if you change the left/right padding, update the margin-right property of .rating__label--half as well. */
  padding: 0 0.1em;
  font-size: 2rem;
}
#half-stars-example .rating__label--half {
  padding-right: 0;
  margin-right: -0.6em;
  z-index: 2;
}
#half-stars-example .rating__icon--star {
  color: orange;
}
#half-stars-example .rating__icon--none {
  color: #eee;
}
#half-stars-example .rating__input--none:checked + .rating__label .rating__icon--none {
  color: red;
}
#half-stars-example .rating__input:checked ~ .rating__label .rating__icon--star {
  color: #ddd;
}
#half-stars-example .rating-group:hover .rating__label .rating__icon--star,
#half-stars-example .rating-group:hover .rating__label--half .rating__icon--star {
  color: orange;
}
#half-stars-example .rating__input:hover ~ .rating__label .rating__icon--star,
#half-stars-example .rating__input:hover ~ .rating__label--half .rating__icon--star {
  color: #ddd;
}
#half-stars-example .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
  color: #eee;
}
#half-stars-example .rating__input--none:hover + .rating__label .rating__icon--none {
  color: red;
}

#half-stars-readonly {
  /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
  /* make hover effect work properly in IE */
  /* hide radio inputs */
  /* set icon padding and size */
  /* add padding and positioning to half star labels */
  /* set default star color */
  /* set color of none icon when unchecked */
  /* if none icon is checked, make it red */
  /* if any input is checked, make its following siblings grey */
  /* make all stars orange on rating group hover */
  /* make hovered input's following siblings grey on hover */
  /* make none icon grey on rating group hover */
  /* make none icon red on hover */
}
#half-stars-readonly .rating-group {
  display: inline-flex;
}
#half-stars-readonly .rating__icon {
  pointer-events: none;
}
#half-stars-readonly .rating__input {
  position: absolute !important;
  left: -9999px !important;
}
#half-stars-readonly .rating__label {
  cursor: pointer;
  /* if you change the left/right padding, update the margin-right property of .rating__label--half as well. */
  padding: 0 0.1em;
  font-size: 2rem;
}
#half-stars-readonly .rating__label--half {
  padding-right: 0;
  margin-right: -0.6em;
  z-index: 2;
}
#half-stars-readonly .rating__icon--star {
  color: orange;
}
#half-stars-readonly .rating__icon--none {
  color: #eee;
}
#half-stars-readonly .rating__input--none:checked + .rating__label .rating__icon--none {
  color: red;
}
#half-stars-readonly .rating__input:checked ~ .rating__label .rating__icon--star {
  color: #ddd;
}


/**READONLY**/
.star-rating, .back-stars, .front-stars {
  display: flex;
}

.star-rating {
    align-items: center;
    font-size: 2em;
    justify-content: center;
    display: inline-flex;
    line-height: normal;
}

.back-stars {
  color: #ddd;
  position: relative;
}

.front-stars {
  color: orange;
  overflow: hidden;
  position: absolute;
  top: 0;
}
.rating-btn {
    display: flex;
    align-items: center;
    position: relative;
    width: 200px;
    height: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: inset 0 0 0 2px #dbe3ea;
    border-radius: 50px;
    color: #9aa9b5;
    background: #fff;
    overflow: hidden;
    margin: auto;
    transition: box-shadow .2s ease-out;
    margin-top: 7px;
    cursor: pointer;
}
.rating-btn:hover {
    box-shadow: inset 0 0 0 2px #dbe3ea, 0 1rem 20px rgba(62, 130, 251, 0.2);
}
.rating-btn span, .rating-btn div {
    margin: auto;
}
.app-m-title {
    margin-top: 5px;
}
/******end star rating css******/



.thank_you{
    background: #5A5FFF;
}
.thank_you p{
    color: #fff !important;
}
.desk-img{
    max-width: 100%;
    height: auto;
}
.bold-box {
    border: 7px solid #fff;
    border-radius: 50px;
    padding: 12px;
}
.bold-box span {
    color: #fff;
    font-size: 22px;
    padding: 0px;
}
/**social icon css***/
.icon-button {
    background-color: #efefef;
    border-radius: 3.6rem;
    cursor: pointer;
    display: inline-block;
    font-size: 2.0rem;
    height: 3.6rem;
    line-height: 3.6rem;
    margin: 0 5px;
    position: relative;
    text-align: center;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    width: 3.6rem;
}

/* Circle */
.icon-button span {
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
    width: 0;
}
.icon-button:hover span {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 3.6rem;
    margin: -1.8rem;
}
.twitter span {
    background-color: #1da1f2;
}
.instagram span {
    background-color: #405de6;
}
.product-hunt span {
    background-color: #da552f;
}
.medium span {
    background-color: #00ab6c;
}
.facebook span {
    background-color: #3b5998;
}
.dribbble span {
    background-color: #ea4c89;
}
.youtube-square span {
    background-color: #ff0000;
}
.google-plus span {
    background-color: #db5a3c;
}
.linkedin span {
    background-color: #2A71B4;
}

/* Icons */
.icon-button i {
    background: none;
    color: white;
    height: 3.6rem;
    left: 0;
    line-height: 3.6rem;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
    width: 3.6rem;
    z-index: 10;
}
.icon-button .fa-twitter {
    color: #1da1f2;
}
.icon-button .fa-instagram {
    color: #405de6;
}
.icon-button .fa-product-hunt {
    color: #da552f;
}
.icon-button .fa-medium {
    color: #00ab6c;
}
.icon-button .fa-facebook {
    color: #3b5998;
}
.icon-button .fa-dribbble {
    color: #ea4c89;
}
.icon-button .fa-youtube-square {
    color: #ff0000;
}
.icon-button .fa-google-plus {
    color: #db5a3c;
}
.icon-button .fa-linkedin {
    color: #2A71B4;
}
.icon-button:hover .fa-twitter,
.icon-button:hover .fa-instagram,
.icon-button:hover .fa-product-hunt,
.icon-button:hover .fa-medium,
.icon-button:hover .fa-facebook,
.icon-button:hover .fa-dribbble,
.icon-button:hover .fa-youtube-square,
.icon-button:hover .fa-google-plus {
    color: white;
}
.icon-button {
  height: 50px;
  width: 50px;
}
.icon-button i {
  height: 50px;
  width: 50px;
  line-height: 50px;
}
/**social icon css***/
ul.footer-list > li > a:hover {
  color: #20B4F9 !important;
}
.canvas{
    position: absolute;
    top: 0;
    margin: 0;
    padding: 0;
}
.canvas_2, .canvas_3{
    position: absolute;
}
.desktop-list {
    display: block;
}

.mobile-list {
    display: none;
}

.sm_gry_text {
    font-size: 12px;
    color: #989898;
    line-height: 20px;
}
.navbar-left .logo {
    padding: 5px 15px 1px;
    margin-top: 3px;
  }
  .head-icon-pd {
    padding-top: 5px;
    padding-bottom: 5px;
}
.head-btn {
    margin-left: 10px;
    margin-top: 4px;
}
.ctm-nav>li>a {
    position: relative;
    display: block;
    padding: 15px 10px;
}
.head-search {
    padding-top: 11px;
}
.site-logo{
    height: 45px;
}
footer {
    display: block;
    width: 100%;
    clear: both;
    overflow: auto;
    padding: 10px;
    background: #3f3f3f;
    color: #fff;
}

footer>p {
    margin: 0px;
}

.tag_click.btn {
    background: #fff;
    margin: 3px 5px 3px 0px;
}
.container.footer {
    padding-top: 20px;
    padding-bottom: 20px;
}

.page_title_text > span {
    display: inline-block;
    position: relative;
    top: 5px;
}
.m-t-0{
    margin-top: 0;
}

.navbar {
    margin-bottom: 40px;
}

.btn-hldr {
    width: 75%;
    float: none;
    margin: 0 auto;
}

.tab-content {
    line-height: 25px;
}

.heading-3 {
    margin-top: 10px;
    font-weight: 700;
}

.btn-theme {
    padding: 10px 10px !important;
    transition: all .3s;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(to bottom right, #4c8ffa, #3c74ca);
    border-color: #4c8ffa;
}

.btn-success {
    color: #fff;
    background: linear-gradient(to bottom right, #54c576, #41a25c);
    border-color: #54c576;
}

.btn-success {
    color: #fff;
    background: linear-gradient(to bottom right, #54c576, #41a25c);
    border-color: #54c576;
}

.card-new-1 {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    height: 50%;
    width: 100%;
    margin-top: 15px;
}

.card-new-1>img {
    height: 50%;
    width: 100%;
    padding: 5px;
}

.set-para a,
.app-title a {
    text-decoration: none;
    color: #333;
}

.set-img>img {
    height: 50%;
    width: 50%;
}

.card-new {
    background: #FFF none repeat scroll 0% 0%;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    height: 50%;
    width: 100%;
}

.card-new>img {
    height: 50%;
    width: 100%;
    padding: 12px;
}

.card {
    background: #FFF none repeat scroll 0% 0%;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.nav-tabs {
    border-bottom: 2px solid #DDD;
}

.nav-tabs>li>a::after {
    content: "";
    background: #f19005;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: -1px;
    transition: all 250ms ease 0s;
    transform: scale(0);
}

.nav-tabs>li.active>a::after,
.nav-tabs>li:hover>a::after {
    transform: scale(1);
}

.nav-tabs>li.active>a,
.nav-tabs>li>a:hover {
    border: none;
    color: #f19005 !important;
    background: transparent;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    border-width: 0;
}

.nav-tabs>li>a {
    border: none;
    color: #666;
}

.tab-content {
    padding: 20px;
}

.heading-2 {
    margin-top: 0px;
    margin-bottom: 20px;
}

.mtr {
    margin: 0px 0px 20px;
}

.input_holder>img {
    position: absolute;
    left: 10px;
    height: 24px;
    top: 10px;
}

.input_holder {
    display: inline-block;
    position: relative;
}

.input_holder>input {
    height: 40px;
}
.input_holder #search_app:hover {
    border-color: #717274;
}
.ctm-btn_ {
    background: #2ea664 !important;
    color: #fff !important;
    line-height: 40px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .1) !important;
    border: none !important;
    border-radius: .25rem !important;
    box-shadow: none !important;
    text-align: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0px 10px 0px 10px !important;
    margin: 5px 0px 0px 12px !important;
    font-size: 15px;
}

.color-black {
    color: #000;
}

.navbar-default .navbar-nav>li>a {
    color: #000;
}

b {
    font-weight: 900
}

.pad-top-20 {
    padding-top: 12px;
}

.pad-top-15 {
    padding-top: 9px;
}

.pad-top-25 {
    padding-top: 25px;
}

.pad10 {
    padding: 10px;
}

.brdr-left {
    border-left: 1px solid #a0a0a2;
}

.input_holder>input {
    height: 40px;
    width: 350px;
}

.social_icons {
    margin-left: 10px;
}

.list-inline.social_icons>li {
    padding: 5px;
}

.list-inline.social_icons a {
    display: inline-block;
    background: #fff;
    border-radius: 100%;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 40px;
    padding-right: 7px !important;
    color: #565658;
    font-size: 22px;
    border: 2px solid #565658;
}

.list-inline>li>a {
    padding: 0px 14px 0px 8px;
}

.list-inline.social_icons a.fb:hover {
    border-color: #4867aa;
    color: #4867aa;
}

.list-inline.social_icons a.tw:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.list-inline.social_icons a.gplus:hover {
    border-color: #dc473a;
    color: #dc473a;
}

.list-inline.social_icons a.insta:hover {
    border-color: #CE3C83;
    color: #CE3C83;
}

.list-inline.social_icons a.ph:hover,
.list-inline.social_icons a.ph:focus {
    border-color: #da552f;
    color: #da552f;
    text-decoration: none;
}

.list-inline.social_icons a.in:hover {
    border-color: #0077b5;
    color: #0077b5;
    text-decoration: none;
}

.list-inline.social_icons a.mid:hover {
    border-color: #35AD69;
    color: #35AD69;
    text-decoration: none;
}

.list-inline.social_icons a.ph {
    font-weight: bolder;
}


/*******search result css************/

.apps_typeahead {
    min-width: 360px;
    border-radius: 6px;
    z-index: 999 !important;
}

.plastic_typeahead {
    /* background: #fff; */
    border-bottom: 1px solid #e8e8e8;
    /* box-shadow: 0 4px 8px rgba(0,0,0,.2); */
    left: 0;
    list-style-type: none;
    margin: 5px 0 0;
    overflow: hidden;
    position: absolute;
    border-radius: 4px;
    top: 100%;
    width: 100%;
}

a.plastic_typeahead_item {
    color: #2c2d30;
    text-decoration: none;
}

.plastic_typeahead_item {
    align-items: center;
    color: #2c2d30;
    cursor: pointer;
    display: flex;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: .5rem;
    padding-top: .5rem;
}

.apps_typeahead_item_media {
    background: #fff;
    display: inline-block;
    border-radius: 6px!important;
    margin-right: 1rem;
    height: 40px;
    line-height: 40px;
    min-width: 40px;
    text-align: center;
    width: 40px;
}

.apps_typeahead_item_text {
    flex: 1;
    min-width: 0;
}

.apps_typeahead_item_title {
    display: block;
    font-weight: 700;
}

.apps_typeahead_item_desc {
    display: block;
    font-size: .9rem;
}

.apps_typeahead_item_desc,
.apps_typeahead_item_title {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.2rem;
}

.form-control.ui-autocomplete-input {
    padding-left: 40px;
}

.pointer {
    cursor: pointer;
}

.pointer label {
    cursor: pointer;
}

.hr-t {
    padding: 0px 33px 0px 28px;
}

.btn-primary:focus,
.btn-primary:hover {
    background-color: #265a88;
    background-position: 0 -15px;
}

.btn-success:focus,
.btn-success:hover {
    background-color: #419641;
    background-position: 0 -15px;
}


/*******end search result css************/

.apps_categories {
    z-index: 2;
}

.sidebar_menu {
    margin-bottom: 2rem;
    overflow-y: auto;
}

.sidebar_menu_header {
    font-size: 18px;
    font-weight: 900;
    line-height: 22px;
    padding: 0 9px;
    margin-bottom: 12px;
}
.sidebar_menu_header.col-sec {
    margin-top: 8px;
}
ul.sidebar_menu_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a.sidebar_menu_list_item {
    color: #2c2d30;
}

.sidebar_menu_list_item {
    cursor: pointer;
    font-size: 15px!important;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #2c2d30;
    line-height: 15px;
    padding: 4px 8px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.sidebar_menu_list_item:not(.is_active):hover {
    background-color: #eaf5fc;
    border-color: #dcf0fb;
    text-decoration: none;
}

.page_title_container {
    align-items: baseline;
    margin-bottom: 1rem;
    display: flex;
}

.page_title_container .page_title_text {
    font-weight: 900;
    float: left;
    flex: 1;
    margin-bottom: 0;
    font-size: 24px;
}

.page_title_container .page_title_action {
    float: right;
}

label.select {
    position: relative;
}

.align_items_center {
    align-items: center;
}

label.select.small select {
    line-height: 1.2rem;
    margin-bottom: 0;
    margin-top: 0;
}

.page_title_container .page_title_action select {
    width: auto;
}

.sort-by {
    float: left;
    margin-right: 10px;
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
}
.m-l-10{
    margin-left: 10px;
}
.media_list {
    border: 1px solid #e8e8e8;
    margin: 0;
    background-color: #fff;
    line-height: normal;
    padding: 0;
}

.rounded {
    border-radius: 6px!important;
}

.media_list>li {
    list-style-type: none;
    position: relative;
    align-items: center;
    display: flex;
}

.media_list.rounded li.interactive:first-child a,
.media_list.rounded_top li.interactive:first-child a {
    border-top: none;
    border-radius: 6px 6px 0 0;
}

.media_list>li.interactive a {
    color: #2c2d30;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    z-index: 1;
    position: relative;
}

.media_list>li .media_list_inner {
    align-items: center;
    display: flex;
    color: #2c2d30;
    position: relative;
    padding: 1rem;
    width: 100%;
}

.media_list>li .media_list_media {
    margin-right: .75rem;
    border-radius: 6px!important;
}

.icon_28 {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 28px;
}

.media_list>li .media_list_text {
    align-items: center;
    color: #717274;
    flex: 1;
    min-width: 0;
    display: flex;
    white-space: nowrap;
}

.media_list>li.interactive .media_list_title {
    text-decoration: none;
    font-weight: 700;
    color: #2c2d30;
    margin-right: .5rem;
    flex: 0 0 auto;
}

.media_list_title {
    font-weight: 700;
    color: #2c2d30;
    /*margin-right: 0.5rem;*/
}

.media_list_subtitle {
    color: #717274;
    min-width: 0;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: .5rem;
    margin-left: 3px;
}

a.media_list_inner:hover {
    text-decoration: none;
    background: #eaf5fc;
    border-color: #cbe7f7;
    outline: 0;
    cursor: pointer;
}

.media_list>li+li:before {
    position: absolute;
    border-top: 1px solid #e8e8e8;
    content: '';
    top: 0;
    left: 1rem;
    right: 1rem;
}

.sidebar_menu_list_item.is_active {
    background-color: #0576b9;
    border-color: #0576b9;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .1);
}

.sidebar_menu_list_item.is_active:hover {
    text-decoration: none;
}

.mtb-25 {
    margin-top: 25px;
    margin-bottom: 25px;
}

.heading-4 {
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #999;
}

input#search_app {
    padding-left: 40px;
}

input#search_app_1 {
    padding-left: 40px;
}

.loading {
    background: #000713 none repeat scroll 0 0;
    bottom: 0;
    left: 0;
    opacity: 1;
    overflow: hidden;
    perspective: 10000px;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 800ms ease-in-out 0s;
    z-index: 10000;
}

.loading.api {
    opacity: 0.8;
}

.spinner {
    -moz-user-select: none;
    bottom: 0;
    height: 2em;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 10em;
    color: #fff;
}

.loader-container {
    width: 70px;
    height: 35px;
    overflow: hidden;
    position: absolute;
    top: calc(50% - 17px);
    left: calc(50% - 35px);
}

.loader {
    width: 70px;
    height: 70px;
    border-style: solid;
    border-top-color: #FFF;
    border-right-color: #FFF;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotate1 3s ease-in-out infinite;
    transform: rotate(-200deg)
}

.loader2 {
    width: 70px;
    height: 70px;
    border-style: solid;
    border-top-color: #000;
    border-right-color: #000;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotate1 3s ease-in-out infinite;
    transform: rotate(-200deg)
}

@keyframes rotate1 {
    0% {
        border-width: 10px;
    }
    25% {
        border-width: 3px;
    }
    50% {
        transform: rotate(115deg);
        border-width: 10px;
    }
    75% {
        border-width: 3px;
    }
    100% {
        border-width: 10px;
    }
}

.spinner {
    -moz-user-select: none;
    bottom: 0;
    height: 2em;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 10em;
    color: #fff;
}

.ml10 {
    margin-left: 10px;
}

.mb-50 {
    margin-bottom: 50px;
}

.page {
    position: relative;
}

.ctm-alert {
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    position: fixed;
    bottom: -20px;
    width: 100%;
    display: none;
}

.ctm-alert.alert-primary {
    background: #4490DE;
    color: #fff;
    text-align: center;
}

button.btn.alert-btn {
    background: transparent;
    border: 2px solid #fff;
    padding: 5px 15px;
}

.alert-close {
    float: right;
    vertical-align: middle;
    margin-top: 10px;
}

.alert-close a {
    color: #fff;
}

.hvr_effect {
    position: relative;
    overflow: hidden;
}

.hvr_effect::after {
    content: "";
    height: 100%;
    width: 50px;
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: 0%;
    transition: all .5s;
    transform: skewX(30deg);
    margin-left: -60px;
}

.hvr_effect:hover::after {
    margin-left: 10px;
    left: 100%;
}

.error {
    color: #cc0000;
    font-weight: bolder;
    text-align: left;
}

.select2-container .select2-choice>.select2-chosen {
    color: #fff;
}

.select2-container .select2-choice {
    border: none;
    border-radius: 0 !important;
}

.select2-container.form-control {
    padding: 3px;
}

a.select2-choice.select2-default {
    background: transparent;
    border: 0;
}

.select2-container .select2-choice .select2-arrow b {
    background-color: #2d384c !important;
    background-position: 0 1px !important;
}

.select2-container .select2-choice {
    background-image: none !important;
    background: none !important;
    background-color: transparent !important;
}


/*****home page css******/


/**********************
/***** Services *******
/*********************/

@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
section {
    clear: both;
}

section .section-title {
    text-align: center;
    color: #007b5e;
    margin-bottom: 50px;
    text-transform: uppercase;
}

#what-we-do {
    background: #ffffff;
}

#what-we-do .card {
    padding: 1rem!important;
    border: none;
    margin-bottom: 1rem;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}

#what-we-do .card:hover {
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

#what-we-do .card .card-block {
    padding-left: 50px;
    position: relative;
}

#what-we-do .card .card-block a {
    color: #007b5e !important;
    font-weight: 700;
    text-decoration: none;
}

#what-we-do .card .card-block a i {
    display: none;
}

#what-we-do .card:hover .card-block a i {
    display: inline-block;
    font-weight: 700;
}

#what-we-do .card .card-block:before {
    font-family: FontAwesome;
    position: absolute;
    font-size: 39px;
    color: #007b5e;
    left: 0;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
}

#what-we-do .card .block-1:before {
    content: "\f0e7";
}

#what-we-do .card .block-2:before {
    content: "\f0eb";
}

#what-we-do .card .block-3:before {
    content: "\f00c";
}

#what-we-do .card .block-4:before {
    content: "\f209";
}

#what-we-do .card .block-5:before {
    content: "\f0a1";
}

#what-we-do .card .block-6:before {
    content: "\f218";
}

#what-we-do .card:hover .card-block:before {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    transition: .5s all ease;
}


/*****home page css******/


/*------------------Popup Design------------------*/


/*------------------Popup Design------------------*/


/*------------------Popup Design------------------*/

.color-white {
    color: #fff;
}

.modl_check>input[type="checkbox"]+.checkbox_span {
    display: inline-block;
    height: 20px;
    width: 20px;
    background: #1bb934;
    border-radius: 3px;
    margin-bottom: -4px;
}

.status {
    display: inline-block;
    height: 13px;
    width: 13px;
    border: 3px solid #2399f1;
    border-radius: 100%;
    margin-bottom: -2px;
}

.modl_check {
    position: relative;
    padding: 10px 0px;
}

.btn.btn-primary {
    background: #289df5;
    border-radius: 5px;
}

.modal-backdrop {
    background-color: #062350;
}

.close {
    color: #fff;
    opacity: 0.2;
    text-shadow: 0px 0px 0px;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .75s linear !important;
    -o-transition: opacity .75s linear !important;
    transition: opacity .75s linear !important;
}

.modal-backdrop.in {
    filter: alpha(opacity=75);
    opacity: .75;
}

.modal-content.clearfix {
    background: #222c3c;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    border-radius: 5px;
    padding: 20px;
}

.img_circle,
.img_circle img {
    height: 70px !important;
    width: 70px !important;
    overflow: hidden !important;
    border-radius: 100% !important;
}

.margin_0 {
    margin: 0px;
}

.vrtcl_mdl {
    vertical-align: middle;
}

.form-control.dark_input {
    background: #273142;
    border: 1px solid #2d384c;
    color: #fff;
}

.form-control.dark_input::-webkit-placeholder {
    color: #707f94;
}

.form-control.dark_input::-moz-placeholder {
    color: #707f94;
}

.form-control.dark_input::-ms-placeholder {
    color: #707f94;
}

.form-control.dark_input::placeholder {
    color: #707f94;
}

.modal_footer {
    background: #273142;
    padding: 20px;
    margin: 10px -20px -20px -20px;
}

.media-right.ctm-close {
    vertical-align: top !important;
    ;
}

.select2-container .select2-choice .select2-arrow b {
    background-color: #2d384c;
    background-position: 0 4px;
}

.modl_check>input[type="checkbox"] {
    position: absolute;
    height: 20px;
    width: 20px;
    opacity: 0;
}

.modl_check>input[type="checkbox"]:checked+.checkbox_span {
    background: #1bb934 url("../images/white_check.png");
    background-size: 85%;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-position: center center;
}


/*------------------Popup Design------------------*/


/*------------------Popup Design------------------*/


/*------------------Popup Design------------------*/

.btn-2 {
    letter-spacing: 0;
    width: 80px;
    text-align: center;
    padding: 15px 0px !important;
    transition: all .3s;
}

.btn-2:hover,
.btn-2:active {
    letter-spacing: 3px;
}

.btn-2:after,
.btn-2:before {
    backface-visibility: hidden;
    border: 1px solid green;
    bottom: 0px;
    content: " ";
    display: block;
    margin: 0 auto;
    position: relative;
    transition: all .3s;
    width: 0;
    opacity: 0;
}

.btn-2:hover:after,
.btn-2:hover:before {
    backface-visibility: hidden;
    border-color: green;
    transition: width 350ms ease-in-out;
    width: 70%;
    opacity: 1;
}

.btn-2:hover:before {
    bottom: auto;
    top: 0;
    width: 70%;
}

.color-white {
    color: #fff !important;
    font-weight: normal;
}

.btn-success {
    background-color: #398439 !important;
    border-color: #255625 !important;
}

.btn-qlearly {
    padding: 10px !important;
    display: inline-block !important;
    border: 1px solid #20B4F9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.btn-qlearly>span {
    position: relative;
    z-index: 2;
    color: #20B4F9;
}

.btn-qlearly:hover span {
    color: #fff;
}

.btn-qlearly:hover::after {
    transform: scale(0);
}

.btn-qlearly::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #20B4F9;
    z-index: 0;
}

.btn-qlearly::after {
    content: "";
    display: block;
    height: 10em;
    width: 12em;
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    z-index: 1;
    margin-left: -6em;
    margin-top: -5em;
    transition: all .5s;
    transform: scale(1);
}

a.color-black.btn-3:hover {
    color: #20B4F9 !important;
}

a.brdr-left.color-black:hover {
    color: #20B4F9 !important;
}

.btn-block {
    background: #3C5EFD;
    color: #fff;
}

a.app-link {
    text-decoration: none;
    color: #333;
}

a.app-link:hover {
    text-decoration: none;
    color: #20B4F9;
}

.mb-menu {
    padding: 9px 5px;
}

@media (max-width: 1200px) {
    .input_holder>input {
        /* width: 200px !important; */
    }
    .navbar-nav>li>a {
        font-size: 13px;
        padding: 13px 5px;
    }
}
@media (max-width: 1024px) {
   .desktop-list {
        display: none !important;
    }
}
@media (min-width: 768px) {

    .desktop-list {
        display: block;
    }
    .mobile-list {
        display: none;
    }
    .desk-title {
        display: block;
    }
    .navbar-nav.navbar-center {
        position: absolute;
        left: 45%;
        transform: translatex(-50%);
    }
    .flex_inr {
        display: none;
    }
    .btn-hldr>div {
        width: 100%;
        float: left;
        margin: 5px 0px !important;
        padding: 0px 10px;
    }
    .btn-hldr>div>* {
        width: 100%;
        margin: 0px !important;
    }
}

@media (max-width: 767px) {
  
  .pb-130 {
  padding-bottom:50px;
}
  .features_sec .media > * {
        display: block;
        text-align: center;
        width: auto;
        margin: 5px 0px;
    }
    .features_sec .media .flex-media {
        left: 0;
        margin: 0 auto;
    }
    .social{
        box-shadow: inset 0 0 0 2px #dbe3ea, 0 1rem 20px rgba(62, 130, 251, 0.2);
        background: #3e82fb;
    }
    .social-links {
        background: #3e82fb !important;
    }
    .social-links > a {
        animation: elastic .5s ease-out forwards 0s;
    }
    .social span, .social div {
        color: #3e82fb;
    }

    .navbar-nav.navbar-center {
        left: 37%;
    }
    .desktop-list {
        display: none !important;
    }
    .mobile-list {
        display: block;
    }
    .page_title_container{
        display: inline-block;
    }
    .page_title_container .page_title_action {
        float: right;
        width: 100%;
        margin-top: 30px;
        padding: 0;
    }
    label.select {
        position: relative;
        width: 100%;
    }
    label.select.small select {
        line-height: 1.2rem;
        margin-bottom: 0;
        margin-top: 0;
        width: 80%;
    }
    .desk-title {
        display: none;
    }
    .app-title a,
    .app-title p {
        width: 100%;
        display: inline-block;
        text-align: left;
    }
    .flex_hldr.newflex {
        display: flex;
        margin-bottom: 10px;
    }
    .flex_hldr.newflex>.card-new-1 {
        flex-basis: 80px;
        margin: 0px;
    }
    .flex_hldr.newflex .app-title {
        flex-basis: 1;
        padding-left: 10px;
    }
    .ctm-btn {
        margin: 4px 12px !important;
    }
    .navbar-collapse .pad-top-20,
    .navbar-collapse .pad-top-15 {
        padding: 0px;
    }
    .btn-hldr {
        width: 100%;
    }
    .input_holder {
        width: 100%;
        padding: 0px 10px;
    }
    .input_holder>img {
        position: absolute;
        left: 20px;
    }
    .input_holder>input {
        width: 100% !important;
    }
    .navbar-nav>li>a {
        font-size: 15px;
        padding: 10px;
    }
    .btn-hldr>div {
        width: 50%;
        float: left;
        margin: 5px 0px !important;
        padding: 0px 10px;
    }
    .flex_hldr .set-img {
        width: 60px;
    }
    .flex_hldr {
        display: flex;
    }
    .flex_hldr .set-img>img {
        width: 100%;
        height: auto;
    }
    .flex_inr {
        padding-left: 10px;
    }
    .navbar-left>a>img {
        /* padding: 5px 0px 0px 5px; */
    }
    .navbar-left {
        float: left;
        padding: 5px;
    }
    .navbar-middle {
        float: left;
        margin-top: 9px;
        width: 100%;
    }
    #ui-id-2 {
        width: 230px !important;
    }
    .sidebar_menu {
        display: none;
    }
    .turnpopup {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: #fff;
        top: 0;
        left: 0;
        display: block;
    }
    .apps_categories_selector {
        border-bottom: 1px solid #e8e8e8;
        /* -webkit-user-select: none; */
        -moz-user-select: none;
        -ms-user-select: none;
        /* user-select: none; */
        display: block;
    }
    .right-arrow {
        float: right !important;
        right: 0.8rem !important;
    }
    .app_categories_selector_label {
        font-size: 15px;
        line-height: 50px;
        padding-left: 16px;
        color: #2c2d30!important;
        text-decoration: none;
    }
    .page_title_container .page_title_text {
        font-size: 18px;
    }
}

@media (max-width: 414px) {
  hr.mobile-hr {
    display: none;
}
.app_action{
  float: left;
  width: 100%;
  padding: 0;
}
    .site-logo {
        height: 50px;
    }
    .bg1{
        height: 285px;
    }
    .m-t-200 {
        margin-top: 45px;
    }
    .m-t-50 {
        margin-top: 100px;
    }
    body,html{
        overflow-x: hidden;
    }
    .icon-button {
      height: 40px;
      width: 40px;
      margin: 0 1px;
    }
    .icon-button i {
      height: 40px;
      width: 40px;
      line-height: 40px;
    }
    .icon-button:hover span {
        width: 45px;
        height: 45px;
        border-radius: 3.6rem;
        margin: -22px;
    }
    /**social icon css***/

}

@media (max-width: 360px) {
    /* .navbar-middle{
      width: 67%;
    }
    .navbar-left>a>img {
        padding: 8px 0px 0px 5px;
    } */
}

@media (max-width: 320px) {
    .mb-menu {
        padding: 9px 3px;
    }
    label.select.small select {
        width: 80%;
    }
}


/**content placehoder**/
@-webkit-keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }
    100% {
        background-position: 468px 0
    }
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }
    100% {
        background-position: 468px 0
    }
}

.timeline-wrapper {
    background-color: #e9eaed;
    color: #141823;
    padding: 20px;
    border: 1px solid #ccc;
}

.timeline-item {
    background: #fff;
    /*border: 1px solid;*/
    border-color: #e5e6e9 #dfe0e4 #d0d1d5;
    border-radius: 3px;
    padding: 12px;
    margin: 0 auto;
    max-width: 472px;
    /* min-height: 200px;*/
}

.animated-background {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: placeHolderShimmer;
    animation-name: placeHolderShimmer;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: #eeeeee;
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eeeeee), color-stop(18%, #dddddd), color-stop(33%, #eeeeee));
    background: -webkit-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    -webkit-background-size: 800px 104px;
    background-size: 800px 104px;
    height: 55px;
    position: relative;
}

.background-masker {
    background: #fff;
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.outlined .background-masker {
    border: 1px solid #ddd;
}

.outlined:hover .background-masker {
    border: none;
}

.outlined:hover .background-masker:hover {
    border: 1px solid #ccc;
    z-index: 1;
}

.background-masker.header-top,
.background-masker.header-bottom,
.background-masker.subheader-bottom {
    top: 0;
    left: 40px;
    right: 0;
    height: 10px;
}

.background-masker.header-left,
.background-masker.subheader-left,
.background-masker.header-right,
.background-masker.subheader-right {
    top: 10px;
    left: 40px;
    height: 8px;
    width: 10px;
}

.background-masker.header-bottom {
    top: 18px;
    height: 6px;
}

.background-masker.subheader-left,
.background-masker.subheader-right {
    top: 24px;
    height: 6px;
}

.background-masker.header-right,
.background-masker.subheader-right {
    width: auto;
    left: 300px;
    right: 0;
}

.background-masker.subheader-right {
    left: 230px;
}

.background-masker.subheader-bottom {
    top: 30px;
    height: 10px;
}

.background-masker.content-top,
.background-masker.content-second-line,
.background-masker.content-third-line,
.background-masker.content-second-end,
.background-masker.content-third-end,
.background-masker.content-first-end {
    top: 40px;
    left: 0;
    right: 0;
    height: 6px;
}

.background-masker.content-top {
    height: 20px;
}

.background-masker.content-first-end,
.background-masker.content-second-end,
.background-masker.content-third-end {
    width: auto;
    left: 380px;
    right: 0;
    top: 60px;
    height: 8px;
}

.background-masker.content-second-line {
    top: 68px;
}

.background-masker.content-second-end {
    left: 420px;
    top: 74px;
}

.background-masker.content-third-line {
    top: 82px;
}

.background-masker.content-third-end {
    left: 300px;
    top: 88px;
}
/**content placehoder**/
