:root {
    --primary-genetics-color: #005F87;
    --secondary-genetics-color: #B6BF0F;
    --secondary-light-genetics-color: #F0F1D5;
    --margin-bottom-val: 16px;
}

html {
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6{
    margin-bottom: 0px !important;
}

.w-5{
    width: 5% !important;
}

.mb-5px{
    margin-bottom: 5px !important;
}

.ms-12px{
    margin-left: 12px !important
}

.ps-16{
    padding-left: 16px;
}

.pe-16 {
    padding-right: 16px;
}

.table_empty {
    text-align: center !important;
    padding: 50px !important;
    font-weight: var(--vz-font-weight-semibold) !important;
}

.tagify {
    width: 100%;
}

.form-switch{
    margin: 0 !important;
}

.form-label {
    color: var(--primary-genetics-color) !important;
}

h1.text-primary-genetics, h2.text-primary-genetics, h3.text-primary-genetics, h4.text-primary-genetics, h5.text-primary-genetics, h6.text-primary-genetics{
    font-weight: 700 !important;
}

h1.text-secondary-genetics, h2.text-secondary-genetics, h3.text-secondary-genetics, h4.text-secondary-genetics, h5.text-secondary-genetics, h6.text-secondary-genetics {
    font-weight: 700 !important;
}

.text-primary-genetics {
    color: var(--primary-genetics-color);
    /*color: #075A8E; */ /*old*/
}

.text-secondary-genetics {
    color: var(--secondary-genetics-color);
    /*color: #669F3B;*/ /*old*/
    margin-bottom: 0px !important;
}

.CompileTimeHidden{
    visibility: hidden;
    display: inline;
}

@media (min-width: 768px) {
    html {
    font-size: 16px;
  }
}



.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.cursorPointer{
    cursor: pointer;
}

.auth-one-bg {
    background-image: url(/img/background-2.jpg) !important;
    /*background-position:top;*/
}

/*Loader*/
#loader-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(33, 37, 41, 0.35);
    z-index: 9999;
    display: none;
}

.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: #183153;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

    .dot-spinner__dot::before {
        content: '';
        height: 20%;
        width: 20%;
        border-radius: 50%;
        background-color: var(--uib-color);
        transform: scale(0);
        opacity: 0.5;
        animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
        box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
    }

    .dot-spinner__dot:nth-child(2) {
        transform: rotate(45deg);
    }

        .dot-spinner__dot:nth-child(2)::before {
            animation-delay: calc(var(--uib-speed) * -0.875);
        }

    .dot-spinner__dot:nth-child(3) {
        transform: rotate(90deg);
    }

        .dot-spinner__dot:nth-child(3)::before {
            animation-delay: calc(var(--uib-speed) * -0.75);
        }

    .dot-spinner__dot:nth-child(4) {
        transform: rotate(135deg);
    }

        .dot-spinner__dot:nth-child(4)::before {
            animation-delay: calc(var(--uib-speed) * -0.625);
        }

    .dot-spinner__dot:nth-child(5) {
        transform: rotate(180deg);
    }

        .dot-spinner__dot:nth-child(5)::before {
            animation-delay: calc(var(--uib-speed) * -0.5);
        }

    .dot-spinner__dot:nth-child(6) {
        transform: rotate(225deg);
    }

        .dot-spinner__dot:nth-child(6)::before {
            animation-delay: calc(var(--uib-speed) * -0.375);
        }

    .dot-spinner__dot:nth-child(7) {
        transform: rotate(270deg);
    }

        .dot-spinner__dot:nth-child(7)::before {
            animation-delay: calc(var(--uib-speed) * -0.25);
        }

    .dot-spinner__dot:nth-child(8) {
        transform: rotate(315deg);
    }

        .dot-spinner__dot:nth-child(8)::before {
            animation-delay: calc(var(--uib-speed) * -0.125);
        }

@keyframes pulse0112 {
    0%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}