.back-red {
    background: red;
}
.bordered {
    border-radius: 5px;
}
.white{
    color:white;
}
.line-through {
            text-decoration: line-through;
        }
.sidebar {
  height: 100% !important;
}
.mt-10 {
    margin-top: 10px;
}
.m-10 {
    margin: 10px;
}
.p-10{
    padding: 10px!important;
}

.select2 {
    opacity: 0;
}
.content-wrapper {
    padding-top:20px;
  }


.alert {
    padding:10px 20px;
    margin:10px 20px;
}

.loading{
    position: relative;
}

.loader {
    position: absolute;
    left:50%;
    top:50%;
    font-size: 30px;
    animation: colorful 2s linear infinite;
}
@keyframes colorful {
  0%{
    color:#007bff;
  }
  50%{
   color:#F875AA;
  }
  100%{
    color:yellow;
  }
}

.uploader{
    position: relative;
    height: 160px;
    width: 195px;
    display: inline-block;
    border-radius: 0.41rem;
    box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075);
}
.uploader-image{
    background: #CCCCCC;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    border: 3px solid #FFF;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0.41rem;
}
.uploader input[type=file] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    cursor: pointer;
}
.uploader-edit,.uploader-close{
    position: absolute;
    cursor: pointer;
    width: 25px;
    height: 25px;
    line-height: 28px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    background: #FFF;
    color: #a1a5b7;
    font-size: 12px;
}
.uploader-edit{
    top: -11px;
    right: -8px;
}
.uploader-close{
    bottom: -11px;
    left: -8px;
}
.remove_image{
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: #333;
    color: #FFF;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    z-index: 1000;
    right: -11px;
    top: -8px;
    cursor: pointer;
}

.login-page .main-footer {
    margin-left: 0!important;
}
.login-page .alert {
    margin:0  0 5px 0 !important;
    background: white!important;
    color:#dc3545!important;
    border:0!important;
    padding:0px 3px !important;
}
.login-page .is-invalid input ,.login-page .is-invalid .input-group-append .input-group-text{
   border-color: #dc3545;
}
.phone_number {
    padding:2px 5px;
    margin:3px;
    border-radius: 5px;
    border:1px solid green;
    position: relative;
    cursor: pointer;
}

  .phone_pop_up
  {
    position: absolute;
    top: 34px;
    left: -4px;
    width: 90px;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center;

  }
  .phone_pop_up:after {
    content: '';
    position: absolute;
    left: 8px;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid green;
    clear: both;

}
.phone_pop_up i {
    padding:3px 5px;
}
.blue {
 color:#007bff ;
}
.green {
color:#28a745;
}
.red {
color:red;
}
.loading-spinner{
  width:30px;
  height:30px;
  border:2px solid indigo;
  border-radius:50%;
  border-top-color:#0001;
  display:inline-block;
  animation:loadingspinner .7s linear infinite;
}
@keyframes loadingspinner{
  0%{
    transform:rotate(0deg)
  }
  100%{
    transform:rotate(360deg)
  }
}