.bottom-curv {
  border-bottom-left-radius: 55px;
  border-bottom-right-radius: 55px;
}

.top-curv{
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
  }

.square-curv{
border-radius: 20px;
  }

:root{
    --blue : #13a4f0;
    --dark-blue : #212aac;
    --light-blue :#CCDCF6;
}


.text-blue {
  color: #13a4f0;
}

.text-dark-blue {
  color: #212aac;
}

.bg-blue {
    background-color: #13a4f0;
}

.bg-dark-blue {
  background-color: #212aac;
  /* background-color: #2569E6; */
}
.bg-light-blue{
    background-color: #CCDCF6;
}

.btn-blue {
    background-color: #13a4f0;
    color: #fff;
}

.btn-dark-blue {
  background-color: #212aac;
  color: #fff;
}

.btn-blue :hover {
    background-color: #212aac;
}

.btn-dark-blue :hover {
  background-color: #13a4f0;
}

.font-21{
    font-size: 21px;
}

.font-35{
    font-size: 35px;
}

.font-30{
  font-size: 30px;
}

.font-15{
    font-size: 15px;
}
.font-17{
    font-size: 17px;
}

.font-18{
    font-size: 18px;
}

.bg-box-1{
    background-color: #FF6A4D;
    color: #fff;
}

.bg-box-2{
    background-color: #FFB03B;
    color: #fff;
}
.bg-box-3{
  background-color: #4266BE;
  color: #fff;
}

.bg-box-4{
  background-color: #A10948;
  color: #fff;
}

.custom-card{
    background: #aecdf52a;
    border-radius: 10px;
    border: 0;
    border: 1px solid #1e74fd !important;
}

.custom-card-2{
  background: #FDEECC;
  border-radius: 10px;
  border: 0;
  border: 1px solid #FCCC69 !important;
}

.custom-card-3{
  background: #CCF5CC;
  border-radius: 10px;
  border: 0;
  border: 1px solid #01CD02 !important;
}


.font-bold{
    font-weight: 600;
}

.shadow-top {
    box-shadow: 0 -14px 25px -18px rgb(125 151 194 / 63%)
}

.modal-dialog{
  margin: 0px;
}




.submit-error {
  display: block;
  border: solid 1px #e85347;
  background: #fce9e7;
  padding: 13px;
  border-radius: 4px;
  /* list-style: disc !important;
    list-style-type: disc !important;
    list-style-position : inside !important; */
  margin: 0 auto;
}

.submit-error li {
  padding: 4px 0 4px 15px;
  color: #e85347;
  position: relative;
  text-align: left;
  /* display: flex;
    align-items: center; */
}

.submit-error li:before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e85347;
  /* margin-right: 10px; */
  position: absolute;
  top: 10px;
  left: 0;
}

.a{
  text-decoration: none;
}

.scrollable-container {
  max-height: 300px; /* Adjust height as needed */
  overflow-y: auto;
  border: 1px solid #ccc; /* Optional: to highlight the scrollable area */
  padding: 10px;
}




