.containerbg {
  /*change the size of landscape here */
  overflow: hidden;
  background: #1488cc; /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #2b32b2, #1488cc); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(43, 50, 178, 1),
    rgba(20, 136, 204, 0) 98%
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  width: 100%;
  height: 450px;
  position: relative;
}

.containerschbg {
  /*change the size of landscape here */
  /*overflow: hidden;*/
  overflow-y: auto;
  overflow-x: hidden;
  background: #1488cc; /* fallback for old browsers */
  /* background: -webkit-linear-gradient(to bottom, #2b32b2, #1488cc); Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, rgba(20, 136, 204, 0), rgba(255, 255, 255, 0.5) 99%);
  width: 100%;
  height: 300px;
  position: relative;
}

.containerback {
  /*change the size of landscape here */
  overflow: hidden;

  width: 100%;
  height: 450px;
  position: relative;
}

/* add moon and outer moon rings here */

/* add stars here */

.star {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
}

.s1 {
  top: 20%;
  left: 5%;
}

.s2 {
  top: 60%;
  left: 10%;
}

.s3 {
  top: 40%;
  left: 18%;
}

.s4 {
  top: 50%;
  left: 20%;
}

.s5 {
  top: 30%;
  left: 35%;
}

.s6 {
  top: 35%;
  left: 60%;
}

.s7 {
  top: 40%;
  left: 75%;
}

.s8 {
  top: 50%;
  left: 45%;
}

.s9 {
  top: 70%;
  left: 80%;
}

.s10 {
  top: 30%;
  left: 90%;
}

.shootingstar {
  position: absolute;
  width: 3px;
  height: 2px;
  background-color: white;
  top: 31%;
  left: 85%;
  animation: shoot 5s infinite;
}

.shootingstar2 {
  position: absolute;
  width: 3px;
  height: 2px;
  background-color: white;
  top: 20%;
  left: 50%;
  animation: shootreverse 5s infinite;
}

.shootingstar3 {
  position: absolute;
  width: 3px;
  height: 2px;
  background-color: white;
  top: 60%;
  left: 5%;
  animation: shootreverse 5s infinite;
}
.shootingstar4 {
  position: absolute;
  width: 3px;
  height: 2px;
  background-color: white;
  top: 40%;
  left: 10%;
  animation: shootreverse 5s infinite;
}
.shootingstar5 {
  position: absolute;
  width: 3px;
  height: 2px;
  background-color: white;
  top: 50%;
  left: 80%;
  animation: shootreverse 5s infinite;
}

.animate {
  animation: glow 4s infinite;
}

.spinner {
  border: 7px solid #f3f3f3;
  border-radius: 50%;
  border-top: 7px solid #3498db;
  width: 70px;
  height: 70px;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.preview-box {
  --b: 5px; /* thickness of the border */
  --c: red; /* color of the border */
  --w: 20px; /* width of border */

  border: var(--b) solid #0000; /* space for the border */
  --_g: #0000 90deg, var(--c) 0;
  --_p: var(--w) var(--w) border-box no-repeat;
  background: conic-gradient(from 90deg at top var(--b) left var(--b), var(--_g)) 0 0 / var(--_p),
    conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) 100% 0 / var(--_p),
    conic-gradient(from 0deg at bottom var(--b) left var(--b), var(--_g)) 0 100% / var(--_p),
    conic-gradient(from -90deg at bottom var(--b) right var(--b), var(--_g)) 100% 100% / var(--_p);

  /*Irrelevant code*/
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.cropper-canvas,
.cropper-drag-box,
.cropper-modal,
.cropper-wrap-box {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-crop-box {
  --b: 5px; /* thickness of the border */
  --c: #5c0af5; /* color of the border */
  --w: 100px; /* width of border */

  border: var(--b) solid #0000; /* space for the border */
  --_g: #0000 90deg, var(--c) 0;
  --_p: var(--w) var(--w) border-box no-repeat;
  background: conic-gradient(from 90deg at top var(--b) left var(--b), var(--_g)) 0 0 / var(--_p),
    conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) 100% 0 / var(--_p),
    conic-gradient(from 0deg at bottom var(--b) left var(--b), var(--_g)) 0 100% / var(--_p),
    conic-gradient(from -90deg at bottom var(--b) right var(--b), var(--_g)) 100% 100% / var(--_p);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-canvas,
.cropper-wrap-box {
  overflow: hidden;
}
.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 2px;
  border-top-width: 2px;
  height: 10.33333%;
  left: 0;
  top: 40.33333%;
  width: 100%;
  border-color: blue;
  border-style: inset;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: 33.33333%;
  top: 0;
  width: 33.33333%;
}

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center:after,
.cropper-center:before {
  background-color: #eee;
  content: ' ';
  display: block;
  position: absolute;
}

.cropper-center:before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

.cropper-center:after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}

.cropper-point.point-se:before {
  background-color: #39f;
  bottom: -50%;
  content: ' ';
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}

.cut-border {
  position: relative;
  display: inline-block;
  border: 5px solid black;
  width: 300px;
  height: 300px;
  overflow: hidden;
}
.cut-border::before {
  content: '';
  position: absolute;
  height: calc(100% + 10px);
  width: 50%;
  background-color: white;
  top: -5px;
  left: 25%;
}
.cut-border::after {
  content: '';
  position: absolute;
  height: 50%;
  width: calc(100% + 10px);
  background-color: white;
  top: 25%;
  left: -5px;
}

/* all the animation goes here */

@keyframes shoot {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
    width: 20px;
  }
  60% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.4;
  }
  80% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.1;
    transform: translateX(180px);
  }
}

@keyframes glow {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes shootreverse {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
    width: 30px;
  }
  60% {
    opacity: 0.4;
  }
  70% {
    opacity: 0.3;
  }
  80% {
    opacity: 0.2;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translateX(180px);
  }
}
/* > Process Styles */
.process-wrap {
  width: 100%;
  margin-top: 10%;
  padding-bottom: 2%;
}

.mtb-10 {
  margin-top: 10px !important;
  margin-bottom: 5px !important;
}
.announcement {
  color: #fb6340;
}
.newsdetail {
  margin-bottom: 10px !important;
}
.news {
  color: #222a42;
}
.s-left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 80px;
  background: rgba(111, 129, 151, 0.2);
}
.s-left h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.s-left h4 {
  font-size: 0.9rem;
  margin-top: 20px;
}
.s-left h5 {
  font-size: 0.6rem;
}
.s-left h3,
.s-left h4,
.s-left h5 {
  color: #111 !important;
  line-height: 0.3rem;
  margin-top: 15px;
}
.dplay-tbl {
  display: table;
  height: 100%;
  width: 100%;
}
.dplay-tbl-cell {
  display: table-cell;
  vertical-align: middle;
}
.s-right {
  margin-left: 95px;
  min-height: 80px;
}
.s-right h4 {
  font-size: 0.9rem;
}
.seeallnews a {
  float: right;
  padding: 10px 30px;
  font-weight: 500 !important;
}
.siteinfo {
  float: left !important;
}
.siteinfodetail {
  color: #344675 !important;
}
.count {
  font-weight: 900;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 1px solid #ccc;
  background-image: none;
  flex: 1;
  padding: 0 0.5em;
  color: #111;
  cursor: pointer;
  line-height: 1.8;
}
select::-ms-expand {
  display: none;
}
.select {
  position: relative;
  display: flex;
  width: 8em;
  height: 2em;
  line-height: 1;
  background: rgba(111, 129, 151, 0.2);
  overflow: hidden;
  border-radius: 0.25em;
}
.select::after {
  content: '\25BC';
  position: absolute;
  padding-top: 20px;
  top: 0;
  right: 0;
  padding: 0.5em 0.5em;
  cursor: pointer;
  height: 2em;
  pointer-events: none;
  transition: 0.25s all ease;
  background-color: #fff;
  border: 1px solid #ccc;
}
.select:hover::after {
  color: #23b499;
}
.box-width {
  width: 16rem !important;
}
.box-region-width {
  width: 100%;
}
.list-item-radius {
  border-bottom-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
}
.form-group.required .control-label:after {
  color: #d00;
  content: '*';
  position: absolute;
  margin-left: 8px;
  margin-top: 2px;
}
.letter-space {
  letter-spacing: 0.05rem;
}
.text-muted-color {
  color: #6c757d !important;
}
.checkout-div-p0 {
  padding: 0rem 1.5rem;
}
.checkout-div-p2 {
  padding: 0.1rem 1.5rem !important;
}
.checkout-div-p5 {
  padding: 0.5rem 1.5rem;
}
.checkout-border {
  border-radius: 0.5rem;
}
.register-border {
  border-radius: 1.5rem;
}

.user-request-border-left {
  border-radius: 1.5rem 0 0 1.5rem;
}
.user-request-border-right {
  border-radius: 0 1.5rem 1.5rem 0;
}

.viewby {
  color: #111;
  font-size: 0.9rem;
  float: right;
}
.padd7 {
  padding-left: 10%;
}
.form-responsive {
  width: 40%;
  transform: translate(0, 15%) !important;
}

@media screen and (min-width: 280px) and (max-width: 539px) {
  .containerbg {
    height: 500px !important;
  }
  .process-wrap {
    margin-top: 30%;
  }
  .select {
    margin: 0.5em 0;
  }
  .viewby {
    float: left;
  }
  .mediaques .col-sm-1 {
    width: 30%;
    padding-left: 0 !important;
  }
  .name-note {
    height: 12rem !important;
  }
}
@media screen and (min-width: 540px) and (max-width: 766px) {
  .containerbg {
    height: 500px !important;
  }
  .process-wrap {
    margin-top: 20%;
  }
  .select {
    margin: 0.5em 0;
  }
  .viewby {
    float: left;
  }
  .progress-badge {
    margin: 0 1em;
  }
  .mediaques .col-sm-1 {
    padding-left: 3rem !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .containerbg {
    height: 450px !important;
  }
  .process-wrap {
    margin-top: 15%;
  }
  .viewby {
    float: left;
  }
  .select {
    margin: 0.2em 0;
  }
  .name-note {
    height: 6.5rem !important;
  }
  .box-width {
    width: 10rem !important;
  }
  .select_dropdown_four {
    width: 100px !important;
  }
}

@media screen and (min-width: 280px) and (max-width: 539px) {
  .containerschbg {
    height: auto;
  }
  .process-wrap {
    margin-top: 30%;
  }
  .select {
    margin: 0.5em 0;
  }
  .viewby {
    float: left;
  }
  .mediaques .col-sm-1 {
    width: 30%;
    padding-left: 0 !important;
  }
  .name-note {
    height: 12rem !important;
  }
}
@media screen and (min-width: 540px) and (max-width: 766px) {
  .containerschbg {
    height: auto;
  }
  .process-wrap {
    margin-top: 20%;
  }
  .select {
    margin: 0.5em 0;
  }
  .viewby {
    float: left;
  }
  .progress-badge {
    margin: 0 1em;
  }
  .mediaques .col-sm-1 {
    padding-left: 3rem !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .containerschbg {
    height: auto;
  }
  .process-wrap {
    margin-top: 15%;
  }
  .viewby {
    float: left;
  }
  .select {
    margin: 0.2em 0;
  }
  .name-note {
    height: 6.5rem !important;
  }
  .box-width {
    width: 10rem !important;
  }
  .select_dropdown_four {
    width: 100px !important;
  }
}

@media screen and (min-width: 280px) and (max-width: 539px) {
  .containerback {
    height: 500px !important;
  }
  .process-wrap {
    margin-top: 30%;
  }
  .select {
    margin: 0.5em 0;
  }
  .viewby {
    float: left;
  }
  .mediaques .col-sm-1 {
    width: 30%;
    padding-left: 0 !important;
  }
  .name-note {
    height: 12rem !important;
  }
}
@media screen and (min-width: 540px) and (max-width: 766px) {
  .containerback {
    height: 500px !important;
  }
  .process-wrap {
    margin-top: 20%;
  }
  .select {
    margin: 0.5em 0;
  }
  .viewby {
    float: left;
  }
  .progress-badge {
    margin: 0 1em;
  }
  .mediaques .col-sm-1 {
    padding-left: 3rem !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .containerback {
    height: 450px !important;
  }
  .process-wrap {
    margin-top: 15%;
  }
  .viewby {
    float: left;
  }
  .select {
    margin: 0.2em 0;
  }
  .name-note {
    height: 6.5rem !important;
  }
  .box-width {
    width: 10rem !important;
  }
  .select_dropdown_four {
    width: 100px !important;
  }
}

@media screen and (max-width: 990px) {
  .formborderthin-left {
    border-left: 0 solid #818181 !important;
  }

  .info-height {
    height: 14rem !important;
  }
  .top-padding {
    padding-top: 25% !important;
  }
  .steps-for-jp {
    width: 100px !important;
  }
}
@media screen and (max-width: 576px) {
  .mediaques .col-sm-1 {
    width: 30%;
    padding-left: 0 !important;
  }
  .form-responsive {
    width: 95% !important;
  }
  .steps {
    margin-right: 30px !important;
  }
}
@media screen and (max-width: 1194px) {
  .textRight {
    text-align: center !important;
  }
  .textCenter {
    text-align: center !important;
  }
  .form-responsive {
    width: 40%;
  }
}
@media screen and (max-width: 920px) {
  .form-responsive {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .banner-icon-plus {
    margin-left: 2rem !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 1200px) {
  .banner-1st-bg {
    min-width: 8rem !important;
  }
}
.bar-container {
  background-color: #eee;
  height: 10px;
}
.progress-title {
  color: #111;
  font-size: 0.9rem;
  margin: 0 0 5px 5px;
}
.progress-title::after {
  content: attr(data-id) '%';
  position: relative;
  right: 5px;
  float: right;
}
.progress-bar {
  /* Reset the default appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Get rid of default border in Firefox. */
  border: none;
  width: 0;
  height: 10px;
  background-color: transparent;
  -webkit-animation: progress-animation 1s ease-in forwards;
  animation: progress-animation 1s ease-in forwards;
}
.progress-bar::-webkit-progress-bar {
  background-color: transparent;
}
.round .progress-bar,
.round .bar-container {
  border-radius: 50px;
  margin-top: 5px;
}
.round .progress-bar::-webkit-progress-bar {
  border-radius: 50px;
}
.round .progress-bar::-webkit-progress-value {
  border-radius: 50px;
}
.round .progress-bar::-moz-progress-bar {
  border-radius: 50px;
}

.gradient-color .progress-bar::-webkit-progress-value {
  background-image: -webkit-gradient(linear, left top, right top, from(#5e72e4), to(#2dce89));
  background-image: linear-gradient(90deg, #5e72e4, #2dce89);
}
.gradient-color .progress-bar::-moz-progress-bar {
  background-image: linear-gradient(90deg, #5e72e4, #2dce89);
}
@-webkit-keyframes progress-animation {
  100% {
    width: 100%;
  }
}
@keyframes progress-animation {
  100% {
    width: 100%;
  }
}
@-webkit-keyframes progress-animation-test {
  100% {
    width: 50%;
  }
}
@keyframes progress-animation-test {
  100% {
    width: 50%;
  }
}

/************   For Form Page **************/
.formborderthin-left {
  border-left: 1px solid #818181;
}
.formborderthin-right {
  border-right: 1px solid #818181;
}
.formborderthin-top {
  border-top: 1px solid #818181;
}
.formborderthin-bottom {
  border-bottom: 1px solid #818181;
}
.formborderthick {
  border: 5px solid #818181;
}
.forminput {
  border: 1px solid #ccc;
  background: linear-gradient(to left, #ccc 1px, transparent 0);
  background-size: 1.306rem 0.063rem;
  width: 100%;
  font: 1.125rem monaco, monospace;
  letter-spacing: 0.688rem;
  text-indent: 0.313rem;
  text-transform: uppercase;
}

.forminput1 {
  border: 1px solid #ccc;
  background: linear-gradient(to left, #ccc 1px, transparent 0);
  background-size: 1.306rem 0.063rem;
  width: 92%;
  font: 1.125rem monaco, monospace;
  letter-spacing: 0.688rem;
  text-indent: 0.313rem;
  text-transform: uppercase;
}

@-moz-document url-prefix() {
  .forminput .forminput1 {
    letter-spacing: 0.625rem;
  }
}
.popover-body {
  height: 300px;
  overflow-y: auto;
  white-space: pre-wrap;
}

/* select box */

.option-item {
  display: block;
  position: relative;
  width: 3rem;
  height: 3rem;
  margin: 10px;
}

.option-item .option-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 10px 10px;
  cursor: pointer;
  color: #585c68;
  display: block;
  border: 2px solid #585c68;
  position: relative;
}

.option-item .checkbox {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  opacity: 0;
  width: 2.5rem;
  height: 3rem;
}

.option-item .option-inner .icon {
  margin-bottom: 10px;
}

.option-item .option-inner .icon .fab {
  font-size: 16px;
}

.option-item .option-inner .name {
  user-select: none;
  font-size: 15px;
}

.option-item .checkbox:checked ~ .option-inner.facebook {
  border-color: #00f2c3;
  color: #4267b2;
}
.option-item .option-inner .tickmark {
  position: absolute;
  top: -1px;
  left: -1px;
  border: 14px solid;
  border-color: #000 transparent transparent #000;
  display: none;
}

.option-item .checkbox:checked ~ .option-inner .tickmark {
  display: block;
}

.option-item .option-inner .tickmark::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -10px;
  width: 14px;
  height: 10px;
  border: 2px solid black;
  border-color: transparent transparent #fff #fff;
  transform: rotate(-45deg);
}

.option-item .option-inner.facebook .tickmark {
  border-color: #00f2c3 transparent transparent #00f2c3;
}

/* For Image Upload */
.imagePreview {
  width: 100%;
  height: 7rem;
  background-position: center center;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  box-shadow: 0 -3px 6px 1px rgba(0, 0, 0, 0.1);
}
.btn-img-upload {
  display: block;
  border-radius: 0;
  box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.2);
  margin-top: -5px;
}
.imgUp {
  margin-bottom: 15px;
}

/*End Image Upload*/

.datepicker {
  z-index: 1050 !important;
}
.modalbtn:hover::after {
  color: #111 !important;
}
.takingTimemb {
  padding-left: 0.8rem;
  display: none;
}

.anncCard {
  height: 6rem;
  overflow: hidden;
}

.datecolor {
  color: #a2a2a2 !important;
}
.siteInfoPos {
  position: relative;
  margin-top: -5.5rem;
}
.textRight {
  text-align: right;
}
.name-note {
  height: 3rem;
}
.passcode-div {
  padding-left: 0 !important;
  padding-right: 3px !important;
}
.info-height {
  height: 11rem;
}
.back-btn {
  cursor: pointer;
  user-select: none;
  background-color: rgba(173, 181, 189, 0.9);
  width: 70px;
  height: 40px;
  border-radius: 2px;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
}
.back-btn:hover {
  background-color: rgba(173, 181, 189, 1);
}
.line {
  height: 2px;
  background-color: #f5365c;
  content: '';
  bottom: 0;
}
.show-line {
  visibility: hidden;
}
.main-text {
  font-size: 10vw;
  font-weight: 900;
  letter-spacing: 20px;
  background-position: 800px center;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
}
.error-back-btn {
  text-decoration: none;
  background: #e55039aa;
  color: #fff;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 25px;
  font-size: 14px;
  text-transform: uppercase;
  transition: background 0.4s linear;
  z-index: 100;
}
.error-back-btn:hover {
  background: #e55039;
  color: #fff;
}
.particles {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1230px) {
  .passcode-div {
    max-width: 100% !important;
  }
}
@media screen and (max-width: 770px) {
  .siteInfoPos {
    margin-top: -1.5rem !important;
  }
  .name-note {
    height: 8.5rem;
  }
  .form-title {
    padding-top: 16%;
  }
  .card-header-top {
    border-radius: 20px !important;
    margin-left: 50px !important;
    margin-right: 50px !important;
    box-shadow: none !important;
    background: none !important;
    background-color: #fff !important;
    color: #111 !important;
  }
  .show-line {
    visibility: visible;
    background-color: #788aef;
    margin-top: 10px;
  }
}
.blog-card {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin: 1rem auto;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.6%;
  background: #fff;
  line-height: 1.4;
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
}
.blog-card a {
  color: inherit;
}
.blog-card a:hover {
  color: #5ad67d;
}
.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}
.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
.read-more {
  text-align: right;
}
.read-more a {
  color: #5ad67d;
  display: inline-block;
  position: relative;
}
.read-more a:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f101';

  opacity: 0;
  vertical-align: middle;
  -webkit-transition: margin 0.3s, opacity 0.3s;
  transition: margin 0.3s, opacity 0.3s;
}
.read-more a:hover:after {
  margin-left: 5px;
  opacity: 1;
}
.blog-card p {
  position: relative;
  margin: 0.2rem 0 0;
  color: #111;
  overflow: hidden;
}
@media (min-width: 640px) {
  .blog-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    max-width: 100%;
  }
  .blog-card .meta {
    flex-basis: 40%;
    height: auto;
  }
  .blog-card .description {
    flex-basis: 100%;
  }
  .blog-card .description:before {
    -webkit-transform: skewX(-3deg);
    transform: skewX(-3deg);
    content: '';
    background: #fff;
    width: 30px;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .blog-card.alt {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }
  .blog-card.alt .description:before {
    left: inherit;
    right: -10px;
    -webkit-transform: skew(3deg);
    transform: skew(3deg);
  }
}
.top-padding {
  z-index: 100;
  padding-top: 7%;
}

.arrow {
  content: '\2197';
  font-size: 40px;
  color: #278c9b;
}

.arrow-hr {
  content: '\2192';
  font-size: 40px;
  color: #278c9b;
}

.arrow-li {
  max-width: 100%;
  padding: 2px 10px;
}

.steps {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*margin: 0px 20px;*/
  margin: 0;
  list-style: none;
  padding-bottom: 20px;
}

.steps li {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  padding: 5px 25px;
  position: relative;
}
.steps li div {
  position: relative;
  padding: 1px 0px;
  background: white;
  box-sizing: border-box;
  transform: scale(0.999999);
  transition: all 0.3s ease;
}
.steps li div span {
  display: block;
  transition: all 0.3s ease;
}
.steps li div span:nth-child(1) {
  position: absolute;
  left: 100%;
  top: 0px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 30px solid white;
}
.steps li div span:nth-child(2) {
  position: absolute;
  right: 100%;
  top: 0px;
  border-bottom: 40px solid transparent;
  border-right: 30px solid white;
}
.steps li div span:nth-child(3) {
  position: absolute;
  right: 100%;
  bottom: 0px;
  border-top: 30px solid transparent;
  border-right: 30px solid white;
}
.steps li div span:nth-child(4) {
  position: absolute;
  left: 100%;
  top: 1px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 29px solid white;
}
.steps li div span:nth-child(5) {
  position: absolute;
  right: 100%;
  top: 1px;
  border-bottom: 29px solid transparent;
  border-right: 29px solid white;
  margin-right: -1px;
}
.steps li div span:nth-child(6) {
  position: absolute;
  right: 100%;
  bottom: 1px;
  border-top: 40px solid transparent;
  border-right: 30px solid white;
  margin-right: -1px;
}
.steps li div span:nth-child(7) {
  display: block;
  padding: 0px 15px;
  position: relative;
  height: 80px;
  background: white;
  color: black;
}
.steps li.pre div {
  background: #2dce89;
}
.steps li.pre div span:nth-child(1) {
  border-left-color: #2dce89;
}
.steps li.pre div span:nth-child(2),
.steps li.pre div span:nth-child(3) {
  border-right-color: #2dce89;
}
.steps li.pre div span:nth-child(4) {
  border-left-color: #2dce89;
}
.steps li.pre div span:nth-child(5),
.steps li.pre div span:nth-child(6) {
  border-right-color: #2dce89;
}
.steps li.pre div span:nth-child(7) {
  background: #2dce89;
  color: white;
}
.steps li.post div {
  background: #1d8cf8;
}
.steps li.post div span:nth-child(1) {
  border-left-color: #1d8cf8;
}
.steps li.post div span:nth-child(2),
.steps li.post div span:nth-child(3) {
  border-right-color: #1d8cf8;
}
.steps li.post div span:nth-child(4) {
  border-left-color: #1d8cf8;
}
.steps li.post div span:nth-child(5),
.steps li.post div span:nth-child(6) {
  border-right-color: #1d8cf8;
}
.steps li.post div span:nth-child(7) {
  background: #1d8cf8;
  color: white;
}
.steps li:first-child {
  padding-left: 0px;
}
.steps li:first-child div {
  padding-left: 1px;
}
.steps li:first-child div span:nth-child(2),
.steps li:first-child div span:nth-child(3),
.steps li:first-child div span:nth-child(5),
.steps li:first-child div span:nth-child(6) {
  display: none;
}
.steps li:last-child {
  padding-right: 0px;
}
.steps li:last-child div {
  padding-right: 1px;
}
.steps li:last-child div span:nth-child(1),
.steps li:last-child div span:nth-child(4) {
  display: none;
}
.title-small {
  font-weight: 500 !important;
  color: rgba(34, 42, 66, 0.6) !important;
}
.title-icon {
  font-size: 1.1rem !important;
}
.view-all a {
  color: rgba(34, 42, 66, 0.6);
}
.view-all a:hover {
  color: #5ad67d;
}
.text-white {
  color: #fff !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.list-item-noborder {
  border: none;
  padding: 0px 1rem;
}
.p-amount {
  padding-right: 0;
  padding-left: 2.8rem;
}
.bg-transparent {
  background-color: transparent !important;
  box-shadow: none !important;
}
.border-radius {
  border: 1px solid rgba(0, 0, 0, 0.125) !important;
  border-radius: 8px !important;
}
.card-header-top {
  position: relative;
  border-radius: 10px !important;
  margin-top: -20px !important;
  margin-left: 15px;
  margin-right: 15px;
  padding: 15px !important;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(137, 101, 224, 0.4);
  background: linear-gradient(60deg, #9975f1, #788aef);
  color: #fff;
}
.card-list-line {
  border-bottom: 0.0625rem solid #e9ecef !important;
  width: 100%;
  height: 3px;
}

.preview-container {
  width: 300px;
  height: 300px;
  overflow: hidden;
}

.modal {
  overflow-y: auto;
}

.terms_and_condition_body {
  position: relative;
  flex: 1 1 auto;
  padding: 24px 24px 16px 24px;
  width: 100%;
  height: 300px;
  overflow: auto;
}

.fullname_warning_body {
  position: relative;
  flex: 1 1 auto;
  padding: 24px 24px 16px 24px;
  width: 100%;
  height: 450px;
  overflow: auto;
}

.save-password-info,
.user-register-info {
  text-transform: none !important;
  background-color: transparent !important;
  color: #1d4cf8 !important;
}

.user-register-info {
  line-height: 1.8;
}

.footer_logo {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  max-width: 360px;
}
.nrc_slack {
  padding-left: 1.05rem;
  padding-top: 0.5rem;
}
.select_dropdown {
  color: #111;
  border-color: 3px solid rgba(17, 17, 17, 0.2) !important;
}
.select_dropdown_one {
  width: 97px;
  padding: 0.5rem 8px !important;
}
.select_dropdown_two {
  width: 39px;
  padding: 0.5rem 11px !important;
}

.select_dropdown_three {
  width: 39px;
  padding: 0.5rem 8px !important;
}
.select_dropdown_four {
  width: 130px;
  padding: 0.5rem 11px !important;
}
.active-card {
  border: 1px solid rgba(45, 206, 137, 0.3) !important;
  background-color: rgba(0, 242, 195, 0.05) !important;
  box-shadow: 0 1px 20px 0 rgb(0 0 0 / 5%);
}
.sa {
  width: 140px;
  height: 140px;
  background-color: transparent;
  margin: 0 auto;
  padding: 1.5rem;
}
.sa-success {
  border-radius: 50%;
  border: 4px solid #00f2c3;
  box-sizing: content-box;
  height: 80px;
  padding: 0;
  position: relative;
  background-color: transparent;
  width: 80px;
}
.sa-success:after,
.sa-success:before {
  background: transparent;
  content: '';
  height: 120px;
  position: absolute;
  transform: rotate(45deg);
  width: 60px;
}
.sa-success:before {
  border-radius: 40px 0 0 40px;
  width: 26px;
  height: 80px;
  top: -17px;
  left: 5px;
  transform-origin: 60px 60px;
  transform: rotate(-45deg);
}
.sa-success:after {
  border-radius: 0 120px 120px 0;
  left: 30px;
  top: -11px;
  transform-origin: 0 60px;
  transform: rotate(-45deg);
  animation: rotatePlaceholder 4.25s ease-in;
}
.sa-success-placeholder {
  border-radius: 50%;
  border: 4px solid rgba(165, 220, 134, 0.25);
  box-sizing: content-box;
  height: 80px;
  left: -4px;
  position: absolute;
  top: -4px;
  width: 80px;
  z-index: 2;
}
.sa-success-fix {
  background-color: transparent;
  height: 90px;
  left: 28px;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 5px;
  z-index: 1;
}
.sa-success-tip,
.sa-success-long {
  background-color: #00f2c3;
  border-radius: 2px;
  height: 5px;
  position: absolute;
  z-index: 2;
}
.sa-success-tip {
  left: 14px;
  top: 46px;
  transform: rotate(45deg);
  width: 25px;
  animation: animateSuccessTip 0.75s;
}
.sa-success-long {
  right: 8px;
  top: 38px;
  transform: rotate(-45deg);
  width: 47px;
  animation: animateSuccessLong 0.75s;
}

@keyframes animateSuccessTip {
  0%,
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessLong {
  0%,
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@keyframes rotatePlaceholder {
  0%,
  5% {
    transform: rotate(-45deg);
  }
  100%,
  12% {
    transform: rotate(-405deg);
  }
}

.card-header-top {
  position: relative;
  border-radius: 10px !important;
  margin-top: -20px 15px 0px 15px !important;
  padding: 15px !important;
}

div.card-header-top.contact {
  margin: 0px !important;
}

div.col-lg-3.sites-style {
  padding-top: 52px !important;
}

.links-info li {
  margin: 0 0 10px 0;
  list-style-type: none;
}
.currency-align {
  text-align: right;
}

.sites-style .card {
  background: #faf3cc;
}

.links-info {
  padding: 12px 15px 12px 15px !important;
}

.request-modify-chk {
  position: relative;
  padding-left: 1.25rem;
  width: 45%;
}

.header-container {
  display: grid;
  grid-template-columns: 0.1fr 1fr 0.5fr;
}

.image-container {
  width: 100%;
  height: 13rem;
}

.fullname_warning_body {
  position: relative;
  flex: 1 1 auto;
  padding: 24px 24px 16px 24px;
  width: 100%;
  height: 450px;
  overflow: auto;
}

.nrc-conatiner {
  margin-top: 1rem;
  margin-left: -6px;
}

.left-div-container {
  border: 1px solid #c6c6c6;
}

.right-div-container {
  border: 1px solid #c6c6c6;
}

.text-light-green {
  background-color: green;
  color: white;
  border: 1px solid #e8e8e8;
  text-align: center;
}

.status-text-green {
  background-color: green;
  color: white;
  border: 1px solid #e8e8e8;
  text-align: center;
}

.status-text-red {
  background-color: red;
  color: white;
  border: 1px solid #e8e8e8;
  text-align: center;
}

.text-only-red {
  color: #ff000c;
}

.text-yellow {
  background-color: yellow;
  border: 1px solid #e8e8e8;
  color: #3b3b3b;
  text-align: center;
}

.status-text-orange {
  background-color: #ee5c21;
  border: 1px solid #e8e8e8;
  color: white;
  text-align: center;
}
.text-orange {
  background-color: #ee5c21;
  border: 1px solid #e8e8e8;
  color: white;
  text-align: center;
}

.text-violet {
  background-color: #383fb7;
  border: 1px solid #e8e8e8;
  color: white;
  text-align: center;
}

.status-text-blue {
  background-color: #a52fe5;
  border: 1px solid #e8e8e8;
  color: white;
  text-align: center;
}

.remark-label {
  margin-top: 0.3rem;
  color: #383fb7;
}

.remark-txtbox {
  width: 80%;
  margin-right: 1rem;
}

.header-text-font-size {
  font-size: 15px;
}

.border-right-line {
  border-right: 1px solid #8e8e8f;
}

.border-line {
  border: 1px solid #8e8e8f;
}

@media only screen and (max-width: 991px) {
  .navbar .dropdown.show .dropdown-menu,
  .navbar .dropdown .dropdown-menu {
    position: absolute;
    background: midnightblue;
  }
}

/* Copied from https://loading.io/css/ */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 40px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin: 8px;
  border: 3px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #464545 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#showProfileSample {
  color: #343a40;
  font-size: 1.7rem;
}

#showProfileSample:hover {
  color: #008000; /* Change to your desired hover color */
}

#showFullNameSample {
  color: #343a40;
  font-size: 1.7rem;
}

#showFullNameSample:hover {
  color: #008000; /* Change to your desired hover color */
}

#showIdentitySample {
  color: #343a40;
  font-size: 1.7rem;
}

#showIdentitySample:hover {
  color: #008000; /* Change to your desired hover color */
}

.btn1 {
  background: brown;
  border: #936639;
  border-radius: 5px;
  color: #fff;
  padding: 5px;
}

.view-btn {
  height: 33px;
  border-color: #6e6658;
  background: #6e6658;
  border-radius: 5px;
}

.edit-btn {
  height: 33px;
  border-color: #161f6d;
  background: #161f6d;
  border-radius: 5px;
}

.delete-btn {
  height: 33px;
  border-color: #c40c0c;
  background: #c40c0c;
  border-radius: 5px;
}

.add-btn {
  height: 33px;
  border-color: green;
  background: green;
  border-radius: 5px;
}
