body {
    font-family: 'Gotham-Medium';
}

@font-face {
    font-family: 'Gotham-Book';
    src: url('../fonts/Gotham_Web_fonts/gothambook-webfont.woff2') format('woff2');
    src: url('../fonts/Gotham_Web_fonts/gothambook-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham_Web_fonts/gotham-medium-webfont.woff2') format('woff2');
    src: url('../fonts/Gotham_Web_fonts/gotham-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

#closeConfirmButton i.fa.fa-times {
    color: #fff;
}

.sidebar-fixed {
    height: 100vh;
    width: 270px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    z-index: 1050;
    background-color: #fff;
    padding: 1.5rem;
    padding-top: 0;
}

    .sidebar-fixed .list-group .active {
        -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
        -webkit-border-radius: 5px;
        border-radius: 5px;
    }

    .sidebar-fixed .logo-wrapper {
        padding: 2.5rem;
    }

        .sidebar-fixed .logo-wrapper img {
            max-height: 50px;
        }

button.btn-dark {
    color: #fff;
    background-color: #006a8e !important;
}

.clsOrganizationHeader {
    width: 100%;
    position: absolute;
    text-align: center;
    color: #004693;
    font-weight: bold;
    font-size: larger;
    margin-top: 0.5em;
}

.loginHeader {
    color: #004693;
    font-weight: bold;
    font-size: larger;
    text-align: center;
    /*margin-left: 12em;*/
}


@media (min-width: 1200px) {
    .navbar,
    .page-footer,
    main {
        padding-left: 270px;
    }
}

@media (max-width: 1199.98px) {
    .sidebar-fixed {
        display: none;
    }
}
/*Tool Tip */

[data-tooltip] {
    position: relative;
    z-index: 10;
}

    /* Positioning and visibility settings of the tooltip */
    [data-tooltip]:before,
    [data-tooltip]:after {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        left: 50%;
        bottom: calc(100% + 5px);
        pointer-events: stroke;
        transition: 0.2s;
        will-change: transform;
    }

    /* The actual tooltip with a dynamic width */
    [data-tooltip]:before {
        content: attr(data-tooltip);
        padding: 10px 18px;
        min-width: 50px;
        max-width: 300px;
        width: max-content;
        width: -moz-max-content;
        border-radius: 6px;
        font-size: 14px;
        /*   font-size: 0.73rem; */
        background-color: rgba(59, 72, 80, 0.9);
        background-image: linear-gradient(30deg, rgba(59, 72, 80, 0.44), rgba(59, 68, 75, 0.44), rgba(60, 82, 88, 0.44));
        box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
        color: #fff;
        text-align: center;
        white-space: pre-wrap;
        transform: translate(-50%, -5px) scale(0.5);
    }

    /* Tooltip arrow */
    [data-tooltip]:after {
        content: '';
        border-style: solid;
        border-width: 5px 5px 0px 5px;
        border-color: #374046 transparent transparent transparent;
        border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
        transition-duration: 0s; /* If the mouse leaves the element, 
                              the transition effects for the 
                              tooltip arrow are "turned off" */
        transform-origin: top; /* Orientation setting for the
                              slide-down effect */
        transform: translateX(-50%) scaleY(0);
    }

    /* Tooltip becomes visible at hover */
    [data-tooltip]:hover:before,
    [data-tooltip]:hover:after {
        visibility: visible;
        opacity: 1;
    }
    /* Scales from 0.5 to 1 -> grow effect */
    [data-tooltip]:hover:before {
        transition-delay: 0.3s;
        transform: translate(-50%, -5px) scale(1);
    }
    /* Slide down effect only on mouseenter (NOT on mouseleave) */
    [data-tooltip]:hover:after {
        transition-delay: 0.5s; /* Starting after the grow effect */
        transition-duration: 0.2s;
        transform: translateX(-50%) scaleY(1);
    }


/*
  If you want some adjustability
  here are some orientation settings you can use:
*/

/* LEFT */
/* Tooltip + arrow */
[data-tooltip-location="left"]:before,
[data-tooltip-location="left"]:after {
    left: auto;
    right: calc(100% + 5px);
    bottom: 50%;
}

/* Tooltip */
[data-tooltip-location="left"]:before {
    transform: translate(-5px, 50%) scale(0.5);
}

[data-tooltip-location="left"]:hover:before {
    transform: translate(-5px, 50%) scale(1);
}

/* Arrow */
[data-tooltip-location="left"]:after {
    border-width: 5px 0px 5px 5px;
    border-color: transparent transparent transparent #374046;
    border-color: transparent transparent transparent rgba(55, 64, 70, 0.9);
    transform-origin: left;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="left"]:hover:after {
    transform: translateY(50%) scaleX(1);
}



/* RIGHT */
[data-tooltip-location="right"]:before,
[data-tooltip-location="right"]:after {
    left: calc(100% + 5px);
    bottom: 50%;
}

[data-tooltip-location="right"]:before {
    transform: translate(5px, 50%) scale(0.5);
}

[data-tooltip-location="right"]:hover:before {
    text-align: left;
    font-family: roboto;
    transform: translate(5px, 50%) scale(1);
}

[data-tooltip-location="right"]:after {
    border-width: 5px 5px 5px 0px;
    border-color: transparent #374046 transparent transparent;
    border-color: transparent rgba(55, 64, 70, 0.9) transparent transparent;
    transform-origin: right;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="right"]:hover:after {
    transform: translateY(50%) scaleX(1);
}



/* BOTTOM */
[data-tooltip-location="bottom"]:before,
[data-tooltip-location="bottom"]:after {
    top: calc(100% + 5px);
    bottom: auto;
}

[data-tooltip-location="bottom"]:before {
    transform: translate(-50%, 5px) scale(0.5);
}

[data-tooltip-location="bottom"]:hover:before {
    transform: translate(-50%, 5px) scale(1);
}

[data-tooltip-location="bottom"]:after {
    border-width: 0px 5px 5px 5px;
    border-color: transparent transparent #374046 transparent;
    border-color: transparent transparent rgba(55, 64, 70, 0.9) transparent;
    transform-origin: bottom;
}


/* dialog start */

#gridDataInnerContainer {
    bottom: 0 !important;
    left: 0 !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    z-index: 1050 !important;
}

#gridDataPopup {
    width: 500px !important;
    /*margin: 1.75rem auto !important;*/
}

#errorInnerContainer {
    bottom: 0 !important;
    left: 0 !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    z-index: 1050 !important;
}

#errorPopup {
    margin-left: -145px;
    margin-top: 10px;
    background: #F8F8F8;
    border: 1px solid;
    width: 500px;
}
#errorInnerContainer {
    bottom: 0 !important;
    left: 0 !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    z-index: 1050 !important;
}

#confirmPopup {
    width: 500px !important;
    /*margin: 1.75rem auto !important;*/
}


.dialog-container,
.waiting-popup {
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.waiting-popup {
    z-index: 999999;
}

.dialog-container {
    height: 100%;
    width: 100%;
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, .5);*/
    z-index: 999999;
}

.dialog-title {
    background-image: linear-gradient(to right, #006a8e, #006a8f);
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    /*background-color: #46474b;*/
    color: #fff;
    float: left;
    font-weight: bold;
    padding: 1rem;
    text-align: centre;
    text-transform: capitalize;
    width: 100%;
}

    .dialog-title i {
        padding: 5px 0 0 5px !important;
        padding: 0.5vh 0 0 0.25vw !important;
    }

.container {
    /*background-color: #fff;
    box-shadow: 5px 5px 5px #000000;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .5);
    box-shadow: 0.3vw 0.3vw 0.5vh rgba(0, 0, 0, .5);*/
}

.error-message, .confirm-message,
.error-text {
    color: #222;
}

.dialog {
    display: none;
}
/* The actual popup */
.popup .popuptext {
    /*visibility: hidden;*/ /*8-2-2021*/
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 999;
    top: -12px;
    left: 27px;
}

.dialog-backdrop,
.waiting-popup-panel {
    background-color: #000000;
    background-color: rgba(0, 0, 0, .4);
    background-position: center center;
    height: 100%;
    width: 100%;
}

.confirm {
    background: #F8F8F8;
    /*font-family: Segoe UI;*/
    border: 1px solid gray;
    border-radius: 4px;
    box-shadow: 0 10px 20px #000000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .5);
    display: none;
    height: auto;
    left: 42%;
    margin: -75px 0 0 -200px;
    margin: -7.5vh 0 0 -10vw;
    position: absolute;
    top: 30%;
    width: 400px;
    width: 20vw;
}
/* Popup arrow */ /*8-2-2021*/
.popup .popuptext::after {
    content: "";
    position: absolute;
    top: 12%;
    left: 0%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #555;
}

.confirm-content {
    display: inline-block;
    height: 55%;
    padding: 1rem;
    vertical-align: middle;
    width: 100%;
}

.confirm-buttons {
    border-top: 1px solid #d6d6d6;
    display: block;
    float: left;
    padding: 1rem;
    width: 100%;
}

    .confirm-buttons button {
        border: none;
        border-radius: .25rem;
        font-size: 15px;
        line-height: 1.5;
        padding: .375rem .75rem;
    }

        .confirm-buttons button:first-child {
            margin-left: 5px;
        }

        .confirm-buttons button:last-child {
            background-color: #46474b !important;
            color: #fff !important;
            display: block;
            /*margin-right: auto;*/
            margin-left: auto;
        }

.error-message,
.confirm-message {
    display: block;
    font-size: 16px !important;
    text-align: left;
    vertical-align: middle;
}

.grid-data-dialog {
    height: 300px;
    height: 30vh;
    left: 50%;
    margin: -150px 0 0 -175px;
    margin: -15vh 0 0 -8.8vw;
    top: 50%;
    width: 350px;
    width: 17.5vw;
}

    .grid-data-dialog > div.confirm-content {
        display: block;
        height: 85%;
        overflow: auto;
        position: relative;
        width: 100%;
    }

.publish-result-dialog {
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -150px;
    top: 50%;
    width: 300px;
}

.close-button {
    -webkit-appearance: none;
    background-color: transparent !important;
    border: 0;
    color: #555 !important;
    margin: -1rem -1rem -1rem auto;
    outline: 0 !important;
    padding: 10px 22px;
}

.close-button,
.send-button {
    background-color: #333333;
    border-style: none;
    border-top-right-radius: 4px;
    border-top-right-radius: 0.2vw;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px !important;
    height: 30px !important;
    height: 2.9vh !important;
    line-height: 20px !important;
    line-height: 2vh !important;
    margin: 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-overflow: ellipsis;
    top: 0;
    vertical-align: middle;
    width: 30px !important;
    width: 1.5vw !important;
}

    .close-button:enabled:hover,
    .send-button:enabled:hover {
        background: #000000;
        color: #ffffff;
    }

.send-button {
    right: 30px !important;
    right: 1.5vw !important;
}

.ConfirmBtns {
    margin: 5px;
    padding: 3px;
    justify-items: right;
    display: flex;
    justify-content: flex-end;
    border-top-style: groove;
    border-top-color: lightgrey;
}

/* dialog end */
/* Loader CSS */

.loader {
    background: url('../img/global/Loader.gif') 50% 50% no-repeat rgb(249, 249, 249);
    height: 100%;
    left: 0px;
    opacity: 0.8;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 9999;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        top: -5px;
        left: 110%;
    }

        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 12%;
            right: 100%;
            margin-top: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: transparent black transparent transparent;
        }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }


.alert-success-setting {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
    position: absolute;
    width: 94%;
    z-index: 9999;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
    position: absolute;
    width: 98%;
    margin-left: 1%;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
    position: absolute;
    width: 98%;
    margin-left: 1%;
}

.alert-info-setting {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
    position: absolute;
    width: 94%;
}

.alert-validation {
    color: red;
    background-color: #fff3cd;
    border-color: #ffeeba;
    position: absolute;
    width: 98%;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    position: absolute;
    width: 98%;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: absolute;
    width: 98%;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    margin-left: 10px;
    margin-right: 10px;
    z-index: 99999;
    position: absolute;
    overflow: hidden;
}

.UserGuideButton {
    color: #fff;
    background-color: #006a8e;
    border-color: #343a40;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.downloadicon {
    text-align: center;
    width: 28px !important;
    margin-left: -20px;
    margin-top: 80px;
}

.userguideimg {
    text-align: center;
    padding: 35px 10px 5px 10px;
}

.pdficon {
    width: 80px !important;
}

.Userguideupload {
    text-align: center;
    padding: 2px 2px 25px 2px;
}

.PopupBtn-dark {
    background-color: #006a8e !important;
    border: black;
    border-style: solid;
    border-width: 1.5px;
    color: white;
    padding: 12px 20px 12px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    line-height: 0px;
    height: 10px;
}

@media screen and (min-width: 320px) and (max-width: 575px) {
    [data-tooltip]:before {
        height: 180px;
        content: attr(data-tooltip);
        padding: 10px 18px;
        min-width: 50px;
        max-width: 120px;
        border-radius: 6px;
        font-size: 10px;
        margin-left: 0px;
    }

    #errorOK.PopupBtn-dark {
        height: 10px;
        line-height: 0px;
    }
    .mac #confirmPopup {
        margin-left: -109px;
        width: 262px !important;
    }

    .mac [data-tooltip]:before {
        height: 140px;
        content: attr(data-tooltip);
        min-width: 50px;
        max-width: 100px;
        border-radius: 6px;
        font-size: 7.4px;
        margin-left: 0px;
    }

    #errorPopup {
        margin-left: -101px;
        background: #F8F8F8;
        border: 1px solid;
        width: 250px;
        margin-top: 10px;
    }
    .measuring-unit {
        position: absolute;
        width: 100px;
        right: 30px;
        margin-top: -17px;
    }

    .error-message, .confirm-message {
        display: block;
        font-size: 13px !important;
        text-align: left;
        vertical-align: middle;
    }

    .dialog-title {
        font-size: 15px;
        padding: 6px;
    }

    .clsOrganizationHeader {
        font-size: 13px;
        margin-left: 30px;
    }

    #confirmPopup {
        position: absolute;
        width: 320px !important;
        transform: translate(-85px, 85px);
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .measuring-unit {
        right: 40px;
        position: absolute;
        width: 100px;
        margin-top: -14px;
    }

    .clsOrganizationHeader {
        font-size: 18px;
        margin-left: 30px;
    }

    #confirmPopup {
        transform: translate(-84px, 87px);
        position: absolute;
        width: 400px !important;
    }

    .dialog-title {
        padding: 5px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .dialog-title {
        padding: 6px;
    }

    .measuring-unit {
        position: absolute;
        width: 100px;
        margin-top: -18px;
        right: 14px;
    }

    #confirmPopup {
        position: absolute;
        width: 400px !important;
        transform: translate(-57px, 80px);
    }

    #errorPopup {
        background: #F8F8F8;
        border: 1px solid;
        width: 422px !important;
        margin-left: -130px;
        margin-top: 10px;
    }
}
@media screen and (min-width: 568px) and (max-height: 320px) and (orientation : landscape) {
    #errorPopup {
        margin-left: -200px;
        background: #F8F8F8;
        border: 1px solid;
        width: 500px !important;
    }

    #errorOK.PopupBtn-dark {
        height: 10px;
        line-height: 0px;
    }
}

@media screen and (min-width: 640px) and (max-height: 360px) and (orientation : landscape) {
    #errorPopup {
        margin-left: -190px;
        background: #F8F8F8;
        border: 1px solid;
        width: 500px !important;
    }

    #errorOK.PopupBtn-dark {
        height: 10px;
        line-height: 0px;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    #errorPopup {
        margin-left: -200px;
        background: #F8F8F8;
        border: 1px solid;
        width: 500px !important;
    }

    #errorOK.PopupBtn-dark {
        height: 10px;
        line-height: 0px;
    }
}

@media only screen and (min-width: 678px) and (max-width: 768px) {
    #errorPopup {
        margin-left: -190px;
        background: #F8F8F8;
        border: 1px solid;
        width: 500px !important;
    }

    #errorOK.PopupBtn-dark {
        height: 10px;
        line-height: 0px;
    }
}

@media only screen and (min-width: 1367px) and (max-width: 1440px) {
        .measuring-unit.tapped-mes {
            margin-left: 138px !important;
            position: absolute;
            margin-top: -28px;
            width: 216px;
        }

    .col-md-12.left-lables.tappedHoleAddButton {
        width: 98%;
    }

    #ddlEnclosureColor_Step3 dd ul {
        border: 1px solid #d3d3d3;
        color: #555555;
        display: none;
        left: 0px;
        position: absolute;
        top: 0px;
        list-style: none;
        max-width: 100%;
        max-height: 150px;
        display: block;
        overflow-y: scroll;
        background-color: var(--hub-white);
    }
}

@media only screen and (min-width: 1367px) and (max-width: 1920px) {
    #errorPopup {
        top: 250px;
        margin-left: -170px;
        background: #F8F8F8;
        border: 1px solid;
        width: 500px !important;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1367px) {
    .dialog-title {
        padding: 6px;
    }

    #confirmPopup {
        position: absolute;
        width: 400px !important;
        transform: translate(40px, 59px);
    }

}

#alert-messages-container {
    display: none;
    margin-top: 5%;
}
.product-radio {
    display:flex;
}
