* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #808184;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 20px #0856ff
}


body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-family: 'NexaLight', sans-serif;
}


.main-btn {
  border: 0;
  outline: 0;
  box-shadow: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
  background-color: #CA9F3A;
  background-image: linear-gradient(to bottom, #fff, #afafaf);
  color: #3D3D3D;
  font-weight: bold;
  padding-top: 0.6rem;
  font-size: 1.2rem;
  border-radius: 0.6rem;
}

.main-btn:focus,
.main-btn:hover {
  border: 0;
  outline: 0;
  box-shadow: none;
  background-color: transparent;
}

.invalid-feedback,
.back-validation-content,
.back-validation,
.error-msg,
#error-p {
  display: none;
  font-size: 12px;
  line-height: 1;
  margin: auto;
  margin-bottom: .2rem;
  width: 100%;
  text-align: center;
  margin-top: .25rem;
  color: #dc3545;
  max-width: 320px;
}

.thankYou {
  min-height: 100vh;
  background: url(../images/loginbg.jpg) no-repeat center center fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.thankYou .rotatable {
    /* margin-top: -30vh; */
    color: #FFF;
    max-width: 500px;
    margin: auto;
    text-align: center;
    line-height: 1.2;
    margin-right: 0;
    overflow: hidden;
}

.thankYou .rotatable>img {
  display: block;
  margin: auto calc(100%/12) auto auto;
  max-width: 350px;
  width: 20vw;
}

.thankYou .rotatable h2{
    font-family: 'BKANT' ,sans-serif;
    font-size: 4.4rem;
}
.thankYou .rotatable h6{
    font-family: 'NexaBold' ,sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0;
}

.thankYou .rotatable p{
    font-family: 'NexaLight' ,sans-serif;
    font-size: 1.3rem;
}




.choices-section {
  flex-wrap: wrap;
}

/* start style of the spin  */

.overlay-hidden {
  display: none !important;
}

.loading-overlay {
  background: rgba(0, 0, 0, .97);
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

}

.rotatable>img {
  display: block;
  margin: auto;
  margin-bottom: 15px;
  max-width: 100%;
  width: 100%;
}

.reverse-spinner {
  position: relative;
  height: 150px;
  width: 150px;
  border: 6px solid transparent;
  border-top-color: #71b8ea;
  border-left-color: #4277b9;
  border-radius: 50%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}



.reverse-spinner::before {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  content: "";
  border: 6px solid transparent;
  border-top-color: #fff;
  border-left-color: #fff;
  border-radius: 50%;
  -webkit-animation: spinBack 1s linear infinite;
  animation: spinBack 1s linear infinite;

}

.row.d-flex.justify-content-center {
  align-items: center;
}

img,
svg {
  max-width: 100%;
}


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

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

}



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

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

}



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

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

}

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

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

}


/*rotateMessage*/
.rotateMessage {
  text-align: center;
  display: none;
  position: fixed;
  top: 0;
  background-color: #000000e3;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 11;
}

.rotateMessage-container {
  width: 100%;
  height: 100%;
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;

}

.rotateMessage-content {
  position: relative;
  width: 100%;
  max-width: 80%;
  height: 100%;
  max-height: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
}

.rotateMessage-text {
  text-align: center;
  color: #77add4;
  font-family: 'NexaBold';
  font-size: 20px;
  line-height: 22px;
}

@media only screen and (max-width: 1600px) {
  .thankYou .rotatable{
    max-width: 440px;
  }
  .list-content span {
    
    font-size: 1rem !important;
    line-height: 1.2;
  }

}

@media only screen and (orientation:portrait) {

  .rotateMessage {
    display: flex;

  }
}

@media (max-width:992px) and (orientation:landscape) {

  .rotateMessage {

    display: flex;

  }

}





@media only screen and (max-width: 1050px) {

  div,
  p,
  label,
  button,
  span {
    font-size: 1rem !important;
  }

  .rotateMessage-text {
    font-size: calc(10px + 3vw) !important;
    line-height: calc(10px + 3vw) !important;
  }

  .headerr h3 {
    font-size: 1.2em !important;
  }

  .list-content span {
    font-size: 0.9rem !important;

  }

  .secbody {
    padding: 1rem !important;
  }

  .form-check {
    margin-bottom: 0.5rem !important;
  }

  p.footer-note {
    padding: 1rem !important;
  }

  .sectionparent .header {
    padding: 1rem !important;
  }

  .sectionparent .header h2 {
    font-size: 1.3rem !important;
  }

  .secbody p.mb-3 {
    margin: 0.5rem 0 1.5rem !important;
  }

  .sectionparent footer {
    padding: 1rem !important;
  }

}

