



.provider-container{
    padding:10px;
    color:grey;
}

label{
    display: block;
}



.form-container  {
    font-family: "Roboto", sans-serif;
    font-weight: 100 !important;
    font-style: normal;
    margin-top:30px;
    overflow: hidden;
}


.control_btn{
    text-align: center;
    display:block;
    cursor: pointer;
    margin:5px;
    border-radius: 4px;
    padding:5px 5px;

}

#cntrl1{
    background-color: rgb(12, 133, 233);
}
#cntrl2{
    background-color: rgb(14, 170, 84);
}
#cntrl3{
    background-color: rgb(221, 22, 22);
}


body{
    position: relative;
}

.ui-form-container{
    position: absolute;
    right:0;
    bottom:0;
    width: 800px;
    z-index: 100;
    margin-right:40px;

}


.form-input-container{

    float:left;
    width:400px;
    margin-right:80px;
    margin-bottom: 20px;
}

.label{
    display:block;
}

.errorBox{
    font-family: "Roboto", sans-serif;
    font-weight: 300 !important;
    font-style: normal;
    font-size: 20px;
    color: white;
    border: 1px solid red;
    width:340px;
    border-radius: 5px;
    margin-bottom:40px;
    display:none;
}


.errorbox-title{
    font-family: "Roboto", sans-serif;
    font-weight: 300 !important;
    font-style: normal;
    font-size: 20px;
    font-weight: 200;
    padding-left:10px;
    padding-top:5px;
    padding-bottom:5px;
    background-color: #ff0000b0}

.errorbox-msg{
    padding-left:10px;
    padding-top:10px;
    padding-bottom:20px;
    font-size: 14px;
    padding:10px;
    background-color: #ff000094;
}

.form-input-field{
    width:100%;
    border:1px solid #9393938f;
    border-radius:5px;
    height:40px;
    padding-left:10px;
    color:gray;
}

.save-btn-container{
    clear:both;
    width: 160px;
    padding-top:50px;
}

.login-box{
    border:1px solid white;
    background-color: white;
    padding:40px;
    border-radius:5px;
}


.sending_gif{
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 250px;
    transform: translate(-50%, 0);
    width:100px;
    display:none;

}

#send-gif{
  width:100px;
  height:auto;
}

 


.cbtn:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #111111;
  }

  /* Ripple effect */
  .cbtn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease-out, opacity 0.8s ease-out;
  }

  .cbtn:active::after {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 1;
    transition: 0s;
  }


.control-icon{
    width:30px;
    height: 30px;
}

    

/* Small devices (tablets, 600px and up) */
@media (min-width: 950px) {
    .control_btn {
      display: inline-block;
      margin:0px;
      width: 36px;

    }
  }








/* ==============================
   PERFECT RESPONSIVE MODALS
   ============================== */

/* Desktop & Tablet */
.modal-dialog.modal-lg {
  max-width: 50vw;
  min-height: 90vh;
  margin: 20px auto;
  font-size: 12px;
}

.modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modal-header,
.modal-footer {
  flex-shrink: 0;
}

.modal-body {
  flex: 1;
  overflow: hidden;
  padding: 8px;
}

.modal-body .card {
  height: 100%;
  margin-bottom: 0;
}

.modal-body .card-body {
  display: flex;
  flex-direction: column;

  padding: 8px;
}

/* Compact spacing */
.modal-body .form-group {
  margin-bottom: 9px;
}

/* Auto-growing textarea */
.modal-body textarea {
  flex: 1;
  min-height: 210px;
  resize: none;
}

/* Collapsible sections */
.collapse-section {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  margin-bottom: 8px;
}

.collapse-header {
  cursor: pointer;
  padding: 6px 10px;
  font-weight: 600;
  background: rgba(0,0,0,0.15);
}

/* Mobile = Fullscreen */
@media (max-width: 768px) {


  .modal-dialog.modal-lg {
  max-width: 90vw;
  min-height: 80vh;
  margin: 20px auto;
  font-size: 12px;
}

  .modal-content {
    border-radius: 0;
  }
}


