@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;600;700;800&family=Work+Sans:wght@200;300;500&display=swap');

@font-face {
  font-family: 'work sans';
  font-weight: 400;
  font-style: normal;
}

:root {
  --bs-font-work-sans: 'work sans';
  --stick-bottom-height:140px;
}
.rounded-14 {
  border-radius: 14px;
}

.heading_1 {
  font-size: 2rem;
  margin-bottom: 0;
  line-height: 1.3;
}

.heading_2 {
  font-size: 1.66rem;
  margin-bottom: 0;
  line-height: 1.3;
}

body {
  font-family: 'work sans';
  background-color: #ffffff;
  font-weight: 400;
}


.header_theme {
  background-color: #046fe9;
  margin-bottom: -13px;
  display: flex;
  padding: .5rem 1.2rem 1.4rem  1.2rem;
}

.text_header {
  color: white;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  /* line-height: 1.2; */
}

.form_container {
  background-color: white;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
}

.form_days_cb {
	background-color: #ffffff;
	border-radius: .5rem;
	border: 1px solid #d8d8d8;
	overflow: hidden;
	float: left;
	text-align: center;
}

.form_days_cb label {
	margin: 0 !important;
  width: 100%;
}

.form_days_cb label span {
	text-align: center;
	padding: .7rem .7rem;
	display: block;
  color: #a9a9a9;
}

.form_days_cb label input {
	position: absolute;
	display: none !important;
	color: #fff !important;
}

/* This will declare how a selected input will look giving generic properties */
.form_days_cb input:checked+div{
  width: 100%;
  background-color: #0067FF;
}
.form_days_cb input:checked+span{
	color: #ffffff;
  min-width: 100%;
	background-color: #0067FF;
}

.custom_form_check {
  width: 17px;
  height: 17px;
  margin: 0px 10px;
}

.btn-addlist {
  border: 2px dashed #53a6ff;
  color:#3691f2;
  background-color: #edf5ff;
}

.card-header2 {
  background-color: #e6e8ea;
  border-radius: 14px 14px 0 0;
  padding: 11px 13px;
  border-bottom: 1px solid #cacfda;
}

select.form-control-lg option{
  width: 100px;
}

.error {
  border: 1px solid #BE2606
}
.error::placeholder {
  color: #BE2606;
}
.error label span {
  color: #BE2606;
}
.error input[type="checkbox"] {
  opacity: 0;
}

.error-text {
  color: #BE2606;
  padding-left: 5px;
}

.signature-pad {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  height: 260px;
}

@media screen {
  body {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
  }
}

@media screen and (min-width: 900px) {
  body {
      width: 700px;
      margin-left: auto;
      margin-right: auto;
  }
}