@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url("https://fonts.googleapis.com/css?family=Montserrat");

body {
  font-family: 'Montserrat', sans-serif;
}

/*******************
Preloader
********************/
.preloader {
  width: 100%;
  height: 100%;
  top: 0px;
  overflow: hidden;
  position: fixed;
  z-index: 99999;
  background: #111111;

  .cssload-speeding-wheel {
    position: absolute;
    top: calc(50% - 3.5px);
    left: calc(50% - 3.5px);
  }
}

body {
  /*	overflow-y: hidden;*/
  background-color: #111;
}

.dbl-spinner {
  top: 43%;
  left: 48.5%;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 5px solid transparent;
  border-top: 5px solid transparent;
  border-left: 5px solid transparent;
  -webkit-animation: loader-label 1.3s infinite cubic-bezier(0.82, 0.63, 0.13, 0.58);
  -moz-animation: loader-label 1.3s infinite cubic-bezier(0.82, 0.63, 0.13, 0.58);
  animation: loader-label 1.3s infinite cubic-bezier(0.82, 0.63, 0.13, 0.58);
  /*
    border-top: 5px solid #555;
    border-left: 5px solid #555;
    -webkit-animation: 2s spin123 linear infinite;
    animation: 2s spin123 linear infinite;
*/
}

.dbl-spinner:nth-child(2) {
  border: 2px solid #fff;
  border-right: 2px solid #111;
  border-left: 2px solid #111;
  border-bottom: 2px solid transparent;
  -webkit-animation: 1s spin123 linear infinite;
  animation: 1s spin123 linear infinite;
  padding: 3px;
}

@-webkit-keyframes spin123 {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin123 {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.__bigSqr {
  border-radius: 50%;
  margin-top: 25%;
  margin-left: 49%;
  width: 30px;
  height: 30px;
  overflow: hidden;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-animation: __bigSqrShrink 1s linear infinite;
  animation: __bigSqrShrink 1s linear infinite;
}

.__square {
  position: absolute;
  width: 15px;
  height: 15px;
  background: #FFF;
}

.__first {
  left: 0px;
  top: 15px;
  background: #fff;
}

.__second {
  left: 15px;
  top: 15px;
  background: #616161;
  -webkit-animation: __drop2 1s linear infinite;
  animation: __drop2 1s linear infinite;
}

.__third {
  left: 0px;
  top: 0px;
  background: #616161;
  -webkit-animation: __drop3 1s linear infinite;
  animation: __drop3 1s linear infinite;
}

.__fourth {
  left: 15px;
  top: 0px;
  background: #fff;
  -webkit-animation: __drop4 1s linear infinite;
  animation: __drop4 1s linear infinite;
}

.__text {
  top: 51%;
  position: relative;
  text-align: center;
  color: #FFF;
  display: block;
  margin: 10px auto;
  padding: 3px;
  font-size: 16px;
  -webkit-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes __bigSqrShrink {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@keyframes __bigSqrShrink {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  90% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@-webkit-keyframes __drop2 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  25% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes __drop2 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  25% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@-webkit-keyframes __drop3 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  50% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes __drop3 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  50% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@-webkit-keyframes __drop4 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  75% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

@keyframes __drop4 {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  75% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}

.biohazard {
  width: 0;
  height: 0;
  border-bottom: 10px solid #111111;
  border-top: 10px solid #111111;
  border-left: 10px solid #f6f9fa;
  border-right: 10px solid #f6f9fa;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-animation: coin-h 1s infinite;
  -moz-animation: coin-h 1s infinite;
  animation: coin-h 1s infinite;
}

.loader,
.loader__figure {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loader {
  overflow: visible;
  padding-top: 2em;
  height: 0;
  width: 2em;
  -webkit-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.loader__figure {
  height: 0;
  width: 0;
  box-sizing: border-box;
  border: 0 solid #0f70b7;
  border-radius: 50%;
  -webkit-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: loader-figure 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.loader__label {
  float: left;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0.5em 0 0 50%;
  font-size: 0.875em;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  color: #f6f9fa;
  white-space: nowrap;
  /*
  -webkit-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
*/
}

@-webkit-keyframes loader-figure {
  0% {
    height: 0;
    width: 0;
    background-color: #0f70b7;
  }

  29% {
    background-color: #0f70b7;
  }

  30% {
    height: 2em;
    width: 2em;
    background-color: transparent;
    border-width: 1em;
    opacity: 1;
  }

  100% {
    height: 2em;
    width: 2em;
    border-width: 0;
    opacity: 0;
    background-color: transparent;
  }
}

@-moz-keyframes loader-figure {
  0% {
    height: 0;
    width: 0;
    background-color: #0f70b7;
  }

  29% {
    background-color: #0f70b7;
  }

  30% {
    height: 2em;
    width: 2em;
    background-color: transparent;
    border-width: 1em;
    opacity: 1;
  }

  100% {
    height: 2em;
    width: 2em;
    border-width: 0;
    opacity: 0;
    background-color: transparent;
  }
}

@keyframes loader-figure {
  0% {
    height: 0;
    width: 0;
    background-color: #0f70b7;
  }

  29% {
    background-color: #0f70b7;
  }

  30% {
    height: 2em;
    width: 2em;
    background-color: transparent;
    border-width: 1em;
    opacity: 1;
  }

  100% {
    height: 2em;
    width: 2em;
    border-width: 0;
    opacity: 0;
    background-color: transparent;
  }
}

@-webkit-keyframes loader-label {
  0% {
    opacity: 0.25;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0.25;
  }
}

@-moz-keyframes loader-label {
  0% {
    opacity: 0.25;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0.25;
  }
}

@keyframes loader-label {
  0% {
    opacity: 0.25;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0.25;
  }
}

@keyframes coin-h {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  50% {
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  100% {
    -webkit-transform: rotate(1800deg);
    transform: rotate(1800deg);
  }
}

@-webkit-keyframes coin-h {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  50% {
    -webkit-transform: rotate(900deg);
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  100% {
    -webkit-transform: rotate(1800deg);
    transform: rotate(1800deg);
  }
}



body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  height: 100%;
}

.page-container .main-content {
  position: relative;
  display: table-cell;
  vertical-align: top;
  padding: 0px;
  background: #ffffff;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.main-nav {
  font-weight: bold;
  font-size: 1.2em;
}

.navigation {
  color: #ffffff;
  /*    font-family: "Proxima Nova W07 Bold";*/
  font-family: "Montserrat", sans-serif;
  text-align: right;
  margin-top: 30px;
}

.secondary-nav ul {
  display: inline;
  margin: 0px;
  padding: 0px;
}

.navigation ul li {
  display: inline-flex;
}

.main-nav ul li a {
  border-bottom: 2px solid transparent;
}

.navigation ul li a {
  color: #ffffff;
  display: block;
  font-size: 1.05em;
  padding: 10px 20px;
  letter-spacing: 0.03em;
}

.navigation ul li a:hover,
.secondary-nav ul li:last-child a,
#blog:hover {
  color: #33cc99;
  text-decoration: none;
}

#blog {
  color: #ffffff;
}

.main-nav ul li a:hover {
  /*    border-bottom: 2px solid rgba(51, 204, 153, 0.5);*/
}

.header {
  position: absolute;
  width: 100%;
  z-index: 100;
  background: url(../../images/background-color.png) repeat-x top center;
  /*    background: black repeat-x top center;*/
}

.upper-banner {
  position: relative;
  background-size: cover;
  background-image: url(../../images/hompage-banner.jpg);
  background-position-x: center;
  background-position-y: top;
  background-color: #111;
  background-repeat: no-repeat;
  top: 0px;
  z-index: 0;
  width: 100%;
}

.upper-banner1 {
  /*    position: relative;*/
  background-size: cover;
  background-position-x: center;
  background-position-y: top;
  background-color: #111;
  background-repeat: no-repeat;
  top: 0px;
  z-index: 0;
  width: 100%;
}

.banner-text {
  max-width: 530px;
  position: relative;
  color: #ffffff;
  margin: 17% 0px 8% 2%;
  text-align: left;
}

.banner-text1 {
  /*    margin: 12% 0px 8% 2%;*/
  /*	margin: 55px 0 105px 0;*/
  margin: 25px 0 105px 0;
}

.banner-text .banner-text-title {
  /*    font-family: "Proxima Nova W07 Extrabold";*/
  font-size: 2.5em;
  display: block;
  position: relative;
  line-height: 120%;
  margin: 0px;
  padding: 0px;
  font-weight: bold;
}

.logo-img {
  padding: 10px;
  transition: width .3s ease-in-out;
  -webkit-transition: width .3s ease-in-out;
  -moz-transition: width .3s ease-in-out;
}

.logo-img:hover {
  opacity: .95;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.img {
  max-width: 60%;
  vertical-align: bottom;
}

#newsletter {
  background: url(../../images/newsletter-background.jpg) top center;
  padding: 43px 0px;
  font-size: 1.65em;
  color: #ffffff;
}

#newsletter .newsletter-email {
  text-align: left;
  font-size: .7em;
  padding: 10px 20px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  width: 100%;
}

#newsletter .newsletter-submit {
  /*    font-family: "Proxima Nova W07 Bold";*/
  text-align: center;
  font-size: 0.7em;
  letter-spacing: 1.5px;
  padding: 10px 30px;
  color: #009261;
  background-color: white;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
}

#newsletter .newsletter-description {
  /*    font-family: "Proxima Nova W07 Bold";*/
  margin-top: 9px;
  text-align: right;
  letter-spacing: 1.5px;
}

.newsletter-email::placeholder {
  color: #ffffff;
  letter-spacing: 1px;
  font-size: .9em;
  font-weight: 100;
}

.newsletter-email:-ms-input-placeholder {
  color: #ffffff;
  letter-spacing: 1px;
  font-size: .9em;
  font-weight: 100;
}

.newsletter-email::-ms-input-placeholder {
  color: #ffffff;
  letter-spacing: 1px;
  font-size: .9em;
  font-weight: 100;
}

.newsletter-email:focus {
  outline: 0;
  border: 0;
}

.copyright {
  background: url(../../images/copy-background.jpg) top center;
  padding: 30px 0px;
  color: white;
  letter-spacing: .5px;
}

.copyright a {
  color: white;
  letter-spacing: .5px;
}

#footer-links {
  background: url(../../images/footer-background.jpg) top center;
  padding: 50px 0px;
  color: #ffffff;
  position: relative;
  /*    margin-top: -70px;*/
}

.footer-logo {
  display: table;
  margin-bottom: 20px;
}

span.contact-text {
  display: block;
  /*    font-family: "Proxima Nova W07 Bold";*/
  font-size: 1.2em;
  padding-bottom: 10px;
  font-weight: bold;
}

footer.footer {
  color: #ffffff;
  font-size: 0.8em;
}

.shadow {
  box-shadow: 1px 0px 20px #525252;
}

.social i {
  font-size: 2.2em;
  padding: 10px 10px 10px 0px;
  margin-top: 20px;
  color: white
}

.social i:hover {
  /*	color: #33cc99;*/
  color: #969696;
}

.email-address a {
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li.menu-item-has-children ul.sub-menu {
  list-style: none;
  border: none;
  padding: 0;
}

.footer-links li.menu-item-has-children ul.sub-menu li a {
  /*    font-family: "Proxima Nova W08 Reg";*/
  display: block;
  color: #BDBDBD;
  width: 100%;
  border: none;
  padding: 1px 0px;
  font-size: .95em;
  font-weight: 100;
}

.footer-links li.menu-item-has-children ul.sub-menu li a:hover {
  opacity: .7;
}

.footer-links li.menu-item-has-children ul.sub-menu {
  list-style: none;
  border: none;
  padding: 0;
}

.footer-links li.menu-item-has-children a {
  display: block;
  width: 100%;
  font-size: 1.2em;
  /*    font-family: "Proxima Nova W07 Bold";*/
  padding-bottom: 10px;
  color: white;
  font-weight: bold;
}

#account-page-content {
  /*    background-color: #f5f5f5;*/
  padding: 1.8em 0em;
  /* background: linear-gradient(#111, #323232); */
  	background: linear-gradient(#ddd, #f5f5f5);
  /*	    background: linear-gradient(to bottom,#000, #313131);*/
}

.mobile-detect {
  display: none;
}

#account-page-content .paginate {
  background-color: #ffffff;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  /*    padding: 3em 4em;*/
  padding: 10px 30px 20px;
  margin: 20px auto;
  /*    top: -80px;*/
  position: relative;
  border-radius: 4px;
}

#myaccount p {
  padding-top: 1em;
  padding-bottom: 0.4em;
  font-size: 1.2em;
  color: black;
}

.submit {
  display: inline-block;
  float: right;
}

.field-group .field-group-title {
  display: table;
  padding: 15px 33px;
  position: relative;
  top: -15px;
  background-color: #96C5B6;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
}

.field-option label {
  display: inline-block;
  max-width: 100%;
  font-weight: normal;
  color: #000;
  font-size: .8em;
  letter-spacing: 2.1px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.submit .submit-btn {
  background-color: #33cc99;
  border: none;
  padding: 15px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 20px 0px;
  display: inline-block;
  font-size: 1em;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
  border-radius: 4px;
}

.submit-btn:hover {
  opacity: .8;
}

.field-option input {
  border: 0;
  border-bottom: 1px solid #D0D0D0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: #333;
  font-size: 1em;
  padding: 0;
  display: block;
  width: 100%;
  height: 34px;
}

.field-option {
  background: #ffffff;
  padding: 10px 0px;
  /* margin-bottom: 10px; */
  display: inline-block;
  /* margin-right: 20px; */
  width: 100%;
  /* border-bottom: 1px solid #ffffff; */
  /* border-right: 1px solid #ffffff; */
}

a.textlink {
  padding: 0px;
  margin: 0px;
  color: #8d162c;
  font-weight: bold;
}

a.textlink:hover {
  text-decoration: underline;
}

.login-box,
.register-box {
  background-color: transparent;
  padding: 20px;
  border: 1px solid transparent;
}

.field-group {
  padding: 0px 20px 7px;
  position: relative;
  background-color: #ffffff;
}

.submit a {
  padding: 3px;
  margin: 5px 0px;
  font-size: 1em;
  display: inline-block;
  color: #666666;
  font-weight: bold;
  text-transform: uppercase;
}

.submit a:hover {
  color: #33cc99;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  /*    box-shadow: inset 0 0 8px rgb(0, 0, 0);*/
  background-color: black;
  /*     border-radius: 8px; */
}

::-webkit-scrollbar-thumb {
  background: rgba(82, 82, 82, 0.8);
  /*    background: #525252;*/
  /*    border-radius: 8px;*/
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.24), 0 0px 1px 2px rgba(0, 0, 0, 0.12), 0 1px 1px 0px rgba(0, 0, 0, .12);
}

::-webkit-scrollbar-thumb:hover {
  /*	background: rgba(82, 82, 82, 0.8);*/
  background: #888888;
  overflow-y: auto;
}


/*  tabs */
#account-page-content article ul {
  margin: 0em 2rem;
}

/*
#account-page-content article ol, #account-page-content article ul, #account-page-content article h2, #account-page-content article h1, #account-page-content article h3, #account-page-content article h4 {
    padding: 0em 2rem;
    margin-top: 0;
    margin-bottom: 0;
}
*/

/*
#account-page-content article h3 {
    padding-top: 1em;
    padding-bottom: 0.1em;
}

#account-page-content article ol, #account-page-content article ul {
    margin: 0em 2rem;
}
*/

#myaccintrotext {
  font-size: 1.2em;
  color: black;
}

ul.tabs li {
  background: #d0d0d0;
  color: #222;
  display: inline-block;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 15px;
  font-family: Verdana, Geneva, sans-serif;
  height: 55px;
}

ul.tabs li.current {
  background: #33CC99;
  color: #fff;
}

.tab-content {
  /*    background: #ededed;*/
  padding: 35px;
  /*    padding: 15px;*/
  font-size: 1.3em;
  color: black;
}

#home {
  line-height: 1.6em;
}

hr {
  border-top: 0;
}

.fa {
  margin-right: 8px;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus {
  color: white;
  border: 1px solid #33CC99;
  border-bottom-color: transparent;
  cursor: default;
  background: #33CC99;
  border-bottom: 2px solid #33CC99;
}

.nav-tabs {
  border-bottom: 1px solid #33CC99;
  /*	letter-spacing: .5px;*/
  font-size: 1.5em;
}

.nav-tabs>li {
  float: left;
  margin-bottom: -1px;
  margin-left: 60px;
}

.nav-tabs>li>a:hover {
  border-color: white;
  background-color: white;
  color: #33CC99;

  /*	font-weight: bold;*/

}

.nav-tabs>li.active>a:hover {
  /*	font-weight: 100;*/
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
  color: white;
  border: 1px solid #33CC99;
  border-bottom-color: transparent;
  cursor: default;
  background: #33CC99;
  border-bottom: 2px solid #33CC99;
}

.greenBtn {
  background: #0f70b7;
  border: 1px solid #0f70b7;
  transition: 0.2s ease-in;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  padding: 4px 12px;
  line-height: 1.5;
  border-radius: .3rem;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .26);
  color: white;
  /*    height: 30px;*/
  margin-right: 1%;
  /*    margin-top: 1%;*/
  margin-bottom: 1%;
  font-size: 1.2em;
  text-transform: uppercase;
}

.greenBtn:hover {
  opacity: .8;
}

/* DataTable */
.dataTables_wrapper {
  border: 0;
}

.dataTables_wrapper .dataTables_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.dataTables_wrapper .dataTables_footer .dataTables_info {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}

.dataTables_wrapper .dataTables_footer .dataTables_info,
.dataTables_wrapper .dataTables_footer .dataTables_paginate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dataTables_wrapper .dataTables_info {
  height: 4rem;
  line-height: 4rem;
  padding: 0 .8rem;
  float: left;
  font-weight: 600;
  text-align: center;
}

.dataTables_wrapper .dataTables_footer .dataTables_paginate {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.dataTables_wrapper .dataTables_footer .dataTables_info,
.dataTables_wrapper .dataTables_footer .dataTables_paginate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dataTables_wrapper .dataTables_paginate {
  padding: 0 .8rem;
  height: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  float: right;
  border: 0;
}

.dataTables_length {
  padding-top: 18px;
}

table.dataTable tbody td {
  padding: 16px 8px;
}

#recent_table,
#recent_table th {
  border: 0px;
}

.dataTables_wrapper>div {
  padding: 0px;
}


/*
#amount {
    text-align: right;
    font-size: 1.4em;
    width: 75%;
    padding-top: 12px;
}
*/

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  margin-bottom: 30px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, .125);
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  height: 75px;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.bg-info {
  background-color: #20aee3 !important;
  padding: 10px;
}

.text-white {
  color: #ffffff !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
  margin-left: 20px;
}

.box {
  border-radius: 4px;
  /*    padding: 10px;*/
}

*,
::after,
::before {
  box-sizing: inherit;
}

.progress {
  overflow: hidden;
  height: 8px;
  width: 295px;
  margin-bottom: 17px;
  background-color: #f5f5f5;
  border-radius: 5px;
  /*
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
*/
  -webkit-box-shadow: inset 0 0 1px 0 rgb(0, 0, 0);
  box-shadow: inset 0 0 1px 0 rgb(0, 0, 0);
}

.progress-bar {
  -webkit-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, .2), 0 0px 1px 2px rgba(0, 0, 0, .14), 0 1px 1px 0px rgba(0, 0, 0, .12);
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, .2), 0 0px 1px 2px rgba(0, 0, 0, .14), 0 1px 1px 0px rgba(0, 0, 0, .12);
  border-radius: 5px;
}

.progress-bar-danger {
  background-color: #ec5956;
}

.progress-bar-success {
  background-color: #33cc99;
}

.progress-bar-warning {
  background-color: #f5a662;
}

.card_header {
  background-color: #33cc99;
  text-align: center;
  padding: 5px;
}

.badge {
  border-radius: 3px;
  margin-right: 5px;
}

.badge.badge-warning {
  background-color: #fb6901;
  color: #fff;
}

.badge.badge-saved {
  background-color: #737881;
  color: #fff;
}

.f-s {
  font-size: .85em;
}

.payBtn {
  background: #0f70b7;
  border: 1px solid #0f70b7;
  transition: 0.2s ease-in;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  line-height: 1.5;
  border-radius: .3rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
  color: white;
  margin-right: 1%;
  margin-top: 1%;
  margin-bottom: 1%;
  text-transform: uppercase;
}

.viewBtn {
  background: #33cc99;
  border: 1px solid #33cc99;
}

.payBtn:hover,
.viewBtn:hover {
  opacity: .8;
}

.payBtn:disabled,
.payBtn:disabled:hover,
.greenBtn:disabled,
.greenBtn:disabled:hover {
  cursor: not-allowed;
  opacity: .5;
}

.filter_badge {
  cursor: pointer;
}

.pb_ot {
  margin: 0;
  padding: 3px 20px;
}

.dash_tb {
  margin: 0 auto;
  padding: 0px 10px;
  font-size: .95em;
  text-transform: capitalize;
}

.modalHeader {
  background-color: #323232;
  text-align: center;
  padding: 5px;
}

.text-muted {
  font-size: 15px;
}

.headerFont {
  font-weight: 700;
  color: white;
  margin: .5em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close {
  float: right;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 1px 0 #fff;
  opacity: .8;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

.close:hover {
  color: #ffffff;
  opacity: .5;
}

/*Form Material*/

.form-control {
  display: block;
  width: 100%;
  padding: .5rem .75rem;
  font-size: 15px;
  height: 22px;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: .25rem;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-material .form-control,
.form-material .form-control.focus,
.form-material .form-control:focus {
  /* background-image: linear-gradient(#20aee3, #20aee3), linear-gradient(#e9edf2, #e9edf2); */
  background-image: linear-gradient(#323232, #323232), linear-gradient(#e9edf2, #e9edf2);
  border: 0 none;
  border-radius: 0;
  box-shadow: none;
  float: none;
}

.form-material .form-control {
  background-color: transparent;
  background-position: center bottom, center calc(100% - 1px);
  background-repeat: no-repeat;
  background-size: 0 2px, 100% 1px;
  padding: 0;
  transition: background 0s ease-out 0s;
}

.form-material .form-control.focus,
.form-material .form-control:focus {
  background-size: 100% 2px, 100% 1px;
  outline: 0 none;
  transition-duration: 0.3s;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  /*    background-color: #eeeeee;*/
  opacity: .8;
  cursor: default;
}

/*******************
This is for the checkbox radio button and switch 
******************/
/* Radio Buttons
   ========================================================================== */
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

[type="radio"]:not(:checked)+label,
[type="radio"]:checked+label {
  position: relative;
  padding-left: 30px;
  margin-right: 25px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 28px;
  /*  font-size: 1rem;*/
  transition: .28s ease;
  /* webkit (konqueror) browsers */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[type="radio"]+label:before,
[type="radio"]+label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px;
  width: 16px;
  height: 16px;
  z-index: 0;
  transition: .28s ease;
}

/* Unchecked styles */
[type="radio"]:not(:checked)+label:before,
[type="radio"]:not(:checked)+label:after,
[type="radio"]:checked+label:before,
[type="radio"]:checked+label:after,
[type="radio"].with-gap:checked+label:before,
[type="radio"].with-gap:checked+label:after {
  border-radius: 50%;
}

[type="radio"]:not(:checked)+label:before,
[type="radio"]:not(:checked)+label:after {
  border: 1px solid #b1b8bb;
}

[type="radio"]:not(:checked)+label:after {
  z-index: -1;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* Checked styles */
[type="radio"]:checked+label:before {
  border: 2px solid transparent;
  -webkit-animation: ripple 0.2s linear forwards;
  animation: ripple 0.2s linear forwards;
}

[type="radio"]:checked+label:after,
[type="radio"].with-gap:checked+label:before,
[type="radio"].with-gap:checked+label:after {
  border: 2px solid #26a69a;
}

[type="radio"]:checked+label:after,
[type="radio"].with-gap:checked+label:after {
  background-color: #26a69a;
  z-index: 0;
}

[type="radio"]:checked+label:after {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

/* Radio With gap */
[type="radio"].with-gap:checked+label:after {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

/* Focused styles */
[type="radio"].tabbed:focus+label:before {
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-animation: ripple 0.2s linear forwards;
  animation: ripple 0.2s linear forwards;
}

/* Disabled Radio With gap */
[type="radio"].with-gap:disabled:checked+label:before {
  border: 2px solid rgba(0, 0, 0, 0.26);
  -webkit-animation: ripple 0.2s linear forwards;
  animation: ripple 0.2s linear forwards;
}

[type="radio"].with-gap:disabled:checked+label:after {
  border: none;
  background-color: rgba(0, 0, 0, 0.26);
}

/* Disabled style */
[type="radio"]:disabled:not(:checked)+label:before,
[type="radio"]:disabled:checked+label:before {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.26);
  -webkit-animation: ripple 0.2s linear forwards;
  animation: ripple 0.2s linear forwards;
}

[type="radio"]:disabled+label {
  color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled:not(:checked)+label:before {
  border-color: rgba(0, 0, 0, 0.26);
}

[type="radio"]:disabled:checked+label:after {
  background-color: rgba(0, 0, 0, 0.26);
  border-color: #BDBDBD;
}


/***************/

.fade-scale {
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}

.fade-scale.in {
  opacity: 1;
  transform: scale(1);
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #e9ecef;
}

.grnBtn {
  background: #24d2b5;
  border: 1px solid #24d2b5;
  transition: 0.2s ease-in;
  /*
    display: block;
    margin: 0 auto;
*/
  cursor: pointer;
  padding: 4px 12px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: .3rem;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .26);
  color: white;
}

.purpleBtn {
  background: #7f24d2;
  border: 1px solid #7f24d2;
  transition: 0.2s ease-in;
  cursor: pointer;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
  color: white;
}

.blueBtn {
  background: #0f70b7;
  border: 1px solid #0f70b7;
  transition: 0.2s ease-in;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  padding: 4px 12px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: .3rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
  color: white;
}

.greyBtn {
  background: #dddddd;
  border: 1px solid #dddddd;
  transition: 0.2s ease-in;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  padding: 4px 12px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: .3rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .26);
  color: #67757c;
}

.redBtn {
  background: #ff5c6c;
  border: 1px solid #ff5c6c;
  transition: 0.2s ease-in;
  /* width: 40%; */
  display: block;
  margin: 0 auto;
  cursor: pointer;
  padding: 4px 12px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: .3rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
  color: white;
}

.cancel_order_btn {
  background: #8d162c;
  border: 1px solid #8e172d;
}

.back_btn {
  background: #58595b;
  border: 1px solid #58595b;
  margin: 0;
  color: white;
}

.blueBtn:hover,
.greyBtn:hover,
.redBtn:hover,
.grnBtn:hover,
.purpleBtn:hover {
  opacity: .8;
}

.blueBtn:disabled,
.greyBtn:disabled,
.redBtn:disabled,
.grnBtn:disabled,
.purpleBtn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.smallBtn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
  display: inherit;
}

.form-material label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
  color: #737881;
  font-size: 1.1em;
}

.fa-pencil:hover,
.fa-download:hover {
  /*	color: #737881;*/
  opacity: .8;
}

.error_span {
  color: #ec5956;
  font-weight: bold;
}

.f-s-9 {
  font-size: .9em;
}

#view_more {
  float: right;
  margin-top: -15px;
  cursor: pointer;
}

#view_more:hover {
  opacity: .8;
}

.row {
  display: flex;
}



#updateUserDetails .modal-content,
#addUserModal .modal-content,
#editAddressModal .modal-content,
#addAddressModal .modal-content {
  width: 725px;
}

.panel>.panel-heading .panel-title h4 {
  /*    font-size: 14px;*/
  font-size: 20px;
  color: white;
  /*    color: #303641;*/
}

.panel-group .panel>.panel-heading {
  padding: 0px;
}

.modal .panel-default>.panel-heading {
  color: #373e4a;
  background-color: #ebebeb;
  border-color: #ebebeb;
  padding: 0;
}

.formHeader {
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 20px;
  padding: 5px 0;
  text-align: center;
  text-shadow: 1px 1px 5px #333;
  /*	text-shadow: 1px 1px 1px rgba(153, 153, 153, 0.74);*/
}

/*switch*/

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22.6px;
  top: 10px;
  margin-left: 15px;
}

.switch input {
  display: none;
}

.slider1 {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.23);
}

.slider1:before {
  position: absolute;
  content: "";
  height: 17.3px;
  width: 17.3px;
  left: 2.6px;
  bottom: 2.6px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider1 {
  background-color: #24d2b5;
}

input:focus+.slider1 {
  box-shadow: 0 0 1px #24d2b5;
}

input:checked+.slider1:before {
  -webkit-transform: translateX(17.3px);
  -ms-transform: translateX(17.3px);
  transform: translateX(17.3px);
}

/* Rounded sliders */
.slider1.oval {
  border-radius: 22.6px;
}

.slider1.oval:before {
  border-radius: 50%;
}


/****************Wizard******************/

.form-wizard>ul>li.active a,
.form-wizard>ul>li.current a {
  font-weight: bold;
  color: #111;
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(153, 153, 153, 0.74);
}

.form-wizard>ul>li.active a span,
.form-wizard>ul>li.current a span {
  background: #fff;
  color: #1d1d1d;
  font-size: 1.3em;
  -moz-box-shadow: 0px 0px 0px 6px #ebebeb;
  -webkit-box-shadow: 0px 0px 0px 6px #ebebeb;
  /*    box-shadow: 0px 0px 0px 6px #ebebeb;*/

  box-shadow: 0px 0px 9px 2px #191919;
}

.form-wizard>ul>li.active a,
.form-wizard>ul>li.current a {
  /*
    font-weight: bold;
    color: #111111;
    font-size: 14px;
*/
}

.form-wizard>ul>li a span {
  /*
    position: absolute;
    display: block;
    background: #ffffff;
    color: #323232;
    line-height: 40px;
    font-size: 16px;
    font-weight: normal;
    box-shadow: 0px 0px 0px 3px #ebebeb;
    text-align: center;
    margin-top: -55.5px;
    left: 50%;
    margin-left: -17.5px;
    width: 40px;
    height: 40px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
*/
}

.form-wizard .steps-progress .progress-indicator1 {
  /*
	background: #0f70b7;
    height: 5px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	width: 5%;
*/
}

.form-wizard .steps-progress .progress-indicator2 {
  /*
	background: #0f70b7;
    height: 5px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	width: 28%;
*/
}

.form-wizard .steps-progress .progress-indicator3 {
  /*
	background: #0f70b7;
    height: 5px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	width: 49%;
*/
}

.form-wizard .steps-progress .progress-indicator4 {
  /*
	background: #0f70b7;
    height: 5px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	width: 71%;
*/
}

.form-wizard .steps-progress .progress-indicator5 {
  /*
	background: #0f70b7;
    height: 5px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
	width: 92%;
*/
}

.form-wizard .steps-progress {
  /*
    display: block;
    background: #ebebeb;
    width: auto;
    height: 5px;
    margin: 0 70px;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
*/
}

.form-wizard>ul>li.active a span,
.form-wizard>ul>li.current a span {
  /*
    background: #0f70b7;
    color: #ffffff;
	font-size: 18px;
    -moz-box-shadow: 0px 0px 0px 3px #0f70b7;
    -webkit-box-shadow: 0px 0px 0px 3px #0f70b7;
    box-shadow: 0px 0px 0px 3px #0f70b7;
*/
}



/*******************Check Box*******************/


[type="checkbox"]+label {
  padding-left: 26px;
  height: 25px;
  line-height: 21px;
  font-weight: normal;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

[type="checkbox"].filled-in:not(:checked)+label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  -ms-transform: rotate(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in+label:before,
[type="checkbox"].filled-in+label:after {
  content: '';
  left: 0;
  position: absolute;
  -webkit-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  -o-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1;
}

[type="checkbox"]+label:before,
[type="checkbox"]:not(.filled-in)+label:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  z-index: 0;
  border: 2px solid #5a5a5a;
  border-radius: 1px;
  margin-top: 2px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

[type="checkbox"].filled-in:not(:checked)+label:after {
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  top: 0px;
  z-index: 0;
}

[type="checkbox"].filled-in+label:before,
[type="checkbox"].filled-in+label:after {
  content: '';
  left: 0;
  position: absolute;
  -webkit-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  -o-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1;
}

[type="checkbox"].filled-in+label:after {
  border-radius: 2px;
}

[type="checkbox"].filled-in:checked+label:before {
  border-right: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
}

[type="checkbox"].filled-in:checked+label:before {
  top: 0;
  left: 1px;
  width: 4px;
  height: 9px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  -ms-transform: rotate(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"]:checked+label:before {
  top: -4px;
  left: -2px;
  width: 11px;
  height: 19px;
}

[type="checkbox"].filled-in:checked+label:after {
  top: 0;
  width: 15px;
  height: 15px;
  border: 2px solid #26a69a;
  background-color: #26a69a;
  z-index: 0;
}

[type="checkbox"].filled-in:checked+label:after {
  top: 0;
  width: 15px;
  height: 15px;
  border: 2px solid #26a69a;
  background-color: #26a69a;
  z-index: 0;
}




.m-0 {
  margin: 0;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #323232;
  background: #323232;
  color: #ffffff;
  font-weight: bold;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #ac1818;
  background: #ac1818;
  color: #ffffff;
  font-weight: bold;
}



/*********Tooltip*********/

.mytooltip {
  display: inline;
  position: relative;
  /*    z-index: 9999;*/
}

.tooltip-item {
  cursor: pointer;
  /*    cursor: help;*/
  display: inline-block;
  padding: 0 10px;
  color: white;
}

.list_a {
  cursor: pointer;
  padding: 0px;
  color: #20aee3;
}

.tooltip-text {
  /*    font-size: 1.1em;*/
  line-height: 24px;
  display: block;
  padding: 7px;
  color: black;
  text-align: center;
  font-weight: 400;
}

.tooltip-content {
  border-radius: 4px;
  position: absolute;
  z-index: 9999;
  width: 200px;
  left: 50%;
  margin: 0 0 10px -100px;
  bottom: 100%;
  text-align: left;
  line-height: 30px;
  -webkit-box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  background: #ffffff;
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

.tooltip-content-large {
  width: 400px;
  margin: 0 0 10px -200px;
}

.tooltip-content-x-large {
  width: 525px;
  margin: 0 0 10px -150px;
  font-size: .95em;
}

.tooltip-content-small {
  width: 100px;
  margin: 0 0 10px -50px;
}

.tooltip-effect .tooltip-content {
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: scale3d(0.7, 0.3, 1);
  transform: scale3d(0.7, 0.3, 1);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  -o-transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}

.tooltip-content::after {
  content: '';
  top: 100%;
  left: 50%;
  border: solid transparent;
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: #ffffff;
  border-width: 10px;
  margin-left: -10px;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.mytooltip:hover .tooltip-content2,
.mytooltip:hover .tooltip-content2 i {
  opacity: 1;
  font-size: 18px;
  pointer-events: auto;
  -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

.mytooltip:hover .tooltip-content4,
.mytooltip:hover .tooltip-text2 {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mytooltip {
  display: inline;
  position: relative;
  /*  z-index: 9999; */
}

.mytooltip:hover .tooltip-item::after {
  pointer-events: auto;
}

.mytooltip:hover .tooltip-content {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
  transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
}

.mytooltip:hover .tooltip-content3 {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.mytooltip:hover .tooltip-item2 {
  color: #ffffff;
  -webkit-transform: translate3d(0, -0.5em, 0);
  transform: translate3d(0, -0.5em, 0);
}

.mytooltip:hover .tooltip-content5 {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

.mytooltip:hover .tooltip-text3 {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.mytooltip:hover .tooltip-inner2 {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}


.tooltip-item::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 20px;
  bottom: 100%;
  left: 50%;
  pointer-events: none;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}


/***********Feedback Widget***********/

#zsfeedbkrpanel {
  position: relative;
  top: 150px;
  left: 125px;
}

#FeedbackformID {
  padding: 20px;
}

#feedbPopupSbmtBtn {
  border-radius: 4px;
  background: #0f70b7;
  border: 1px solid #0f70b7;
  transition: 0.2s ease-in;
}



/***********Google Address************/

.pac-container:after {
  background-image: none !important;
  height: 0px;
}

.pac-item-query {
  font-size: 13px;
  padding-right: 3px;
  color: #67757c;
}

.pac-matched {
  font-weight: 100;
  font-size: 13px;
  color: #67757c;
}

.pac-item-selected,
.pac-item:hover {
  color: #67757c;
  font-weight: 700;
  background-color: rgba(245, 222, 179, 0.40);
}

.pac-item {
  cursor: default;
  padding: 0 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 30px;
  text-align: left;
  border-top: 1px solid #e6e6e6;
  font-size: 13px;
  color: #67757c;
}


#t_and_c {
  color: darkblue;
}

#t_and_c:hover {
  text-decoration: underline;
}




th h4 {
  /*	font-weight: bold;*/
}

.m-10 {
  /*
	padding: 0;
	margin: 10px 0;
*/
}

.m-5 {
  padding: 0;
  margin: 5px 0;
}

.toggle_label {
  margin: 15px 0;
  cursor: pointer;
}

/*****************Toggle****************/

.lbl {
  margin-left: 15px;
  position: absolute;
  top: 30px;
  display: block;
  height: 15px;
  width: 30px;
  background: #ccc;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lbl:after {
  position: absolute;
  left: -2px;
  top: -1px;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 100px;
  background: #323232;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.05);
  content: '';
  transition: all 0.3s ease;
}

.ani {
  transform: scale(1.25, 0.85);
}

.lbl:active:after {
  transform: scale(1.25, 0.85);
}

.cbx:checked~label {
  /*	background: #6fbeb5; */
  background: rgba(90, 195, 178, 0.36);
}

.cbx:checked~label:after {
  left: 15px;
  background: #5ac3b2;
}

.cbx:disabled~label {
  background: #d5d5d5;
  pointer-events: none;
}

.cbx:disabled~label:after {
  background: #bcbdbc;
}

.hidden {
  display: none;
}



section {
  min-height: 703px;
  cursor: default;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*	cursor: default;*/
}

.panel-heading {
  background-color: #8d162c;
}

select {
  cursor: pointer;
}

.badge {
  cursor: default;
}




/***********Modal*************/

/*
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
*/


@media (max-width: 767px) {
  .row {
    display: block;
  }

  .upper-banner {
    height: 70px;
    top: 40px;
    /*		display: none;*/
  }

  .banner-text .banner-text-title {
    font-size: 2em;
    top: -50px;
    text-align: center;
  }

  .mobile-detect {
    background-color: #33cc99;
    color: #ffffff;
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: 1.2em;
  }

  .mobile-button {
    padding: 0 0px;
  }

  .progress {
    width: 240px;
  }

  /*
	.secondary-nav a {
		color: #ffffff;
		display: inline-block;
		font-size: 0.8em;
		padding: 10px 20px 10px 10px;
	}
*/
}

@media (min-width: 1200px) {
  .container {
    width: 1470px;
  }
}






label h4 {
  font-weight: bold;
  color: #323232;
}

.panel-title {
  text-align: center;
}

.panel-default>.panel-heading>.panel-title>a {
  color: black;
}

.col-sm-2_5 {
  width: 20%;
  position: relative;
  float: left;
}

.checkBox_label,
input[type="checkbox"] {
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 6.5px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #737881;
  /* background: #525252; */
  /*    border-radius: 8px;*/
  box-shadow: none;
  /* box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.24), 0 0px 1px 2px rgba(0, 0, 0, 0.12), 0 1px 1px 0px rgba(0,0,0,.12); */
}

::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 8px rgb(0, 0, 0); */
  background-color: #323232;
  /*    background-color: rgba(221, 221, 221, 0);*/
  box-shadow: none;
  /* border-radius: 8px; */
}

textarea::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 8px rgb(0, 0, 0); */
  background-color: rgba(221, 221, 221, 0);
  box-shadow: none;
  /* border-radius: 8px; */
}

/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: rgba(51, 204, 153, 0.5);
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
  right: 0;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #33CC99;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
  color: white;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}



#loginDiv,
#contactUsDiv {
  /*		display: none;*/
  padding: 20px;
  height: 200px;
  width: 300px;
  right: 140px;
  top: 48px;
  z-index: 50;
  border-radius: 4px;
  position: absolute;
  background: #fff;
  /* background: #fff; */
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  border: solid 1px #fff;
  transition: 0.2s ease-in;
}

#loginDiv::after,
#contactUsDiv:after {
  content: " ";
  position: absolute;
  bottom: 100%;
  right: 45%;
  margin-left: -13px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

#first label,
#resetPW,
#second label {
  float: left;
  color: #1b1b1b;
}

.error_span {
  float: left;
  display: none;
  width: 100%;
  text-align: left;
}

.close1 {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  color: #1b1b1b;
  font-size: 18px;
  z-index: 50;
  margin: 0;
  transition: 0.2s ease-in;
}

.close1:hover {
  opacity: .8;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.link1to2 {
  position: absolute;
  left: 20px;
  bottom: 15px;
  color: #6e5954;
  font-weight: 500;
}

#eye {
  color: black;
  position: absolute;
  right: 25px;
  top: 107px;
  cursor: pointer;
}

.link1to2 {
  cursor: pointer;
}

#eye:hover,
.link1to2:hover {
  font-weight: bold;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 50%;
  margin: 2px 5px;
}

.ui-datepicker {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
  border-radius: 4px;
}

.modal-open .modal {
  /*	background-color: rgba(245, 245, 245, 0.7);*/
  background-color: rgba(153, 153, 153, 0.85);
}

.table-hover>tbody>tr:hover {
  background-color: #ddd;
  cursor: default;
}

#zsfeedbkrpanel {
  position: relative;
  top: 0;
  left: 0;
  border: 0;
  width: 650px;
}

#FeedbackformID {
  width: 600px;
}

.redBG {
  background-color: rgba(255, 138, 138, 0.6);
  border-radius: 3px;
  padding: 2px 5px;
  animation: changeBGColor 1s 4;
}

@keyframes changeBGColor {
  0% {
    background-color: rgba(255, 138, 138, 0.6);
  }

  49% {
    background-color: rgba(255, 138, 138, 0.6);
  }

  50% {
    background-color: #fff;
  }

  99% {
    background-color: #fff;
  }

  100% {
    background-color: rgba(255, 138, 138, 0.6);
  }
}

@-webkit-keyframes changeBGColor {
  0% {
    background-color: rgba(255, 138, 138, 0.6);
  }

  49% {
    background-color: rgba(255, 138, 138, 0.6);
  }

  50% {
    background-color: #fff;
  }

  99% {
    background-color: #fff;
  }

  100% {
    background-color: rgba(255, 138, 138, 0.6);
  }
}

@-moz-keyframes changeBGColor {
  0% {
    background-color: rgba(255, 138, 138, 0.6);
  }

  49% {
    background-color: rgba(255, 138, 138, 0.6);
  }

  50% {
    background-color: #fff;
  }

  99% {
    background-color: #fff;
  }

  100% {
    background-color: rgba(255, 138, 138, 0.6);
  }
}

.greenBG {
  background-color: rgb(173, 238, 171);
  border-radius: 3px;
  padding: 2px 5px;
  /*		background-color: rgba(36, 210, 181, 0.43);*/
}

#delete_modal,
.modal {
  background-color: rgba(153, 153, 153, 0.85);
}

.tooltip-content {
  -webkit-box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
  background: #ddd;
  /*		background: #5d5d5d;*/
}

.tooltip-content::after {
  border-top-color: #ddd;
  /*		border-top-color: #5d5d5d;*/
}

.tooltip-item {
  cursor: help;
}

::selection {
  /*  background: #dee12f;*/
  background: #21c1c1;
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  /*  background: #dee12f; */
  background: #21c1c1;
  /* Gecko Browsers */
}

.modal-body {
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
}

.modal-body::-webkit-scrollbar-thumb,
.note-editable::-webkit-scrollbar-thumb {
  /* background: #737881; */
  background: rgba(115, 120, 129, .9);
  /*    border-radius: 8px;*/
  box-shadow: none;
}

.modal-body::-webkit-scrollbar-track,
.note-editable::-webkit-scrollbar-track {
  background-color: transparent;
  box-shadow: none;
}

.colorB {
  color: #26a69a;
  font-weight: bold;
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(1400px);
    transform: perspective(1400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(1400px);
    transform: perspective(1400px);
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(1400px);
    transform: perspective(1400px);
  }

  30% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(1400px);
    transform: perspective(1400px);
  }

  30% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.spinner2 {
  margin: 0px auto;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 10px;
}

.spinner2>div {
  background-color: #333;
  height: 105%;
  width: 2px;
  margin-right: 3px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner2 .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner2 .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner2 .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner2 .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4)
  }

  20% {
    -webkit-transform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

/*
.spinner2 {
  margin: 0px auto 0;
  width: 70px;
  text-align: center;
}

.spinner2 > div {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner2 .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner2 .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
*/

@-webkit-keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0)
  }

  40% {
    -webkit-transform: scale(1.0)
  }
}

@keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

#__password {
  font-size: 25px
}

.input-icon {
  position: relative;
}

.input-icon>i {
  position: absolute;
  display: block;
  transform: translate(0, -50%);
  top: 50%;
  pointer-events: none;
  text-align: center;
  font-style: normal;
}

.fixed {
  position: fixed;
  width: 100%;
  margin: 0 auto;
  /*    height: 98px;*/
  top: 0;
  background-color: black;
  z-index: 1010;
  /*    box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);*/
  box-shadow: 1px 0px 20px rgb(78, 78, 78);
}

/* slideInDown */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 15000;
  background: black;
}

.progress1 {
  height: 20px;
  padding: 1px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f7f7f7;
  border: 1px solid #eee;
}

.progress__bar {
  display: block;
  height: 100%;
  background: #5bc0de;
}

.progress__label {
  float: right;
  padding: 0 2px;
  font-size: 12px;
  color: #fff;
}

.progress--radius {
  border-radius: 2px;
}

.progress--round {
  border-radius: 1000px;
}

.progress--radius .progress__bar,
.progress--round .progress__bar {
  border-radius: inherit;
}

.progress--small {
  height: 15px;
}

.progress--large {
  height: 10px;
}

.progress--success .progress__bar {
  background-color: #43ac6a;
}

.progress--alert .progress__bar {
  background-color: #f04124;
}

.progress--striped .progress__bar {
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}

#marqueeDiv {
  margin: 0;
  font-size: 30px;
  color: white;
  cursor: default;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  /*	display: none;*/
}


#marqueeBtn {
  float: right;
  position: absolute;
  top: 7px;
  right: 220px;
  background: #999999;
  border: 1px solid #999999;
  transition: 0.2s ease-in;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  padding: 3px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: .3rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
  color: white;
}

#marqueeBtn:hover {
  background: #aaa;
}

/*btn group*/
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group>.btn,
.btn-group-vertical>.btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group>.btn:focus,
.btn-group-vertical>.btn:focus,
.btn-group>.btn:active,
.btn-group-vertical>.btn:active,
.btn-group>.btn.active,
.btn-group-vertical>.btn.active {
  z-index: 1;
}

.btn-group>.btn:not(:first-child),
.btn-group>.btn-group:not(:first-child) {
  margin-left: 5px;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: 2px;
  content: "";
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
}

.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn {
  margin-bottom: 0;
}

.btn-group-toggle>.btn input[type="radio"],
.btn-group-toggle>.btn-group>.btn input[type="radio"],
.btn-group-toggle>.btn input[type="checkbox"],
.btn-group-toggle>.btn-group>.btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

ul.dropdown-menu::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  right: 42%;
  margin-left: -13px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.btn-danger,
.btn-danger:hover,
.btn-danger:focus {
  color: #fff;
  background-color: #cc2424;
  border-color: #b62020;
}

.btn-info,
.btn-info:focus {
  color: #fff;
  background-color: #0f70b7;
  border-color: #0f70b7;
  transition: 0.2s all ease-in;
}

.btn-info:hover {
  color: #fff;
  background-color: #0f70b7;
  border-color: #0f70b7;
  opacity: .8;
}

.cardCheckingDiv::-webkit-scrollbar {
  display: none;
}

.loggedin:hover {
  font-weight: bold;
}

.note-editor.note-frame .note-editing-area .note-editable {
  cursor: text;
}

.note-editable a {
  color: #21a9e1;
  text-decoration: underline;
}

.StripeElement {
  background-color: white;
  height: 20px;
  /*	width: 500px;*/
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  top: 42%;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 30px 15px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0f70b7;
  margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
  width: 7.6px;
  height: 7.6px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
  width: 7.4px;
  height: 7.4px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
  width: 7.2px;
  height: 7.2px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
  width: 7px;
  height: 7px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
  width: 6px;
  height: 6px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
  width: 5px;
  height: 5px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
  width: 4px;
  height: 4px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
  width: 3px;
  height: 3px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.cardCheckingDiv {
  /* display: none; */
  width: 100%;
  height: 100%;
  top: 0px;
  overflow: hidden;
  position: fixed;
  z-index: 99999;
  background: #f6f9fa;
}

.cardCheckingDiv p {
  font-size: 17px;
  position: absolute;
  top: 50%;
  color: #0f70b7;
  -webkit-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: loader-label 1.15s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.loggedin__ .tooltiptext__ {
  visibility: hidden;
  width: 120px;
  background-color: #ff6360;
  color: #fff;
  text-align: center;
  border-radius: 15px;
  padding: 5px 0;
  position: absolute;
  z-index: 0;
  bottom: -15px;
  opacity: 1;
  /*	transition: opacity 0.3s;*/
  cursor: default;
  font-size: 15px;
  text-transform: uppercase;
  transform: translateY(-5px);
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.loggedin__ .tooltiptext__::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent #ff6360 transparent;
}

.loggedin__:hover .tooltiptext__ {
  z-index: 500;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

#m-check-mark {
  margin: 0 auto;
  width: 25px;
  height: auto;
  display: inline;
}

#checkmark {
  stroke-dasharray: 640;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: draw-around 1s infinite;
  -ms-animation: draw-around 1s infinite;
  animation: draw-around 1s infinite;
}

@-ms-keyframes draw-around {
  0% {
    stroke-dashoffset: 640;
  }

  10% {
    stroke-dashoffset: 640;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes draw-around {
  0% {
    stroke-dashoffset: 640;
  }

  10% {
    stroke-dashoffset: 640;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-around {
  0% {
    stroke-dashoffset: 640;
  }

  10% {
    stroke-dashoffset: 640;
  }

  100% {
    stroke-dashoffset: 0;
  }
}