/* You can add global styles to this file, and also import other style files */
body {
    font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}
.spinner {
    width: 40px;
    height: 40px;
    top: 35%;
    position: relative;
    margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #103e5d;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.text-nowrap {
    white-space: nowrap;
}
.mat-form-field-appearance-legacy .mat-form-field-infix {
    display: flex !important;
}
.mat-form-field-flex {
    padding: 12px 9px 2px 9px;
    background: #4C4E640A;
    border-radius: 8px 8px 0px 0px !important;
}
.mat-form-field-appearance-fill .mat-form-field-flex {
    border-radius: 8px 8px 0px 0px !important;
    background: #4C4E640A;
    padding: 12px 12px 0 12px !important;
}
.mat-form-field-appearance-fill .mat-form-field-infix {
    padding: 4px 0 12px 0;
}
.mat-flat-button {
    width: 100%;
    height: 42px;
    color: white;
    box-shadow: 0px 4px 8px -4px #4c4e646b;
    background: #0C3D5F;
}
.mat-flat-button .mat-button-wrapper{
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
}
.mat-flat-button[disabled][disabled] {
    background: #4c4e641f;
    color: #4c4e6442;
    box-shadow: none;
}
button {
    outline: none;
    border: none;
    background: none;
}
button:focus {
    outline: none;
}
.mat-form-field-infix {
    color:  #4C4E64DE !important;

}
.mat-input-element {
  color:  #4C4E64DE !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
}
.mat-expansion-panel-body {
    padding: unset !important;
}
.mat-expansion-panel:not([class*=mat-elevation-z]) {
    box-shadow: unset !important;
}
.mat-content {
    align-items: center;
    flex: unset !important;
    width: 97.5% !important;
    justify-content: space-between;
    padding-right: 30px;
}
.mat-expansion-panel-header-description, .mat-expansion-panel-header-title {
    flex-grow: unset !important;
}
.mat-expansion-indicator {
    margin-top: -4px;
}
.mat-expanded .mat-expansion-indicator {
    margin-top: 5px !important;
}
@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}