/* Minification failed. Returning unminified contents.
(6,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '>'
 */
@media print {
    .no-gutters-print {
            margin-right: 0;
            margin-left: 0;

        > .col,
        > [class*="col-"] {
            padding-right: 0;
            padding-left: 0;
        }
    }


    .col-print-1 {
        width: 8%;
        float: left;
    }

    .col-print-2 {
        width: 16%;
        float: left;
    }

    .col-print-3 {
        width: 25%;
        float: left;
    }

    .col-print-4 {
        width: 33%;
        float: left;
    }

    .col-print-5 {
        width: 42%;
        float: left;
    }

    .col-print-6 {
        width: 50%;
        float: left;
    }

    .col-print-7 {
        width: 58%;
        float: left;
    }

    .col-print-8 {
        width: 66%;
        float: left;
    }

    .col-print-9 {
        width: 75%;
        float: left;
    }

    .col-print-10 {
        width: 83%;
        float: left;
    }

    .col-print-11 {
        width: 92%;
        float: left;
    }

    .col-print-12 {
        width: 100%;
        float: left;
    }
}

.btn {
    min-width: 100px;
    cursor: pointer;
}

@media(max-width:350px){
    .btn {
        min-width: inherit;
    }
}

.btn-no-min-width {
    min-width: unset;
}

.info-btn{
    width:42px;
}

.btn-full-width {
    width: 100%;
}

.btn-primary {
    border-radius: 20px;
    background-color: #b50638;
    border-color: #b50638;
}

.btn-group > .btn-primary:not(:last-child) {
    border-right-color: white;
}

.btn-group > .btn-primary:not(:first-child) {
    border-left-color: white;
}

.btn-primary:hover {
    border-color: #b50638;
    background-color: rgba(181, 6, 56, 0.75);
}

.btn-primary:disabled {
    border-color: rgba(0, 0, 0, 0.65);
    background-color: rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    border-radius: 20px;
    border-color: #b50638;
    color: #b50638;
    background-color: white;
}

.btn-secondary:hover {
    border-radius: 20px;
    border-color: #b50638;
    color: white;
    background-color: rgba(181, 6, 56, 0.75);
}

.btn-outline-primary {
    border-radius: 20px;
    border-color: #b50638;
    color: #b50638;
    background-color: white;
}

.btn-outline-primary:hover {
    border-radius: 20px;
    border-color: #b50638;
    color: white;
    background-color: rgba(181, 6, 56, 0.75);
}

.btn-outline-secondary {
    border-color: #cfcfcf;
    background-color: white;
    border-radius: 20px;
}

.btn-info {
    background-color: transparent;
    color: black;
    border: none;
}

.btn-circle.btn-xl {
    width: 60px;
    height: 60px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 24px !important;
    line-height: 1.33;
}

.btn-circle {
    width: 40px;
    height: 40px;
    padding: 6px 0px;
    border-radius: 20px;
    text-align: center;
    font-size: 12px !important;
    line-height: 1.42857;
}

.btn-circle > .material-icons {
    font-size: 2em;
}

.scroll-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    z-index: 99;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px;
    font-size:13px;
}

@media (max-width: 575px) {
    .scroll-to-top-btn {
        right: 30%;
    }
}

@media (min-width: 576px) {
    .scroll-to-top-btn {
        right: 40%;
    }
}
.checkbox {
    padding: 0px ! important;
    margin: 0px ! important;
    line-height: 1.75em;
    display: inline-block;
}

.checkbox input[type="checkbox"] {
    opacity: 0;
}

.checkbox label {
    position: relative;
    display: inline-block;
    /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
    padding-left: 22px;
}

.checkbox label::before,
.checkbox label::after {
    position: absolute;
    content: "";
    /*Needed for the line-height to take effect*/
    display: inline-block;
}

/*Outer box of the fake checkbox*/
.checkbox label::before {
    height: 16px;
    width: 16px;
    border: 1px solid;
    border-radius: 3px;
    left: 0px;
    /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
     *to vertically center it.
     */
    top: 5px;
}

/*Checkmark of the fake checkbox*/
.checkbox label::after {
    height: 5px;
    width: 9px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    left: 4px;
    top: 9px;
}

.checkbox input[type="checkbox"] {
    display: none;
}

    .checkbox input[type="checkbox"]:disabled + label:before {
        background-color: #dee2e6;
        border: 1px solid lightgray;
    }

/*Hide the checkmark by default*/
.checkbox input[type="checkbox"] + label::after {
    content: none;
}

/*Unhide on the checked state*/
.checkbox input[type="checkbox"]:checked + label::after {
    content: "";
}

/*Adding focus styles on the outer-box of the fake checkbox*/
.checkbox input[type="checkbox"]:focus + label::before {
    outline: rgb(59, 153, 252) auto 5px;
}
.cookie-notice {
    background-color: #666;
    position: fixed;
    bottom: 0;
    color: white;
    width: 100%;
    z-index: 9999;
    padding-top: 20px;
    padding-bottom: 20px;
}

.cookie-notice.top {
    top: 0;
    bottom: unset;
    max-height: 200px;
    background-color: rgba(100, 100, 100, 0.8);
}

    .cookie-notice.top > .container {
        padding: 1em;
        background-color: #666;
        border-radius: 10px;
    }

.cookie-notice.top > .container > .row > .my-auto {
    padding-right: 1em;
}

.cookie-notice > .cookie-notice-inner {
        font-size: 14px;
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

        .cookie-notice > .cookie-notice-inner > .button-wrapper {
            display: inline-block;
            float: right;
        }

            .cookie-notice > .cookie-notice-inner > .button-wrapper > .ui-button {
                background-color: #4F4F4F;
            }

                .cookie-notice > .cookie-notice-inner > .button-wrapper > .ui-button:hover {
                    background-color: #4F4F4F;
                }

        .cookie-notice > .cookie-notice-inner > .notice-wrapper {
            display: inline-block;
            margin-right: 10px;
            max-width: 60%;
        }

            .cookie-notice > .cookie-notice-inner > .notice-wrapper a,
            .cookie-notice > .cookie-notice-inner > .notice-wrapper a:hover {
                color: white;
            }

                .cookie-notice > .cookie-notice-inner > .notice-wrapper a:hover {
                    text-decoration: underline;
                }

@media (min-width: 920px) {
    .cookie-notice > .cookie-notice-inner > .notice-wrapper {
        max-width: 70%;
    }
}

@media (min-width: 1340px) {
    .cookie-notice > .cookie-notice-inner > .notice-wrapper {
        max-width: 80%;
    }
}
.el-menu {
    margin-top: 24px !important;
}

@media(max-width: 992px) {
    .el-menu {
        margin-top: 0 !important;
    }
}

.el-menu-item {
    font-size: 1.1em !important;
    font-weight: 700;
}

@media(max-width: 375px) {
    .el-menu-item {
        padding: 0 15px !important;
    }
}

.el-menu--horizontal > .el-menu-item.is-active {
    border-bottom: 5px solid !important;
}

.el-menu--horizontal > .el-menu-item:hover {
    color: #bd1843 !important;
}

.el-slider .el-slider__bar {
    background-color: #b50638;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.el-slider .el-slider__button {
    border-color: #b50638;
}

.el-slider.marks-top {
    padding-top: 15px;
}
.el-slider.marks-top .el-slider__marks-text{
    margin-top: -30px;
}

.hidden-slider-Button {
    display: none !important;
}

.rounded-input .el-input__inner {
    border-color: #cfcfcf;
    border-radius: 25px;
    font-weight: normal;
}

.el-select .el-input__inner {
    border: none;
}

.el-scrollbar > .el-scrollbar__bar {
    opacity: 1;
}

.el-tag.el-tag--info {
    border: none !important;
    background-color: white !important;
    font-size: 13px !important;
}

.el-select .el-input--small .el-input__inner {
    padding: 0;
}

.el-select__tags span:first-child {
    margin-left: 0;
    padding-left: 0;
}

.detail-card-header .el-select .el-input .el-select__caret {
    color: #7f7f7f !important;
}

.el-checkbox__input.is-focus .el-checkbox__inner {
    border-color: #b50638 !important
}

.el-radio .el-radio__input {
    display: none;
}

.el-radio .el-radio__label {
    padding-left: 0;
}

.el-radio__input.is-checked + .el-radio__label {
    font-weight: bold;
    color: #b50638 !important;
}

.el-checkbox__inner {
    border-color: #7f7f7f !important;
}

.el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner {
    background-color: #b50638 !important;
    border-color: #b50638 !important;
}

.el-checkbox__input.is-checked + .el-checkbox__label {
    color: #b50638 !important;
    font-weight: bold;
}
.label-header {
    color: #7f7f7f;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.label-value {
    font-weight: bold;
    font-size: 16px;
}

.secondary-text {
    color: #7f7f7f;
}

.text-sm {
    font-size: 0.82em;
}

.text-lg {
    font-weight: bold;
}
body {
    font-family: 'Noto Sans', sans-serif;
    background-color: #f2f2f2;    
}

p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

.cursor-link {
    cursor: pointer;
}

/*Fix for IE having a x on all inputs that doesn't fire off events*/
::-ms-clear {
    display: none;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.full-width { width: 100%; }

.fill {
    height: 100%;
    width: 100%;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear-both {
    clear: both;
}

/*.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}*/

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #dee2e6;
}

.material-icons {
    vertical-align: text-top;
    font-size: inherit;
}

.icon {
    font-size: 150%;
}

.icon-sex-small {
    max-height: 28px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    background-color: #f2f2f2;
}

@media (min-width: 1430px) {
    .content-centered {
        margin-left: 2em;
        margin-right: 2em;
    }

    .sm-content-centered {
        margin-left: 0.25em;
        margin-right: 0.25em;
    }
}

@media (min-width: 1700px) {
    .content-centered {
        margin-left: 15em;
        margin-right: 15em;
    }

    .sm-content-centered {
        margin-left: 2em;
        margin-right: 2em;
    }
}

.row.margin-top {
    padding-top: 1em;
}

@media print {
    .non-printable {
        display: none;
    }

    .row.margin-top {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .modal-lg {
        max-width: 500px;
    }

    .modal-lg .container {
        max-width: 480px;
    }
}

@media (max-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }

    .modal-lg .container {
        max-width: 750px;
    }
}

@media (max-width: 1366px) {
    .modal-lg {
        max-width: 1100px;
    }

    .modal-lg .container {
        max-width: 1000px;
    }
}

@media (max-width: 1920px) {
    .modal-lg {
        max-width: 1400px;
    }

    .modal-lg .container {
        max-width: 1300px;
    }
}

.ux-header {
    padding: 0 20px 0 20px;
    width: 100%;
    min-height: 85px;
    /*line-height: 85px;*/
    display: flex;
}

@media (min-width: 768px) {
    .ux-header-inner {
        margin-top: 1.7rem;
    }
}

.ux-header h4 {
    /*margin-top: 1.7rem;*/
    /*line-height: 85px;*/
}

.ux-header-background {
    background-color: white;
}

.ux-header .logo {
    width: 180px;
    height: 50px;
    float: left;
    margin-right: 2em;
    margin-top: -0.5em;
}

.ux-header .btn-primary {
    border: 0;
}

.ux-header-seperator {
    border-bottom: 1px solid #dee2e6;
}

.ux-container {
    padding: 20px;
}

.ux-body-container {
    display: flex;
    height: calc(100% - 85px);
}

@media (max-width: 768px) {
    .ux-body-container {
        height: calc(100% - 85px - 114px);
    }
}

.ux-body {
    width: 100%;
}

.ux-table .row {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.ux-table .header-row {
    font-weight: bold;
    background-color: white ! important;
    border-bottom: 1px solid #dee2e6;
}

.ux-table .row:nth-child(odd) {
    background-color: rgba(222, 226, 230, 0.5);
}

.ux-table .row:hover {
    background-color: #ccc;
}

.ux-table .row a:hover {
    text-decoration: underline;
}

.tile-background {
    background-color: #f2f2f2;
}

.tile {
    background-color: white;
    box-shadow: 5px 5px 10px #cfcfcf;
    border: 1px solid #cfcfcf;
    padding: 1em;
    border-radius: 5px;
    margin-bottom: 0.5em;
}

.tile-inactive {
    background-color: #f2f2f2;
    box-shadow: 5px 5px 10px #cfcfcf;
    border: 1px solid #cfcfcf;
    padding: 1em;
    border-radius: 5px;
    margin-bottom: 0.5em;
}

.tile.clickable {
    cursor: pointer;
}

.tile-with-hover:hover {
    background-color: rgba(0, 0, 0, 0.25);
    cursor:pointer;
}

.tile-no-bottom-padding {
    padding-bottom: unset;
}

.tile-less-line-height {
    line-height: 1.3;
}

.tile-breeder-search .breeder-name {
    font-weight: 800;
}

@media (max-width: 767px) {
    .tile-breeder-search {
        padding: 10px 0px;
    }
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 0.5;
}

@media (min-width: 992px) {
    .tile-text {
        margin-top: 2em;
    }

    .tile-icon {
        margin-left: -0.25em;
    }
} 

.page {
    display: none;
}

.page-link {
    border-color: #b50638;
    color: #b50638;
}

.page-link:hover {
    border-color: #b50638;
    color: white;
    background-color: rgba(181, 6, 56, 0.75);
}

.page-item.active .page-link {
    background-color: #b50638;
    border-color: #b50638;
    color: white;
}

.page-item.active .page-link:hover {
    background-color: rgba(181, 6, 56, 0.75);
}

.pager > .show {
    display: block;
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
    select,
    textarea,
    input {
        font-size: 16px;
    }
}

.impersonateWarningBar {
    height: 40px;
    width: 100%;
    padding: 10px;
    background-color: Orange;
    color: Black;
    font-family: sans-serif;
    position: fixed;
    z-index: 1000;
    top: 0px;
    text-align: center;
    border-bottom: 1px solid black;
}

.Wrapper-impersonate-offset {
    margin-top: 40px;
}

.all-caps {
    text-transform: uppercase;
}

.error-message {
    color: red;
}

.input-invalid {
    border-color: red;
}

.input-invalid:focus {
    border-color: red;
}
.row-hover:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.hide-empty:empty {
    display: none;
}

.small-label > .el-checkbox__label {
    zoom: unset !important;
}

.redTextButton {
    color: #b50638;
    padding: 0;
}

.redTextButton:hover {
    color: #870429;
}

/* For tables that contain <input /> */
.input-table table .input-cell {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.slim-table .el-table td:not(.input-cell) {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.input-table table .input-cell.disabled {
    background-color: #f5f7fa;
}

.checkbox-table table .el-checkbox {
    margin: 0 0 -4px;
}

.checkbox-table table .el-checkbox__input {
    zoom: 1.5;
}

.detail-label {
    color: #7f7f7f;
    font-weight: bold;
    font-size: 12px;
}

.detail-value {
    font-weight: bold;
    font-size: 16px;
}

.navbar {
    padding: 15px 10px;
    background: #fff !important;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 200px;
    max-width: 200px;
    color: #555555;
    transition: all 0.3s;
    background-color: #f2f2f2;
    height: calc(100% - 85px);
}

@media (max-width: 767px) {
    #sidebar {
        height: calc(100% - 46px);
    }
}

    #sidebar.active {
        min-width: 60px;
        max-width: 60px;
        overflow-x: hidden;
    }

        #sidebar.active button span {
            font-size: 0;
            display: none;
        }

    #sidebar a {
        text-align: left;
        padding-left: auto;
    }

    #sidebar.active a {
        text-align: center;
        padding-left: auto;
    }

        #sidebar.active a span {
            font-size: 0;
        }
    #sidebar a i {
        vertical-align: bottom;
    }
    #sidebar a span {
        vertical-align:bottom;
    }

    #sidebar .sidebar-header {
        padding: 20px;
        background-repeat: no-repeat;
        background-position: center;
    }

    #sidebar ul.components {
    }

    #sidebar ul p {
        color: black;
        padding: 10px;
    }

    #sidebar ul li {
        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }

        #sidebar ul li a {
            padding: 10px;
            padding-left: 1em;
            font-size: 1.1em;
            display: block;
        }

            #sidebar ul li a:hover {
                /*color: white;
            background: #dee2e6;*/
                color: #b50638;
                text-shadow: 2, 3, #efefef;
            }

        #sidebar ul li.active > a,
        a[aria-expanded="true"] {
            color: #b50638;
        }

a[data-toggle="collapse"] {
    position: relative;
}

.ux-body.menu-closed {
    width: calc(100% - 60px);
}

.ux-body.menu-open {
    width: calc(100% - 200px);
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 767px) {
    #sidebar {
        margin-left: -200px;
        min-width: 200px;
    }

        #sidebar.active {
            margin-left: 0;
            min-width: 100%;
        }
        #sidebar.closed {
            display:none;
        }

        #sidebar.active a {
            text-align: left;
        }

            #sidebar.active a span {
                font-size: inherit;
            }

    .sidebar-header svg {
        display: none;
    }

    #sidebar.active button span {
        font-size: inherit;
        display: inherit;
    }

    #sidebarCollapse span {
        display: none;
    }

    .mobile-navbar {
        display: block;
        margin-bottom: auto;
    }

    .ux-header .logo {
        display: none;
    }

    .ux-header .sidebar-collapse {
        display: none;
    }

    nav img {
        margin-left: auto;
        margin-right: auto;
    }

    #sidebar ul li {
        border-top: 1px solid #CFCFCF;
    }
}

@media (min-width: 768px) {
    .mobile-navbar {
        display: none;
    }

    .tab-pane {
        padding: 20px;
    }
}

body.modal-open {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
}

.modal-title-logo {
    display: none;
}

.modal-title-desktop {
    display: block;
}

.modal-title-mobile {
    display: none;
}

.modal-content-desktop {
    display: block;
}

.modal-content-mobile {
    display: none;
}

.modal-header-tabs {
    padding-bottom: 0;
}

.modal-xl > .modal-content {
    height: 80%;
}

.modal-lg > .modal-content {
    height: 80%;
}

.modal-content {
    width: 100%;
    border-radius: unset;
}

.modal-title-row {
    margin-top: 0em;
}

.modal-prefix-row {
    margin-top: -0.5em;
}

@media (max-width: 1024px) {
    .modal-title-row {
        margin-top: -3em;
    }

    .modal-header-tabs {
        padding-bottom: 1rem;
    }

    .modal-dialog {
        margin: 0;
        max-width: 100%;
    }

    .modal-xl > .modal-content {
        height: 100%;
    }

    .modal-lg > .modal-content {
        height: 100%;
    }

    .modal-content {
        border-radius: unset;
    }

    .modal-title-logo {
        height: 6vh;
        display: flex;
    }

    .modal-title {
        position: relative;
        top: 35px;
        z-index: 1;
    }

    .modal-title-desktop {
        display: none;
    }

    .modal-title-mobile {
        display: inline-block;
    }

    .modal-content-desktop {
        display: none;
    }

    .modal-content-mobile {
        display: inline-block;
    }

    .modal-body {
        background-color: #f2f2f2;
        padding-top: 2rem;
    }

    .modal-dialog-centered {
        min-height: 100%;
    }

    .confirm-content {
        height: auto !important;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
    select,
    textarea,
    input {
        font-size: 16px ! important;
    }

    select:focus,
    textarea:focus,
    input:focus {
        font-size: 16px ! important;
    }
}
.tabs-scroll .nav-tabs {
    overflow-x: auto;
    overflow-y:hidden;
    flex-wrap: nowrap;
}

.nav-tabs .nav-link {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border-color: transparent;
    border-bottom-color: #B50638;
    border-bottom-width: 3px;
    font-weight: bold;
    color: #B50638;
    padding-left: 29px;
    padding-right: 29px;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    border-bottom-color: #B50638;
    border-bottom-width: 3px;
}

.icon-subtext {
    font-size: 50%;
    height: 15px;
    position: relative;
    top: -42px;
}

.el-menu-item {
    padding: 0 18px;
}

.el-menu .icon {
    padding-bottom: 10px;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tree-wrapper {
    border-radius: 8px;
    position: relative;
    border: 1px solid #B50638;
}

@media(max-width: 768px) {
    .tree-wrapper {
        margin-left: -1em;
        margin-right: -1em;
    }
}

.branch {
    position: relative;
    margin-left: 175px;
}

    .branch:before {
        content: "";
        width: 25px;
        border-top: 1px solid #999999;
        position: absolute;
        left: -75px;
        top: 50%;
        margin-top: 1px;
    }

.entry {
    position: relative;
    min-height: 45px;
}

    .entry:before {
        content: "";
        height: 100%;
        border-left: 1px solid #999999;
        position: absolute;
        left: -50px;
    }

    .entry:after {
        content: "";
        width: 25px;
        border-top: 1px solid #999999;
        position: absolute;
        left: -50px;
        top: 50%;
        margin-top: 1px;
    }

    .entry:first-child:before {
        width: 10px;
        height: 50%;
        top: 50%;
        margin-top: 2px;
    }

    .entry:first-child:after {
        height: 10px;
    }

    .entry:last-child:before {
        width: 10px;
        height: 50%;
    }

    .entry:last-child:after {
        height: 10px;
        border-top: none;
        border-bottom: 1px solid #999999;
        margin-top: -9px;
    }

    .entry.sole:before {
        display: none;
    }

    .entry.sole:after {
        width: 50px;
        height: 0;
        margin-top: 1px;
    }

.label {
    display: block;
    min-width: 100px;
    padding: 5px 0px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -15px;
    font-size: 100%;
}

.label-adjust {
    font-size: 65%;
    left: -25px;
    padding: 0px 5px;
    background-color: #999999;
    color: white;
    top: 60%;
    border-radius: 4px;
}

@media (max-width: 1196px) {
    .branch {
        margin-left: 135px;
    }

    .entry {
        min-height: 30px;
    }

    .label {
        font-size: 80%;
    }

    .branch:before {
        width: 0px;
    }

    .label-adjust {
        top: 70%;
    }

    .branch:before {
        width: 0;
    }

    .label-adjust {
        left: 0;
    }

    .entry:before {
        left: -10px;
    }

    .entry:after {
        width: 10px;
        left: -10px;
    }

    .entry:first-child:before {
        width: 10px !important;
    }
}

@media (min-width: 1196px) {
    .entry {
        min-height: 30px;
    }

    .label {
        font-size: 80%;
    }

    .branch:before {
        width: 0px;
    }

    .label-adjust {
        top: 70%;
    }
}


@media(min-width: 1201px) {   
    .branch {
        margin-left: 215px;
    }
    .startinglabel {
        padding: 5px 0 5px 25px;
    }

    .branch:before {
        width: 25px;
    }
}

@media (width: 1024px) and (height: 768px) {
    .branch {
        margin-left: 100px !important;
    }

    .branch:before {
        width: 0 !important;
    }

    .label-adjust {
        left: 0 !important;
    }

    .entry:before {
        left: -4px !important;
    }

    .entry:after {
        width: 5px !important;
        left: -4px !important;
    }

    .entry:first-child:before {
        width: 10px !important;
    }
}

@media (width: 768px) and (min-height: 1013px) {
    .branch {
        margin-left: 110px !important;
    }

    .branch:before {
        width: 0 !important;
    }

    .label-adjust {
        left: 0 !important;
    }

    .entry:before {
        left: -8px !important;
    }

    .entry:after {
        width: 8px !important;
        left: -8px !important;
    }

    .entry:first-child:before {
        width: 10px !important;
    }
}
