/* --------------------------------------------------------
   Project Name: National Direct
   Version: 1.0
   Created: 26.06.2018
   Last Modified: 00.00.0000 by Name
   Author Name: Razaullah Khan
   Author Email: irazakhan611@gmail.com
----------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900');

*{
  margin:0;
  padding: 0;
  outline: none;
  border:none;
  text-decoration : none;
}
img {
  max-width: 100%;
  display: block;
}
a{
  text-decoration:none;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
  display: block;
}

.wrapper{
  float: left;
  width: 100%;
  font-family: 'Libre Baskerville', sans-serif;
}

.content {
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  box-sizing: border-box;
}

a:hover {
    text-decoration: none;
}

.my-button {
    display: inline-block;
    padding: 6px 22px;
    font-size: 12px;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
}

.my-button-s1 {
    border-radius: 4px;
}

.my-button-s2 {
    border-radius: 25px;
    padding: 12px 27px;
}

.my-button.my-button-s2 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.my-button-trans {
  background: transparent;
  color: #323232;
}

.my-button-s2.my-button-trans {
  color: #fff !important;
}

.my-button-normal {
  background: #fff;
  color: #323232;
}

.my-button-gray {
  background: #efefef;
  color: #323232;
}

.my-button-primary {
  background: #4479e9;
  color: #fff;
}




/* ========== Header STYLES // START ========== */

header {
  width: 100%;
  float: left;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

header.solid {
    position: static;
    /* border-bottom: 2px solid rgba(0,0,0,0.1); */
    background: #fff;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.08);
}


header .content {
  overflow: visible;
}

.logo {
  width: 100px;
  margin-top: 20px;
  margin-bottom: 16px;
  float: left;
}

header.solid .logo {
  margin-top: 15px;
}

nav {
  float: right;
  width: 79.7%;
  position:  relative;
  margin-top: 41px;
}

.nav-container {
  width: 100%;
  max-width: 100%;
}

nav input[type=checkbox] {
  display: none;
}

#nav-icon {
  float: left;
  width: 26px;
  height: 22px;
  position: relative;
  margin-left: 8px;
  margin-right: 8px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#nav-icon span {
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  height: 4px;
  width: 100%;
  border-radius: 9px;
  background: #fff;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

header.solid #nav-icon span {
  background: #000;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 8px;
}

#nav-icon span:nth-child(4) {
  top: 16px;
}

nav input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

nav .mobile-menu {
  float: left;
  width: 100%;
}

nav .menu {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left:  9px;
  padding-right: 8px;
  width: 75.4%;
  position: relative;
  float: left;
}

nav .menu li {
  padding-left: 6px;
  padding-right: 6px;
}

nav .menu li.dropdown {
  position: static;
}

nav .menu li a {
  font-size: 14px;
  color: #ffffff !important;
  text-transform: uppercase;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  height: 25px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing:  border-box;
  font-family: "Quicksand", sans-serif;
  padding-bottom: 4px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

header.solid nav .menu li a {
  color: #000000 !important;
}

nav .menu li a:hover,
nav .menu li a.active {
  color: #fff !important;
  text-decoration: none;
}

nav .menu li.dropdown a {
  background: url(../img/nav-item-bg.png) no-repeat right 8px;
}

header.solid nav .menu li.dropdown a {
  background: url(../img/nav-item-bg-2.png) no-repeat right 8px;
}

.closemenu,
.burgermenu {
  display: none;
}

nav .menu li:hover .sub-menu {
  display: block;
}

nav .sub-menu {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  background: #ffffff;
  padding-top: 0;
  display: none;
  box-shadow: 1px 1px 22px 1px rgba(0,0,0,0.12);
  z-index: 10;
  border-radius: 5px;
}

nav .sub-menu .content {
  padding-left: 26px;
}

nav .sub-menu .sub-menu-container {
  width: 100%;
  float: left;
  padding-right: 0;
  box-sizing: border-box;
  padding-top: 18px;
  padding-bottom: 11px;
}

nav .sub-menu ul {
  list-style: none;
  float: left;
  text-align: left;
  width: 35.5%;
  margin-bottom: 5px;
  padding-left: 0;
}

nav .sub-menu ul:last-child {
  width: 27%;
  float: right;
}

nav .sub-menu ul li {
  width: 100%;
  box-sizing: border-box;
  line-height: 22px;
  /*background: url(../images/nav-sub-menu-item-bg.png) repeat-x bottom center;*/
  padding-left: 0;
  padding-right: 0;
}

nav .sub-menu ul h4 {
  font-size: 20px;
  font-weight: 600;
  color: #010101;
  font-family:  "Montserrat", sans-serif;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

nav .sub-menu ul li a {
  font-size: 13px;
  color: #000000 !important;
  height: auto;
  display:  block;
  text-align:  left;
  text-transform: none;
  letter-spacing: 0.2px;
  padding-left: 4px;
  padding-right: 4px;
}

nav .sub-menu ul li a:hover {
  color: #4479e9 !important;
}

nav .menu li.dropdown:hover ul li a {
  background: unset;
}

.nav-buttons {
  float:right;
  margin-top: -5px;
}

.nav-buttons ul li {
    padding-left: 4px;
    padding-right: 4px;
    display: inline-block;
}

.nav-buttons ul li:last-child {
    padding-right: 2;
}

header .nav-buttons .my-button {
    text-transform: uppercase;
}

.my-account-dropdown .account-dropdown-menu {
  width: 130px;
  min-width: 130px;
  background: #ffffff;
  padding-top: 0;
  box-shadow: 1px 1px 22px 1px rgba(0,0,0,0.12);
  z-index: 10;
  border-radius: 5px;
  text-align: right;
  border: 1px solid #cfcfcb;
  border-top: 1px solid #efefef;
  margin-top: 0px;
  padding-top: 13px;
  display: none;
  position: absolute;
  padding-bottom: 8px;
}

.my-account-dropdown:hover .account-dropdown-menu {
  display: block;
}

.my-account-dropdown .account-dropdown-menu a {
  background: transparent;
  font-size: 13px;
  line-height: 19px;
  color: #000000;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  padding-left: 20px;
  padding-right: 20px;
}

.my-account-dropdown .account-dropdown-menu a:hover {
  color: #4377e5;
}

.my-account-dropdown .account-dropdown-menu .dropdown-divider {
  border-top: 1px solid #e5e5e5 !important;
  margin: 3px 0;
}


/* ========== Header STYLES // END ========== */





/* ========== Banner STYLES // START ========== */

.banner {
    width: 100%;
    float: left;

}

.banner .banner-container {
    width: 100%;
    height: 640px;
    margin-left: auto;
    margin-right: auto;
    background: url(../img/banner-main.jpg) no-repeat center top;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}

.banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding-left: 15px;
    padding-right: 15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner .banner-content {
    text-align: left;
    margin-top: 48px;
    width: 100%;
    max-width: 1130px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}


.banner .banner-content .banner-heading {
    font-size: 60px;
    font-weight: 500;
    color: #ffffff;
    font-family: "Quicksand", sans-serif;
    line-height: 65px;
    margin-bottom: 18px;
}

.banner .banner-content .banner-heading span {
    display: block;
}

.banner .banner-content .banner-desc {
    font-size: 22px;
    font-weight: 100;
    color: #ffffff;
    font-family: "Libre Baskerville", sans-serif;
    margin-bottom: 30px;
    width: 100%;
    max-width: 542px;
}

.banner .banner-content .btn-banner {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    border: 2px solid #168e95;
    width: 142px;
    display:  inline-block;
    height: 42px;
    line-height: 30px;
    letter-spacing: 0.5px;
    margin-top: 0px;
}

.banner .banner-content .link {
    font-size: 12px;
    font-weight: 100;
    color: #ffffff;
    font-family: "Libre Baskerville", sans-serif;
    padding: 12px 21px;
    letter-spacing: 0.8px;
    font-style: italic;
}

/* ========== Banner STYLES // END ========== */





/* ========== Who Used Us STYLES // START ========== */

.who-used-us {
    width: 100%;
    float: left;
    padding-top: 73px;
    padding-bottom: 18px;
}

.who-used-us h3 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 42px;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 25px;
}

.who-used-us p {
    font-size: 16px;
    font-weight: 400;
    color: #545454;
    line-height: 26px;
    font-family: "Libre Baskerville", sans-serif;
    margin-bottom: 10px;
    width: 100%;
    max-width: 430px;
}

.who-used-us .sect-half {
    float: left;
    width: 50%;
    padding-right: 10px;
    margin-bottom: 30px;
}

.who-used-us .sect-half .sect-content {
  width: 100%;
  max-width: 492px;
  float: left;
  /* padding-left: 8%; */
  box-sizing: border-box;
}

.who-used-us .sect-half a {
    width: 50%;
    max-width: 250px;
    display: block;
    float: left;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 10px;
    box-sizing: border-box;
}

/* ========== Who Used Us STYLES // END ========== */




/* ========== Features STYLES // START ========== */

.features {
  width: 100%;
  float: left;
  background: #4479e9;
  padding-top: 67px;
  padding-bottom: 78px;
}

.features h3 {
  width: 100%;
  text-align: center;
  font-size: 36px;
  color: #ffffff;
  line-height: 42px;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 30px;
}

.features .features-con {
  width: 100%;
  float: left;
}

.features .feature-single {
  width: 33.3%;
  float: left;
  text-align: center;
  margin-bottom: 13px;
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
}

.features .feature-single:nth-child(3n+1) {
  clear: both;
}

.features .feature-single .img-con {
  height: 117px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features .feature-single .img-con img {
  display: inline-block;
}

.features .feature-single .feature-content {
  width: 100%;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
  height: 80px;
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
}

.features .feature-single p {
  font-size: 14px;
  color: #ffffff;
  line-height: 22px;
  font-family: "Libre Baskerville";
}

/* ========== Features STYLES // END ========== */





/* ========== Featured Sect STYLES // START ========== */

.featured-sect {
  width: 100%;
  float: left;
  padding-top: 60px;
  padding-bottom: 66px;
  text-align: center;
  background: url(../img/featured-sect-bg-01.jpg) no-repeat center center;
}

.featured-sect h4 {
  font-size: 36px;
  line-height: 48px;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 25px;
}

.featured-sect .my-button {
  margin-bottom: 11px;
}

.featured-sect p {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 26px;
  font-style: italic;
  font-family: "Libre Baskerville", sans-serif;
  letter-spacing: 0.8px;
}

/* ========== Featured Sect STYLES // END ========== */




/* ========== Why Premium Sect STYLES // START ========== */

.why-premium {
  width: 100%;
  float: left;
  padding-top: 93px;
  padding-bottom: 68px;
}

.why-premium .sect-img {
  float: left;
  width: 42%;
  margin-top: 14px;
  margin-bottom: 30px;
}

.why-premium .sect-img img {
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 4px 14px 3px rgba(0,0,0,0.1);
}

.why-premium .sect-content {
  float: left;
  width: 58%;
  padding-left: 2.9%;
  box-sizing: border-box;
  padding-right: 2.9%;
}

.why-premium .sect-content h4 {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  line-height: 42px;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 25px;
}

.why-premium .sect-content ul {
  list-style: none;
}

.why-premium .sect-content ul li {
  font-size: 16px;
  line-height: 26px;
  color: #4c4c4c;
  font-family: "Libre Baskerville", sans-serif;
  position: relative;
  padding-left: 22px;
}

.why-premium .sect-content ul li:before {
  display: block;
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #4c4c4c;
  border-radius: 50%;
  left: 6px;
  top: 11px;
}

/* ========== Why Premium Sect STYLES // END ========== */






/* ========== Testimonials STYLES // START ========== */

.testimonials {
  width: 100%;
  float: left;
  background: #f8f8f4;
  padding-top: 89px;
  padding-bottom: 101px;
}

.testimonials .user-message {
  width: 100%;
  max-width: 532px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testimonials .user-message p {
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  font-style: italic;
  font-family: "Libre Baskerville", sans-serif;
  position: relative;
  display: inline;
  padding-left: 12px;
  padding-right: 11px;
}

.testimonials .user-message p:before {
  content:"";
  position: absolute;
  left: 0;
  top: -4px;
  font-family: "Libre Baskerville", sans-serif;
}

.testimonials .user-message p:after {
  content:"";
  position: absolute;
  right: 0;
  bottom: -4px;
  font-family: "Libre Baskerville", sans-serif;
}

.testimonials .user-message h6 {
  font-size: 24px;
  line-height: 30px;
  color: #999999;
  font-weight: bold;
  letter-spacing: 0.2px;
  font-family: "Quicksand", sans-serif;
  position: relative;
  float: left;
  text-align: center;
  width: 100%;
  margin-top: 15px;
}

.testimonials .user-message h6 span {
  padding-right: 7px;
  display: inline-block;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 42px;
}

.owl-testimonials.owl-theme .owl-dots .owl-dot span {
    border-radius: 50%;
    background: #c6c6c3;
    width: 14px;
    height: 14px;
    margin: 5px 4px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #070707;
}

/* ========== Testimonials STYLES // END ========== */






/* ========== Footer STYLES // START ========== */

footer {
  width: 100%;
  float: left;
  background: #4479e9;
}

footer .footer-top {
  width: 100%;
  float: left;
  padding-top: 46px;
  padding-bottom: 4px;
}

footer .footer-top .sect-links {
  width: 23.9%;
  float: left;
  padding-right: 10px;
  margin-bottom: 30px;
  box-sizing:  border-box;
}

footer .footer-top .sect-links.sect-links-large {
  width: 38%;
}

footer .footer-top .sect-links:last-child {
  width: 60%;
  padding-right:  0;
  padding-top: 8px;
}

footer .footer-top h4 {
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

footer .footer-top ul {
  list-style: none;
  float: left;
  width: 100%;
}

footer .footer-top .sect-links-large ul {
  width: 33%;
}

footer .footer-top .sect-links-large ul:last-child {
  float: right;
  width: 32%;
}

footer .footer-top ul li a {
  font-size: 13px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  line-height: 26px;
}

footer .footer-top .logo-footer {
  float: left;
  width: 15.5%;
  margin-top: 10px;
}

footer .footer-bottom {
  width: 100%;
  float: left;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid #fff;
}

footer .footer-bottom ul {
  float: left;
  width: 15.7%;
  margin-bottom: 0px;
}

footer .footer-bottom ul li {
  display: inline-block;
  padding-right: 12%;
  padding-left: 2px;
}

footer .footer-bottom ul li a {
  font-size: 16px;
  color: #fff;
}

footer .footer-bottom .copyrights {
  float: left;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  margin-top: 3px;
  letter-spacing: 0.2px;
}

footer .footer-bottom .copyrights span,
footer .footer-bottom .copyrights a {
  color: #fff;
  padding-right: 5px;
  display: inline-block;
}

footer .footer-bottom .copyrights a {
  border-left: 1px solid #fff;
  padding-left: 7px;
}

footer .footer-bottom .copyrights a:last-child {
  padding-right: 0;
}

/* ========== Footer STYLES // END ========== */




/* ========== Page Info STYLES // START ========== */

.page-info {
  width: 100%;
  float: left;
  background: #dde7f8;
}

.bread-crumb {
  width: 100%;
  float: left;
  list-style: none;
}

.bread-crumb li a {
  list-style: none;
  font-size: 14px;
  color: #444444;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
  position: relative;
  padding-left: 15px;
}

.page-info .sect-content {
  width: 100%;
  max-width: 732px;
  float: left;
  padding-right: 15px;
}

h1 {
  font-size: 48px;
  font-weight: bold;
  color: #000000;
  font-family: "Quicksand", sans-serif;
}

.page-info p.page-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #444444;
  font-family: "Libre Baskerville", sans-serif;
}

/* ========== Page Info STYLES // END ========== */




/* ========== RESPONSIVE STYLES // START ========== */

@media (max-width: 1050px) {
    nav {
        width: 85%;
    }
}

@media (max-width: 980px) {
  nav {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }

  nav .burgermenu {
    display: block;
    width: 42px;
    float: right;
    font-size: 20px;
    font-weight: 600;
    color: #231f20;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 0 7px;
    margin-top: -72px;
    cursor: pointer;
  }

  nav .burgermenu img {
    display: inline-block;
    width: 22px;
    margin-right: 5px;
  }

  .menu {
    display: none;
  }

  nav .menu {
    width: 100%;
    float: left;
    padding-top: 5px;
    display: none;
    padding-bottom: 5px;
    padding-left:  0;
    padding-right:  0;
    background: #000;
    margin-bottom: 0;
  }

  nav .menu li {
    width: 100%;
  }

  nav .menu li a {
    display: block;
    height: 32px;
    line-height: 32px;
    text-align: left;
    padding-left:  0;
    padding-right:  0;
    font-size: 15px;
  }

  header.solid nav .menu li a {
    color: #fff !important;
  }

  header.solid nav .sub-menu ul li a {
    color: #000000 !important;
  }

  .nav-buttons {
    display: none;
    background: #000;
    width: 100%;
    margin-top: 0;
    padding-top: 10px;
  }

  nav input[type=checkbox]:checked ~ .menu,
  nav input[type=checkbox]:checked ~ .nav-buttons {
    display: block;
  }

  nav .sub-menu {
    position: static;
    padding-bottom: 0;
    margin-bottom: 6px;
    /* height: 276px; */
    overflow-y: scroll;
  }

  nav .sub-menu .content {
    padding-left: 15px;
  }

  nav .sub-menu .sub-menu-container {
    padding-bottom: 0;

  }

  nav .sub-menu ul,
  nav .sub-menu ul:last-child {
    padding-left: 0;
    width: 100%;
  }
  

  nav .menu li.dropdown:hover a {
    background: unset;
  }

  header.solid nav .menu li.dropdown a {
      background: url(../img/nav-item-bg.png) no-repeat right 8px;
  }

  .why-premium .sect-content h4 br {
    display: none;
  }
}

@media (max-width: 900px) {
    .who-used-us h3 {
        font-size: 32px;
        line-height: 36px;
    }

    .who-used-us p {
        font-size: 15px;
        line-height: 24px;
    }

    .why-premium .sect-content h4 {
      font-size: 30px;
      line-height: 36px;
    }
}

@media (max-width: 768px) {
    .who-used-us .sect-half {
        width: 100%;
        padding-right: 0;
    }

    .who-used-us p {
        max-width: 100%;
    }

    .who-used-us .sect-half .sect-content {
        margin-left: auto;
        margin-right: auto;
        float: none;
    }

    .features .feature-single {
      width: 50%;
    }

    .features .feature-single:nth-child(3n+1) {
      clear: none;
    }

    .features .feature-single:nth-child(2n+1) {
      clear: both;
    }

    .why-premium .sect-img,
    .why-premium .sect-content {
      width: 100%;
    }

    .why-premium .sect-content {
      margin-top: 30px;
    }
}

@media (max-width: 736px) {
  footer .footer-top .logo-footer {
    width: 19%;
  }

  footer .footer-top .sect-links {
    width: 18%;
  }

  footer .footer-top .sect-links:last-child {
    width: 63%;
  }
}

@media (max-width: 640px) {
    .banner .banner-container {
        height: 560px;
    }

    .banner .banner-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .banner .banner-content .banner-heading {
        font-size: 42px;
    }

    .banner .banner-content .banner-desc {
        font-size: 18px;
    }

    .features h3 {
      font-size: 32px;
      line-height: 36px;
    }

    .features .feature-single p {
      font-size: 13px;
      line-height: 20px;
    }

    .featured-sect h4 {
      font-size: 30px;
      line-height: 40px;
    }

    .testimonials .user-message p {
      font-size: 20px;
      line-height: 30px;
    }

    .testimonials .user-message h6 {
      font-size: 20px;
      line-height: 30px;
    }

    footer .footer-top .logo-footer {
      width: 33%;
    }

    footer .footer-top .sect-links {
      width: 67%;
    }

    footer .footer-top .sect-links:last-child {
      width: 100%;
    }

    footer .footer-bottom ul {
      width: 100%;
      max-width: 113px;
    }

    footer .footer-bottom ul {
      margin-left: auto;
      margin-right: auto;
      float: none;
      max-width: 72px;
    }

    footer .footer-bottom ul li:last-child {
      padding-right: 0;
    }

    footer .footer-bottom .copyrights {
      width: 100%;
      text-align: center;
    }

    footer .footer-bottom .copyrights span, footer .footer-bottom .copyrights a {
      display: block;
      border-left: none;
      padding-right: 0;
      padding-left: 0;
    }
}

@media (max-width: 480px) {
    .banner .banner-container {
        height: 500px;
    }

    .banner .banner-content {
        margin-top: 100px;
    }

    .banner .banner-content .banner-heading {
        font-size: 32px;
    }

    .banner .banner-content .banner-desc {
        font-size: 14px;
    }

    .banner .my-button.my-button-s2,
    .banner .banner-content .link {
        font-size: 12px;
    }

    .banner .banner-content .link {
        clear: both;
        display: block;
    }

    .featured-sect h4 {
      font-size: 24px;
      line-height: 30px;
    }

    .featured-sect h4 br {
      display: none;
    }

    .why-premium .sect-content h4 {
      font-size: 24px;
      line-height: 30px;
    }

    .why-premium .sect-content ul li {
      font-size: 14px;
      line-height: 19px;
      margin-bottom: 8px;
    }
}

@media (max-width: 424px) {
    .who-used-us h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .who-used-us p {
        font-size: 14px;
        line-height: 22px;
    }

    .features h3 {
      font-size: 26px;
      line-height: 32px;
    }

    .features h3 br {
      display: none;
    }

    .features .feature-single {
      width: 100%;
    }

    .features .feature-single .feature-content {
      height: auto;
    }

    .testimonials .user-message p {
      font-size: 18px;
      line-height: 26px;
    }

    .testimonials .user-message h6 {
      font-size: 18px;
      line-height: 26px;
    }

    footer .footer-top .logo-footer {
      width: 50%;
    }

    footer .footer-top .sect-links {
      width: 50%;
    }

    footer .footer-top .sect-links-large ul,
    footer .footer-top .sect-links-large ul:last-child {
      width: 50%;
      float: left;
    }
}

@media (max-width: 360px) {
    .who-used-us .sect-half a {
        height: 120px;
    }
}
/* ========== RESPONSIVE STYLES // END ========== *//* --------------------------------------------------------
   Project Name: National Direct
   Version: 1.0
   Created: 26.06.2018
   Last Modified: 00.00.0000 by Name
   Author Name: Razaullah Khan
   Author Email: irazakhan611@gmail.com
----------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900');
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900');

*{
  margin:0;
  padding: 0;
  outline: none;
  border:none;
  text-decoration : none;
}
img {
  max-width: 100%;
  display: block;
}
a{
  text-decoration:none;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
  display: block;
}

.wrapper{
  float: left;
  width: 100%;
  font-family: 'Libre Baskerville', sans-serif;
}

.content {
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  overflow: hidden;
  box-sizing: border-box;
}

a:hover {
    text-decoration: none;
}

.my-button {
    display: inline-block;
    padding: 6px 22px;
    font-size: 12px;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    transition: 0.5s all;
}

.my-button-s1 {
    border-radius: 4px;
}

.my-button-s2 {
    border-radius: 25px;
    padding: 12px 27px;
}

.my-button-trans {
  background: transparent;
  color: #323232;
}

.my-button-s2.my-button-trans {
  color: #fff !important;
}

.my-button.my-button-s4 {
  /*text-transform: uppercase;*/
  background: #39b54a;
  border-radius: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  color: #fff;
  width: 140px;
  letter-spacing: 0.5px;
  line-height: 22px;
  transition: 0.5s all;
}

.my-button.my-button-s4:hover {
  background: #1e882c;
}

.my-button-normal {
  background: #fff;
  color: #323232;
}

.my-button-gray {
  background: #efefef;
  color: #323232;
}

.my-button-gray:hover {
  background: #dcdcdc;
  color: #323232;
}

.my-button-primary {
  background: #4479e9;
  color: #fff;
}

.my-button-primary:hover {
  background: #2857b9;
  color: #fff;
}




/* ========== Header STYLES // START ========== */

header {
  width: 100%;
  float: left;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}


header .content {
  overflow: visible;
}

.logo {
  width: 100px;
  margin-top: 20px;
  margin-bottom: 16px;
  float: left;
}

header.solid .logo {
  margin-top: 15px;
}

nav {
  float: right;
  width: 79.7%;
  position:  relative;
  margin-top: 41px;
}

.nav-container {
  width: 100%;
  max-width: 100%;
}

nav input[type=checkbox] {
  display: none;
}

#nav-icon {
  float: left;
  width: 26px;
  height: 22px;
  position: relative;
  margin-left: 8px;
  margin-right: 8px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#nav-icon span {
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  height: 4px;
  width: 100%;
  border-radius: 9px;
  background: #fff;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

header.solid #nav-icon span {
  background: #000;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 8px;
}

#nav-icon span:nth-child(4) {
  top: 16px;
}

nav input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input[type=checkbox]:checked ~ .burgermenu #nav-icon span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

nav .mobile-menu {
  float: left;
  width: 100%;
}

nav .menu {
  list-style: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left:  9px;
  padding-right: 8px;
  width: 75.4%;
  position: relative;
  float: left;
}

nav .menu li {
  padding-left: 6px;
  padding-right: 6px;
}

nav .menu li.dropdown {
  position: static;
}

nav .menu li a {
  font-size: 14px;
  color: #ffffff !important;
  text-transform: uppercase;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  height: 25px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing:  border-box;
  font-family: "Quicksand", sans-serif;
  padding-bottom: 4px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

header.solid nav .menu li a {
  color: #000000 !important;
}

nav .menu li a:hover,
nav .menu li a.active {
  color: #fff !important;
  text-decoration: none;
}

nav .menu li.dropdown a {
  background: url(../img/nav-item-bg.png) no-repeat right 8px;
}

header.solid nav .menu li.dropdown a {
  background: url(../img/nav-item-bg-2.png) no-repeat right 8px;
}

header.solid nav .menu li.dropdown .sub-menu a {
  background: none;
}

.closemenu,
.burgermenu {
  display: none;
}

nav .menu li:hover .sub-menu {
  /*display: block;*/
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

nav .sub-menu {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  background: #ffffff;
  margin-top: -5px;
  display: block;
  visibility: hidden;
  opacity: 0;
  box-shadow: 1px 1px 22px 1px rgba(0,0,0,0.12);
  z-index: 10;
  border-radius: 5px;
  transition: all 0.15s ease-in-out;
}

nav .sub-menu .content {
  padding-left: 26px;
}

nav .sub-menu .sub-menu-container {
  width: 100%;
  float: left;
  padding-right: 0;
  box-sizing: border-box;
  padding-top: 18px;
  padding-bottom: 11px;
}

nav .sub-menu ul {
  list-style: none;
  float: left;
  text-align: left;
  width: 35.5%;
  margin-bottom: 5px;
  padding-left: 0;
}

nav .sub-menu ul:last-child {
  width: 100%;
  float: left;
  column-count: 3;
}

nav .sub-menu ul li {
  width: 100%;
  box-sizing: border-box;
  line-height: 22px;
  /*background: url(../images/nav-sub-menu-item-bg.png) repeat-x bottom center;*/
  padding-left: 0;
  padding-right: 0;
}

nav .sub-menu ul h4 {
  font-size: 20px;
  font-weight: 600;
  color: #010101;
  font-family:  "Montserrat", sans-serif;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

nav .sub-menu ul li a {
  font-size: 13px;
  color: #000000 !important;
  height: auto;
  display:  block;
  text-align:  left;
  text-transform: none;
  letter-spacing: 0.2px;
  padding-left: 4px;
  padding-right: 4px;
}

nav .sub-menu ul li a:hover {
  color: #4479e9 !important;
}

nav .menu li.dropdown:hover ul li a {
  background: unset;
}

.nav-buttons {
  float:right;
  margin-top: -5px;
}

.nav-buttons ul li {
    padding-left: 4px;
    padding-right: 4px;
    display: inline-block;
}

.nav-buttons ul li:last-child {
    padding-right: 2px;
}

header .nav-buttons .my-button {
    text-transform: uppercase;
}

.my-account-dropdown .dropdown-toggle::after {
  display: none;
}

/* ========== Header STYLES // END ========== */





/* ========== Banner STYLES // START ========== */

.banner {
    width: 100%;
    float: left;

}

.banner .banner-container {
    width: 100%;
    height: 640px;
    margin-left: auto;
    margin-right: auto;
    background: url(../img/banner-main.jpg) no-repeat center top;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}

.banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding-left: 15px;
    padding-right: 15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.banner .banner-content {
    text-align: left;
    margin-top: 48px;
    width: 100%;
    max-width: 1130px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}


.banner .banner-content .banner-heading {
    font-size: 60px;
    font-weight: 500;
    color: #ffffff;
    font-family: "Quicksand", sans-serif;
    line-height: 65px;
    margin-bottom: 18px;
}

.banner .banner-content .banner-heading span {
    display: block;
}

.banner .banner-content .banner-desc {
    font-size: 22px;
    font-weight: 100;
    color: #ffffff;
    font-family: "Libre Baskerville", sans-serif;
    margin-bottom: 30px;
    width: 100%;
    max-width: 542px;
}

.banner .banner-content .btn-banner {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    border: 2px solid #168e95;
    width: 142px;
    display:  inline-block;
    height: 42px;
    line-height: 30px;
    letter-spacing: 0.5px;
    margin-top: 0px;
}

.banner .banner-content .link {
    font-size: 12px;
    font-weight: 100;
    color: #ffffff;
    font-family: "Libre Baskerville", sans-serif;
    padding: 12px 21px;
    letter-spacing: 0.8px;
    font-style: italic;
}

/* ========== Banner STYLES // END ========== */





/* ========== Who Used Us STYLES // START ========== */

.who-used-us {
    width: 100%;
    float: left;
    padding-top: 73px;
    padding-bottom: 18px;
}

.who-used-us h3 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 42px;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 25px;
}

.who-used-us p {
    font-size: 14px;
    font-weight: 400;
    color: #545454;
    line-height: 22px;
    font-family: "Libre Baskerville", sans-serif;
    margin-bottom: 10px;
    width: 100%;
    max-width: 430px;
}

.who-used-us .sect-half {
    float: left;
    width: 50%;
    padding-right: 10px;
    margin-bottom: 30px;
}

.who-used-us .sect-half .sect-content {
  width: 100%;
  max-width: 492px;
  float: left;
  /* padding-left: 8%; */
  box-sizing: border-box;
}

.who-used-us .sect-half a {
    width: 50%;
    max-width: 250px;
    display: block;
    float: left;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 10px;
    box-sizing: border-box;
}

/* ========== Who Used Us STYLES // END ========== */




/* ========== Features STYLES // START ========== */

.features {
  width: 100%;
  float: left;
  background: #4479e9;
  padding-top: 67px;
  padding-bottom: 78px;
}

.features h3 {
  width: 100%;
  text-align: center;
  font-size: 36px;
  color: #ffffff;
  line-height: 42px;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 30px;
}

.features .features-con {
  width: 100%;
  float: left;
}

.features .feature-single {
  width: 33.3%;
  float: left;
  text-align: center;
  margin-bottom: 13px;
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
}
.features .feature-single.feature-half {
  width: 50%;
  clear: none !important;
}
.features .feature-single:nth-child(3n+1) {
  clear: both;
}

.features .feature-single .img-con {
  height: 117px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features .feature-single .img-con img {
  display: inline-block;
}

.features .feature-single .feature-content {
  width: 100%;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
  height: 80px;
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
}

.features .feature-single p {
  font-size: 14px;
  color: #ffffff;
  line-height: 22px;
  font-family: "Libre Baskerville";
}

/* ========== Features STYLES // END ========== */





/* ========== Featured Sect STYLES // START ========== */

.featured-sect {
  width: 100%;
  float: left;
  padding-top: 60px;
  padding-bottom: 66px;
  text-align: center;
  background: url(../img/featured-sect-bg-01.jpg) no-repeat center center;
  -webkit-background-size: cover;
  background-size: cover;
}

.featured-sect h4 {
  font-size: 36px;
  line-height: 48px;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 25px;
}

.featured-sect .my-button {
  margin-bottom: 11px;
}

.featured-sect p {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 26px;
  font-style: italic;
  font-family: "Libre Baskerville", sans-serif;
  letter-spacing: 0.8px;
}

/* ========== Featured Sect STYLES // END ========== */




/* ========== Why Premium Sect STYLES // START ========== */

.why-premium {
  width: 100%;
  float: left;
  padding-top: 93px;
  padding-bottom: 68px;
}

.why-premium .sect-img {
  float: left;
  width: 42%;
  margin-top: 14px;
  margin-bottom: 30px;
}

.why-premium .sect-img img {
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 4px 14px 3px rgba(0,0,0,0.1);
}

.why-premium .sect-content {
  float: left;
  width: 58%;
  padding-left: 2.9%;
  box-sizing: border-box;
  padding-right: 2.9%;
}

.why-premium .sect-content h4 {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  line-height: 42px;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 25px;
}

.why-premium .sect-content ul {
  list-style: none;
}

.why-premium .sect-content ul li {
    font-size: 14px;
    line-height: 22px;
    color: #4c4c4c;
    font-family: "Libre Baskerville", sans-serif;
    position: relative;
    padding-left: 22px;
}

.why-premium .sect-content ul li:before {
  display: block;
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #4c4c4c;
  border-radius: 50%;
  left: 6px;
  top: 11px;
}

/* ========== Why Premium Sect STYLES // END ========== */






/* ========== Testimonials STYLES // START ========== */

.testimonials {
  width: 100%;
  float: left;
  background: #f8f8f4;
  padding-top: 89px;
  padding-bottom: 101px;
}

.testimonials .user-message {
  width: 100%;
  max-width: 532px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testimonials .user-message p {
  font-size: 24px;
  line-height: 36px;
  color: #000000;
  font-style: italic;
  font-family: "Libre Baskerville", sans-serif;
  position: relative;
  display: inline;
  padding-left: 12px;
  padding-right: 11px;
}

.testimonials .user-message p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  font-family: "Libre Baskerville", sans-serif;
  background: url("../img/block-quote-left.png") no-repeat center center;
  width: 11px;
  height: 8px;
}

.testimonials .user-message p:after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 13px;
  font-family: "Libre Baskerville", sans-serif;
  background: url("../img/block-quote-right.png") no-repeat center center;
  width: 11px;
  height: 8px;
}

.testimonials .user-message h6 {
  font-size: 24px;
  line-height: 30px;
  color: #999999;
  font-weight: bold;
  letter-spacing: 0.2px;
  font-family: "Quicksand", sans-serif;
  position: relative;
  float: left;
  text-align: center;
  width: 100%;
  margin-top: 15px;
}

.testimonials .user-message h6 span {
  padding-right: 7px;
  display: inline-block;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 42px;
}

.owl-testimonials.owl-theme .owl-dots .owl-dot span {
    border-radius: 50%;
    background: #c6c6c3;
    width: 14px;
    height: 14px;
    margin: 5px 4px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #070707;
}

/* ========== Testimonials STYLES // END ========== */






/* ========== Footer STYLES // START ========== */

footer {
  width: 100%;
  float: left;
  background: #4479e9;
}

footer .footer-top {
  width: 100%;
  float: left;
  padding-top: 46px;
  padding-bottom: 4px;
}

footer .footer-top .sect-links {
  width: 23.9%;
  float: left;
  padding-right: 10px;
  margin-bottom: 30px;
  box-sizing:  border-box;
}

footer .footer-top .sect-links.sect-links-large {
  width: 38%;
}

footer .footer-top .sect-links:last-child {
  width: 60%;
  padding-right:  0;
  padding-top: 8px;
}

footer .footer-top h4 {
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

footer .footer-top ul {
  list-style: none;
  float: left;
  width: 100%;
}

footer .footer-top .sect-links-large ul {
  width: 33%;
}

footer .footer-top .sect-links-large ul:last-child {
  float: right;
  width: 32%;
}

footer .footer-top ul li a {
  font-size: 13px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  line-height: 26px;
}

footer .footer-top .logo-footer {
  float: left;
  width: 15.5%;
  margin-top: 10px;
}

footer .footer-bottom {
  width: 100%;
  float: left;
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid #fff;
}

footer .footer-bottom ul {
  float: left;
  width: 15.7%;
  margin-bottom: 0px;
}

footer .footer-bottom ul li {
  display: inline-block;
  padding-right: 12%;
  padding-left: 2px;
}

footer .footer-bottom ul li a {
  font-size: 16px;
  color: #fff;
}

footer .footer-bottom .copyrights {
  float: left;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  margin-top: 3px;
  letter-spacing: 0.2px;
}

footer .footer-bottom .copyrights span,
footer .footer-bottom .copyrights a {
  color: #fff;
  padding-right: 5px;
  display: inline-block;
}

footer .footer-bottom .copyrights a {
  border-left: 1px solid #fff;
  padding-left: 7px;
}

footer .footer-bottom .copyrights a:last-child {
  padding-right: 0;
}

/* ========== Footer STYLES // END ========== */




/* ========== Page Info STYLES // START ========== */

.page-info {
  width: 100%;
  float: left;
  background: #dde7f8;
  padding-top: 41px;
  padding-bottom: 31px;
}

.page-info-2 {
  padding-top: 10px;
}

.page-info .page-info-left {
  float: left;
  width: 66%;
}

.page-info .page-info-right {
  float: right;
  width: 34%;
}

.bread-crumb {
  width: 100%;
  float: left;
  list-style: none;
}
.bread-crumb li {
  display: inline-block;
}
.page-info-2 .bread-crumb {
  margin-top: 32px;
}

.bread-crumb li a {
  list-style: none;
  font-size: 14px;
  color: #444444;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Quicksand", sans-serif;
  position: relative;
  padding-left: 26px;
  background: url(../img/bread-crumb-img.png) no-repeat 3px center;
  letter-spacing: 1.2px;
}

h1 {
    font-size: 38px;
    font-weight: bold;
    color: #000000;
    font-family: "Quicksand", sans-serif;
}

.page-info-2 h1 {
  font-size: 36px;
  margin-bottom: 18px;
}


.page-info p.page-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #444444;
  font-family: "Libre Baskerville", sans-serif;
  margin-top: 14px;
  letter-spacing: 0.9px;
}

.page-info-2 p.page-desc {
  font-size: 14px;
  line-height: 24px;
  margin-top: 14px;
  letter-spacing: 0;
}

.support-sect {
  width: 300px;
  float: right;
  background: #ffffff;
  border-radius: 8px;
  margin-top: 22px;
}

/* added 03-12-2018 [START] */
.support-sect.support-sect-free {
  margin-top: 0;
  display: none;
}
/* added 03-12-2018 [END] */

.support-sect .support-title {
  background: #4479e9;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 21px 10px;
}

.cause-premium .support-sect .support-title {
  background: #ae143d;
}

.support-sect .support-title h4 {
  font-size: 24px;
  color: #ffffff;
  line-height: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
}

.support-sect .support-title h4 i {
  font-size: 34px;
  margin-right: 10px;
  position: relative;
  top: 5px;
}

.support-sect .support-content {
  padding: 10px 18px 16px;
  text-align: center;
  overflow: hidden;
}

.support-sect .support-content p {
    font-size: 14px;
    line-height: 22px;
    font-family: "Quicksand", sans-serif;
    color: #444444;
    font-weight: bold;
    margin-bottom: 10px;
}
.support-sect .support-content input {
  cursor:pointer;
}

.support-sect ul {
  list-style: none;
}

.support-sect ul li {
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
}

.support-sect ul li a {

}

.support-sect ul li img {
  width: 77px;
  height: 28px;
  display: inline-block;
  cursor: pointer;
}

.support-sect input.link {
  background: #ecf1fd url(../img/file-icon.png) no-repeat 11px center;
  color: #010101;
  font-size: 12px;
  font-family: "Quicksand", sans-serif;
  padding-left: 38px;
  float: left;
  width: 100%;
  border: 1px solid #e3ebfc;
  height: 36px;
  margin-top: 3px;
  padding-right: 12px;
}

/* ========== Page Info STYLES // END ========== */





/* ========== Badges STYLES // START ========== */

.mbadges {
  width: 100%;
  float: left;
  background: #f8f8f4;
  padding-top: 47px;
  padding-bottom: 19px;
}

.mbadges .content {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  /* flex-shrink: 2; */
}

.mbadge {
  width: 200px;
  height: 281px;
  /* float: left; */
  background: #ffffff;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.07);
  margin-left: 13px;
  margin-right: 13px;
  margin-bottom: 29px;
  display: inline-block;
  /* margin-left: 11px; */
  /* margin-right: 11px; */
}

.mbadge .mbadge-img {
  width: 180px;
  height: 180px;
  background: #e5e5e5;
}

.mbadge .mbadge-img-overlay {
  width: 180px;
  height: 180px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mbadge .mbadge-title {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 24px;
  font-family: "Libre Baskerville", sans-serif;
  text-align: center;
  padding-top: 5px;
  max-height: 54px;
  padding-bottom: 3px;
  display: block;
  overflow: hidden;
}

.mbadge .mbadge-likes {
  font-size: 14px;
  font-weight: bold;
  color: #1a5ece;
  line-height: 24px;
  font-family: "Quicksand", sans-serif;
  text-align: center;
}

.mbadge .mbadge-likes i {
  padding-right: 6px;
  font-size: 18px;
  position: relative;
  top: 0px;
}

.sect-show-more {
  padding-left: 15px;
  padding-right: 15px;
  float: left;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  padding-top: 25px;
  padding-bottom: 25px;
}

.show-more-button {
  display: inline-block;
  padding: 11px;
  border: 2px solid #1a5ece;
  border-radius: 3px;
  font-size: 14px;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  color: #1a5ece;
  text-transform: uppercase;
  width: 190px;
  letter-spacing: 0.5px;
  transition: 0.5s all;
}
.show-more-button:hover {
    border: 2px solid #1a5ece;
    color: #fff;
    background: #1a5ece;
}

/* ========== Badges STYLES // END ========== */





/* ========== Campaign STYLES // START ========== */

.cause-content {
  width: 100%;
  float: left;
  background: #f8f8f4;
  padding-top: 24px;
  padding-bottom: 18px;
}

.left-content {
  float: left;
  width: 68.5%;
}

.pledge-detail .left-content {
  width: 66.6%;
}
.cause-content.cause-premium {
  padding-bottom: 40px;
}

.right-content {
  float: right;
  width: 31.5%;
  padding-left: 15px;
  box-sizing: border-box;
}

.box-shadow {
  box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.07);
  margin-bottom: 5px;
}

.cause-content .campaign-box {
  width: 100%;
  float: left;
}

.cause-content .box-title {
    background: #4479e9;
    text-align: center;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 7px 21px;
}

.cause-premium .box-title {
  background: #ae143d;
}

.left-content .campaign-box .box-title h4 {
  text-align: left;
}

.cause-content .box-title h4 {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 0;
}

.pledge-detail .news {
  position: relative;
  margin-bottom: 29px !important;
}

.pledge-detail .news .button-edit {
  top: 0;
  right: 0;
  margin-right: 0;
  background: #223c74;
}

.pledge-detail .news .button-edit:hover {
  background: #3055a2;
}



.pledge-detail .news .box-title {
  background: #4479e9;
}

.pledge-detail .recent-news .box-title {
  background: #fff;
  padding-top: 10px;
  border-bottom: 1px solid #ededed;
}

.pledge-detail .recent-news .box-title h4 {
  color: #333333;
}

.pledge-detail .support-this .box-title h4 {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 0;
  margin-top: 7px;
}

.pledge-detail .support-this .box-title p {
  font-size: 12px;
  margin-bottom: 9px;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
}
.pledge-detail .support-this .progress {
  width: 100%;
  max-width: 236px;
  margin-left: auto;
  margin-right:auto;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 7px;
  margin-bottom: 10px;
}

.pledge-detail .support-this .progress-bar {
  background-color: #39b54a;
}

.pledge-detail .support-this .box-content,
.pledge-detail .donate-cause .box-content {
  padding: 18px 10px 11px;
}

.pledge-detail .support-this .box-content {
  text-align: center;
}

.pledge-detail .news .button-pledge {
  border-radius: 4px;
  width: 100%;
}

.pledge-detail .news .box-content p {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #444444;
    font-family: "Libre Baskerville", sans-serif;
    padding-left: 10px;
    padding-right: 10px;
}


.campaign-box .box-content {
  padding: 10px 2.4% 16px;
  overflow: hidden;
  background: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.news .box-content {
  padding: 10px 20px 10px;
  overflow: hidden;
  background: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.right-content .news,
.right-content .facebook-page-info {
  width: 100%;
  max-width: 300px;
  float: right;
  margin-bottom: 23px;
}

.right-content .facebook-page-info img {
  width: 100%;
}

.support-sect.news {
  margin-top: 5px;
  margin-bottom: 32px;
}

.campaign-box .campaign-img-box {
  float: left;
  width: 42.8%;
  margin-top: 23px;
}

.campaign-box .campaign-img-box .campaign-img {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
  max-height: 300px;
}

.campaign-box .campaign-img img {
  width: 100%;
  display: block;
}

.campaign-box .campaign-img .img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.mslider {
    position: relative;
    text-align: left;
    height: 5px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    border-radius: 5px;
    background: #e5e5e5;
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 24px;
}

.mslider .mslider-handle {
    position: absolute;
    z-index: 2;
    width: 24px;
    height: 24px;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
    background: #ffffff;
    border-radius: 50%;
    top: -11px;
    left: -11px;
    border: 1px solid rgba(0,0,0,0.15);
}

.campaign-box .campaign-img-content {
  float: left;
  width: 57.2%;
  padding-left: 3.6%;
  box-sizing: border-box;
  padding-right: 0.7%;
}

.campaign-box .campaign-img-content .campaign-buttons {
  width: 100%;
  float: left;
  position: relative;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}

.campaign-box .campaign-buttons .button {
    width: 188px;
    width: 47.4%;
    color: #fff;
    background-color: #00a651;
    position: relative;
    display: inline-block;
    padding: 0px 0px;
    margin-bottom: 0;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
    font-family: "Quicksand", sans-serif;
    padding-left: 4px;
    text-transform: uppercase;
    line-height: 32px;
    letter-spacing: 1.9px;
    transition: 0.5s all;
}

.campaign-box .campaign-buttons .button:hover,
.campaign-box .campaign-buttons .button:active {
  background-color: #00823f;
}

.campaign-box .campaign-buttons .facebook-picture {
  background-color: #3a5795;
}

.campaign-box .campaign-buttons .facebook-picture:hover,
.campaign-box .campaign-buttons .facebook-picture:active {
  background-color: #2d4373;
}

#file {
    opacity: 0;
    position: absolute;
    left: -1000px;
    top: -1000px;
}

.button i {
    width: 34px;
    line-height: 30px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    position: relative;
    top: 2px;
}

.campaign-img-overlays-sect {
  float: left;
  width: 100%;
  margin-top: 19px;
  border-top: 1px solid #e5e5e5;
  padding-top: 22px;
  padding-left: 3px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.campaign-img-overlays-inner {
  margin-left: -12px;
  margin-right: -12px;
}

.campaign-img-overlays-sect .user-overlay-img {
  border: 2px solid #b7b7b7;
  float: left;
  width: 78px;
  height: 78px;
  margin-right: 10px;
  margin-left: 12px;
  margin-bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s all;
  box-sizing: border-box;
}

.campaign-img-overlays-sect .user-overlay-img:nth-child(4n) {
  /* margin-right: 0; */
}

.campaign-img-content .user-overlay-img:hover,
.campaign-img-content .user-overlay-img:active,
.campaign-img-content .user-overlay-img.active {
  border: 2px solid #4479e9;
}

.cause-premium .campaign-img-content .user-overlay-img:hover,
.cause-premium .campaign-img-content .user-overlay-img:active,
.cause-premium .campaign-img-content .user-overlay-img.active {
  border: 2px solid #ae143d;
}

.campaign-img-actions {
  width: 100%;
  float: left;
  margin-top: 27px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  padding-bottom: 5px;
}

.campaign-img-actions .hastag-con {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.campaign-img-actions .hastag-con .styled-checkbox-label {
  font-size: 13px;
  color: #444444;
  font-family: "Libre Baskerville", sans-serif;
  /* padding-left: 24px; */
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox + label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 16px;
  height: 16px;
  background: white;
  border: 1px solid #b7b7b7;
}
.styled-checkbox:hover + label:before {
  background: #fff;
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #4479e9;
  border: 1px solid #4479e9;
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}

.styled-checkbox:checked + label:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 8px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.campaign-img-actions .button-generate-img {
  background: #4479e9;
  width: 198px;
  line-height: 28px;
}

.campaign-img-actions .button-generate-img:hover {
  background: #2557c1;
}

.news .box-content .news-sect {
  float: left;
  width: 100%;
  cursor: pointer;
  margin-top: 9px;
  margin-bottom: 8px;
}

.news .box-content .news-sect img {
  float: left;
  margin-right: 13px;
  margin-top: 3px;
  height: 60px;
  width: 60px;
}

.news .box-content .news-sect h4 {
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  color: #333333;
  font-family: "Libre Baskerville", sans-serif;
  letter-spacing: -0.2px;
  margin-bottom: 0;
}

.news .box-content .news-sect p {
  font-size: 11px;
  font-weight: 400;
  line-height: 20px;
  color: #999999;
  font-family: "Libre Baskerville", sans-serif;
  margin-bottom: 0;
}

.contribution .box-content p {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #444444;
  font-family: "Libre Baskerville", sans-serif;
  margin-bottom: 22px;
}

.contribution .box-content {
  padding: 15px 20px 19px;
}

.page-banner {
  height: 250px;
  width: 100%;
  float: left;
  background: #f8f7f4;
}
.page-banner.campaign-banner {
    height: auto !important;
}
.cuase-premium .page-banner-container {
    /*/ background: url(../img/banner-premium-cause.png) no-repeat center top; /*/
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}
.page-banner.campaign-banner .page-banner-container {
    background: unset;
    height: auto;
}
.about-cause {
  width: 100%;
  float: left;
  position: relative;
  padding-bottom: 24px;
}

.about-cause .about-img {
  position: absolute;
  left: 0;
  top: 6px;
  background: #fff;
  padding: 4px;
  box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.07);
  height: 108px;
  width : 108px; 
}

.about-cause .about-content {
  float: left;
  padding-left: 135px;
  margin-top: -2px;
  width: 100%
}
.about-cause.about-cause-free .about-content {
  padding-left: 0px;
}
.about-cause .about-content h4 {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 18px;
}

.about-cause .about-content p {
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  color: #333333;
  font-family: "Libre Baskerville", sans-serif;
  letter-spacing: -0.2px;
}

.about-share {
  float: left;
  width: 100%;
  margin-top: 2px;
  margin-bottom: 20px;
}

.about-share li {
  display: inline-block;
  padding-right: 5px;
}

.about-share li a {
  font-size: 16px;
  color: #fff;
  background: #ae143d;
  width: 34px;
  height: 30px;
  display: inline-block;
  border-radius: 2px;
  text-align: center;
  line-height: 30px;
}

.about-share li a:hover {
  background: #ce214f;
}

/* ========== Campaign STYLES // END ========== */





/* ========== Price STYLES // START ========== */

.price {
    width: 100%;
    float: left;
    background: #f8f8f4;
    padding-bottom: 30px;
}
.price .price-info {
  width: 100%;
  max-width: 696px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 75px;
  padding-bottom: 49px;
}

.price .price-info h1 {
  font-size: 48px;
  font-weight: bold;
  color: #000000;
  line-height: 60px;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 31px;
}

.price .price-info p {
  font-size: 18px;
  font-weight: 400;
  color: #545454;
  line-height: 28px;
}

.price-box {
  float: left;
  width: 31%;
  margin-right: 3.5%;
  background: #fff;
  text-align: center;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-bottom: 40px;
}

.price-box:nth-child(3n+1) {
  margin-right: 0;
}

.price-box .price-title {
    background: #4479e9;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    box-sizing: border-box;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
    flex-wrap: wrap;
}

.price-box .price-title h2 {
  font-size: 48px;
  line-height: 36px;
  font-weight: bold;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
  display: inline-block;
  text-transform: uppercase;
}
.price-box .price-title h3.old-price {
    text-decoration: line-through;
}
.price-box .price-title h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    color: #ffffff;
    font-family: "Quicksand", sans-serif;
    display: block;
    width: 100%;
    float: left;
    margin-bottom: 0;
}

.price-box .price-title p {
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    color: #ffffff;
    font-family: "Quicksand", sans-serif;
    display: inline-block;
    text-transform: uppercase;
    padding-left: 7px;
    text-align: left;
    /*/ margin-left: 5px; /*/
    width: 100%;
    text-align: center;
    margin-top: 3px;
}

.price-box .price-title p span {
  text-decoration: line-through;
}

.price-box .price-content {
  border: 1px solid #e5e5e5;
  border-top: none;
  float: left;
  width: 100%;
  box-sizing: border-box;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-bottom: 11px;
}

.price-box .special-offer {
    font-size: 12px;
    font-weight: 600;
    color: #2f2f2f;
    line-height: 27px;
    font-family: "Quicksand", sans-serif;
    background: #f9d838;
    text-align: center;
    text-transform: uppercase;
    display: block;
    padding-top: 3px;
}

.price-box ul {
  list-style: none;
  margin-bottom: 10px;
}

.price-box ul li {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  line-height: 22px;
  font-family: "Libre Baskerville", sans-serif;
  padding-top: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 15px;
  padding-right: 15px;
}

.price-box ul li:first-child {
  padding-top: 16px;
}

.price-box ul li:last-child {
  border-bottom: none;
}

.price-box ul li span {
  width: 100%;
  max-width: 240px;
  display: inline-block;
}

.price-box .price-button-con {
  width: 100%;
  float: left;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
}

.price-box .price-button-con .my-button {
  width: 100% !important;
  line-height: 28px;
  letter-spacing: 1.2px;
  padding: 6px 15px;
}

/* ========== Price STYLES // END ========== */






/* ========== Subscription STYLES // START ========== */

.subscription {
  width: 100%;
  float: left;
  background: #f8f8f4;
  padding-top: 76px;
  padding-bottom: 44px;
}

.subscription .content {
  position: relative;
  min-height: 711px;
}

.subscription .sub-info {
  float: left;
  padding-right: 320px;
}

.subscription .price-box {
  float: none;
  width: 300px;
  margin-right: 0;
  margin-top: 3px;
  position: absolute;
  right: 14px;
}

.subscription .sub-info h2 {
  font-size: 48px;
  font-weight: bold;
  color: #000000;
  line-height: 60px;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 31px;
}

.subscription .sub-info p {
  font-size: 18px;
  font-weight: 400;
  color: #545454;
  line-height: 28px;
  max-width: 686px;
}

.subscription .form-wrapper {
  width: 100%;
  max-width: 624px;
  float: left;
}

.subscription .form-title {
  font-size: 16px;
  color: #999999;
  line-height: 28px;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  background: url(../img/form-title-bg.png) repeat-x left center;
  float: left;
  width: 100%;
  margin-top: 35px;
  text-transform: uppercase;
  /* max-width: 686px; */
  margin-bottom: 20px;
}

.subscription .form-title span {
  background: #f8f8f4;
  padding-right: 16px;
}

.subscription .field-wrap {
  float: left;
  width: 100%;
}

.subscription .field-wrap-half {
  float: left;
}

.subscription .field-wrap .input-wrap {
  margin-bottom: 24px;
  float: left;
  width: 100%;
}

.subscription .field-wrap-half .input-wrap {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 24px;
}

.subscription .field-wrap-quarter {
  width: 48%;
  float: left;
}

.subscription .field-wrap-quarter .input-wrap {
  width: 64%;
}

.subscription .field-wrap-quarter .input-wrap:first-child {
  width: 28%;
  margin-right: 8%;
}

.subscription .field-wrap-half .input-wrap:last-child {
  margin-right: 0;
}

.subscription .input-wrap label {
    font-size: 16px;
    color: #999999;
    line-height: 28px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
    float: left;
    width: 100%;
    margin-bottom: 4px;
}

.subscription .input-wrap input {
  float: left;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #d7d7d7;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  font-size: 12px;
}

.subscription .button-con {
  float: left;
  margin-top: 16px;
}

.subscription .my-button-submit {
   padding: 10px 31px;
   background: #4479e9;
}

.subscription .my-button-submit:hover {
  background: #2857b9;
  color: #fff;
}

/* ========== Subscription STYLES // END ========== */




/* ========== User Dashboard STYLES // START ========== */

.user-dashboard {
  width: 100%;
  float: left;
  background: #f8f8f4;
}

.user-dashboard .content {
  position: relative;
}

.user-dashboard .dashboard-menu-con {
  width: 250px;
  position: absolute;
  left: 15px;
  padding-top: 32px;
}

.user-dashboard .user-info {
  float: left;
  position: relative;
  width: 100%;
  padding-left: 11px;
  box-sizing: border-box;
}

.user-dashboard .user-info .user-img {
  position: absolute;
  width: 36px;
  height: 36px;
  top: 2px;
}

.user-dashboard .user-info .user-name {
  padding-left: 48px;
  float: left;
}

.user-dashboard .user-info .user-name h5 {
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  color: #000000;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 1px;
}

.user-dashboard .user-info .user-name p {
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  color: #000000;
  font-family: "Libre Baskerville", sans-serif;
  margin-bottom: 5px;
}

.user-dashboard .dashboard-menu {
  float: left;
  width: 100%;
  list-style: none;
  margin-top: 36px;
}

.user-dashboard .dashboard-menu li {
  display: block;
  border-top: 1px solid #e6e6e3;
  padding-left: 17px;
}

.user-dashboard .dashboard-menu li a {
  font-size: 14px;
  color: #666666;
  font-weight: bold;
  line-height: 39px;
  font-family: "Quicksand", sans-serif;
}

.user-dashboard .dashboard-menu li.active a {
  color: #4479e9;
  background: url(../img/dashboard-menu-item-active-bg.png) no-repeat left center;
  padding-left: 15px;
}

.user-dashboard .dashboard-menu li:hover a {
  color: #4479e9;
}

.user-dashboard .dashboard-content {
  padding-left: 250px;
}

.user-dashboard .dashboard-content-inner {
  border-left: 1px solid #e6e6e3;
  padding-left: 6%;
  padding-right: 8px;
  overflow: hidden;
  min-height: 420px;
}

.user-dashboard .dashboard-title {
  width: 100%;
  float: left;
  margin-top: 27px;
}

.user-dashboard .dashboard-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    line-height: 36px;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 34px;
    float: left;
    margin-left: 10px;
}

.user-dashboard .button-create-campaign {
  float: right;
  text-transform: uppercase;
  padding: 6px 10px;
  width: 142px;
  text-align: center;
}

.button-my-account {
  padding: 6px 17px;
  color: #fff !important;
  cursor: pointer;
}

.button-my-account i {
  font-size: 16px;
  padding-left: 3px;
  display: inline-block;
}

.user-dashboard .table-sect {
  float: left;
  width: 100%;
  margin-bottom: 80px;
}

.user-dashboard .table-sect .table-responsive {
  border-radius: 6px;
}

.user-dashboard .table-sect table {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 0;
}

.user-dashboard .table thead th {
  border-top: none;
  border-bottom: 1px solid #e5e5e5;
  padding: 7px 5px 11px;
}

.user-dashboard .table th {
    border-top: 1px solid #e5e5e5;
}

.user-dashboard .table td {
    border-top: none;
}

.user-dashboard .table tr:nth-child(2n) {
    background: #eff5ff;
}

.user-dashboard .table .title {
  position: relative;
  width: 32%;
  min-width: 210px;
}

.user-dashboard .table th.title {
  padding-left: 96px;
}

.user-dashboard .table .type {
  width: 15%;
  text-align: center;
  min-width: 130px;
}

.user-dashboard .table .type div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.user-dashboard .table .support {
  width: 13%;
  text-align: center;
}

.user-dashboard .table .support div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.user-dashboard .table .actions {
  width: 34%;
}

.user-dashboard .table .title img {
    position: absolute;
    width: 60px;
    height: 60px;
    margin-left: 6px;
    border: 1px solid #e8e8e8;
}

.user-dashboard .table td {
  font-size: 14px;
  font-weight: bold;
  color: #444444;
  font-family: "Quicksand", sans-serif;
  height: 81px;
  padding: 11px;
  box-sizing: border-box;
}

.user-dashboard .table .title a {
  /* padding-left: 87px; */
  color: #4479e9;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
  line-height: 18px;
}

.user-dashboard .table .title a span {
  padding-left: 86px;
}

.user-dashboard .table th {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  font-family: "Quicksand", sans-serif;
}

.table .tbl-action-button {
   list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    margin-bottom: 0;
}
.table .tbl-action-button-center {
  justify-content: center;
}

.tbl-action-button li {
  display: inline-block;
}

.tbl-action-button li .my-button {
  padding: 5px;
  margin-left: 3px;
  margin-right: 8px;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
  transition: 0.5s all;
}

.tbl-action-button li .button-premium {
  background: #39b54a;
  color: #fff;
  width: 140px;
}

.tbl-action-button li .button-premium:hover {
  background: #279a37;
}

.tbl-action-button li .button-make-premium {
  background: #f2a72a;
  color: #fff;
  width: 140px;
}

.tbl-action-button li .button-make-premium:hover {
  background: #ec9a10;
}

.tbl-action-button li .button-edit {
  background: #4479e9;
  color: #fff;
  width: 30px;
}

.tbl-action-button li .button-edit:hover {
  background: #2e5cbd;
}

.tbl-action-button li .button-info {
  background: #17a2b8;
  color: #fff;
  width: 30px;
}

.tbl-action-button li .button-info:hover {
  background: #138496;
}

.tbl-action-button li .button-delete {
  background: #ed1c24;
  color: #fff;
  width: 32px;
}

.tbl-action-button li .button-delete:hover {
  background: #b1151a;
}


/* ========== Campaigns STYLES // END ========== */






/* ========== Create Pledge STYLES // START ========== */

.form-progressbar {
  width: 100%;
  float: left;
  list-style: none;
  padding-left: 14px;
  margin-top: 14px;
}

.form-progressbar li {
    position: relative;
    text-align: center;
    height: 5px;
    box-sizing: border-box;
    background: #d7d7d7;
    display: block;
    cursor: default;
    width: 30.4%;
    float: left;
}

/*/ updated 20-12-2018 [START] /*/

.form-progressbar li.steps {
width: 4%;
float: right;
}

.form-progressbar li.step {
background: #d7d7d7;
}

.form-progressbar li.step.done {
background: #4479e9;
}

.form-progressbar li a , .form-progressbar li span {
position: absolute;
z-index: 2;
width: 30px;
height: 30px;
line-height: 26px;
-ms-touch-action: none;
touch-action: none;
background: #d7d7d7;
border-radius: 50%;
top: -13px;
left: -15px;
border: 2px solid #d7d7d7;
font-size: 18px;
font-weight: bold;
font-family: "Quicksand", sans-serif;
color: #ffffff;
}

.form-progressbar li a{
  cursor: pointer;
}
.form-progressbar li.step.done a, .form-progressbar li.step.done span {
border-color: #4479e9;
background: #4479e9;
}

.form-progressbar li.step.inactive a, .form-progressbar li.step.inactive span {
border-color: #d7d7d7;
background: #d7d7d7;
}

.form-progressbar li.step.active a, .form-progressbar li.step.active span {
border-color: #4479e9;
background: #fff;
color: #4479e9;
}

.form-progressbar li.steps a, .form-progressbar li.steps span {
width: 80px;
border-radius: 25px;
font-size: 14px;
right: 0;
left: auto;
}

.form-progressbar li.steps.done a,.form-progressbar li.steps.done span {
border-color: #4479e9;
background: #4479e9;
color: #ffffff;
}

/*/ updated 20-12-2018 [END] /*/
.form-questions {
  width: 100%;
  float: left;
  background: #fff;
  margin-top: 33px;
  border-radius: 6px;
  padding: 29px 4%;
}

.form-mailchimp {
  margin-top: -12px;
  padding-top: 18px;
}

.form-questions .field-wrap {
    float: left;
    width: 100%;
    margin-bottom: 19px;
}

.form-questions .field-wrap label {
    font-size: 14px;
    color: #444444;
    line-height: 22px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
    float: left;
    width: 100%;
    margin-bottom: 9px;
}

.form-questions .field-wrap input {
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    font-size: 12px;
}

.form-questions h5 {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    line-height: 22px;
    font-family: "Quicksand", sans-serif;
    padding-bottom: 14px;
    text-align: center;
    float: left;
    width: 100%;
}

.form-questions .form-img img {
  margin-left: auto;
  margin-right: auto;
}

.form-questions p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 22px;
    font-family: "Libre Baskerville", sans-serif;
    padding-top: 27px;
    padding-bottom: 22px;
    text-align: center;
    float: left;
    width: 100%;
}

.qform-actions {
  width: 100%;
  float: left;
  margin-bottom: 60px;
}

.qform-actions .button-con {
    float: left;
    margin-top: 24px;
    width: 100%;
}

.qform-actions .my-button-submit {
    padding: 10px 12px;
    background: #4479e9;
    width: 100px;
}

.qform-actions .my-button-submit i {
  font-size: 12px;
}

.qform-actions .my-button-submit:hover {
    background: #2450ab;
}

.qform-actions p {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 22px;
    font-family: "Libre Baskerville", sans-serif;
    padding-top: 24px;
    padding-bottom: 9px;
    text-align: center;
    float: left;
    width: 100%;
}

/* ========== Create Pledge STYLES // END ========== */






/* ========== Pledge Detail STYLES // START ========== */

.pledge-detail {
  width: 100%;
  float: left;
  padding-top: 28px;
}

.about-pledge .pledge-img {
  float: left;
  margin-bottom: 24px;
  max-height: 500px;
  max-width: 1000px;
  
}

.about-pledge .pledge-content {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 30px;
}

.pledge-detail .button-edit {
    padding: 5px;
    margin-left: 3px;
    margin-right: 0;
    text-transform: uppercase;
    border-radius: 4px;
    text-align: center;
    transition: 0.5s all;
    background: #7c7c7a;
    color: #fff;
    width: 34px;
    position: absolute;
    right: 0;
    font-size: 16px;
}

.pledge-detail .button-edit:hover {
  background: #585858;
}

.about-pledge .pledge-content h4 {
    font-size: 30px;
    font-weight: bold;
    color: #000000;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 20px;
    margin-top: 3px;
}

.about-pledge .pledge-content p {
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    color: #333333;
    font-family: "Libre Baskerville", sans-serif;
    letter-spacing: -0.2px;
}

.pledge-share {
  width: 100%;
  float: left;
  margin-top: 20px;
}

.about-pledge .pledge-share p {
  font-size: 12px;
  line-height: 16px;
  font-family: "Quicksand", sans-serif;
  color: #444444;
  font-weight: bold;
  float: left;
  margin-top: 6px;
  margin-right: 20px;
}

.pledge-share ul {
  list-style: none;
  float: left;
}

.pledge-share ul li {
  display: inline-block;
  margin-left: 1px;
  margin-right: 2px;
}

.pledge-share ul li img {
    width: 77px;
    height: 28px;
    display: inline-block;
}

/* ========== Pledge Detail STYLES // END ========== */




/* ========== RESPONSIVE STYLES // START ========== */

@media (max-width: 1150px) {
  .mbadges .content {
    justify-content: space-around;
  }
}

@media (max-width: 1100px) {
  .campaign-buttons .button i {
    width: 24px;
  }
}

@media (max-width: 1050px) {
    nav {
        width: 85%;
    }

    .page-info h1,
    .page-info-2 h1 { /* updated 03-12-2018 */
      font-size: 32px;
    }
    
}

@media (max-width: 1020px) {
  .cause-content .left-content {
    width: 65%;
  }

  .cause-content .right-content {
    width: 35%;
  }

  .campaign-box .campaign-img-box {
    width: 100%;
    margin-bottom: 10px;
  }

  .campaign-box .campaign-img-content {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    margin-right: auto;
    float: none;
  }

  .campaign-buttons .button i {
    width: 34px;
  }

  .about-cause .about-content h4 {
    font-size: 32px;
  }
}

@media (max-width: 980px) {
  nav {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }

  nav .burgermenu {
    display: block;
    width: 42px;
    float: right;
    font-size: 20px;
    font-weight: 600;
    color: #231f20;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 0 7px;
    margin-top: -72px;
    cursor: pointer;
    margin-right: -8px;
  }

  nav .burgermenu img {
    display: inline-block;
    width: 22px;
    margin-right: 5px;
  }

  .menu {
    display: none;
  }

  nav .menu {
    width: 100%;
    float: left;
    padding-top: 5px;
    display: none;
    padding-bottom: 5px;
    padding-left:  0;
    padding-right:  0;
    background: #000;
    margin-bottom: 0;
  }

  nav .menu li {
    width: 100%;
  }

  nav .menu li a {
    display: block;
    height: 32px;
    line-height: 32px;
    text-align: left;
    padding-left:  0;
    padding-right:  0;
    font-size: 15px;
  }

  header.solid nav .menu li a {
    color: #fff !important;
  }

  header.solid nav .sub-menu ul li a {
    color: #000000 !important;
  }

  .nav-buttons {
    display: none;
    background: #000;
    width: 100%;
    margin-top: 0;
    padding-top: 10px;
  }

  nav input[type=checkbox]:checked ~ .menu,
  nav input[type=checkbox]:checked ~ .nav-buttons {
    display: block;
  }

  nav .sub-menu {
    position: static;
    padding-bottom: 0;
    margin-bottom: 6px;
    /* height: 276px; */
    overflow-y: scroll;
    display: none;
  }
  nav .menu li:hover .sub-menu {
    display: block;
  }


  nav .sub-menu .content {
    padding-left: 15px;
  }

  nav .sub-menu .sub-menu-container {
    padding-bottom: 0;

  }

  nav .sub-menu ul,
  nav .sub-menu ul:last-child {
    padding-left: 0;
    width: 100%;
  }
  

  nav .menu li.dropdown:hover a {
    background: unset;
  }

  .nav-buttons ul li,
  .nav-buttons ul li .button-my-account {
    width: 100%;
  }
  
  .nav-buttons ul li .button-my-account i {
    display: block;
    float: right;
  }
  .nav-buttons ul li:last-child {
    padding-right: 4px !important;
  }

  .nav-buttons ul li .my-button {
    width: 100%;
    margin-top: 2px;
    margin-bottom: 2px;
  }
  .my-account-dropdown .account-dropdown-menu {
    width: 100%;
    max-width: 100%;
    position: static;
  }

  header.solid nav .menu li.dropdown a {
      background: url(../img/nav-item-bg.png) no-repeat right 8px;
  }

  .why-premium .sect-content h4 br {
    display: none;
  }

  .page-info .page-info-left {
    width: 60%;
  }

  .page-info .page-info-right {
    width: 40%;
  }

  .page-info h1,
  .page-info-2 h1 {
    font-size: 28px;  /* updated 03-12-2018 */
  }

  .page-info p.page-desc {  /* added 03-12-2018 */
    font-size: 14px;
  }

  .cause-content .left-content {
    width: 63%;
  }

  .cause-content .right-content {
    width: 37%;
  }

  .about-cause .about-content h4 {
    font-size: 28px;
  }

  .subscription .sub-info h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .user-dashboard .dashboard-menu-con {
    width: 220px;
  }

  .user-dashboard .dashboard-content {
    padding-left: 220px;
  }

  .user-dashboard .dashboard-content-inner {
    padding-left: 5%;
    padding-right: 0;
  }
}

@media (max-width: 900px) {
    .who-used-us h3 {
        font-size: 32px;
        line-height: 36px;
    }

    .who-used-us p {
        font-size: 15px;
        line-height: 24px;
    }

    .why-premium .sect-content h4 {
      font-size: 30px;
      line-height: 36px;
    }

    .cause-content .left-content {
      width: 60%;
    }

    .cause-content .right-content {
      width: 40%;
    }

    .subscription .price-box {
      width: 260px;
    }

    .subscription .sub-info {
      padding-right: 280px;
    }
}

@media (max-width: 824px) {
  .cause-content .left-content,
  .cause-content .right-content {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }

  .cause-content .right-content {
    margin-top: 20px;
    padding-left: 0;
  }

  .right-content .news, .right-content .facebook-page-info {
    width: 100%;
    max-width: 100%;
  }

  .mslider {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
    .who-used-us .sect-half {
        width: 100%;
        padding-right: 0;
    }

    .who-used-us p {
        max-width: 100%;
    }

    .who-used-us .sect-half .sect-content {
        margin-left: auto;
        margin-right: auto;
        float: none;
    }

    .features .feature-single {
      width: 50%;
    }

    .features .feature-single:nth-child(3n+1) {
      clear: none;
    }

    .features .feature-single:nth-child(2n+1) {
      clear: both;
    }

    .why-premium .sect-img,
    .why-premium .sect-content {
      width: 100%;
    }

    .why-premium .sect-content {
      margin-top: 30px;
    }

    .page-info .page-info-left {
      width: 100%;
      margin-bottom: 10px;
    }

    .page-info .page-info-right {
      width: 100%;
      margin-bottom: 10px;
    }

    .page-info .support-sect {
      display: none;  /* updated 03-12-2018 */
    }

    /* Added 03-12-2018 [START] */
    .support-sect.support-sect-free {
      width: 100%;
      display: block;
      margin-top: 20px;
      margin-bottom: 23px;
    }
    /* Added 03-12-2018 [END] */

    .price .price-info h1 {
      font-size: 36px;
      line-height: 52px;
    }

    .price-box,
    .subscription .price-box {
      width: 100%;
      max-width: 480px;
      float: none;
      margin-left: auto !important;
      margin-right: auto !important;
      overflow: hidden;
    }

    .subscription .sub-info {
      padding-right: 0;
      margin-bottom: 60px;
      width: 100%;
    }

    .subscription .sub-info p,
    .subscription .form-wrapper {
      max-width: 100%;
    }

    .subscription .price-box {
      position: static;
    }

    .user-dashboard .dashboard-menu-con {
       width: 100% !important;
      position: static;
    }

    .user-dashboard .dashboard-content {
      padding-left: 0 !important;
    }

    .user-dashboard .dashboard-content-inner {
      padding-left: 0;
      border-left: 1px solid transparent;
      min-height: auto;
    }

    .user-dashboard .dashboard-content h2 {
      font-size: 30px;
      line-height: 30px;
    }

    .form-progressbar {
      padding-left: 16px;
    }
}

@media (max-width: 736px) {
  footer .footer-top .logo-footer {
    width: 19%;
  }

  footer .footer-top .sect-links {
    width: 18%;
  }

  footer .footer-top .sect-links:last-child {
    width: 63%;
  }
}

@media (max-width: 640px) {
    .banner .banner-container {
        height: 560px;
    }

    .banner .banner-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .banner .banner-content .banner-heading {
        font-size: 42px;
    }

    .banner .banner-content .banner-desc {
        font-size: 18px;
    }

    .features h3 {
      font-size: 32px;
      line-height: 36px;
    }

    .features .feature-single p {
      font-size: 13px;
      line-height: 20px;
    }

    .featured-sect h4 {
      font-size: 30px;
      line-height: 40px;
    }

    .testimonials .user-message p {
      font-size: 20px;
      line-height: 30px;
    }

    .testimonials .user-message h6 {
      font-size: 20px;
      line-height: 30px;
    }

    footer .footer-top .logo-footer {
      width: 33%;
    }

    footer .footer-top .sect-links {
      width: 67%;
    }

    footer .footer-top .sect-links:last-child {
      width: 100%;
    }

    footer .footer-bottom ul {
      width: 100%;
      max-width: 113px;
    }

    footer .footer-bottom ul {
      margin-left: auto;
      margin-right: auto;
      float: none;
      max-width: 72px;
    }

    footer .footer-bottom ul li:last-child {
      padding-right: 0;
    }

    footer .footer-bottom .copyrights {
      width: 100%;
      text-align: center;
    }

    footer .footer-bottom .copyrights span, footer .footer-bottom .copyrights a {
      display: block;
      border-left: none;
      padding-right: 0;
      padding-left: 0;
    }
}
@media (max-width: 568px) {
  nav .sub-menu ul:last-child {
    column-count: 1;
  }
}
@media (max-width: 480px) {
    .banner .banner-container {
        height: 500px;
    }

    .banner .banner-content {
        margin-top: 100px;
    }

    .banner .banner-content .banner-heading {
        font-size: 32px;
    }

    .banner .banner-content .banner-desc {
        font-size: 14px;
    }

    .banner .my-button.my-button-s2,
    .banner .banner-content .link {
        font-size: 12px;
    }

    .banner .banner-content .link {
        clear: both;
        display: block;
    }

    .featured-sect h4 {
      font-size: 24px;
      line-height: 30px;
    }

    .featured-sect h4 br {
      display: none;
    }

    .why-premium .sect-content h4 {
      font-size: 24px;
      line-height: 30px;
    }

    .why-premium .sect-content ul li {
      font-size: 14px;
      line-height: 19px;
      margin-bottom: 8px;
    }

    .campaign-box .box-content {
      padding-right: 15px;
      padding-left: 15px;
    }

    .campaign-box .campaign-img-content .campaign-buttons {
       display: block;
    }

    .campaign-box .campaign-buttons .button {
      width: 200px;
      display: block;
      clear: both;
      margin-left: auto;
      margin-top: 6px;
      margin-right: auto;
    }

    .campaign-img-overlays-inner {
      margin-left: 0;
      margin-right: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }

    .about-cause .about-content h4 {
        font-size: 22px;
    }

    .about-cause .about-content p {
      font-size: 13px;
    }

    .subscription .field-wrap-half .input-wrap {
      width: 100%;
      margin-right: 0;
    }
    
    .subscription .field-wrap-quarter {
      width: 100%;
    }

    .subscription .field-wrap-quarter .input-wrap {
      width: 64%;
    }

    .subscription .sub-info h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .subscription .sub-info p {
      font-size: 16px;
    }

    .user-dashboard .dashboard-content h2 {
      width: 100%;
      margin-bottom: 20px;
      margin-left: 0;
      font-size: 24px;
    }

    .user-dashboard .button-create-campaign {
      /* float: left; */
      margin-bottom: 20px;
    }

    .form-progressbar li {
      width: 28%;
    }

    .form-questions {
      padding-left: 15px;
      padding-right: 15px;
    }

    .form-mailchimp {
      margin-top: 0;
    }
    
}

@media (max-width: 424px) {
    .who-used-us h3 {
        font-size: 26px;
        line-height: 32px;
    }

    .who-used-us p {
        font-size: 14px;
        line-height: 22px;
    }

    .features h3 {
      font-size: 26px;
      line-height: 32px;
    }

    .features h3 br {
      display: none;
    }

    .features .feature-single {
      width: 100%;
    }

    .features .feature-single .feature-content {
      height: auto;
    }

    .testimonials .user-message p {
      font-size: 18px;
      line-height: 26px;
    }

    .testimonials .user-message h6 {
      font-size: 18px;
      line-height: 26px;
    }

    footer .footer-top .logo-footer {
      width: 50%;
    }

    footer .footer-top .sect-links {
      width: 50%;
    }

    footer .footer-top .sect-links-large ul,
    footer .footer-top .sect-links-large ul:last-child {
      width: 50%;
      float: left;
    }

    .about-cause .about-img {
      position: relative;
      width: 108px;
      height: 108px;
      margin-left: auto;
      margin-right: auto;
    }

    .about-cause .about-content {
      padding-left: 0;
      margin-top: 20px;
    }

    .support-sect .support-content {
      padding: 10px 12px 16px;
    }
}

@media (max-width: 360px) {
    .who-used-us .sect-half a {
        height: 120px;
    }

    .form-progressbar li {
      width: 26%;
    }
}

/* ========== RESPONSIVE STYLES // END ========== */



/* ========== OLD CUSTOM STYLES // Start ======== */
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #f4f4f4;
  border-color: #DDDDDD;
  color: inherit;
  cursor: default;
  z-index: 2;
}
.pagination > li > a,
.pagination > li > span {
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  color: inherit;
  float: left;
  line-height: 1.42857;
  margin-left: -1px;
  padding: 4px 10px;
  position: relative;
  text-decoration: none;
}
ul.pagination a:hover, ul.pagination a.current {    background: #3a5795;    color: #fff;}

.ul.pagination a:hover, ul.pagination a.current {
    background: #4379e9 !important;
    color: #fff !important;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover{
  z-index: 3;
  color: #23527c;
  background-color: #4379e9 !important;
  border-color: #ddd;
}

.mbadge-img-size {
  width: 180px;
  height: 180px;
}
/* ========== OLD CUSTOM STYLES // END ========= */



/* ========== 14-12-2018 STYLES // START ========== */

.user-dashboard.login-form .dashboard-content {
  padding-left: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.user-dashboard.login-form .dashboard-content-inner {
    border-left: none;
    padding-left: 170px;
    padding-bottom: 24px;
}

.user-dashboard.login-form .dashboard-title {
  /* padding-left: 200px; */
  position: relative;
  margin-top: 36px;
}

.user-dashboard.login-form .dashboard-title .user-form-img {
  width: 162px;
  height: 162px;
  /*border-radius: 100%;*/
  overflow: hidden;
  float: left;
  position: absolute;
  left: -170px;
  top: 58px;
  background: #4479e9;
  display: block;
  border-radius: 6px;
}

.user-dashboard.login-form .dashboard-title .user-form-img i {
  border-radius: 100%;
  width: 146px;
  height: 146px;
  position: absolute;
  top: 8px;
  left: 8px;
  display: block;
  font-size: 63px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4479e9;
}

.user-dashboard.login-form .dashboard-title h2 {
  /*text-align: center;*/
  /*width: 100%;*/
}

.login-form .form-mailchimp {
  padding: 46px 46px;
}

.form-questions .field-wrap-md {
  width: 47%;
}

.move-left {
  float: left !important;
}

.move-right {
  float: right !important;
}

.login-form .qform-actions .button-con {
  margin-bottom: 20px;
}

.login-form .qform-actions .button-con .my-button {
  margin-bottom: 10px;
}

.login-form .qform-actions p {
  padding-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.login-form .qform-actions .my-button-submit {
  width: 168px;
}

@media (max-width: 768px) {
  .user-dashboard.login-form .dashboard-title .user-form-img {
    top: 51px;
  }
}

@media (max-width: 640px) {
  .user-dashboard.login-form .dashboard-content-inner {
    padding-left: 0;
  }

  .user-dashboard.login-form .dashboard-title .user-form-img {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    float: none;
    left: 0;
    top: 0;
    margin-bottom: 30px;
  }

  .user-dashboard.login-form .dashboard-content h2 {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .login-form .form-mailchimp {
    padding: 30px 24px;
  }

  .form-questions .field-wrap-md {
    width: 100%;
  }
}

.login-form .facebook-login-block {
margin: 10px auto;
text-align: center;
}

.fb-btn {
background: #3a5795;
color: #fff;
position: relative;
padding-left: 40px;
min-width: 188px;
line-height: 18px;
font-size: 12px;
}

.fb-btn:hover {
color: #fff;
background-color: #2d4373;
}

.fb-btn span {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 34px;
line-height: 34px;
font-size: 16px;
text-align: center;
border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.twitter-color {
background: #1da1f2 !important;
color: #fff;
}

.twitter-color:hover {
color: #fff;
background-color: #158ad2 !important;
}
/* ========== 14-12-2018 STYLES // END ========== */


.custom-file-upload {
    border: 1px solid #d7d7d7;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    width: 180px !important;
    clear: both;
}
.file-upload {
    display: none;
}
.small-color {
    color: #8a8a8a;
}
.hashtagsection {
    display: none;
}
/* ========== 19-12-2018 STYLES // START ========== */

.campaign-banner.e-mode {
  position: relative;
}

.campaign-banner-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    overflow: hidden;
    background: #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.campaign-banner.e-mode .campaign-banner-overlay {
  display: flex;
}

.campaign-banner-overlay .img-dim {
  font-size: 26px;
  font-weight: 700;
  font-family: "Arial", sans-serif;
}

.create-campaign .demo-img {
  display: inline-block;
  height: 132px;
  margin-top: 5px;
  border: 1px solid #ccc;
  padding: 3px;
  box-sizing: border-box;
}

.create-campaign .demo-img img {
  max-height: 132px;
  height: 100%;
  display: block;
}

.create-campaign .overlay-img,
.create-campaign .img-info {
  float: left;
}

.create-campaign .field-wrap > label {
  border-bottom: 2px solid #444444;
  font-size: 24px;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.create-campaign .field-wrap label span {
  font-size: 16px;
}


.create-campaign .field-wrap label .note {
  color: #fe0303;
}

.create-campaign .img_block {
    position: relative;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    border: 1px solid #ccc;
    height: 132px;
    cursor: move;
}

.create-campaign .img_block img {
    height: 100%;
}

.create-campaign .img_plus {
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    border: 1px solid #ccc;
    width: 132px !important;
    height: 132px !important;
    cursor: pointer;
}

.create-campaign .img_plus .fa {
    line-height: 130px;
    width: 130px;
    text-align: center;
}

.create-campaign .img_block .remove {
    position: absolute;
    right: 2px;
    top: 2px;
    color: #DA1515;
    cursor: pointer;
    font-size: 14px;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

.create-campaign .img_plus #overlay {
    position: absolute;
    left: -700px;
}

.create-campaign .form-questions .field-wrap input#overlay {
    float: left;
    width: auto;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    font-size: 12px;
}

.create-campaign .img_plus #overlay {
    position: absolute;
    left: -700px;
}

.create-campaign .img-info {
  list-style: none;
  margin-top: 10px;
}

.create-campaign .img-info li {
    width: 100%;
    display: block;
    font-size: 12px;
    color: #a1a1a1;
    display: inline-block;
    font-family: "Quicksand", sans-serif;
}

.create-campaign .img-info li a {
  font-size: 14px;
  display: block;
  font-weight: 500;
}

.create-campaign .slider-wrap {
  float: left;
  width: 100%;
  margin-top: 15px;
  margin-bottom: -10px;
}

.ui-slider-float .ui-slider-tip, .ui-slider-float .ui-slider-tip-label {
  opacity: 1 !important;
  visibility: visible;
  top: -30px !important;
}

.qform-actions .my-button-submit-2 {
  width: 180px;
}

.create-campaign .field-wrap label .note2 {
    color: #ccc;
}




.create-campaign .file-upload {
  display: block;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.create-campaign  .file-upload .file-select {
  display: block;
  border: 2px solid #fff;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 34px;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  float: left;
}
.create-campaign  .file-upload .file-select .file-select-button {
  background: #dce4ec;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 34px;
}
.create-campaign  .file-upload .file-select .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}
.create-campaign .file-upload .file-select:hover {
  border-color: #fff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.create-campaign .file-upload .file-select:hover .file-select-button {
  background: #4479e9;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.create-campaign .file-upload.active .file-select {
  border-color: #fff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.create-campaign  .file-upload.active .file-select .file-select-button {
  background: #3fa46a;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.create-campaign .file-upload .file-select input[type="file"] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: auto;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}
.create-campaign .file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}
.create-campaign .file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #fff;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin-top: 5px;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}
.create-campaign .file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.create-campaign .file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}


@media (max-width: 480px) {
  .create-campaign .field-wrap > label {
    font-size: 16px;
  }

  .create-campaign .field-wrap label span {
    font-size: 12px;
  }

  .create-campaign .img_plus {
    margin-right: 0px;
    width: 124px !important;
    height: 124px !important;
  }

  .create-campaign .img_block {
    height: 124px;
  }

  .create-campaign .img_plus .fa {
    width: 122px;
    line-height: 122px;
  }
}

.form-questions .field-wrap .checkbox label {
    font-size: 12px;
    line-height: 16px;
}
.form-questions .field-wrap input[type="checkbox"] {
  width: auto;
  border: none;
  height: auto;
  line-height: normal;
  margin-right: 5px;
  position: relative;
  top: 1px;
}
/* ========== 19-12-2018 STYLES // END ========== */
.slider-value{
  display: none;
} 
}


/* =========== campagin view images //Start ============= */


.campaign-dp .tools-block { margin-bottom: 20px;}
.campaign-dp .campaign-buttons{margin-bottom:20px;    margin-top: 30px;}
.campaign-dp{ text-align: center;}
.campaign-dp .crop{    margin: auto; margin-bottom: 20px;}
.campaign-dp .overlay-block {
    margin: auto;
    text-align: center;
    margin-bottom: 10px;
}
.campaign-dp .overlay-block input {
    display: none;
}
.campaign-dp .overlay-block input:checked + .prw-block {
    border: 1px solid #02AF02;
}
.campaign-dp .overlay-block .prw-block {
    width: 80px;
    height: 80px;
    margin: 0px 5px 10px 5px;
    border: 1px solid #ccc;
    display: inline-block;
    position: relative;
    cursor: pointer;
        overflow: hidden;
}
.campaign-dp .overlay-block input:checked + .prw-block i {
    display: block;
    z-index: 99;
}
.campaign-dp .overlay-block .prw-block i {
    color: #6BD46B;
    position: absolute;
    display: none;
    right: 2px;
    font-size: 20px;
    top: 2px;
}
.campaign-dp .overlay-block .crop-prw-block {
    width: 78px;
    height: 78px;
    overflow: hidden;
    margin: 0px;
}
.campaign-dp .overlay-block img.overlay {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 1;
    width: 78px;
    height: 78px;
}
.campaign-dp .overlay-block .preview{
    width: 78px;
    height: 78px;
    margin-left: 0px;
    margin-top: 0px;
}


.campaign-dp .overlay-block h4,.campaign-dp .tools-block h4{
       color: #494949;
    padding-bottom: 10px;
    border-bottom: 1px solid #494949;
}
.campaign-dp .prime-button{    
    padding: 10px;
    margin-bottom: 7px;
    width: 300px;
    max-width: 100%;
    background-color: #3a5795;
}
.campaign-dp .hastag{
    padding-bottom: 10px;
}



.campaign-dp #file{
    opacity:0;
    position:absolute;
    left:-1000px;
    top:-1000px;
}
.campaign-dp .crop{max-width:100%;    height: auto;}
.campaign-dp .jcrop-holder {
    overflow: hidden;
    box-sizing: border-box;
    margin:auto;
    
}
.campaign-dp .main-image{position:relative;display:inline-block;width:100%;}
.campaign-dp #loader{position:absolute;left:50%;margin-left:-24px;top:50%;margin-top:-24px;display:none;    z-index: 990;}
.campaign-dp .ovelayovercrop{
        position: absolute;
    width: 100%;
    height: 100%;
}
.campaign-dp .slider{
    width: 300px;
    max-width:90%;
    margin: auto;
    margin-top: 15px;
}


/* =========== campagin view images //END ============= */

/* =========== 21-12-2018 //START ============= */


.campaign-dp .main-image {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    max-height: 300px;
    overflow: hidden;
}

.campaign-dp .campaign-buttons {
    margin-bottom: 20px;
    width: 100%;
    float: left;
    position: relative;
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.campaign-buttons .fb-btn {
    min-width: auto;
    width: 31.5%;
    color: #fff;
    position: relative;
    display: block;
    padding: 0px 0px;
    margin-bottom: 0;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 4px;
    font-family: "Quicksand", sans-serif;
    padding-left: 20px;
    text-transform: uppercase;
    line-height: 32px;
    letter-spacing: 1.9px;
    transition: 0.5s all;
}

.campaign-buttons .fb-btn.fb-green {
    background-color: #00a651;
}

.campaign-buttons .fb-btn.fb-green:hover,
.campaign-buttons .fb-btn.fb-green:active {
  background-color: #00823f;
}

.campaign-buttons .fb-btn i {
    width: 34px;
    line-height: 30px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    position: relative;
    top: 0px;
}


.campaign-dp .form-submit-block {
  width: 100%;
    float: left;
    margin-top: 27px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
    padding-bottom: 5px;
}

.campaign-dp .hastag {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.campaign-dp .hastag .checkbox-custom {
    position: absolute;
    opacity: 0;
}

.campaign-dp .hastag .checkbox-custom + label {
    position: relative;
    cursor: pointer;
    padding: 0;
}
.campaign-dp .hastag .checkbox-custom-label {
    font-size: 13px;
    color: #444444;
    font-family: "Libre Baskerville", sans-serif;
}

.campaign-dp .hastag .checkbox-custom + label:before {
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid #b7b7b7;
}

.campaign-dp .hastag .checkbox-custom + label:before {
  background: #fff;
}
.campaign-dp .hastag .checkbox-custom + label:before {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.12);
}
.campaign-dp .hastag .checkbox-custom:checked + label:before {
  background: #4479e9;
  border: 1px solid #4479e9;
}
.campaign-dp .hastag .checkbox-custom:disabled + label{
  color: #b8b8b8;
  cursor: auto;
}
.campaign-dp .hastag .checkbox-custom:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}

.campaign-dp .hastag .checkbox-custom:checked + label:after {
  content: '';
  position: absolute;
  left: 3px;
  top: 8px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.campaign-dp .prime-button {
  text-transform: uppercase;
    background: #2557c1;
    border-radius: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: #fff;
    width: 116px;
    letter-spacing: 0.5px;
    line-height: 22px;
    transition: 0.5s all;
    width: auto;
    line-height: 28px;
    padding: 6px 22px;
}

.campaign-dp .overlay-block {
    margin: auto;
    margin-bottom: 10px;
    margin-left: -12px;
    margin-right: -12px;
    display: block;
    padding-left: 0;
    padding-right: 0;
    width: auto;
    flex: 0;
    max-width: unset;
    margin-top: 10px;
}

.campaign-dp .overlay-block .prw-block {
  border: 2px solid #b7b7b7;
    float: left;
    width: 78px;
    height: 78px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 22px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
    transition: 0.5s all;
    box-sizing: border-box;
}

.campaign-dp .overlay-block input:checked + .prw-block {
    border: 2px solid #ae143d;
}

.campaign-dp .slider {
    width: 100%;
    max-width: 98%;
    margin: auto;
    margin-top: 25px;
    position: relative;
    text-align: left;
    height: 5px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
    border-radius: 5px;
    background: #e5e5e5;
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 24px;
}

.campaign-dp .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 24px;
    height: 24px;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
    background: #ffffff;
    border-radius: 50%;
    top: -11px;
    left: 5px;
    border: 1px solid rgba(0,0,0,0.15);
}

@media (max-width: 1020px) {
  .campaign-box .campaign-img-box {
      width: 100%;
      max-width: 300px;
      margin-bottom: 40px;
      margin-left: auto;
      margin-right: auto;
      float: none;
  }

  .campaign-box .campaign-img-content {
      clear: both;
      max-width: 370px;
  }

  .campaign-dp .campaign-buttons {
    max-width: 300px;
    display: block;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  .campaign-buttons .fb-btn {
    width: 100%;
    margin-bottom: 8px;
  }
  .campaign-dp .overlay-block .prw-block {
    float: none;
    clear: none;
    display: inline-block;
  }
}

@media (max-width: 424px) {
  .campaign-dp .prime-button {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .campaign-dp .main-image {
     height: 240px;
  }
  .campaign-dp .main-image .main_selected_image {
    max-width: 240px;
    max-height: 240px;
  }
}



/* =========== 21-12-2018 //END ============= */


/* =========== 24-12-2018 //START ============= */
.e-mode .page-banner {
  position: relative;
}
.page-banner{
  max-height: 250px;
  overflow: hidden;
}

.page-banner img {
    max-width: 100%;
    display: block;
    min-height: 72px;
    width: 100%;
}

.campaign-banner-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    overflow: hidden;
    background: #d8d8d8;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    display: none;
}

.e-mode .page-banner .campaign-banner-overlay {
    display: flex;
}

.campaign-banner-overlay .img-dim {
    font-size: 26px;
    font-weight: 700;
    font-family: "Arial", sans-serif;
}

.campaign-banner-overlay .file-upload {
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 1px;
    font-weight: normal;
    color: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.e-mode .campaign-banner-overlay .file-upload {
  display: block; 
}

.e-mode .sign-form {
  display: none; 
}

.campaign-banner-overlay .file-upload .fa {
  display: block;
  font-size: 45px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  margin-bottom: 10px;
}

.campaign-banner-overlay .file-upload span {
  display: block;
  font-size: 12px;
}

.campaign-banner-overlay .file-upload-label {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    cursor: pointer;
    background: rgba(0,0,0,0.2);
    font-family: "Arial";
    line-height: 22px;
    margin-bottom: 0;
}

.campaign-banner-overlay .file-upload-label:hover {
  background: rgba(0,0,0,0.5);
}

.campaign-banner-overlay .file-upload-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
}



/*.about-cause .about-img img{
  width: 132px;
  height: 132px;
}*/



.about-img-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
    overflow: hidden;
    background: #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.e-mode .about-img .about-img-overlay {
    display: flex;
}

.e-mode .about-img-overlay .img-dim {
    font-size: 13px;
    font-weight: 700;
    font-family: "Arial", sans-serif;
    margin-bottom: 0;
}

.e-mode .about-img-overlay .file-upload {
    text-align: center;
    font-size: 16px;
    line-height: 14px;
    font-weight: normal;
    color: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.e-mode .about-img-overlay .file-upload {
  display: flex;
}
.e-mode .about-img-overlay .file-upload .fa {
  display: block;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  margin-bottom: 4px;
}

.e-mode .about-img-overlay .file-upload-label {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    cursor: pointer;
    background: rgba(0,0,0,0.2);
    font-family: "Arial";
    line-height: 22px;
    margin-bottom: 0;
}

.e-mode .about-img-overlay .file-upload-label:hover {
  background: rgba(0,0,0,0.5);
}

.e-mode .about-img-overlay .file-upload-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
}

.e-mode .about-content h4 {
  display: none;
}
.e-mode .facebook-page-info a {
  display: none;
}

.about-content .title {
  display: none;
}

.e-mode .about-content .title {
    font-size: 20px;
    width: 100%;
    padding: 5px 10px;
    box-sizing: border-box;
    margin-top: 5px;
    border-radius: 4px;
    font-family: "Arial";
    margin-bottom: 8px;
    display: block;
}

.e-mode .about-content p {
  display: none;
}

.about-content .desc {
  display: none;
}

.e-mode .pledge-content a {
  display: none;
}


.e-mode .about-content .desc {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    font-family: "Arial";
    width: 100%;
    padding: 5px 10px;
    box-sizing: border-box;
    margin-top: 2px;
    border-radius: 4px;
    display: block;
}

.e-mode .about-content {
  width: 100%;
}

.e-mode input,
.e-mode textarea {
  transition: 0.3s all;
  border: 1px solid #ccc !important;
}

.e-mode input:hover,
.e-mode textarea:hover,
.e-mode input:focus,
.e-mode textarea:focus {
  border: 1px solid #999 !important;
}

.about-share-e {
  display: none;
}

.e-mode .about-share {
  display: none;
}

.e-mode .about-share-e {
  width: 100%;
  float: left;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-top: 8px;
}

.e-mode .about-share-e .input-group {
    width: 100%;
    margin-right: 10px;
}

.e-mode .about-share-e .input-group:last-child {
  margin-right: 0;
}

.e-mode .about-share-e input {
  font-size: 12px;
}

.e-mode .about-share-e .input-group-text {
  width: 38px;
}

.theme-colors {
  display: none;
}

.e-mode .theme-colors {
  width: 100%;
  float: left;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.e-mode .theme-colors .color-input {
  margin-right: 10px;
}

.e-mode .theme-colors .pickr {
  display: inline-block;
  /*z-index: 1000;*/
}

.pickr .pcr-button {
  width: 120px;
  height: 30px;
  top: 10px;
}

.e-mode .content {
  overflow: visible;
}

.e-mode .theme-colors label {
  height: 30px;
  line-height: 30px;
  margin-bottom: 0;
  font-size: 12px;
}

/*.edit-options {
  display: none;
}*/

.edit-options {
  width: 100%;
  float: left;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  font-size: 12px;
  font-family: "Lora", sans-serif;
  text-transform: uppercase;
  border-top: 1px solid #ccc;
    padding-top: 10px;
}

.edit-options .ebtn {
  width: 110px;
  height: 38px;
  line-height: 38px;
  color: #fff;
  text-align: center;
  margin-left: 6px;
  border-radius: 4px;
  transition: 0.4s all;
}

.e-mode .about-cause {
  padding-bottom: 12px;
}
.edit-options .btn-save {
  background: #4479e9;
  display: none;
}

.edit-options .btn-save:hover {
  background: #3363ca;
}

.edit-options .btn-cancel {
  background: #f8c466;
  display: none;
}

.edit-options .btn-cancel:hover {
  background: #e4a83c;
}

.edit-options .btn-upgrade {
  background: #F03F2B;
  display: none;
  width: auto;
  padding-left:6px;
  padding-right:6px;
}

.edit-options .btn-upgrade:hover {
  background: #e31700;
}

.edit-options .btn-customize {
  background: #4479e9;
}

.edit-options .btn-customize:hover {
  background: #3363ca;
}

.e-mode .edit-options .btn-customize {
  display: none;
}

.edit-options .btn-preview {
  background: #28a745;
  display: none;
}

.edit-options .btn-preview:hover {
  background: #1b8a35;
}

.e-mode .edit-options .btn-save,
.e-mode .edit-options .btn-cancel,
.e-mode .edit-options .btn-preview,
.e-mode .edit-options .btn-upgrade {
  display: block;
}

.pcr-app {
  /*width: 100%;*/
  /*max-width: 28em;*/
}

.e-mode .campaign-box .box-title h4 {
  display: none;
}

.campaign-box .box-title .title2 {
  display: none;
}

.e-mode .campaign-box .box-title .title2 {
  width: 100%;
  padding: 2px 10px;
  display: block;
}

.e-mode  .campaign-buttons .fb-btn {
  opacity: 0.3;
}
.campaign-buttons .fb-btn {
  opacity: 1;
}

.e-mode .campaign-img-actions .button-generate-img {
    background: #9ab8f7;
}

.e-mode .campaign-box .campaign-buttons .button {
    background-color: #65e0a1;
}

.e-mode .campaign-box .campaign-buttons .facebook-picture {
    background-color: #a5b6da;
}




.campaign-dp .img_plus {
    float: left;
    border: 1px solid #ccc;

    width: 78px;
    height: 78px;
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 22px;
    display: flex;
    
    cursor: pointer;
    font-size: 16px;
    color: #444444;
    line-height: 28px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
    display: none;
}
.campaign-edit{ 
  display: none;
}
.e-mode .campaign-dp{ 
  display: none;
}
.e-mode .campaign-edit{ 
  display: block;
}

.e-mode .campaign-dp .img_plus { 
  display: block;
}

.campaign-dp .img_plus .fa {
    width: 78px;
    height: 78px;
    line-height: 72px;
    text-align: center;
}

.campaign-dp input#overlay {
    float: left;
    width: auto;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    font-size: 12px;
}

.campaign-dp .overlay-block .prw-block i.fa-close {
      color: #DA1515;
      display: none !important;
}

.e-mode .campaign-dp .overlay-block .prw-block i.fa-check {
      display: none !important;
}

.e-mode .campaign-dp .overlay-block .prw-block i.fa-close {
  display: block !important;
}
.campaign-dp .overlay-block .prw-block i.fa-close {
      color: #DA1515;
}


@media (max-width: 900px) {
  .e-mode .content {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .page-banner img {
    min-height: 120px;
  }

  .campaign-banner-overlay .img-dim {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .e-mode .about-share-e {
    flex-wrap: wrap;
  }

  .e-mode .about-share-e .input-group {
    margin-right: 0;
  }
}

@media (max-width: 480px) {

  .page-banner img {
    min-height: 80px;
  }

  .campaign-banner-overlay .img-dim {
    font-size: 16px;
  }

  .campaign-banner-overlay .file-upload .fa {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .campaign-banner-overlay .file-upload-label {
    font-size: 15px;
    line-height: 16px;
  }

  .campaign-banner-overlay .file-upload span {
    font-size: 10px;
  }
}
/* =========== 24-12-2018 //END ============= */


.e-mode .campaign-edit {
    padding-top: 20px;
    padding-bottom: 20px;
    float: left;
}

.campaign-edit .field-wrap {
  width: 100%;
  float: left;
}

.campaign-edit .hashtagsection {
  margin-bottom: 20px;
  float: left;
  width: 100%;
}

.campaign-edit .field-wrap-md {
    width: 47%;
}

.campaign-edit .field-wrap .title {
  color: #444444;
  line-height: 28px;
  font-weight: 500;
  font-family: "Quicksand", sans-serif;
  float: left;
  width: 100%;
  border-bottom: 2px solid #444444;
  font-size: 24px;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.campaign-edit .field-wrap .title span {
    font-size: 16px;
}

.campaign-edit .field-wrap .title .note {
  color: #fe0303;
}

.campaign-edit .field-wrap label .note2 {
    color: #ccc;
}

.campaign-edit .field-wrap label {
    font-size: 16px;
    color: #444444;
    line-height: 28px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
    float: left;
    width: 100%;
    margin-bottom: 9px;
}

.campaign-edit .field-wrap .form-control {
    height: 40px;
    line-height: 40px;
    float: left;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    font-size: 12px;
}

.campaign-edit .field-wrap .checkbox label {
    font-size: 16px;
    color: #444444;
    line-height: 28px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
}

.campaign-edit .field-wrap small {
  font-size: 10px;
}

.campaign-edit .overlay-img {
  padding-bottom: 20px;
  width: 100%;
  float: left;
}

.campaign-edit .img_block {
    position: relative;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    border: 1px solid #ccc;
    height: 132px;
    cursor: move;
}

.campaign-edit .img_block img {
    height: 100%;
}

.campaign-edit .img_block input {
    height: 40px;
    line-height: 40px;
}

.campaign-edit .img_block .remove {
    position: absolute;
    right: 2px;
    top: 2px;
    color: #DA1515;
    cursor: pointer;
    font-size: 14px;
    width: 16px;
    height: 16px;
    line-height: 16px;
}

.campaign-edit .img_plus {
    float: left;
    border: 1px solid #ccc;
    width: 132px !important;
    height: 132px !important;
    cursor: pointer;
    font-size: 16px;
    color: #444444;
    line-height: 28px;
    font-weight: 500;
    font-family: "Quicksand", sans-serif;
    margin-right: 5px;
    margin-top: 5px;
    margin-bottom: 9px;
    display: inline-block;
}

.campaign-edit .img_plus .fa {
    line-height: 132px;
    width: 132px;
    text-align: center;
    padding-right: 6px;
    box-sizing: border-box;
}

.campaign-edit .img_plus input#overlay {
    float: left;
    width: auto;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #d7d7d7;
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    font-size: 12px;
    position: absolute;
    left: -9999px;
}

.campaign-edit .slider-wrap {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}

.campaign-edit .form-questions {
    margin-top: 20px;
    padding: 0;
}

.campaign-edit .file-upload {
  display: block;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.campaign-edit .file-upload .file-select {
  display: block;
  border: 2px solid #fff;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 34px;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  float: left;
}
.campaign-edit .file-upload .file-select .file-select-button {
  background: #dce4ec;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 34px;
}
.campaign-edit .file-upload .file-select .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}
.campaign-edit .file-upload .file-select:hover {
  border-color: #fff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.campaign-edit .file-upload .file-select:hover .file-select-button {
  background: #4479e9;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.campaign-edit .file-upload.active .file-select {
  border-color: #fff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.campaign-edit  .file-upload.active .file-select .file-select-button {
  background: #3fa46a;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.campaign-edit .file-upload .file-select input[type="file"] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: auto;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}
.campaign-edit .file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}
.campaign-edit .file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #fff;
  color: #34495e;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  margin-top: 5px;
  text-align: left;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}
.campaign-edit .file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
.campaign-edit .file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}
.campaign-edit .form-questions .field-wrap input[type="checkbox"] {
    top: 8px;
}
@media (max-width: 480px) {
  .campaign-edit .field-wrap .title {
    font-size: 16px;
  }

  .campaign-edit .field-wrap .title span {
    font-size: 12px;
  }

  .campaign-edit .field-wrap-md {
    width: 100%;
  }

  .campaign-edit .img_plus {
    margin-right: 0px;
    width: 124px !important;
    height: 124px !important;
  }

  .campaign-edit .img_block {
    height: 124px;
    width: 124px;
  }

  .campaign-edit .img_plus .fa {
    width: 122px;
    line-height: 122px;
  }
}

.slider-wrap .ui-slider-float .ui-slider-tip, .slider-wrap .ui-slider-float .ui-slider-tip-label {
    /*visibility: visible !important;*/
    /*opacity: 0 !important;*/
    top: -30px !important;
}

.about-share a i {
  position: relative;
  top: 7px;
}


.modal .modal-header {
    background: #4479e9;
    color: #fff;
    border-top-left-radius: 0; 
    border-top-right-radius: 0;
    padding: 12px 15px;
}

.modal .modal-title {
    font-family: "Quicksand", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.modal-header .close {
    outline: none;
    padding: 5px 10px;
    border: 1px solid #ffffff;
    border-radius: 100%;
    margin-top: -28px;
    margin-right: -28px;
    background: #ffffff;
    opacity: 1 !important;
    color: #3c3c3c !important;
}

.modal-header .close:hover {
  background: #fbf9f9;
  color: #000000 !important;
}

.modal-footer .btn {
  font-family: "Quicksand", sans-serif;
}

.modal-body .form-questions {
    padding: 0;
    margin-top: 0;
}

.modal-body .news {
    width: 100%;
    max-width: 300px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}

.modal-body .news .box-title {
    background: #4479e9;
    text-align: center;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 7px 21px;
}

.modal-body .news .box-title h4 {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 0;
}

.modal-body .news .box-content {
    padding: 15px 20px 19px;
}

.modal-body .news .box-content p {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #444444;
    font-family: "Libre Baskerville", sans-serif;
    margin-bottom: 0;
}

.modal-body .news .my-button {
  clear: both;
}

@media (max-width: 424px) {
  .news .box-title {
    padding: 7px !important;
  }
}


.btn {
  text-decoration: none;
}

.btn-success {
  background: #39b54a;
  border-color:rgba(0,0,0,0) !important;
}

.btn.focus, .btn:focus {
  box-shadow: 0 0 0 0 rgba(0,0,0,0) !important;
}

.btn-s1 {
  padding: 6px 22px;
  font-size: 12px;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 22px;
  text-transform: uppercase;
}

.btn-edit {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  padding: 5px 3px 5px 5px;
  background: #444444;
  border-color: #444444;
  font-size: 16px;
}

.btn-edit:hover {
  background: #3055a2;
}



.box-shadow {
  box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.07);
  margin-bottom: 5px;
}

.news-box {
  position: relative;
  width: 100%;
  max-width: 300px;
  float: right;
  margin-bottom: 29px !important;
}

.news-box .box-title {
  background: #4479e9;
  text-align: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 7px 21px;
}

.news-box .box-title h5 {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 0;
}

.news-box .box-title h3 {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  line-height: 30px;
  margin-top: 7px;
  margin-bottom: 0;
}

.news-box .box-title p {
  font-size: 12px;
  margin-bottom: 9px;
  color: #ffffff;
  font-family: "Quicksand", sans-serif;
}

.news-box .progress {
  width: 100%;
  max-width: 236px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 7px;
  margin-bottom: 10px;
}

.news-box .progress-bar {
  background-color: #39b54a;
}

.news-box .box-content {
  padding: 18px 10px 11px;
  overflow: hidden;
  background: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  text-align: center;
}

.news-box .box-content p {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #444444;
  font-family: "Libre Baskerville", sans-serif;
  padding-left: 10px;
  padding-right: 10px;
}



.btn-img {
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  padding-left: 4px;
  letter-spacing: 1.9px;
}

.fb-btn {
  background-color: #3a5795;
  border-color: transparent;
}

.btn-img i {
  width: 34px;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  position: relative;
  top: 2px;
}

.fb-btn:hover,
.fb-btn:active {
  background-color: #2d4373;
}

.news-box .box-content .user-info {
  display: none;
}

.news-box .box-content .or-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-box .box-title .pledge-info,
.news-box .user-login-info {
  display: none;
}

.news-box .box-title .pledge-info input {
  display: inline-block;
  width: 80px;
}

.not-signed-in .news-box .box-title h3,
.not-signed-in .news-box .pledge-text {
  display: none;
}

.not-signed-in .news-box .box-title .pledge-info,
.not-signed-in .news-box .user-login-info {
  display: block;
}

.cause-content.done .campaign-img-content {
padding-top: 20px;
}

.cause-content.done .mslider {
display: none;
}

.cause-content.done .campaign-img-content .campaign-buttons {
    flex-wrap: wrap;
    margin-bottom: 19px;
}

.cause-content.done .campaign-buttons a,
.cause-content.done .campaign-buttons label {
margin-bottom: 10px;
}

.cause-content.done .campaign-img-content h4 {
/*border-bottom: 1px solid #ccc;*/
font-size: 20px;
padding-bottom: 4px !important;
}

.cause-content.done .hastag-con {
display: none;
}

.campaign-box .campaign-buttons .twitter-picture {
background-color: #00abf0;
}

.campaign-box .campaign-buttons .twitter-picture:hover,
.campaign-box .campaign-buttons .twitter-picture:active {
background-color: #098fc5;
}

.campaign-box .campaign-buttons .download-picture {
background-color: #00a651;
}

.campaign-box .campaign-buttons .download-picture:hover,
.campaign-box .campaign-buttons .download-picture:active {
background-color: #00823f;
}

.campaign-box .campaign-buttons .google-picture {
background-color: #df4a32;
}

.campaign-box .campaign-buttons .google-picture:hover,
.campaign-box .campaign-buttons .google-picture:active {
background-color: #c33b25;
}

.campaign-box .campaign-buttons .pinterest-picture {
background-color: #cd1d1f;
}

.campaign-box .campaign-buttons .pinterest-picture:hover,
.campaign-box .campaign-buttons .pinterest-picture:active {
background-color: #ab1415;
}

.campaign-box .campaign-buttons .linkedin-picture {
background-color: #007ab8;
}

.campaign-box .campaign-buttons .linkedin-picture:hover,
.campaign-box .campaign-buttons .linkedin-picture:active {
background-color: #005986;
}

.campaign-box .campaign-buttons .envelope-picture {
background-color: #e7444d;
}

.campaign-box .campaign-buttons .envelope-picture:hover,
.campaign-box .campaign-buttons .envelope-picture:active {
background-color: #c72b33;
}

@media (max-width: 1020px) {
.cause-content.done .campaign-img-content {
  padding-top: 0;
    
}

.cause-content.done .campaign-img-content h4 {
/*text-align: center;*/
}
}

.create-campaign-text {
  background-color:#fece8d;
  width: 100%;
}
.create-campaign-text {
  font-size:18px; 
  font-weight: bold; 
  font-family:Helvetica, Arial, sans-serif;
}
cause-content.done .campaign-img-content .campaign-buttons {
    position: relative;
    margin-bottom: 18px;
}

.cause-content.done .campaign-img-content .campaign-buttons:before {
    content: '';
    position: absolute;
    top: 28px;
    left: -10px;
    width: 1px;
    height: 100%;
    background: #333;
}

.cause-content.done .campaign-img-content .campaign-buttons:after {
    content: '';
    position: absolute;
    top: -25px;
    left: -10px;
    width: 1px;
    height: 100%;
    background: #333;
}

.cause-content.done .campaign-img-content .campaign-buttons:last-child:before {
    top: -77px;
    left: -10px;
}

.cause-content.done .campaign-img-content .campaign-buttons:last-child:after {
    top: -24px;
    left: -10px;
    height: calc(100% + 20px);
}

.cause-content.done .campaign-img-content h4 {
    font-size: 13px;
    padding-bottom: 4px;
    margin-bottom: 0;
}

.cause-content.done .campaign-img-content h4 span {
    width: 20px;
    height: 20px;
    display: block;
    background: #333;
    border-radius: 100%;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    margin-right: 6px;
    margin-top: -3px;
    float: left;
    color: #fff;
    font-family: "Lora", sans-serif;
    font-weight: 700;
    position: relative;
}

.cause-content.done .campaign-img-content h4 span:before {
    content: '';
    position: absolute;
    top: 9px;
    left: -9px;
    width: 9px;
    height: 1px;
    background: #333;
}

@media (max-width: 480px) {
  .cause-content.done .campaign-img-content {
    max-width: 300px;
    
     width: 90%;
  }
}




/* ===== 27-12-2018 [START] ===== */
.btn {
  text-decoration: none;
}

.btn-success {
    background: #39b54a;
}

.btn.focus, .btn:focus {
    box-shadow: 0 0 0 0 rgba(0,0,0,0) !important;
}

.btn-s1 {
    padding: 6px 22px;
    font-size: 12px;
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 22px;
    text-transform: uppercase;
}

.btn-edit {
    position: absolute;
    top: 0;
    right: 0;
    width: 34px;
    padding: 5px 3px 5px 5px;
    background: #444444;
  border-color: #444444;
  color:#000000;
    font-size: 16px;
}

.btn-edit:hover {
  background: #444444;
}



.box-shadow {
    box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.07);
    margin-bottom: 5px;
}








.news-box {
    position: relative;
    width: 100%;
    max-width: 300px;
    float: right;
    margin-bottom: 29px !important;
}

.news-box .box-title {
    background: #4479e9;
    text-align: center;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 7px 21px;
}

.news-box .box-title h4 {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 0;
}

.news-box .box-title h3 {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
    line-height: 30px;
    margin-top: 7px;
    margin-bottom: 0;
}

.news-box .box-title p {
    font-size: 12px;
    margin-bottom: 9px;
    color: #ffffff;
    font-family: "Quicksand", sans-serif;
}

.news-box .progress {
    width: 100%;
    max-width: 236px;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 7px;
    margin-bottom: 10px;
}

.news-box .progress-bar {
    background-color: #39b54a;
}

.news-box .box-content {
    padding: 18px 10px 11px;
    overflow: hidden;
    background: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    text-align: center;
}

.news-box .box-content p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #444444;
    font-family: "Libre Baskerville", sans-serif;
    padding-left: 10px;
    padding-right: 10px;
}



.btn-img {
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    padding-left: 4px;
    letter-spacing: 1.9px;
}

.fb-btn {
    background-color: #3a5795;
    border-color: transparent;
}

.btn-img i {
    width: 34px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    position: relative;
    top: 2px;
}

.fb-btn:hover,
.fb-btn:active {
  background-color: #2d4373;
}

.news-box .box-content .user-info {
    display: none;
}

.news-box .box-content .or-text {
    margin-top: 15px;
    margin-bottom: 15px;
}

.news-box .box-title .pledge-info,
.news-box .user-login-info {
    display: none;
}

.news-box .box-title .pledge-info input {
    display: inline-block;
    width: 120px;
    padding-left: 4px;
}

.not-signed-in .news-box .box-title h3,
.not-signed-in .news-box .pledge-text {
    display: none;
}

.not-signed-in .news-box .box-title .pledge-info,
.not-signed-in .news-box .user-login-info {
    display: block;
}

.e-mode .about-pledge .pledge-content h4 span {
  display: none;
}

.about-pledge .pledge-content h4 input {
  width: 100%;
  padding: 4px 10px;
  display: none;
}

.e-mode .about-pledge .pledge-content h4 input {
  display: block;
}

.e-mode .about-pledge .pledge-content .pledge-text p {
  display: none;
}

.about-pledge .pledge-content .pledge-text textarea {
  display: none;
  width: 100%;
  padding: 4px 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: bold;
  color: #333333;
  font-family: "Libre Baskerville", sans-serif;
  letter-spacing: -0.2px;
}

.e-mode .about-pledge .pledge-content .pledge-text textarea {
  display: block;
}

.e-mode .pledge-img {
  position: relative;
}

.e-mode .pledge-img .file-upload {
    text-align: center;
    font-size: 16px;
    line-height: 14px;
    font-weight: normal;
    color: #fff;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.e-mode .pledge-img .file-upload {
  display: flex;
}
.e-mode .pledge-img .file-upload .fa {
  display: block;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  margin-bottom: 4px;
}

.e-mode .pledge-img .file-upload-label {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    cursor: pointer;
    background: rgba(0,0,0,0.2);
    font-family: "Arial";
    line-height: 22px;
    margin-bottom: 0;
}

.e-mode .pledge-img .file-upload-label:hover {
  background: rgba(0,0,0,0.5);
}

.e-mode .pledge-img .file-upload-input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
}

/*.donate-cause .btn-edit {
    display: none;
}*/

.donate-cause .btn-edit {
    display: block;
}

.e-mode .news-box .box-title h3 {
  display: none;
}

.e-mode .news-box .box-title .pledge-info {
  display: block;
}

.news-box .box-content .pledge-text textarea {
  display: none;
}

.e-mode .news-box .box-content .pledge-text p {
  display: none;
}

.e-mode .news-box .box-content .pledge-text textarea {
  display: block;
  font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #444444;
    font-family: "Libre Baskerville", sans-serif;
    padding-left: 10px;
    padding-right: 10px;
        width: 100%;
    margin-bottom: 10px;
}

.donation-box-lg {
    max-width: 100%;
    float: left;
    margin-top: 15px;
}

.donation-box-lg .box-title h4 {
    display: inline-block;
}

.btn-remove-donation {
    border-radius: 100%;
    position: absolute;
    right: 12px;
    padding: 0;
    width: 29px;
    height: 29px;
    top: 9px;
    line-height: 25px;
    text-align: center;
}

.remove-donation {
    position: absolute;
    right: 52px;
    top: 14px;
    background: #fff;
    font-size: 11px;
    padding: 2px 5px 2px 7px;
    border-radius: 2px;
}

.remove-donation:before {
    position: absolute;
    content: '';
    right: -16px;
    top: 0px;
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: transparent transparent transparent #ffffff;
}

@media (max-width: 1020px) {
  .donation-box-lg .box-title {
    text-align: left;
  }
}

@media (max-width: 824px) {
  .news-box {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 568px) {
  .remove-donation {
    position: absolute;
    right: 14px;
    top: -22px;
    border: 1px solid #dc3545;
    border-radius: 4px;
  }

  .remove-donation:before {
    right: 4px;
    top: 20px;
    border-width: 8px 8px 8px 8px;
    border-color: #ff0000 transparent transparent transparent;
  }

  .remove-donation:after {
    position: absolute;
    content: '';
    right: -16px;
    top: 0px;
    border-style: solid;
    right: 5px;
    top: 20px;
    border-width: 7px 7px 7px 7px;
    border-color: #ffffff transparent transparent transparent;
  }
}

@media (max-width: 3754px) {
  .donation-box-lg .box-title h4 {
    font-size: 16px;
  }
}

.news-box .box-content .form-control {
  font-size: 12px;
}
/* ===== 27-12-2018 [END] ===== */

.about-pledge .pledge-img {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-pledge .pledge-img .pledge-upload-img {
/*width: 100%;*/
/*height: 100%;*/
}






/* ===== 28-12-2018 [START] ===== */

.cause-content.done .campaign-img-content .campaign-buttons {
    position: relative;
    margin-bottom: 18px;
}

.cause-content.done .campaign-img-content .campaign-buttons:before {
    content: '';
    position: absolute;
    top: 28px;
    left: -10px;
    width: 1px;
    height: 100%;
    background: #333;
}

.cause-content.done .campaign-img-content .campaign-buttons:after {
    content: '';
    position: absolute;
    top: -26px;
    left: -10px;
    width: 1px;
    height: 100%;
    background: #333;
}

.cause-content.done .campaign-img-content .campaign-buttons:last-child:before {
    top: -77px;
    left: -10px;
}

.cause-content.done .campaign-img-content .campaign-buttons:last-child:after {
    top: -24px;
    left: -10px;
    height: calc(100% + 20px);
}

.cause-content.done .campaign-img-content h4 {
    font-size: 14px;
    padding-bottom: 4px;
    margin-bottom: 0;
}

.cause-content.done .campaign-img-content h4 span {
    width: 20px;
    height: 20px;
    display: block;
    background: #3a5795;
    border-radius: 100%;
    font-size: 11px;
    line-height: 20px;
    text-align: center;
    margin-right: 6px;
    margin-top: -3px;
    float: left;
    color: #fff;
    font-family: "Lora", sans-serif;
    font-weight: 700;
    position: relative;
}

.cause-content.done .campaign-img-content h4 span:before {
    content: '';
    position: absolute;
    top: 9px;
    left: -9px;
    width: 9px;
    height: 1px;
    background: #333;
}

.other-campaigns {
  float: left;
  width: 68.5%;
  overflow: hidden;
}

.other-campaigns .sect-title {
  font-size: 24px;
  font-family: "Lora", sans-serif;
  margin-bottom: 30px;
  text-align: center;
}

.other-campaigns .campaign-box {
  float: left;
  width: 20%;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
}

.other-campaigns .campaign-box .oc-img {
  margin-left: auto;
  margin-right: auto;
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.other-campaigns .campaign-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  font-family: "Lora", sans-serif;
}

.other-campaigns .campaign-box p {
  font-size: 12px;
  margin-bottom: 0;
}

@media (max-width: 1020px) {
  .other-campaigns {
    width: 65%;
  }
}

@media (max-width: 980px) {
  .other-campaigns {
    width: 63%;
  }
}

@media (max-width: 900px) {
  .other-campaigns {
    width: 60%;
  }
}

@media (max-width: 824px) {
  .other-campaigns {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}

@media (max-width: 768px) {
  .other-campaigns .sect-title {
    font-size: 20px;
  }
}

.products {
  margin-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.products .product-single {
  padding-left: 6px;
  padding-right: 6px;
}

.products .product-single .product-img {
  border: 1px solid #e9e9e9;
  float:  left;
  width:  100%;
  height: 160px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-sizing:  border-box;
  background: #ffffff;
}

.products .product-single .product-img img {
  max-height: 140px;
}

.products .product-single .product-content {
  width: 100%;
  float: left;
  padding-top: 12px;
  padding-bottom: 15px;
  border-top: none;
}

.products .product-title {
  font-size: 14px;
  font-weight: 700;
  color: #000000 !important;
  font-family: "Lora", sans-serif;
  height: 42px;
  display:  flex;
  align-items:  center;
  justify-content:  center;
  text-align:  center;
}

.products .product-single .product-link {
  font-size: 11px;
  font-weight: 700;
  color: #4479e9 !important;
  font-family: "Lora", sans-serif;
  height: 32px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  border: 1px solid #4479e9;
  width: 98px;
  margin-left:  auto;
  margin-right:  auto;
  transition: all 0.4s;
}

.products .product-single .product-link:hover {
  background: #4479e9;
  color: #fff !important;
}

.products .product-price {
  font-size: 16px;
  font-weight: 600;
  color: #ed1c24;
  line-height: 20px;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Lora", sans-serif;
}

.o-products-prev {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #ccc;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  position: absolute;
  top: 34%;
  left: 0;
  transition: all 0.4s;
  border-radius: 2px;
}

.o-products-next {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #ccc;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  position: absolute;
  top: 34%;
  right: 0;
  transition: all 0.4s;
  border-radius: 2px;
}

.o-products-prev:hover,
.o-products-next:hover {
  background: #4479e9;
  color: #fff !important;
}

@media (max-width: 424px) {
  .products {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 360px) {
  .products .product-single .product-img {
    height: 140px;
  }

  .products .product-single .product-img img {
    max-height: 120px;
  }
}


/* ===== 28-12-2018 [END] ===== */






/* ===== 29-12-2018 [START] ===== */
.hint-slider-wrap {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.7);
padding: 20px;
overflow: auto;
    z-index: 600;
}

.hint-slider-wrap .slick-slider {
z-index: 1;
}

.hint-slider-wrap .hint-slider-inner {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding-left: 20px;
    padding-right: 20px;
}

.hint-slider-wrap .hint-box-wrap {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex !important;
align-items: center;
justify-content: center;
overflow: auto;
}

.hint-slider-wrap .hint-box {
    background: #fff;
    padding: 20px 0;
    width: 100%;
    max-width: 600px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1000;
}

.hint-slider-wrap .hint-box img {
margin-bottom: 15px;
margin-left: auto;
margin-right: auto;
height: 320px;
width: 100%;
}

.hint-slider-wrap .hint-box h4 {
font-size: 20px;
margin-bottom: 10px;
}

.hint-slider-wrap .hint-box p,
.hint-slider-wrap .hint-box ul li {
font-size: 14px;
line-height: 18px;
font-family: "Lora", sans-serif;
}

.hint-slider-wrap .hint-box p {
margin-bottom: 0;
}

.hint-slider-wrap .hint-box ul {
padding-left: 16px;
}

.hint-slider-wrap .hint-box ul li {
margin-bottom: 2px;
}

.hint-slider-wrap .hint-slider-arrows-wrap {
width: 100%;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
}

.hint-slider-wrap .hint-slider-arrows-inner {
width: 100%;
max-width: 600px;
text-align: center;
padding-top: 10px;
margin-left: auto;
margin-right: auto;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: white;
padding: 20px;
}

.hint-slider-wrap .hint-slider-arrows {
width: 100%;
max-width: 600px;
text-align: center;
padding-top: 10px;
margin-left: auto;
margin-right: auto;
position: absolute;
left: 0;
right: 0;
bottom: 10px;
}

.hint-slider-wrap .hint-slider-arrows a {
width: auto;
height: 32px;
line-height: 34px;
background: #4479e9;
color: #fff !important;
display: inline-block;
cursor: pointer;
text-align: center;
transition: all 0.4s;
border-radius: 2px;
padding-left: 16px;
padding-right: 16px;
text-transform: uppercase;
font-family: "Lora", sans-serif;
font-size: 12px;
position: relative;
z-index: 1001;
}

.hint-slider-wrap .hint-slider-arrows a:hover {
background: #3061c7;
}

.hint-slider-wrap .hint-slider-arrows a.hint-slider-close {
background: #00a651;
color: #fff !important;
float: left;
}

.hint-slider-wrap .hint-slider-arrows a.hint-slider-next {
background: #00a651;
color: #fff !important;
float: right;
}

.hint-slider-wrap .hint-slider-arrows a.hint-slider-close:hover,
.hint-slider-wrap .hint-slider-arrows a.hint-slider-next:hover {
background: #00823f;
color: #fff !important;
}

.hint-slider-wrap .hint-slider-arrows a.hint-slider-close {
background: #00a651;
color: #fff !important;
}

.hint-slider-wrap .hint-slider-arrows a.hint-slider-close:hover {
background: #00823f;
color: #fff !important;
}

.hint-slider-wrap .slick-initialized .slick-slide {
float: none;
display: inline-block;
vertical-align: middle;
}

.hint-slider-wrap .slick-track {
height: 100%;
}

.hint-slider-wrap .slick-dots {
    bottom: 54px;
    height: 32px;
    /*/ z-index: 1002; /*/
}
.hint-slider-wrap .slick-dots li button:before {
font-size: 10px;
}

@media (max-width: 800px) {
.hint-slider-wrap .hint-slider-wrap {
padding: 20px 5px;
}
}

@media (max-width: 768px) {
.hint-slider-wrap .hint-slider-wrap {
padding: 20px 10px;
}

.hint-slider-wrap .hint-slider-arrows {
width: 100%;
text-align: center; 
padding-top: 10px; 
}

.hint-slider-wrap .hint-slider-prev,
.hint-slider-wrap .hint-slider-next {
position: static;
}
}



.hint-slider-wrap .slick-track,
.hint-slider-wrap .slick-slide {
 height: auto !important;
}

.hint-slider-wrap .hint-box p {
    margin-bottom: 0;
    min-height: 74px;
    height: 74;
    overflow: hidden;
}

.hint-slider-wrap a.close-btn {
  width: 32px;height: 32px;line-height: 34px;background: #e94444;color: #fff !important;display: inline-block;cursor: pointer;text-align: center;transition: all 0.4s;text-transform: uppercase;font-family: "Lora", sans-serif;font-size: 12px;z-index: 1001;position: absolute;top: -15px;right: -31px;border-radius: 100%;
}

.hint-slider-wrap a.close-btn:hover {
  background: #d42c2c;
}

.hint-slider-wrap a.close-btn i {
  position: relative;
  top: 7px;
  font-weight: 400;
  font-size: 15px;
}
/*.hint-slider-arrows a.hint-slider-close {
  background: #00a651;
  color: #fff !important;
}

.hint-slider-arrows a.hint-slider-close:hover {
  background: #00823f;
  color: #fff !important;
}*/

.slick-initialized .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.slick-track {
    height: 100%;
}

.slick-dots {
  bottom: 5px;
  height: 32px;
  /*z-index: 1002;*/
}

.slick-dots li button:before {
  font-size: 10px;
}

@media (max-width: 800px) {
  .hint-slider-wrap {
    padding: 20px 5px;
  }
}

@media (max-width: 768px) {
  .hint-slider-wrap {
    padding: 20px 10px;
  }

  .hint-slider-arrows {
    width: 100%;
     text-align: center; 
     padding-top: 10px; 
  }

  .hint-slider-prev,
  .hint-slider-next {
    position: static;
  }
}

.products-container.slick-initialized .slick-slide {
    display: inline-block;
}

.other-campaigns .slick-track,
.other-campaigns .slick-slide {
    height: auto !important;
}

.products .product-single .product-img {
    border: none;
    background: transparent;
}

.products .content {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.other-campaigns {
    width: 100%;
    background: #f8f8f4;
    padding-bottom: 30px;
}

.o-campaigns-container.slick-initialized .slick-slide {
 display: inline-block;
}

.products {
    width: 100% !important;
    background: #fff !important;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
}

/* ===== 29-12-2018 [END] ===== */

/* ===== 31-12-2018 [START] ===== */
nav {
width: auto;
}

nav .menu {
width: auto;
}

@media (max-width: 1100px) {
nav .menu li {
padding-left: 0;
padding-right: 0;
}

nav .menu li a {
padding-left: 12px;
padding-right: 12px;
}
}

@media (max-width: 980px) {
nav {
width: 100%;
}

nav .menu {
width: 100%;
}

.nav-buttons ul {
text-align: right;
}

.nav-buttons ul li,
.nav-buttons ul li .my-button {
width: auto;
}
}

@media (max-width: 480px) {
.nav-buttons ul {text-align: center;padding-left: 2px;padding-right: 2px;}

.nav-buttons ul li,
.nav-buttons ul li .my-button {
width: 100%;
}
.button-my-account {
    padding: 6px 7px;
    font-size:9px;
}
i.fa.fa-angle-down{
  font-size:10px;
  position:relative;
  top:2px;
}
.logo {
    width: 70px;
    margin-top: 20px !important;
}
.nav-buttons ul li .my-button {
margin-bottom: 4px;
}
}

.create-campaign-btn {
background: #4479e9;
color: #fff;
}

.create-campaign-btn:hover {
background: #4479e9;
color: #fff;
text-decoration: underline;
}

/* ===== 31-12-2018 [END] ===== */

.hint-slider-wrap .hint-slider-arrows-inner {
    width: auto;
    left: 20px;
    right: 20px;
}

@media (max-width: 800px) {
    .hint-slider-wrap {
        padding: 20px 20px;
    }
}


@media (max-width: 700px) {
 .hint-slider-wrap .hint-box img {
    height: auto;
    max-height: 320px;
 }
}
.fb-color{
  background: #3a5795 !important;
  color: #fff  !important;  
}

.btn-secondary {
  color: #fff  !important;  
}
.hint-slider-wrap .hint-slider-arrows .checkbox {
    display: inline-block;
    font-size: 12px;
    padding-right: 12px;
    padding-top: 7px;
}
.hint-slider-wrap .hint-slider-arrows {
  width: 100%;
  max-width: 600px;
  text-align: center;
  padding-top: 8px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: right;
  z-index: 10000;
  border-top: 1px solid #ccc;
}

/* ===== 1-1-2019 [START] ===== */

.terms .sub-info {
width: 100%;
padding-right: 0;
}

.terms .sub-info p {
max-width: 100%;
}

.terms h4,
.subscription .sub-title {
font-family: "Lora", sans-serif;
font-weight: 700;
margin-top: 25px;
}

.subscription .about-links {
margin-left: 20px;
}

.contact .sub-info {
padding-right: 0;
float: none;
width: 100%;
max-width: 800px;
margin-left: auto;
margin-right: auto;
overflow: hidden;
background: #fff;
padding: 30px;
border-radius: 6px;
}

.contact .sub-info h2 {
text-align: center;
}

.contact .sub-info p {
max-width: 100%;
}


.contact .form-wrapper {
max-width: 100%;
}

.subscription #facebook_message {
width: 100%;
max-width: 500px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
}

@media (max-width: 480px) {
.terms h4,
.subscription .sub-title {
font-size: 20px;
}
}

.announcements h2 {
font-size: 48px;
font-weight: bold;
color: #000000;
line-height: 60px;
font-family: "Quicksand", sans-serif;
margin-bottom: 31px;
}

.announcements .anns-box {
background: #fff;
/*min-height: 260px;*/
position: relative;
padding: 20px;
margin-bottom: 30px;
float: left;
width: 100%;
}

.announcements .anns-box .anns-img {
float: left;
max-width: 220px;
max-height: 220px;
margin-right: 20px;
margin-bottom: 10px;
overflow: hidden;
}

.announcements .anns-box h4 {
font-family: "Lora", sans-serif;
font-weight: 700;
font-size: 24px;
}

.announcements .anns-box p {
text-align: justify;
}

.announcements .anns-box .btn-primary {
background: #4479e9;
color: #fff !important;
font-size: 14px;
font-family: "Lora", sans-serif;
float: right;
}

@media (max-width: 980px) {
.announcements h2 {
font-size: 36px;
line-height: 48px;
}
}

@media (max-width: 568px) {
.announcements .anns-box .anns-img {
max-width: 220px;
max-height: 220px;
margin-left: auto;
margin-right: auto;
margin-bottom: 20px;
float: none;
}

.subscription {
padding-top: 30px;
}

.announcements h2 {
font-size: 28px;
line-height: 36px;
}
}

@media (max-width: 941px) {


.e-mode .edit-options .btn-save, .e-mode .edit-options .btn-cancel, .e-mode .edit-options .btn-preview, .e-mode .edit-options .btn-upgrade {
    width: 31%;
}

.e-mode .edit-options .btn-upgrade{
  width: 100%;
    margin-bottom: 8px;
}
.edit-options{
    flex-wrap: wrap;
}
}

/* ===== 1-1-2019 [END] ===== */


/* ===== 2-1-2019 [START] ===== */


.user-dashboard .table-mobile .t-mobile {
  display: none;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  font-family: "Quicksand", sans-serif;
}


@media (max-width: 1024px) {
  .user-dashboard .dashboard-menu-con {
      width: 220px;
    }
  .user-dashboard .dashboard-content {
      padding-left: 220px;
    }
}

@media (max-width: 980px) {
  .table-mobile tbody tr {
      border-bottom: 1px #a7a7a7 solid;
  }
  .table-mobile .tbl-action-button {
    height: auto;
  }
   .user-dashboard .table-mobile .actions {
      /*background: #ecf1fb;*/
  } 
  .user-dashboard .table-mobile thead {
    display: none;
  }

  .user-dashboard .table-mobile tr {
    display: block;
    overflow: hidden;
  }

  .user-dashboard .table-mobile td {
    display: block;
    width: 100% !important;
    float: left;
    clear: both;
    text-align: left !important;
    height: auto;
    border-top: 1px solid #e5e5e5;
  }

  .user-dashboard .table-mobile .title {
    padding-left: 0;
    padding-right: 0;
  }

  .user-dashboard .table-mobile .title img {
    margin-bottom: 11px;
    margin-left: 11px;
  }

  .user-dashboard .table-mobile .title a {
    width: 100%;
    float: left;
  }

  .user-dashboard .table-mobile .t-mobile, .user-dashboard .table-mobile .d-mobile {
    float: left;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: auto !important;
}

  .user-dashboard .table-mobile .t-mobile {
    width: 34%;
    margin-bottom: 0;
  }

  .user-dashboard .table-mobile .d-mobile {
    width: 60%;
  }

  .user-dashboard .table-mobile .title a span {
    display: block;
    width: 100%;
    padding-left: 0;
    float: left;
    padding-right: 11px;
    padding-left: 34%;
  }

  .user-dashboard .table-mobile .title a .t-mobile {
    border-top: 1px solid #e5e5e5;
    padding-top: 11px;
    padding-left: 11px;
  }
}



@media (max-width: 480px) {
  .user-dashboard .table-mobile .actions {
    height: auto;
  }
  
  .table-mobile .tbl-action-button {
    /*display: block;*/
    height: auto;
    width: 60%;
    float: left;
    flex-wrap: wrap;
  }

  .table-mobile .tbl-action-button li {
      display: block;
      margin-bottom: 3px;
        margin-top: 3px;
      
  }
}

.pagination {
    flex-wrap: wrap;
    justify-content: flex-end;
}


@media (max-width: 568px) {
.page-banner.campaign-banner {
max-height: 200px;
}
}

@media (max-width: 424px) {
.page-banner.campaign-banner {
max-height: 142px;
}
}

@media (max-width: 424px) {

.cause-content.cause-premium {
padding-top: 0;
}

.cause-content.cause-premium .content {
overflow: visible;
}

.about-cause .about-img {
width: 74px;
height: 74px;
margin-left: 0;
margin-right: 0;
/*box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);*/
margin-top: -52px;
}

.about-cause .about-content {
margin-top: -30px;
}

.about-cause .about-content h4 {
font-size: 20px;
padding-left: 86px;
min-height: 38px;
margin-bottom: 10px;
}
.about-cause .about-content .h4-free {
  padding-left: 0px;
  margin-top: 14px;
}
.about-share {
margin-top: 0;
margin-bottom: 4px;
}

.e-mode .about-img-overlay .file-upload {
font-size: 12px;
line-height: 14px;
}

.e-mode .about-img-overlay .file-upload .fa {
font-size: 22px;
}

.e-mode .about-img-overlay .file-upload-label {
line-height: 14px;
}

.e-mode .about-content .title {
width: calc(100% - 88px);
margin-left: 88px;
}
.e-mode .about-content .title-free {
  width: 100%;
    margin-left: 0;
    margin-top: 14px;
}


}
.dashboard-menu-mobile{
  display: none;
}
@media (max-width: 768px) {
  .dashboard-menu-mobile{
    display: block;
  }
  .dashboard-menu{
    display: none;
  }
}
@media (max-width: 480px) {
  .user-dashboard .table-mobile .t-mobile {
      width: 34%;
  }

  .table-mobile .tbl-action-button {
    width: 66%;
  }
}
.dashboard-menu-mobile {
width: 100%;
float: left;
margin-top: 10px;
}

.dashboard-menu-mobile .form-control {
width: 100%;
font-size: 14px;
color: #fff;
background-color: #4479e9;
border: 1px solid #4479e9;
font-family: "Lora", sans-serif;
}

.dashboard-menu-mobile .form-control:focus {
color: #fff;
background-color: #4479e9;
border-color: #80bdff;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0,123,255,0);
}
/* ===== 2-1-2019 [END] ===== */

@media (max-width: 424px) {
  .user-dashboard .tbl-action-button li .button-make-premium {
    width: 108px;
    font-size: 11px;
  }
    
  .user-dashboard .tbl-action-button li .my-button {
    padding: 3px 0px;
    margin-left: 3px;
    margin-right: 3px;
  }
    
  .user-dashboard .tbl-action-button li .button-edit,
  .user-dashboard .tbl-action-button li .button-delete {
    width: 24px;
    padding: 2px 0;
  }
}


.nav-buttons-top {
 display: none;
}
@media (max-width: 980px) {
  
  .my-account-dropdown {
    display: none !important;
  }
  .nav-buttons-top .my-account-dropdown {
    display: block !important;
  }
  .nav-buttons-top {
    display: block;
    background: transparent;
    width: auto;
    margin-top: 24px;
    margin-right: 0px;
  }
  .nav-buttons-top .my-account-dropdown .account-dropdown-menu {
    position: absolute;
   }
   
  
}

@media (max-width: 424px) {
  .nav-buttons-top {
    margin-right: 0px;
  }
}
@media (max-width: 568px) {
.e-mode .theme-colors{
  display: block !important;
}
}


@media (max-width: 480px) {
  .mbadge {
  width: 134px;
  height: 214px;
  }
  
  .mbadge .mbadge-img {
  width: 114px;
  height: 114px;
  }
  
  .mbadge .mbadge-img-overlay {
  width: 114px;
  height: 114px;
  }
  
  .mbadge-img-size {
  width: 114px;
  height: 114px;
}
}

.form-readyonly {
background: #f5f5f5 !important;
}

.paypla_button {
  display: block;
  width: 100%;
  text-align: center;
  clear: both;
  margin-top:10px;
}

.features .feature-single.feature-half  .img-con {
    height: 160px;
}
.features .feature-single.feature-half  .img-con img {
    display: inline-block;
    height: 128px;
}

.features .feature-single.feature-half h5 {
    color: #fff;
    font-size: 18px;
}

.features.light-bg h3 {
    color: #545454;
}

.features.light-bg .feature-single p {
  color: #545454;
}

.features.light-bg{
  background: #FFFFFF;
}


.form-control {
  height: 40px;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    font-size: 12px;
}


header.fixed-header {
    position: fixed;
    /*border-bottom: 2px solid rgba(0,0,0,0.1);*/
    background: #fff;
    z-index: 1000;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.08);
}

.home header .logo .logo-solid {
  display: none;
}

.home header.solid .logo .logo-normal {
  display: none;
}

.home header.solid .logo .logo-solid {
  display: block;
}

.wrapper {
    position: relative;
    min-height: 100%;
}

footer {
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
}


@media (max-width: 980px) {
  nav .sub-menu {
    display: none !important;
  }

  nav .sub-menu.active {
    display: block !important;
  }
}


.top_loader_wrap {
    text-align: center;
    width: 100%;
    float: right;
    background: #f8f7f4;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
    padding-right: 20px;
}


.top_loader_wrap img {
    display: inline-block;
}

.logo-footer-img {
  width: 80%;
}





.user-premium .subscription .sub-info {
  padding-right: 0 !important;
  width: 60%;
}

.user-premium .subscription .price-box {
  float: right;
  position: static;
}

@media (max-width: 768px) {
  .user-premium .subscription .sub-info {
    padding-right: 0 !important;
    width: 100%;
  }
  
  .user-premium .subscription .price-box {
    float: none;
  }
}

@media (max-width: 424px) {
  .price .content {
    padding-left: 0;
    padding-right: 0;
  }
  
  .price-box .price-title h3 {
    font-size: 38px;
  }
  
  .my-button.my-button-s4 {
    font-size: 11px;
  }
}
.hashwrap {
  bottom: 0px !important;
  height: 16px !important;
  color: #fff !important;
  text-align: center !important;
}
.hashwrap label {
  margin-bottom: 0 !important;
    display: flex; justify-content:center;
  align-items: center;
}

/* new-navbar-start */

.desktop-menu{
    display: block;
  }

.bg-img-banner{
  width: 100px;
  margin-bottom:15px;
  display:none;
}
.mobile-menu {
    display: none;
}
 @media only screen and (max-width:985px) {
 .mobile-menu{
   display:block;
  }
  .fixed-header {
    height: 95px;
}
.mobile-menu div#main nav {
    margin-top: 22px;
    width: 100%;
    left: 0;
    position: absolute;
    cursor: pointer;
}

.nav-fostrap.visible .nav-buttons{
  display:block !important;
  background: #fff !important;
  margin: auto;
  float: none;
  text-align: center;
}
.nav-fostrap.visible .nav-buttons  .my-button-primary {
    color: #fff !important;
    padding: 10px 10px;
    font-size: 12px;
    margin: auto;
    display: block;
    text-align: center;
}
.cover-bg header.fixed-header .mobile-menu nav {
    float: left !important;
    z-index: 10000 !important;
}
header.solid .logo {
    margin: auto;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
}
  a.my-button.my-button-s1.my-button-normal.my-button-primary {
    display: none;
}
  .desktop-menu{
    display: none;
  }
.title-mobile {
  display: none;
}
body.cover-bg img.bg-img-banner {
    display: block;
    margin: auto;
}
.nav-fostrap li:first-child:hover a { border-radius: 3px 0 0 3px; }

.nav-fostrap li ul.dropdown li:hover a { background: rgba(0,0,0, .1); }

.nav-fostrap li ul.dropdown li:first-child:hover a { border-radius: 0; }

.nav-fostrap li:hover .arrow-down { border-top: 5px solid #fff; }
.nav-fostrap li a {
  padding: 15px 27px;
  font-size: 12px;
  color: #def1f0;
  font-family: "Quicksand", sans-serif;
  display: inline-block;
  outline: 0;
  font-weight: 400;
}
.nav-fostrap {
  display: block;
  margin-bottom: 15px 0;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -ms-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -o-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  border-radius: 3px;
}

.nav-fostrap ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: block;
}

.nav-fostrap li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #e2e2e2;
  border-bottom: 1px solid #cecece;
}
.nav-fostrap li ul.dropdown {
  position: absolute;
  display: none;
  width: 200px;
  background: #bbb7b7;
  padding-top: 0;
}

.nav-fostrap li ul.dropdown li {
  display: block;
  list-style-type: none;
}

.nav-fostrap li ul.dropdown li a {
  padding: 15px 20px;
  font-size: 15px;
  color: #fff;
  display: block;
  font-weight: 400;
}

.nav-fostrap li ul.dropdown li:last-child a { border-bottom: none; }

.nav-fostrap li:hover a {
  background: #2980B9;
  color: #fff !important;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #def1f0;
  position: relative;
  top: 15px;
  right: -5px;
  content: '';
}
header.other- .logo {
    position: absolute;
    left: 0;
    right: 0;
    float: none;
    margin: auto;
    margin-top: 10px;
}
.nav-fostrap {
  background: #fff !important;
  width: 200px;
  height: 100%;
  display: block;
  position: fixed;
  left: -200px;
  top: 94px;
  -webkit-transition: left 0.25s ease;
  -moz-transition: left 0.25s ease;
  -ms-transition: left 0.25s ease;
  -o-transition: left 0.25s ease;
  transition: left 0.25s ease;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  z-index: 1;
}
.title-mobile {
  position: fixed;
  display: block;
    top: 10px;
    font-size: 20px;
    left: 100px;
    right: 100px;
    text-align: center;
    color: #FFF;
}
.nav-fostrap.visible {
  left: 0px;
  -webkit-transition: left 0.25s ease;
  -moz-transition: left 0.25s ease;
  -ms-transition: left 0.25s ease;
  -o-transition: left 0.25s ease;
  transition: left 0.25s ease;
}
i.fa.fa-list-alt {
    color: #000;
    left: 5px;
    float: left;
    position: relative;
    top: 15px;
    font-size: 15px;
}
i.fa.fa-money {
    color: #000;
    float: left;
    left: 5px;
    position: relative;
    top: 18px;
    font-size: 15px;
}
i.fa.fa-flag {
    color: #000;
    float: left;
    position: relative;
    top: 17px;
    font-size: 15px;
    left: 5px;
}
i.fas.fa-info-circle {
    color: #000;
    float: left;
    left: 5px;
    position: relative;
    top: 17px;
    font-size: 15px;
}

.nav-fostrap li:hover i.fa.fa-globe {
  color: #000 !important;
}

.nav-fostrap li:hover i.fa.fa-building {
  color: #000 !important;
}
.nav-fostrap li:hover i.fa.fa-home {
  color: #000 !important;
}
.nav-fostrap li:hover i.fa.fa-user {
  color: #000 !important;
}
.nav-bg-fostrap {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -ms-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -o-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

header.other- .navbar-fostrap {
  display: inline-block;
  vertical-align: middle;
  height: 50px;
  cursor: pointer;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px;
}
header.other-.solid.fixed-header .navbar-fostrap {
  display: inline-block;
  vertical-align: middle;
  height: 50px;
  cursor: pointer;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px;
}
header.other- .navbar-fostrap span {
    background: #fff;
    position: relative;
    left: 0;
    width: 20px;
    height: 2px;
    display: block;
    margin: 5px;
}
header.solid {
    height: 94px;
}
header.other-.solid.fixed-header .navbar-fostrap span {
  height: 2px;
  background: #000;
  margin: 5px;
  display: block;
  width: 20px;
}
header.other-solid.solid .nav-bg-fostrap{
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: absolute;
    top: 11px;
    left: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
header.other-solid.solid .navbar-fostrap span {
  height: 2px;
  background: #000;
  margin: 5px;
  display: block;
  width: 20px;
}
header.other- .navbar-fostrap span:nth-child(2) { width: 20px; }

header.other- .navbar-fostrap span:nth-child(3) { width: 20px; }
header.other-.solid.fixed-header .navbar-fostrap span:nth-child(2) { width: 20px; }

header.other-.solid.fixed-header .navbar-fostrap span:nth-child(3) { width: 20px; }

.nav-fostrap.visible ul.whole-dropdown {
  overflow-y:scroll;
  height: 460px;
} 

.nav-fostrap li { display: block; }
.nav-fostrap li:last-child{
  border-bottom:none;
}
.nav-fostrap li a {
  display: block;
  color: #000;
  font-weight: 600;
  font-size: 15px;
}

.nav-fostrap li:first-child:hover a { border-radius: 0; }

.nav-fostrap li ul.dropdown {position: relative;/* height: 170px; *//* overflow-y: auto; *//* background: #cecece; */}

.nav-fostrap li ul.dropdown li a {
  background: #f5f4f4 !important;
  border-bottom: none;
  color: #000 !important;
  font-size:15px;
  font-weight:600;
}

.nav-fostrap li:hover a {
  background: #fff;
  color: #000 !important;
}

.nav-fostrap li ul.dropdown li:hover a {
  background: rgba(0,0,0,.1); !important;
  color: #000 !important;
}

.nav-fostrap li ul.dropdown li a { padding: 10px 10px 10px 30px; }

.nav-fostrap li:hover .arrow-down {border-top: 5px solid #000;}

.arrow-down {
  border-top: 5px solid #000;
  position: absolute;
  top: 25px;
  right: 10px;
}

.cover-bg {
  background: rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
}
 @media only screen and (max-width:1199px) {

.container { width: 96%; }
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
/* new-navbar-end */



.sect-content.w-full {
    max-width: 100%;
}
.sect-content.w-full h5.page-title {
    font-size: 17px;
    line-height: 24px;
    font-family: "Quicksand", sans-serif;
}



