/* css for appointment model */

.bg-custom {
  background: #1b676b;
  color: #fff;
}

.provicer-close-btn {
  opacity: 1;
  border-radius: 25px;
  background: #1b676b;
  color: #fff;
  font-size: 20px;
}

.rounded-circles {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.text-italic {
  margin-top: -10px;
  font-size: 16px;
  font-style: italic;
}

.custom-height {
  line-height: 60px;
  padding-left: 10px;
}

.custom-btn {
  border-radius: 30px;
  padding: 10px;
  background: #fff;
  border: 2px solid #1b676b;
}

/* Snackbar */

.error-alert {
  background-color: #dc3545 !important;
  color: #fff;
  font-weight: 600;
}

.alert-warning {
  background-color: #1b676b !important;
  color: #fff;
  font-weight: 600;
}

.error-alert button,
.success-alert button,
.alert-warning button {
  background: #fff;
  color: #1b6967;
  font-weight: 550;
  border-radius: 20px;
  height: 50px;
}

.custom-form {
  width: 100%;
}

.success-alert {
  background-color: #195659 !important;
  color: #fff;
  font-weight: 600;
}

.error-alert button,
.success-alert button {
  background: #fff;
  color: #1b6967;
  font-weight: 550;
  border-radius: 20px;
  height: 50px;
}

.calendar {
  padding: 5px;
  width: 1380px;
}

.col-box-header {
  width: 180px;
  margin: 5px;
}

.day {
  width: 100%;
  height: 16px;
  color: #9cb1b3;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.col-box .active {
  height: 100%;
  border-radius: 5px;
  padding: 10px;
  background: #fff;
  cursor: pointer;
}

.col-box .today {
  height: 100%;
  border-radius: 5px;
  padding: 10px;
  border: 2px solid #bef202;
  background: #fff;
  cursor: pointer;
}

.col-box {
  width: 180px;
  min-height: 90px;
  border-radius: 5px;
  margin: 5px;
  border: 2px solid #eef3f3;
  background: #f4f7f7;
  cursor: pointer;
}

.date {
  width: 100%;
  padding: 10px 10px 0px 10px;
  color: #9cb1b3;
  overflow: hidden;
  font-size: 17px;
  font-weight: 550;
  line-height: 17px;
}

.data {
  padding: 20px 10px 5px 10px;
  color: #9cb1b3;
  font-size: 14px;
}

.data p {
  line-height: 5px;
}

.week-box-header {
  width: 12%;
  margin: 2px;
  padding: 10px;
}

.week-box {
  width: 100%;
  height: 70px;
  /* border-radius: 5px; */
  margin: 15px 2px;
  border-top: 2px solid #f5f8f8;
  /* margin: 15px 5px 0px 0px; */
  background: #f4f7f7;
  /* border: 2px solid #000; */
}

.time-box {
  width: 100%;
  text-align: center;
  height: 70px;
  margin: 15px 5px;
  /* border: 2px solid #000; */
  line-height: 70px;
  background: transparent;
}

.blank-box {
  width: 100%;
  height: 70px;
  margin: 15px 5px;
  background: transparent;
  cursor: pointer;
  /* border: 2px solid #000; */
}

.box {
  width: 100%;
}

/* td.action-btn{
    width:100px;
} */

td.action-btn select {
  border: none;
  padding: 5px 15px;
  border-radius: 25px;
  height: 35px;
  margin: 0 auto;
  display: block;
  width: 100px;
  background-color: #1b676b;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* background: url("../svg/white-arrow.svg") #1B676B no-repeat 98.5% !important; !important used for overriding all other customisations */
  background: url("../svg/white-arrow.svg") #1b676b no-repeat calc(100% - 5px) !important;
  /* Better placement regardless of input width */
}

.swal-confirm {
  border: 0;
  border-radius: 0.25em;
  background-color: #3085d6;
  color: #fff;
  font-size: 1.0625em;
}

.line {
  margin: 5px -20px 5px -20px;
  background-color: #f5f8f8;
  height: 2px /* width:100%; */;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

#accordion .panel {
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-top: 10px;
  margin-bottom: -5px;
}

#accordion .panel-heading {
  min-height: 40px;
  background: #195659;
  padding: 4px 0px;
}

#accordion .panel-body input {
  border-radius: 25px;
  padding-left: 20px;
  /* padding-top: 8px; */
}

#accordion .panel-title a {
  display: block;
  padding: 2px 20px;
  /* background: #1b676b; */
  font-size: 19px;
  font-weight: 550;
  letter-spacing: 1px;
  color: #fff;
  cursor: pointer;
  line-height: 40px;
  /* border-bottom: 1px solid #1d2e3b; */
  position: relative;
}

#accordion .panel-title a.collapsed {
  color: #fff;
}

#accordion .panel-title a.collapsed:hover {
  color: #fff;
}

#accordion .panel-title a:before,
#accordion .panel-title a:after {
  content: "";
  width: 3px;
  height: 10px;
  background: #fff;
  font-size: 18px;
  position: absolute;
  top: 20px;
  right: 35px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out 0s;
}

#accordion .panel-title a:after {
  right: 29px;
  transform: rotate(45deg);
}

#accordion .panel-title a.collapsed:before {
  transform: rotate(45deg);
  background: #1d2e3b;
}

#accordion .panel-title a.collapsed:after {
  transform: rotate(-45deg);
  background: #1d2e3b;
}

#accordion .panel-title a.collapsed:hover:before,
#accordion .panel-title a.collapsed:hover:after {
  background: #1b676b;
}

#accordion .panel-body {
  /* padding: 10px 0px; */
  margin: 0;
  background: #fff;
  border-top: none;
  font-size: 15px;
  color: #1b676b;
  line-height: 25px;
}

.swal2-content {
  color: #1b676b;
}

#content-desktop {
  display: block;
}

#content-mobile {
  display: none;
}

.swal2-title {
  color: #1b676b !important;
  font-family: Poppins-Regular !important;
  font-size: 18px !important;
  text-align: center !important;
  font-weight: unset !important;
}

button.swal2-confirm.swal2-styled {
  font-family: Poppins-Medium;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  display: flex;
  padding: 10px 30px;
  height: 40px;
  background-color: #1b676b;
  border-radius: 25px;
  transition: all 0.4s;
}

button.swal2-confirm.swal2-styled:hover {
  background-color: #333333;
  color: #fff;
}

button.swal2-cancel.swal2-styled {
  border: 3px solid #195659;
  border-radius: 25px;
  padding: 2px 10px;
  min-width: 120px;
  height: 40px;
  color: #1b676b;
  line-height: 1.2;
  margin-right: 5px;
  background: transparent;
}

button.swal2-cancel.swal2-styled:hover {
  background: #195659;
  color: #fff;
}

.swal2-input {
  width: 100% !important;
  height: 36px !important;
  border: none !important;
  box-shadow: unset !important;
  background: #fff !important;
  border-radius: unset !important;
  border-bottom: 2px solid #bdcbcc !important;
}

@media screen and (max-width: 1022px) {
  #content-desktop {
    display: none;
  }

  #content-mobile {
    display: block;
  }
}


@media (max-width: 1024px){
  .success-alert {
    margin-right: 6rem !important;
  }
}

@media (max-width: 421px){
  .success-alert-2 {
    margin-right: 0.5rem !important;
  }
}

/* Snackbar */
.mat-simple-snackbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10px; /* Add padding to the bottom to extend background */
}

.mat-simple-snackbar-action {
  margin-top: 10px; /* Adjust this value for spacing */
  width: 100%;
  display: flex;
  justify-content: center;
}

.error-alert {
  background-color: #dc3545 !important;
  color: #fff;
  font-weight: 600;
}

.alert-warning {
  background-color: #1b676b !important;
  color: #fff;
  font-weight: 600;
}



.custom-form {
  width: 100%;
}

.success-alert {
  background-color: #195659 !important;
  color: #fff;
  font-weight: 600;
}





.success-alert-custom button {
  background: #fff;
  color: #1b6967;
  font-weight: 550;
  border-radius: 5px;
  margin: 30px;
}

.success-alert-custom {
  background-color: #195659 !important;
  color: #fff;
  font-weight: 600;
}



@media (max-width: 1024px){
  .success-alert-custom {
    margin-right: 6rem !important;
  }
}

