/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
input[type="text"], 
input[type="password"] { 
  outline: none !important; 
}
.form-control:focus {
  box-shadow:none !important;
  outline: none !important;
}
textarea {
  resize: none;
}
ul {
  list-style: none;
}
a:hover {
  text-decoration: none;
}
.transparent-bg {
   background-color: transparent;
}
.white-bg {
   background-color: #fff;
}
.grey-bg {
   background-color: #e7e7e7;
}
.grey-light-bg {
  background-color: #f2f2f2;
}
.red-bg {
  background-color: #ea0d0d;
}
.blue-bg {
  background-color: #006eb8;
}
.btn-red-bg {
  background-color: #ea0d0d;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: block;
  position: relative;
}
.btn-black-bg {
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
 display: block;
  position: relative;
}
.btn-blue-bg {
  background-color: #006eb8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: block;
  position: relative;
}
.btn-bn-gust {
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.34);
  padding: 12px !important;
}
.radius-5 {
  border-radius: 5px;
}
.radius-10 {
  border-radius: 10px;
}
.radius-15 {
  border-radius: 15px;
}
.radius-20 {
  border-radius: 20px;
}
.title {
  color: #fff;
  font-size: 64px;
  line-height: 64px;
  font-weight: 700;
}
.p-text {
  color: #fff;
  font-weight: 300;
  font-size: 24px;
  line-height: 40px;
}
.grey-light-bg {
   background-color: #f3f3f3;
}
.text-white {
  color: #fff;
}
.grey-dark-bg {
  background-color: #dedede;
}
.grey-border {
   border-color: #ededed;
}
.grey-dark-border {
  border-color: #d6d6d6;
}
.grey-light-border {
  border-color: #e3e3e3;
}
.text-dark-grey {
  color: #727272;
}
.blue-border {
  border-color: #006eb8;
}
.heading-text h1 {
   font-weight: 600;
   color: #000000;
   font-size: 50px;
   line-height: 60px;
   text-align: center;
}
.heading-text h1 span {
 color: #ea0d0d;
}
.heading-text p {
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  color: #393939;
  text-align: center;
  width: 90%;
  margin:0px auto;
}
.border-bottom-2 {
  border-bottom: 2px solid #e9e9e9;
}
.dropdown-row.sel:before {
    position: absolute;
    content: "\f107";
    font-family: FontAwesome;
    right: 20px;
    top: 20px;
    line-height: 0px;
    font-size: 20px;
}
.dropdown-row.sel.active::before {
    transform: rotateX(-180deg);
}
.social-button a,
.membership-plan,
.loadmore-sec .btn-loadmore,
.cancelevent_button,
.export-button {
    position: relative;
    z-index: 999;
    cursor: pointer;
}
.social-button a::before,
.membership-plan::before,
.loadmore-sec .btn-loadmore::before,
.cancelevent_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color: rgba(234,13,13,0.78);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0.5, 1);
    transform: scale(0.5, 1);
}
.social-button:hover a::before,
.membership-plan:hover::before,
.loadmore-sec .btn-loadmore:hover::before,
.cancelevent_button:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.btn-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    background-color: rgba(0,0,0,0.70);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.5, 1);
    transform: scale(0.5, 1);
}
.btn-animation:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.btn-animation span {
  position: relative;
  z-index: 1;
}
.btn-animation:hover span {
  color: #fff !important;
}
body.background-none {
  background:none;
  position: relative;
}
body.background-none .header-area {
  background: url(../images/header-bg.jpg) no-repeat;
  background-size: 100% 100%;
  background-position: center; 
  min-height: 111px;
}
.background-none .footer-area {
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: #dedede;
}


.form-control[readonly] {
  background-color: transparent;
}

.error, .error:focus {border-color: #ea0d0d;}