:root {
    --color-1 : #B9022D;
}
/* TITLE */
.title-1 {
  font-size : 26px;
  font-weight : bold;
}
a {
  text-decoration : none;
}
.btns-group {
  margin-top : 35px;
}

/* FANCY BTN */
.lgx-btn, .lgx-submit, .wpcf7-submit  {
  overflow: hidden;
  border: none;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  outline: 0;
  position: relative;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: inline-block;
  letter-spacing: .1rem;
  /* background: #554bb9; */
  background: var(--color-1);
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-box-shadow: 0 8px 6px -6px rgb(50 51 51 / 40%);
  -moz-box-shadow: 0 8px 6px -6px rgba(50,51,51,.4);
  box-shadow: 0 8px 6px -6px rgb(50 51 51 / 40%);
  width : 100%;
}
.lgx-btn.green {
  background : green;
}
.lgx-btn-red {
  background: var(--color-1);
}
.lgx-btn span, .lgx-submit span, .wpcf7-submit span, button span {
  position: relative;
  z-index: 1;
}
.lgx-btn:after, .lgx-submit:after, .wpcf7-submit:after  {
  content: "";
  position: absolute;
  left: 20px;
  top: 14px;
  height: 200px;
  width: 200px;
  background: #1b273d;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
  transform: translateX(-98%) translateY(-25%) rotate(45deg);
  opacity: .15;
}
.lgx-btn:hover, .lgx-submit:hover, .wpcf7-submit:hover {
  color: #fff;
  border-radius: 16px;
  -moz-transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s;
  box-shadow: 0 8px 15px rgb(0 0 0 / 10%);
}
.lgx-btn:hover:after, .lgx-submit:hover:after, .wpcf7-submit:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
  height: 604%;
  width: 300px;
  left: 43px;
  border-radius: 100%;
}
.just-a:hover {
  color: #000;
}
.width-100 {
  width : 100%;
}
.auto {
  margin: auto;
}
.dis0 {
  display : none;
}
.dis0.active {
  display : block;
}
body {
  background-color : #fff;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
}
ul,
ol,
li {
  list-style: none;
}

.btn-style-1 {
  display: inline-block;
  text-transform: uppercase;
  margin: 20px auto 0;
  font-weight: normal;
  background : #222;
  color : #fff;
}
.btn-style-1:hover {
  color : #fff;
}
.btn-style-1 span {
  position: relative;
}
.btn-style-1 span::before {
  content: "\f178";
  display: inline-block;
  font-family: "FontAwesome";
  opacity: 0;
  width: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  margin: 0.2em 0 0;
  -webkit-transform: translateX(-75%) scaleX(0.1);
  -moz-transform: translateX(-75%) scaleX(0.1);
  -ms-transform: translateX(-75%) scaleX(0.1);
  transform: translateX(-75%) scaleX(0.1);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.btn-style-1:hover span::before {
  opacity: 1;
  width: 10px;
  margin: 0.2em 1em 0 0;
  -webkit-transform: translateX(0) scaleX(1);
  -moz-transform: translateX(0) scaleX(1);
  -ms-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
}
.btn-style-1 span:after {
  content: "\f178";
  font-family: "FontAwesome";
  padding-left: 0;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}
.btn-style-1:hover span::after {
  opacity: 0;
  width: 0;
  margin: 0;
  -webkit-transform: translateX(75%) scaleX(0.1);
  -moz-transform: translateX(75%) scaleX(0.1);
  -ms-transform: translateX(75%) scaleX(0.1);
  transform: translateX(75%) scaleX(0.1);
}
input:focus {
  outline: none !important;
}
input:autofill-selected {
  background: transparent !important;
}
.pad0 {
  padding: 0 !important;
}
.w100 {
  width: 100%;
}
.flex {
  display : flex;
}
.auto {
  margin: auto;
}
/* FLOATING INPUT */
.floating-field-box {
  padding: 0px;
  margin-bottom : 10px;
}
.content-3 .floating-field-box {
  margin-bottom: 10px;
}
.user-input-wrps {
  position: relative;
}
.user-input-wrps .inputText {
  width: 100%;
  outline: none;
  border: none;
  box-shadow: none !important;
  padding: 25px 13px 10px;
  background: transparent;
  border: 2px solid #111;
  border-radius: 6px;
  font-size: 16px;
  color: #000;
}
.user-input-wrps .inputText:focus {
  border-color: var(--theme-color);
  border-width: medium medium 2px;
}
.user-input-wrps .floating-labels {
  position: absolute;
  pointer-events: none;
  top: 18px;
  left: 15px;
  transition: 0.2s ease all;
  color: #111;
  font-size: 16px;
}
.floating-labels.active,
.user-input-wrps input.active + .floating-labels, 
.user-input-wrps input:focus ~ .floating-labels {
  top: 8px;
  left: 15px;
  font-size: 13px;
  opacity: 1;
  color : #312e2d;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    /* -webkit-text-fill-color: #fff !important; */
}
.type-field {
  display : none;
}
.type-field.active {
  display : block;
}
.checkbox-holder {
  margin-top : 20px;
}
.married-box {
  display : none!important;
}
.married-box.active {
  display : block!important;
}

/* INDEX PAGE OR HOME PAGE */
.campaign-registration {
  min-width : 100vw;
  min-height : 100vh;
  background: #e6e6e6;
  display : flex;
}
.campaign-registration .inner {
  margin : auto;
  padding-bottom : 0px;
}

/* RADIO BUTTON */
.radio-box-wrapper {
  margin-bottom: 5px;
}
.radio-box-wrapper > .radio-box {
  display: inline-block;
  margin-right: 25px;
}
.radio-box-wrapper > .radio-box [type=radio]:checked,
.radio-box-wrapper > .radio-box [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.radio-box-wrapper > .radio-box [type=radio]:checked + label,
.radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--textColor);
  text-transform: capitalize;
}
.radio-box-wrapper > .radio-box [type=radio]:checked + label:before,
.radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--darkColor);
  border-radius: 100%;
  background: #fff;
}
.radio-box-wrapper > .radio-box [type=radio]:checked + label:after,
.radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label:after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-1);
  position: absolute;
  top: 7px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.radio-box-wrapper > .radio-box [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.radio-box-wrapper > .radio-box [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* WHATSAPP NUMBER BOX */
.whatsapp-box {
  position : relative;
}
.whatsapp-box label {
  margin-bottom : 15px;
}
.whatsapp-box .floating-field-box {
  display : block;
}
.whatsapp-box input[type=checkbox]:checked ~ .floating-field-box {
  display : none;
}

/* MATERIALIZE CHECKBOX */
.materialize-checkbox {
  position: relative;
}
.materialize-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0;
}
.materialize-checkbox label {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.materialize-checkbox label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  z-index: 0;
  border: 2px solid #000;
  border-radius: 1px;
  margin-top: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.materialize-checkbox input[type="checkbox"]:checked + label:before {
  top: -4px;
  left: -5px;
  width: 10px;
  height: 18px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.materialize-checkbox label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 1px;
  margin-top: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
[type="checkbox"]:not(.filled-in) + label:after {
  border: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.title {
  font-size : 24px;
  margin-bottom : 10px;
}
.img-success {
  --value: 80px;
  width: var(--value);
  height: var(--value);
  border-radius: var(--value);
  margin: 20px auto;
}
.inline-wrapper > div {
  display : inline-block;
  margin-right : 15px;
}
.attended-box {
  display : none;
}
.attended-box.active {
  display : block;
}
.modal-1 .modal-dialog {
  max-width : 550px;
}
.modal-1 .modal-content {
  padding : 30px;
  border-radius : 0;
}
@media(max-width : 559px) {
    .modal-1 .modal-content {
        padding : 10px;
    }
}
span.close {
  opacity : 1;
  text-shadow : none;
  color : #222;
  border-radius : 4px;
  background-color : #eee;
}
.template-box-1 {
  width : 100%;
  min-height : 50px;
  position : relative;
  overflow : hidden;
  text-align: left;
}
@media(max-width : 991px) {
  .template-box-1 {
    grid-template-columns : 1fr;
  }
}
.template-box-1 .left {
  width : 100%;
  height : 100%;
  background : #fff;
}
.template-box-1 form .form-holder img {
  width : 100%;
}
.success-content {
  padding : 50px 25px;
  text-align : center;
}
.success-content img.success {
  width : 90px;
  margin : 20px 0;
}
.success-content p {
  margin : 0;
}
.template-box-1 .right {
  width : 100%;
  height : 100%;
}
.template-box-1 .right img {
    border-radius : 6px;
}
.template-box-1 .right img {
    width : 100%;
}
.template-box-1 .right li,
.template-box-1 .right p,
.template-box-1 .right h4 {
  color : #fff;
}
.template-box-1 .right ul {
  margin-top : 20px;
}
.template-box-1 .right ul li {
  position : relative;
  padding-left : 35px;
  margin-bottom : 25px;
}
.template-box-1 .right ul li span {
  position : absolute;
  left : 0;
  top : -2px;
  color : #edd2a3;
  font-size : 22px;
}
.template-box-1 .right iframe {
  width : 100%;
  height : 350px;
  border : none;
}
.template-box-1.success {
  padding : 45px 30px;
}
.template-box-1.privacy {
  background : #fff;
  margin : 40px auto;
  max-width : 500px;
}
.template-box-1 .header {
  border-bottom : 1px solid rgba(255, 255, 255, .2);
  padding-bottom : 20px;
  margin-bottom : 20px;
}
.template-box-1.privacy .header {
  padding: 20px;
  background: var(--color-1);
  border-radius: 6px;
}
.template-box-1 .header img {
  width : 300px;
  max-width : 100%;
  margin : auto;
}
.only-label {
  font-weight : bold;
  margin-bottom : 5px;
}
.back-option {
  margin-top : 15px;
}
.back-option a {
  color: #ecdc16;
  font-weight: bold;
  display: inline-block;
  padding: 4px 16px;
  background: #222;
  border-radius: 20px;
}
.template-box-1 .body p {
  line-height : 22px;
  margin-bottom : 20px;
}
.template-box-1 .footer {
  border-top : 1px solid #ddd;
  padding-top : 20px;
  text-align : center;
  margin-top : 25px;
}
.splitter-2 {
  display : grid;
  grid-template-columns : 1fr 1fr;
  grid-gap : 10px;
}
.splitter-2.small {
  grid-template-columns : auto 80px;
}
span.cost {
  color : var(--color-1);
}
.payment-mode-box {
  display: none;
  padding : 10px;
}
.payment-mode-box.active {
  display : block;
}
.number-type {
  text-transform: capitalize;
}
.total-cost {
  margin : 25px 0;
  background : red;
}
.total-cost input {
  width : 90px;
  border : none;
  color : var(--color-1);
  font-size : 32px;
}

/* MEDIA QUERY */
.visible-xs {
  display : none;
}
@media(max-width : 767px) {
  .visible-xs {
    display : block;
  }
  .hidden-xs {
    display : none;
  }
  
  .campaign-registration .inner,
  .campaign-registration .inner .container-fluid {
    padding : 0;
  }
  .template-box-1 {
    width : 100%;
    margin : 0;
    border-radius : 0;
  }
}