a.report-btn-orrcp {
  background-color: #fdf2f2;
  padding: 10px;
  border-radius: 10px;
  color: black;
  font-weight: bold;
}
a.report-link-orrcp {
  color: #ec4e00;
  font-weight: bold;
  font-size: 12px;
  margin: 0 5px !important;
}
div.unauthorised-access-div {
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  min-height: 200px;
}
span.unauthorised-text {
  color: #ff0000;
  font-weight: bold;
  font-size: 18px;
}

/* .d-none {
  display: none !important;
} */
div.success-access-div {
  min-height: 200px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
span.success-text {
  color: #30ba44;
  font-weight: bold;
  font-size: 18px;
}

/*Front-end Form CSS*/

.cps-container {
}

.cps-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 24px 0;
}

.cps-button {
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  font-weight: bold;
  background: none;
  color: #fff;
  outline: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin: 0 14px;
}

.cps-button-active {
  border-bottom: 2px solid #fff;
}

.d-none {
  display: none;
}

.cps-text {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.cps-label {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.cps-form-container {
  width: 800px;
  margin-top: 30px;
}

.cps-form-group {
  margin-top: 18px;
}

.cps-required {
  color: red;
  margin-left: 6px;
  font-family: "Montserrat", sans-serif;
  margin-top: 5px;
}

.cps-input-box {
  display: block !important;
  padding: 10px !important;
  width: 100% !important;
  margin: 8px 0 5px 0 !important;
  font-family: inherit !important;
  outline: none !important;
  font-size: 16px !important;
  background: #ffffff !important;
  color: #000 !important;
  padding: 13px 21px !important;
  cursor: unset !important;
}

.cps-submit-button {
  padding: 10px;
  background: white;
  cursor: pointer;
  outline: none;
  font-size: 18px;
  font-weight: bold;
  transition: 0.4s;
  border: none;
  display: block;
  margin-top: 10px;
}
.cps-submit-button:hover {
  background: grey;
}

/* select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 99%;
  background-position-y: 8px;
  border: 1px solid #dfdfdf;
  margin-right: 2rem;
  padding: 1rem;
  padding-right: 2rem;
} */

.cps-checkbox-container {
  display: flex;
  flex-wrap: wrap;
}

.cps-checkbox-div {
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
	padding: 10px;
	border: 1px solid #fff;
	border-radius: 5px;
	margin: 8px;
}
.cps-checkbox-div-active,
.cps-checkbox-div-active .cps-item-name {
  background: #fff;
  color: #000;
}
.cps-item-name {
  color: #fff;
  margin-left: 5px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}

.cps-input-file {
  display: block;
  padding: 10px;
  margin: 8px 0 5px 0;
  font-family: "Montserrat", sans-serif;
  outline: none;
  font-size: 18px;
  background: #fff;
}

.cps-d-flex {
  display: flex;
}
.cps-jus-center {
  justify-content: center;
}
.cps-d-block {
  display: block;
}

.cps-remove-image {
  font-size: 16px;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  height: 25px;
  width: 25px;
  align-self: center;
  margin-left: 10px;
  text-align: center;
  cursor: pointer;
  margin-top: 5px;
  transition: 0.4s;
  padding-top: 0px;
  color: #000;
}
.cps-remove-image:hover {
  background: grey;
}

.clickTOUploadFile {
  border-radius: 10px;
}
.cps-add-new-image-button {
  background: grey;
  color: #fff;
}

/* media query for responseive  */
@media only screen and (max-width: 600px) {
  .cps-row {
    flex-direction: column;
    width: 100% !important;
    align-items: center;
  }
  .cps-form-container {
    width: 100%;
    margin-top: 30px;
    padding: 10px;
  }
}

.cps-loader-div {
  display: flex;
  align-items: center;
}
.cps-loader {
  display: inline-block;
  margin-right: 10px;
  border: 7px solid #f3f3f3; /* Light grey */
  border-top: 7px solid #111111; /* Blue */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cps-text-center {
  text-align: center;
}

.cps-a-link {
  margin: 0 5px;
  color: #111111;
  padding: 10px 25px !important;
}
