

.form-group2 select{
    width: 100%;
    font-size: 18px;
    background-color: #e4e4e4;
    height: 35px;
    border-radius: 5px;
    border: 0;
}
hr{
  border-bottom: 1px solid gray;
  width: 100%;
}
a{
  cursor: pointer;
}
.red-asterisc{
  color: red;
}
.table > tbody > tr > td{
  min-width: 100%;
}


.radio-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: lighter;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default radio button */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.radio-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-container:hover input ~  .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~  .checkmark {
    background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}


/*CHECKBOX*/
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: lighter;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 7px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal .main-content
{
    margin: 0px !important;
}

.modal .main-content .page-content
{
    margin: 0px;
}

.modal .page-content .page-thin .ng-star-inserted
{
    padding: 0px !important;
    margin: 0px !important;
}
.search-input{
    border: none;
    width: 100%;
    background-color: #e4e4e4;
    border-radius: 5px;
    margin-bottom: 15px;
    height: 35px;
}
.panel-header{
    margin-top: 20px;
}

.ngx-pagination .current {
    background: #25a2d9;
}
.show-entries{
    margin-bottom: 30px;
}



.panel-accordion .panel-default > .panel-heading a {
    border: 0;
    border-bottom: 1px solid #EDEDED;
}

.panel-accordion .panel-collapse .panel-body {
    background: #f7f7f7;

}

.panel-accordion .panel h4 > a:not(.collapsed) {
    background-color: #f7f7f7;
}

@keyframes spinner {
    0% {
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}
.custom-spinner {
    height: 30vh;
    position: relative;
    transition: opacity linear 0.1s;
    opacity: 1;

}
.custom-spinner::before {
    border: solid 1rem #eee;
    border-bottom-color: #073456;
    border-radius: 50%;
    content: "";
    height: 15rem;
    width: 15rem;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    animation: 1s linear infinite spinner;
    will-change: transform;
    transform-origin: center;
}


body::-webkit-scrollbar {
    width: 0.8em;

}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #181b1e;

}

body::-webkit-scrollbar-thumb {
  background-color: #f1e02b;
  outline: 1px solid black;
}
.nav-tabs3 > .nav.nav-tabs > li > a {
    background-color: rgba(220, 194, 110, 0.3);
}
.btn-blue{
  background-color: #77c1f5 !important;
}

.btn-gray{
  background-color:  #575756  !important;
  color: white !important;
}
.sidebar .sidebar-inner .nav-sidebar > li.active > a, .sidebar .sidebar-inner .nav-sidebar > li.nav-parent.active > a:hover, .nav-sidebar > li.active > a:hover{
    background-color: #7478ed ;
    color: black !important;
}
.ngx-pagination .current {
    background:#7478ed !important;
}
.list-unstyled li ul li{
  margin-left: 20px;
}
fieldset[disabled] .form-control, .form-control, fieldset[disabled] .form-control:focus, .form-control:focus, fieldset[disabled] .form-control.focus, .form-control.focus
    padding: 7px;
}


.pac-container{
  top: 20vh !important;
  position: fixed!important;
  z-index: 9999999!important;
}


.fc-sun .fc-cell-content{ background-color:#d0d0d0!important; }
.fc-sat .fc-cell-content{ background-color:#d0d0d0!important;  }


.fc-mon .fc-cell-content{ background-color:#f3f2f2!important; }
.fc-tue .fc-cell-content{ background-color:#f3f2f2!important;  }
.fc-wed .fc-cell-content{ background-color:#f3f2f2!important;  }
.fc-thu .fc-cell-content{ background-color:#f3f2f2!important;  }
.fc-fri .fc-cell-content{ background-color:#f3f2f2!important;  }

.custom-file-input{
    opacity: 1!important;
}