
.login-box {
  margin: 0 auto;
  width: 50%;
  padding: 40px;
  background: #f3f3f3;
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
}

.login-box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #000;
  text-align: center;
}

.login-box .user-box {
  position: relative;
}

.accepted{
  position: absolute;
  bottom: -15px;
  right: 20px;
  font-size: 30px;
  text-align: center;
}

.accepted font{
  font-size: 14px;
}

.login-box .user-box input {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #01b327;
  margin-bottom: 30px;
  border:2px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  outline: none;
  background: transparent;
  padding-left: 38px;
}
.login-box .user-box label {
  position: absolute;
  top:-36px;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #000;
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box i{
  position: absolute;
  left: -3px;
  display: inline-flex;
  height: 46px;
  width: 46px;
  justify-content: center;
  align-items: center;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -30px;
  left: 0;
  color: #01b327;
  font-size: 12px;
}

.login-box .user-box input:focus ~ i,
.login-box .user-box input:valid ~ i {

  color: #01b327;
}


.login-box form button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #000;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: .5s;
  margin-top: 40px;
  letter-spacing: 4px
}

.login-box form button{
  border: none;
}

.login-box button:hover {
  background: #000;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px #000,
              0 0 25px #000,
              0 0 50px #000,
              0 0 100px #000;
}

.login-box button span {
  position: absolute;
  display: block;
}

.login-box button span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #000);
}

.login-box button span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #000);
}

.login-box button span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #000);
}


.login-box button span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #000);
}

/* KEYFRAMES */

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%,100% {
    left: 100%;
  }
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%,100% {
    top: 100%;
  }
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%,100% {
    right: 100%;
  }
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%,100% {
    bottom: 100%;
  }
}

/* USING KEYFRAMES */

.login-box button span:nth-child(1) {
  animation: btn-anim1 1s linear infinite;
}

.login-box button span:nth-child(2) {
  animation: btn-anim2 1s linear infinite;
  animation-delay: .25s
}

.login-box button span:nth-child(3) {
  animation: btn-anim3 1s linear infinite;
  animation-delay: .5s
}

.login-box button span:nth-child(4) {
  animation: btn-anim4 1s linear infinite;
  animation-delay: .75s
}


.loading {
    position: relative;
    left: 0;
    right: 0;
    width: 100px;
    color: #000;
    margin: auto;
       margin-top: 100px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.loading p{
  font-size: 16px;
  font-weight: bold;
}
.loading span {
    position: absolute;
    height: 10px;
    width: 84px;
    top: 50px;
    overflow: hidden;
}
.loading span > i {
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    -webkit-animation: wait 4s infinite;
    -moz-animation: wait 4s infinite;
    -o-animation: wait 4s infinite;
    animation: wait 4s infinite;
}
.loading span > i:nth-of-type(1) {
    left: -28px;
    background: red;
}
.loading span > i:nth-of-type(2) {
    left: -21px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    background: #2f87ff;
}

@-webkit-keyframes wait {
    0%   { left: -7px  }
    30%  { left: 52px  }
    60%  { left: 22px  }
    100% { left: 100px }
}
@-moz-keyframes wait {
    0%   { left: -7px  }
    30%  { left: 52px  }
    60%  { left: 22px  }
    100% { left: 100px }
}
@-o-keyframes wait {
    0%   { left: -7px  }
    30%  { left: 52px  }
    60%  { left: 22px  }
    100% { left: 100px }
}
@keyframes wait {
    0%   { left: -7px  }
    30%  { left: 52px  }
    60%  { left: 22px  }
    100% { left: 100px }
}


@media (max-width: 780px){
  .login-box {
  margin: 0 auto;
  width: 98%;
  padding: 20px 5px;
  background: #f3f3f3;
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
}

.accepted{
  position: absolute;
  bottom: -35px;
  right: 10px;
  font-size: 20px;
  text-align: center;
}

.accepted font{
  font-size: 12px;
}

}



















.main-btn-rect,
.main-btn-circle{
  position: relative;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: #FFFFF0;
  background-color: #059c5f;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 1px;  
  outline: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  border-radius: 5px;
}
.main-btn-rect {
  padding: 10px 80px;
  line-height: 30px;
}
.main-btn-rect:before, 
.main-btn-rect:after{
  position: absolute;
  content: '';
  top:0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 240, 0.2);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.main-btn-rect:before {
  left: 0;
}
.main-btn-rect:after {
  right: 0;
}
.main-btn-rect:hover:before, 
.main-btn-rect:hover:after{
  width: 50%;
}
.main-btn-circle{
  height: 40px;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 100%;
  line-height: 40px;
  -webkit-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.main-btn-circle:hover{   
  -webkit-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  -moz-box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
  box-shadow: inset 2px 1px 0px 20px rgba(255, 255, 240, 0.2);
}
.popup{
  position: fixed;
  top: 100%;
  width: 100%;
  height: 100%;
  z-index: 10001;
}
.popup.active{
  top:0;
  background-color: rgba(3, 3, 3, 0.98); 
  transition: background-color .6s ,opacity .6s;
}
.popup .main-btn-rect{
  padding: 10px 100px;
}
.popup .popup-content{
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: auto;
  width: 45%;
  margin-top: 150px;
  font-family: 'Quicksand', sans-serif;
  padding: 25px;
  border-radius: 10px;
  background-color: #FFFFF0;
  color: #070000;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transition: margin .6s;
  -webkit-transition: margin .6s;
  -moz-transition: margin .6s;
  -o-transition: margin .6s;
}
.popup.active .popup-content{
  margin-top: 0px;
}
.popup-content h6{
  display: table;
  font-size: 16px;
  text-align: center;
  margin: 10px auto;
  font-family: 'Quicksand', sans-serif;
  text-transform: uppercase;
  font-weight: 100;  
}
.form-group{
  position: relative;
  width: 90%;
  margin: 0px auto;
}
form#send input, form#send textarea{
  position: relative;
  margin-bottom: 32px;
  width: 100%;
  height: 29px;
  font-family: 'Quicksand', sans-serif;
  text-indent: 20px;
  background-color: transparent;
  outline: 0;
  border: none;
  border-bottom: 1px solid #070000;
  -webkit-transition: border 0.6s;
  -o-transition: border 0.6s;
  transition: border 0.6s;
}
form#send input:focus,
form#send textarea:focus{
  border-bottom: 1px solid rgba(63, 173, 168, 0.6); 
}
form#send label{
  position: absolute;
  top: 0;
  left: 0;
  line-height: 28px;
  -webkit-transition: color .5s;
  -o-transition: color .5s;
  transition: color .5s;
}
form#send input:focus + label,
form#send textarea:focus + label{
  color: rgb(63, 173, 168);
}
form#send .txt{
  line-height: 22px;
  left: 2px;
}
form#send .main-btn-rect {
  position: relative;
  display: block;
  padding: 12px 80px;
  margin: 0px auto;
  font-size: 14px;
}
form#send .main-btn-rect i {
  margin-right: 5px;
}
.popup .fade-out{
  position: absolute;
  top: -20px;
  right: -20px;
  text-align: center;
  font-size: 15px;
}
.share-wrap{
  position: absolute;
  display: inline-table;
  top: 67%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px;
  text-align: center;
}
.share-btn{
  color: #FFFFF0;
  padding: 7px 25px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 100;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Quicksand', sans-serif;
  background-color: #059c5f;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  -o-transition: background-color .5s;
}
.share-btn:hover{
  color: #FFFFF0;
  text-decoration: none;
  background-color: rgba(63, 173, 168, 1.0);
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block
}
.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
  margin: 2px;
}
.resp-sharing-button {
  border-radius: 5px;
  transition: 25ms ease-out;
  padding: 6px 9px;
  transition: background-color .5s;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  -o-transition: background-color .5s;
}
.resp-sharing-button__icon svg {
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
  vertical-align: top
}
.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle
}
.resp-sharing-button__icon,
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none
}
.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}
.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}
.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}
.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}
.resp-sharing-button--linkedin {
  background-color: #0077b5;
  border-color: #0077b5;
}
.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
  background-color: #046293;
  border-color: #046293;
}
@media only screen and (max-width: 768px){
  h1 {font-size: 25px;}
  h2 {font-size: 14px;}
  form#send .main-btn-rect {padding: 7px 60px; font-size: 14px;}
  .popup-btn{padding: 7px 60px; font-size: 14px;}


  .popup .popup-content{
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: auto;
  width: 90%;
  margin-top: 150px;
  padding: 25px;
  border-radius: 10px;
  background-color: #FFFFF0;
  color: #070000;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transition: margin .6s;
  -webkit-transition: margin .6s;
  -moz-transition: margin .6s;
  -o-transition: margin .6s;
}
}


.thank-you-wrapper{
  margin: 4rem auto 0;
  border: 1px solid #b4ec97;
  width : 50vw;
  background: #bcfa9b;
  text-align:center;
  border-radius:.6rem;
  padding-bottom:3rem;
   animation-delay:.2s;
  animation-duration:.3s;
  animation-fill-mode:forwards;
  animation-name:getFullThankyouWidth;  
}
.check-mark-block{
  position:relative;
  transform:translateY(0);
  opacity:0;
  margin:auto;
  width:8rem;
  height:8rem;
  background-image: linear-gradient(to top, #99f449 0%, #05ebb5 100%);
  border-radius:.6rem;
  overflow:hidden;
   animation-delay:.4s;
  animation-duration:.3s;
  animation-fill-mode:forwards;
  animation-name:loadUpThankyou;
}
.check-mark-wrapper{
  margin:0;
  padding:0;
  position:relative;
  text-align:center;
  margin:auto;
  padding:5rem 10% 4rem 16%;
}
.check-mark-wrapper span{
  position:relative;
  width: 3rem;
    height: .7rem;
    background: transparent;
    display: block;
    border-radius: 30px;
    transform: rotate(0);
    transition: all .3s;
    transform: rotate(33deg);
    position: relative;
  filter: drop-shadow(20px 10px 10px rgba(0, 0, 0, .2));
/*     border: 1px solid #ddd; */
}
.check-mark-wrapper span:last-child{
    width: 5rem;
    height: .7rem;
    display: block;
    border-radius: 30px;
    transform-origin: top;
    transition: all .3s;
    transform: translateY(-1.7rem) translateX(1rem)rotate(-56deg);
}
.check-mark-wrapper span::before{
  content: ' ';
  position:absolute;
  top:0;
  left:0;
  width:0%;
  height:100%;
  background:#fff;
  border-radius:30px;
  animation-delay:.65s;
  animation-duration:.3s;
  animation-fill-mode:forwards;
  animation-name:getFullWidth;
}
.check-mark-wrapper span:last-child::before{
  animation-delay:.85s;
}

@keyframes getFullWidth{
  0%{
    width:0;
  }
  100%{
    width:100%;
  }
}
@keyframes getFullThankyouWidth{
  0%{
    width:0;
    opacity:0;
  }
  100%{
    width:25%;
    opacity:1;
  }
}
@keyframes loadUpThankyou{
  0%{
    transform:translateY(0);
    opacity:0;
  }
  100%{
    transform:translateY(-2.5rem);
    opacity:1;
  }
}@keyframes loadUp{
  0%{
    transform:translateY(1rem);
    opacity:0;
  }
  100%{
    transform:translateY(0);
    opacity:1;
  }
}
@media only screen and (max-device-width: 768px) {
  .thank-you-wrapper{
    animation-name: getFullThankyouWidthSmall;
  }
  @keyframes getFullThankyouWidthSmall{
  0%{
    width:0;
    opacity:0;
  }
  100%{
    width:70%;
    opacity:1;
  }
}
}

@media only screen and (max-device-width: 480px) {
  .thank-you-wrapper{
    animation-name: getFullThankyouWidthSmall;
  }
  @keyframes getFullThankyouWidthSmall{
  0%{
    width:0;
    opacity:0;
  }
  100%{
    width:95%;
    opacity:1;
  }
}
}
.wrappert {
  -webkit-animation: wrapperAni 230ms ease-in 200ms forwards;
          animation: wrapperAni 230ms ease-in 200ms forwards;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: inline-block;
  height: 400px;
  margin: 123px auto;
  opacity: 0;
  position: relative;
  vertical-align: top;
  width: 20%;
}

.header__wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.header {
  -webkit-animation: headerAni 230ms ease-in 430ms forwards;
          animation: headerAni 230ms ease-in 430ms forwards;
  border-radius: 0;
  height: 700px;
  left: -170px;
  opacity: 0;
  position: absolute;
  top: -500px;
  width: 700px;
}
.header .sign {
  -webkit-animation: signAni 430ms ease-in 660ms forwards;
          animation: signAni 430ms ease-in 660ms forwards;
  border-radius: 50%;
  bottom: 50px;
  display: block;
  height: 100px;
  left: calc(50% - 50px);
  opacity: 0;
  position: absolute;
  width: 100px;
}

h1,


.red h1 {
  color: rgba(0, 0, 0, 0.8);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-top: 50px;
}

.red p {
  color: rgba(0, 0, 0, 0.7);
  padding: 0 40px;
  font-size: 18px;
  line-height: 1.4em;
}

.red button {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  bottom: -20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  height: 40px;
  left: calc(50% - 85px);
  outline: none;
  position: absolute;
  transition: all 170ms ease-in;
  width: 170px;
}

/*
 * COLOR SPECIFIC
*/
.red .header {
  background-color: #ffb3b3;
}
.red .sign {
  background-color: #ff3535;
  box-shadow: 0 0 0 15px #ff8282, 0 0 0 30px #ffa2a2;
}
.red .sign:before, .red .sign:after {
  background: white;
  border-radius: 2px;
  content: "";
  display: block;
  height: 40px;
  left: calc(50% - 2px);
  position: absolute;
  top: calc(50% - 20px);
  width: 5px;
}
.red .sign:before {
  transform: rotate(45deg);
}
.red .sign:after {
  transform: rotate(-45deg);
}
.red button:hover {
  border-color: #ff3535;
}
.red button:focus {
  background-color: #ffb3b3;
  border-color: #ff3535;
}

.green .header {
  background-color: #bef0c8;
}
.green .sign {
  background-color: #4ec45e;
  box-shadow: 0 0 0 15px #74d181, 0 0 0 30px #9bdea4;
}
.green .sign:before, .green .sign:after {
  background: white;
  border-radius: 2px;
  content: "";
  display: block;
  height: 40px;
  left: calc(50% - 2px);
  position: absolute;
  top: calc(50% - 20px);
  width: 5px;
}
.green .sign:before {
  left: calc(50% + 5px);
  transform: rotate(45deg);
  top: calc(50% - 20px);
}
.green .sign:after {
  height: 20px;
  left: calc(50% - 15px);
  transform: rotate(-45deg);
  top: calc(50% - 5px);
}
.green button:hover {
  border-color: #4ec45e;
}
.green button:focus {
  background-color: #bef0c8;
  border-color: #4ec45e;
}

/*
 * ANIMATIONS
*/
@-webkit-keyframes wrapperAni {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes wrapperAni {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes headerAni {
  0% {
    border-radius: 0;
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    border-radius: 50%;
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes headerAni {
  0% {
    border-radius: 0;
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    border-radius: 50%;
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes signAni {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(180deg);
  }
  60% {
    transform: scale(1.3);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes signAni {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(180deg);
  }
  60% {
    transform: scale(1.3);
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@media screen and (max-width: 768px) {
.wrappert {
width: 75%;
}

}
@media screen and (max-width: 480px) {
.wrappert {
width: 95%;
}

}

#payment-success {
  display: none;
}

#payment-pending {
  display: none;
}

#payment-failed {
  display: none;
}



.popupw {
  margin: 10% auto;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  width: 30%;
  z-index: 888;
  height: 100px;
  position: relative;
  transition: all 5s ease-in-out;
  padding-bottom: 50px;
}

.popupw h2 {
  margin-top: 0;
  color: wheat;
  text-align: center;
  font-family: Tahoma, Arial, sans-serif;
}
.popupw .closew {
  position: absolute;
  top: 5px;
  right: 6px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
.popupw .closew:hover {
  color: #ccc;
}
.popupw .contentw {
  overflow: auto;
  width: 99%;
}

.overlayw {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99999;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlayw:target {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px){
  .boxw{
    width: 70%;
  }
  #my-video{
  width: 98%;
  height: 100%;
}
  .popupw{
    width: 99%;
    margin: auto;
    margin-top: -40px;
    margin-left: 2.5px;
    font-size: 12px;
    height: 75px;
    padding: 8px 18px;
    z-index: 99999;
    position: absolute;
    bottom: 0;
  }


}