/* Deletable */
.main-blue-white-div {
    height: 100vh;
    background: linear-gradient(to bottom, var(--blue-main) 30%, white 30%);
}


.white-box {
    border-radius: 11px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 10px 0px rgba(160, 160, 160, 0.2);
}

.main-box-shadow {
    box-shadow: 0px 2px 10px 0px #A0A0A033;
    border-radius: 11px;
    min-height: 645px;
    min-width: 825px;
    background-color: #FFFFFF;
}

.rotate180{
    transform: rotate(180deg);
}

/* @media only screen and (max-width: 1366px) {
    .main-box-shadow {
        min-height: 500px;
        min-width: 640px;
    }
}

@media only screen and (max-width: 1200px) {
    .main-box-shadow {
        min-height: auto;
        height: 500px;
        min-width: 640px;
    }
} */

@media only screen and (max-height: 770px) {
    .main-box-shadow {
        height: auto !important;
        min-height: auto !important;
    }
}


@media only screen and (max-width: 991px) {
    .main-box-shadow {
        height: auto;
        min-width: auto;
        min-height: auto;
    }
}

/* Deletable */

.no-scroll {
    overflow: hidden;
    height: 100%;
}

.pointer {
    cursor: pointer;
}

.centXY {
    display: flex;
    justify-content: center;
    align-items: center;
}

.disabled-div {
    transition: 0.3s ease-in-out;
    pointer-events: none;
    opacity: 0.6;
}

.minH-inherit {
    min-height: inherit;
    height: inherit;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

mat-hint {
    opacity: 0.6;
}

.appearAt767 {
    display: none;
}

.appearAt991 {
    display: none;
}

@media(max-width: 991px) {
    .disAppearAt991 {
        display: none !important;
    }

    .appearAt991 {
        display: block !important;
    }
}

@media(max-width: 767px) {
    .disAppearAt767 {
        display: none !important;
    }
    .appearAt767 {
        display: block !important;
    }
}

/* For all mat-fields in the project */
::ng-deep .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mat-mdc-notch-piece {
    border-color: #E1E6EF!important;
  }

.resImg{
    width: 100%;
    height: auto;
}