/* use mobile-first approach since that's what Bootstrap 4 uses (especially its display utilities) */
/* follow document format and order of shop.css for consistency */

/* START Bootstrap class overrides */

/* END Bootstrap class overrides */

/* START native element defaults */

/* END native element defaults */

/* START generic helpers */
/*width*/
.width-70 {
    width: 70px;
}

.width-95 {
    width: 95px;
}

.width-290 {
    width: 290px;
}
/*max-width*/

/*min-width*/

/*min-height*/
.min-height-570 {
    min-height: 570px;
}

/*max-height*/
.max-h-100p {
    max-height: 100%;
}

.max-height-inherit {
    max-height: inherit;
}
/*height*/
.height-440 {
    height: 440px;
}

.right-20 {
    right: 20px;
}

.z-index-2 {
    z-index: 2;
}

.line-height-25 {
    line-height: 25px;
}

.forward-space::after {
    content: ' ';
}
/* tablet and larger */
@media (min-width: 768px) {
    /*width*/
    .width-unset-sm {
        width: unset;
    }

    .width-320-sm {
        width: 320px;
    }
    /*max-width*/

    /*min-width*/
    .min-width-950-sm {
        min-width: 950px;
    }
    /*max-height*/

    /*height*/
    .height-305-sm {
        height: 305px;
    }

    /*min-height*/
    .min-height-540-sm {
        min-height: 540px;
    }

    .column-spacer-15-sm {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

        .column-spacer-15-sm > div {
            padding-left: 7.5px;
            padding-right: 7.5px;
        }

    .position-absolute-sm {
        position: absolute;
    }

    .position-center-sm {
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }

    .flex-unset-sm {
        flex: unset;
    }
}

/* desktop and larger */
@media (min-width: 992px) {
    /*min-height*/
    .min-height-650-md {
        min-height: 650px;
    }
}


@media (min-width: 1240px) {
}


@media (min-width: 1440px) {
}

/* END generic helpers */

/* START custom and override */
/*Start Blue scrollbar*/
.blue-scrollbar::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
}

.blue-scrollbar::-webkit-scrollbar-track {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #E1E1E1;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-right: 7px;
}

.blue-scrollbar::-webkit-scrollbar-thumb {
    height: 40px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #00549A
}
/*End Blue scrollbar*/

/*START custom-emulator-table override*/
.custom-emulator-table.scrollableContainerShadow-table table th.min-width-110 {
    min-width: 110px;
}

.custom-emulator-table.scrollableContainerShadow-table table th.min-width-155 {
    min-width: 155px;
}

.custom-emulator-table.scrollableContainerShadow-table table th.min-width-160 {
    min-width: 160px;
}

.custom-emulator-table.scrollableContainerShadow-table table th.min-width-205 {
    min-width: 205px;
}

.custom-emulator-table.scrollableContainerShadow-table table th, .custom-emulator-table.scrollableContainerShadow-table table td {
    padding: 15px 20px;
}

    .custom-emulator-table.scrollableContainerShadow-table table td strong.txtDarkGrey {
        color: #555
    }

.custom-emulator-table.scrollableContainerShadow-table p {
    margin-bottom: 10px;
}

.custom-emulator-table.scrollableContainerShadow-table table td {
    background-color: #ffffff;
}
/*END custom-emulator-table override*/
/*START custom-emulator-table custom scroll bar for tables*/
.custom-emulator-table .custom-emulator-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.custom-emulator-table .custom-emulator-table-wrapper::-webkit-scrollbar-track {
    background: #e1e1e1;
    height: 6px;
}

.custom-emulator-table .custom-emulator-table-wrapper::-webkit-scrollbar-thumb {
    height: 6px;
    background: #00549A;
    border-radius: 3px;
}
/*END custom-emulator-table custom scroll bar for tables*/
/*START custom-emulator-table left and right shadow*/
.custom-emulator-table.left.scrollableContainerShadow-table:before {
    width: 46px;
    -webkit-transition: width .5s;
    transition: width .5s;
}

.custom-emulator-table.scrollableContainerShadow-table:before {
    width: 0;
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: -moz-linear-gradient(270deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 100%);
    background: -webkit-linear-gradient(270deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 100%);
    background: linear-gradient(270deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 100%);
    -webkit-transition: width .1s;
    transition: width .1s;
}

.custom-emulator-table.right.scrollableContainerShadow-table:after {
    width: 46px;
    -webkit-transition: width .5s;
    transition: width .5s;
}

.custom-emulator-table.scrollableContainerShadow-table:after {
    width: 0;
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: -moz-linear-gradient(90deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 100%);
    background: -webkit-linear-gradient(90deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 100%);
    background: linear-gradient(90deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.1) 100%);
    -webkit-transition: width .1s;
    transition: width .1s;
}
/*END custom-emulator-table left and right shadow*/

/* tablet and larger */
@media (min-width: 768px) {
}

/* desktop and larger */
@media (min-width: 992px) {
}


@media (min-width: 1240px) {
}

@media (min-width: 1440px) {
}
/* END custom and override */

