:root {
    --color-one: #c32d4d;
    --color-two: #FFFFFF;
}

html, body {
    font-family: 'Poppins'!important;
    height: 100%;
}

body::-webkit-scrollbar-track
{
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
	border-radius: 10px;
}

body::-webkit-scrollbar
{
	width: 10px;
    height: 10px;
	background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb
{
	background-color: #a8a8a8;
	border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover
{
	background-color: #8d8d8d!important;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-Thin.ttf');
	font-style: normal;
	font-weight: 100;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-ThinItalic.ttf');
	font-style: italic;
	font-weight: 100;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-ExtraLight.ttf');
	font-style: normal;
	font-weight: 200;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-ExtraLightItalic.ttf');
	font-style: italic;
	font-weight: 200;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-Light.ttf');
	font-style: normal;
	font-weight: 300;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-LightItalic.ttf');
	font-style: italic;
	font-weight: 300;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-Regular.ttf');
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-Italic.ttf');
	font-style: italic;
	font-weight: 400;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-Medium.ttf');
	font-style: normal;
	font-weight: 500;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-MediumItalic.ttf');
	font-style: italic;
	font-weight: 500;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-SemiBold.ttf');
	font-style: normal;
	font-weight: 600;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-SemiBoldItalic.ttf');
	font-style: italic;
	font-weight: 600;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-Bold.ttf');
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-BoldItalic.ttf');
	font-style: italic;
	font-weight: 700;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-ExtraBold.ttf');
	font-style: normal;
	font-weight: 800;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-ExtraBoldItalic.ttf');
	font-style: italic;
	font-weight: 800;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-Black.ttf');
	font-style: normal;
	font-weight: 900;
}

@font-face {
	font-family: "Poppins";
	src: url('/themes/gearmonkey/assets/fonts/Poppins-BlackItalic.ttf');
	font-style: italic;
	font-weight: 900;
}

/* print css */
@media print
{
    .no-print, .no-print *
    {
        display: none !important;
    }

    .dt-absolute {
        top: 0!important;
    }

    .details-wrapper {
        margin-top: 100px;
    }

    .for-print {
        display: block!important;
    }

    .customize-title {
        border: 0!important;
    }

    .customize-title::placeholder {
        font-size: 26px!important;
    }
}

/* LOADER */

#loader {
  z-index: 1;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background-image: url('/themes/gearmonkey/assets/images/prg-logo-small.png');
  background-repeat: no-repeat;
  background-size: 100px 100px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* IPHONE 5 */
@media only screen
    and (max-device-width: 320px) {
    .min_height_navbar h1 {
        font-size: 36px!important;
        bottom: -5px!important;
    }
    .min_height_navbar {
        min-height: unset!important;
        align-items: unset!important;
    }
    .rightSideNavbar {
        min-height: 100px!important;
    }
    .rightSideNavbar a {
        font-size: 14px!important;
        text-align: center;
    }
    .fixtures-found p {
        font-size: 15px!important;
    }
    .btn_jump_to_compare {
        width: 142px!important;
        font-size: 12px!important;
    }
    .under_header h1 {
        font-size: 20px!important;
    }
    .landing_wrapper {
        padding-top: 15px!important;
        padding-bottom: 15px!important;
    }
    .PRG_product_holder {
        width: 100%!important;
        min-height: 215px!important;
        max-height: 215px!important;
        padding: 15px!important;
    }
    .PRG_product_holder p {
        overflow: hidden;
        font-size: 20px!important;
        line-height: 25px!important;
    }
    .pd-gm {
        padding: 0 10px!important;
    }
    .PRG_product_img_holder {
        height: 130px!important;
    }
    .powered_by_PRG p {
        font-size: 28px!important;
    }
    .gearmonkeyNavbar {
        right: unset!important;
    }
    .PRG_footer .PRG_copyright {
        font-size: 10px!important;
    }
    .PRG_footer p {
        font-size: 12px!important;
    }
    .rightSideFooter {
        padding: 0px 15px 22px!important;
    }
    .sidenav-links-holder {
        width: 50%!important;
    }
    .sidenav a {
        font-size: 14px!important;
    }
    .sidenav .closebtn {
        font-size: 32px!important;
        right: 5px!important;
    }
    .lb .header_listing {
        font-size: 22px!important;
        text-align: center!important;
    }
    .lb .gutters {
        margin-left: 0!important;
        margin-right: 0!important;
    }
    .lb h1 {
        font-size: 22px!important;
    }
    .active-wall-tile-holder {
        padding-bottom: 40px!important;
    }
    select[name="find-similar-by"] {
        width: 75%!important; 
        bottom: 15px!important;
    }
    .swap-compare-holder {
        padding: 15px 0!important;
    }
    .add-led-tile-holder {
        padding: 50px 10px 0px 10px!important;
    }
    .p-tb {
        padding: 0!important;
    }
    .p-tb:first-child {
        margin-bottom: 15px!important;
    }
    #columns-rows {
        margin-bottom: 15px!important;
        padding: 0!important;
    }
    .zoom-holder {
        display: none!important;
    }
    .led-wall-builder-table div {
        min-width: 23px!important;
        max-width: 23px!important;
        min-height: 23px!important;
        max-height: 23px!important;
        position: relative;
    }
    .led-wall-builder-table img {
        position: absolute;
        left: 0;
    }
    .led-builder-totals {
        margin-bottom: 15px!important;
    }
    .btn-total-holder {
        flex-direction: column!important;
    }
    select#add-to-show-builder {
        margin-bottom: 10px!important;
    }
    .lb-show-builder {
        margin-bottom: 0!important;
    }
    .px-lg-5 div:last-child {
        margin-top: 5px;
    }
    .f-s-b {
        width: 100%!important;
    }
    .under_header {
        justify-content: center!important;
    }
    .under_header a {
        margin-top: 10px!important;
    }
    .under_header h1 {
        width: 100%!important;
        text-align: center;
    }
    .details-img-holder {
        text-align: center;
        margin-bottom: 20px;
    }
    h3.color {
        padding-left: 15px;
    }
    .sidenav a {
        font-size: 14px!important;
    }
}

/* IPHONE X/11 */
@media only screen 
    and (min-device-width: 321px)
    and (max-device-width: 414px) { 
    .closebtn {
        right: 10px!important;
        font-size: 36px!important;
    }
    .min_height_navbar {
        min-height: unset!important;
        align-items: unset!important;
        min-height: 110px!important;
    }
    .rightSideNavbar {
        min-height: 110px!important;
    }
    .under_header {
        justify-content: center!important;
    }

    .under_header a {
        margin-top: 10px!important;
    }
    .pd-gm {
        padding: 0 .9rem!important;
    }
    .PRG_product_holder {
        min-height: 248px!important;
        max-height: 248px!important;
    }
    .PRG_product_holder p {
        overflow: hidden;
        max-height: 58px!important;
    }
    .powered_by_PRG {
        min-height: 64px!important;
        padding: 0 20px!important;
    }
    .under_header h1 {
        font-size: 24px!important;
    }
    .fixtures-found p {
        font-size: 16px!important;
    }
    .rightSideNavbar a {
        font-size: 16px!important;
    }
    .powered_by_PRG p {
        font-size: 28px!important;
    }
    .gearmonkeyNavbar {
        font-size: 17px!important;
        top: -25px!important;
        position: relative!important;
        right: unset!important;
        text-align: center;
    }
    .PRG_square_holder {
        top: 15px!important;
        left: 4%!important;
    }
    .PRG_product_img_holder {
        height: 180px!important;
    }
    .navbar {
        min-height: 110px;
    }
    .navbar button {
        height: 100px;
        width: 100px;
        position: absolute!important;
        z-index: 1050;
    }
    .PRG_product_holder {
        width: 100%!important;
    }
    .PRG_product_holder p {
        font-size: 24px!important;
        line-height: 28px!important;
    }
    .PRG_footer {
        min-height: 240px!important;
    }
    .PRG_footer p {
        font-size: 14px!important;
    }
    .min_height_navbar {
        align-items: unset!important;
        flex-direction: row!important;
    }
    .min_height_navbar div:first-child {
        text-align: center;
    }
    .rightSideNavbar {
        justify-content: center!important;
        flex-direction: column-reverse!important;
        align-items: center!important;
    }
    .min_height_navbar h1 {
        font-size: 42px!important;
        bottom: -7px!important;
    }
    .prg-logo-footer img {
        height: 130px;
        object-fit: contain;
    }
    .rightSideFooter {
        padding: 0 15px 0!important;
    }
    .PRG_footer .PRG_copyright {
        font-size: 12px!important;
    }
    .sidenav-links-holder {
        width: 50%!important;
    }
    .lb h1 {
        font-size: 24px!important;
    }
    .p-tb {
        padding: 0!important;
    }
    .active-wall-tile-holder {
        padding-bottom: 30px!important;
        margin-bottom: 15px!important;
    }
    select[name="find-similar-by"] {
        width: 100%!important;
        position: relative!important;
        right: 0!important;
        bottom: -10px!important;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .led-builder-totals {
        margin: 0!important;
    }
    .lb-show-builder {
        margin-bottom: 0!important;
        margin-left: 0!important;
        margin-right: 0!important;
    }
    select[name="add-to-show-builder"] {
        margin-top: 40px!important;
    }
    .btn-total-holder {
        flex-direction: column!important;
    }
    #columns-rows {
        padding: 0!important;
    }
    .led-wall-builder-preview {
        margin-bottom: 15px;
    }
    .led-wall-builder-table {
        position: relative;
    }
    .led-wall-builder-table div {
        min-width: 28px!important;
        max-width: 28px!important;
        min-height: 28px!important;
        max-height: 28px!important;
        position: relative;
    }
    .led-wall-builder-table img {
        position: absolute;
        left: 0;
    }
    .zoom-holder {
        display: none!important;
    }
    .rb-0 {
        margin-top: 18px!important;
        background-position: calc(8.5% - 10px) 50%!important;
    }
    .swap-compare-holder {
        padding: 10px 0!important;
    }
    .under_header h1 {
        width: 100%!important;
        text-align: center;
    }
    .details-img-holder {
        text-align: center;
        margin-bottom: 20px;
    }
    .sidenav a {
        font-size: 16px!important;
    }
    .show-header h1 {
        text-transform: uppercase;
        font-size: 34px!important;
        text-align: center;
    }
    .show-builder-list li div {
        margin-bottom: 8px!important;
    }
    .show-builder-list li div:last-child {
        margin-bottom: 0!important;
    }
}

/* IPAD */
@media only screen 
    and (min-device-width: 415px)
    and (max-device-width: 768px) {
        .navbar-brand .mainLogo {
            max-height: 130px!important;
            object-fit: contain!important;
        }
        .powered_by_PRG {
            min-height: 100px!important;
            padding: 0 35px!important;
        }
        .powered_by_PRG p {
            font-size: 34px!important;
        }
        .gearmonkeyNavbar {
            top: 0!important;
            font-size: 22px!important;
            position: relative!important;
            right: unset!important;
        }
        .min_height_navbar {
            align-items: unset!important;
            flex-direction: row!important;
            padding: 0 0 40px!important;
            min-height: 180px!important;
        }
        .min_height_navbar div:first-child {
            text-align: center;
        }
        .moving_light_holder_right {
            align-items: center!important;
            justify-content: space-between;
        }
        .rightSideNavbar {
            justify-content: center!important;
            flex-direction: column-reverse!important;
            align-items: center!important;
        }
        .min_height_navbar h1 {
            font-size: 62px!important;
        }
        .PRG_square_holder {
            left: 4%!important;
            top: 34px!important;
        }
        .navbar {
            min-height: 110px;
        }
        .navbar button {
            height: 100px;
            width: 100px;
            position: absolute!important;
            z-index: 1050;
        }
        .PRG_product_holder {
            width: 100%!important;
        }
        .PRG_product_img_holder {
            height: 360px!important;
        }
        .PRG_footer p {
            font-size: 22px!important;
            line-height: 26px!important;
        }
        .center_mobile {
            justify-content: center!important;
            display: flex;
        }
        .PRG_product_holder {
            width: 100%!important;
        }
        .navbar-brand {
            margin: 0;
        }
        .navbar-nav div {
            text-align: center;
            max-height: 100px!important;
            min-height: 100px!important;
        }
        .gearmonkeyNavbar {
            right: 0!important;
        }
        .min_height_navbar h1 span {
            top: -8px!important;
        }
        .powered_by_PRG {
            padding: 0 1rem!important;
        }
        .PRG_product_holder p {
            font-size: 34px!important;
        }
        .under_header button {
            margin-top: 15px;
            width: auto!important;
        }
        .no-gutters-sm {
            margin-left: -15px;
            margin-right: -15px;
        }
        .PRG_footer {
            min-height: 200px!important;
        }
        .min_height_navbar h1 {
            font-size: 54px!important;
        }
        .sidenav-links-holder {
            width: 50%!important;
        }
        .active-wall-tile-holder {
            max-height: unset!important;
            height: 100%;
            padding-bottom: 75px!important;
        }
        select[name="find-similar-by"] {
            bottom: -15px!important;
            width: 100%!important;
            right: 0!important;
            position: relative!important;
            padding-left: 42px!important;
        }
        .active-tile h5, .swap-tile h5 {
            font-size: 20px!important;
        }
        .led-wall-builder-preview {
            padding: 70px 50px!important;
        }
        .led-wall-builder-table div {
            min-width: 50px!important;
            max-width: 50px!important;
            min-height: 50px!important;
            max-height: 50px!important;
            position: relative;
        }
        .led-wall-builder-table img {
            position: absolute;
            left: 0;
        }
        .led-wall-builder-preview {
            padding: 90px 65px!important;
        }
        select#add-to-show-builder, .add-to-compare-btn, .rb-0 {
            background-position: calc(4% - 10px) 50%!important;
        }
        .px-lg-5 div:last-child {
            margin-bottom: 15px;
        }
        .swap-compare-holder {
            padding: 0!important;
        }
}

/* IPAD PRO */
@media only screen 
    and (min-device-width: 768px)
    and (max-device-width: 1024px) {
        .min_height_navbar h1 {
            bottom: -8px!important;
        }
        .min_height_navbar {
            min-height: 150px!important;
        }
        .swap-compare-holder {
            padding: 15px 0!important;
            height: 100%!important;
            max-height: unset!important;
        }
        .active-wall-tile-holder {
            padding-bottom: 30px!important;
            height: 100%!important;
            max-height: unset!important;
        }
        select[name="find-similar-by"] {
            bottom: 0!important;
        }
        .led-wall-builder-preview {
            padding: 65px!important;
        }
        .rb-0 {
            width: 100%!important;
            margin-top: 20px!important;
        }
        .rp_img_holder {
            width: 65%!important;
        }
        select#add-to-show-builder, .add-to-compare-btn, .rb-0 {
            background-position: calc(4% - 10px) 50%!important;
        }
    }

@media only screen 
    and (min-device-width: 1024px)
    and (max-device-width: 1200px) {
        .product-box-compare {
            min-width: 162px!important;
            /*max-width: 162px!important;*/
        }
        .rb-0 {
            width: 100%!important;
            margin-top: 20px!important;
        }
    }

/* Small devices (landscape phones, less than 768px) */
@media only screen and (max-width: 767.98px) { 
    .PRG_product_holder {
        width: 100%!important;
    }
    .compare-header {
        font-size: 26px!important;
    }
    .under_header h1 {
        font-size: 26px;
    }
    .result-holder {
        margin-left: 0!important;
        margin-right: 0!important;
    }
    .result-holder .product-holder {
        padding: 0!important;
    }
    .rb-0 {
        margin-top: 18px;
        width: 100%!important;
    }
    .search-results .gutters {
        margin-left: 0!important;
        margin-right: 0!important;
    }
    .fixtures-found {
        padding: 0!important;
    }
    .moving_light_holder {
        flex-direction: column;
        padding: 15px;
    }
    .moving_light_holder .d-flex, .checkbox_holder {
        width: 100%;
    }
    .rightSideFooter {
        padding: 0!important;
        margin-bottom: 60px!important;
    }
    .PRG_footer {
        align-items: unset!important;
    }
    .PRG_footer p {
        font-size: 16px!important;
    }
    .rightSideFooter div {
        margin: auto!important;
    }
    .PRG_footer div:first-child img {
        max-height: 110px;
        object-fit: contain;
    }
    .min_height_navbar h1 {
        font-size: 46px;
    }
    .gearmonkeyNavbar {
        font-size: 18px!important;
    }
    .pills-section {
        margin-bottom: 20px;
    }
    .no-gutters h3 {
        text-align: center;
    }
    .no-gutters button, .no-gutters a {
        margin-top: 15px;
    }
    .tab-pane .no-gutters {
        justify-content: center!important;
    }
    .active-wall-tile-holder p {
        font-size: 14px!important;
    }
    .led-tile-img {
        margin: 15px auto!important;
        width: 100px!important;
        height: 100px!important;
    }
    .swap-compare-holder {
        width: 100%!important;
    }
    .define-size-label {
        margin-bottom: 20px;
    }
    .led-wall-builder-preview {
        padding: 10px!important;
        min-height: 150px!important;
    }
    .zoom-holder button {
        width: 25px!important;
        height: 25px!important;
        display: flex!important;
        align-items: center!important;
        padding: 0!important;
        justify-content: center!important;
    }
    .mb-sm-3 {
        margin-bottom: 15px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) { 
    .gearmonkeyNavbar {
        font-size: 22px;
    }
    .navbar-brand .mainLogo {
        max-height: 150px;
        object-fit: contain;
    }
    .rightSideFooter {
        padding-top: 0!important;
    }
    .PRG_footer div:first-child img {
        max-height: 150px;
        object-fit: contain;
    }
    .leftSideFooter, .rightSideFooter p {
        text-align: center;
    }
    .moving_light_holder_right {
        margin-top: 20px;
    }
    .mlight-holder {
        margin: 40px 0 20px!important;
    }
    .tab-header {
        text-align: center;
    }
    #add-sb, #find-sb, .add-c {
        min-height: 38px;
        margin: 10px 0;
    }
    .addToCompare, .report-err {
        margin-top: 0!important;
    }
}

@media (max-width: 1024px) {
    #detailed_information li {
        margin: 10px;
    }
    #detailedInformation h1 {
        font-size: 28px;
    }
    .report-err {
        margin-top: 10px;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) { 
    .gearmonkeyNavbar {
        font-size: 24px;
    }
    .active-tile {
        width: 100%!important;
    }
    select[name="find-similar"] {
        width: 100%;
        margin-top: 5px;
    }
    .dt-absolute {
        top: -45px!important;
    }
}

@media only screen 
    and (min-device-width: 1200px)
    and (max-device-width: 1400px) {
        .product-box-compare {
            min-width: 182px!important;
            /*max-width: 182px!important;*/
        }
        .px-lg-5 {
            padding: 0!important;
        }
    }

@media (min-width: 1200px) {
    .pr-lg-0 {
        padding-right: 0!important;
    }
    .ml-lg-auto {
        margin-left: auto!important;
    }
    .px-lg-5 {
        padding-left: 3rem;
    }
    .m-bottom5 {
        margin-bottom: 3rem;
    }
}

.min-h {
    min-height: 600px;
}

.landing_wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem 0;
}

.menu-toggle {
    color: #25313C;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 37px;
    height: 56px;
    padding: 0 10px;
    z-index: 99999999;
}

button:focus {
    outline: 0!important;
}

.menu-toggle span {
    background-color: rgba(37,49,60,.6);
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    -webkit-transition: .15s cubic-bezier(.97,.75,.61,1.84);
    transition: .15s cubic-bezier(.97,.75,.61,1.84);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 2px;
}

.menu-toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    -webkit-transition: .15s cubic-bezier(.97,.75,.61,1.84);
    transition: .15s cubic-bezier(.97,.75,.61,1.84);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 2px;
    top: -6px;
    width: 40%;
    background-color: rgba(37,49,60,.6);
}

.menu-toggle:hover span:before {
    width: 100%;
    top: -6px;
}

.menu-toggle:hover span:after {
    top: 6px;
    width: 100%;
}

.menu-toggle span:after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    background-color: rgba(37,49,60,.6);
    -webkit-transition: .15s cubic-bezier(.97,.75,.61,1.84);
    transition: .15s cubic-bezier(.97,.75,.61,1.84);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 2px;
    top: 6px;
    width: 70%;
}

.pd-gm {
    padding: 0 1.5rem;
}

.navbar-brand {
    padding: 0!important;
}

.mainLogo {
    height: 100px;
}

.gearmonkeyNavbar {
    position: absolute;
    top: 10px;
    right: 50px;
}

.rightSideNavbar {
    position: relative;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 130px;
}

.min_height_navbar h1 {
    font-family: Poppins;
    font-weight: 700;
    font-style: italic;
    font-size: 75px;
    position: absolute;
    bottom: -10px;
    margin-bottom: 0;
    z-index: 350;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}

.min_height_navbar h1 span {
    font-family: Poppins;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    position: absolute;
    top: 0;
    color: #d11047;
}

.rightSideNavbar a {
    color: unset!important;
}

.min_height_navbar {
    min-height: 120px;
    align-items: center;
    display: flex;
    flex-direction: row!important;
    position: relative;
}

.powered_by_PRG {
    width: 100%;
    background-color: #d11047;
    color: #FFFFFF;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding-right: 3%;
}

.powered_by_PRG p {
    font-style: italic;
    font-size: 34px;
}

.PRG_square {
    height: 10px;
    width: 10px;
    background-color: #000000;
}

.PRG_square_holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    left: 2%;
    top: 8px;
    width: 38px;
    height: 38px;
    cursor: pointer;
}

.PRG_square_holder:hover {
    top: 12px;
    width: 30px;
    height: 30px;
}

.PRG_product_holder {
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    border-radius: 20px;
    padding: 15px 30px;
    width: 60%;
    margin-bottom: 15px;
}

.PRG_product_holder a {
    text-decoration: unset!important;
}

.PRG_product_holder p {
    font-weight: 600;
    font-size: 24px;
    color: #212529!important;
}

.PRG_footer {
    background-color: #000000;
    min-height: 150px;
    display: flex;
    align-items: center;
    color: #797979;
    width: 100%;
    position: relative;
    bottom: 0;
}

.PRG_footer p {
    margin-bottom: 2px!important;
}

.rightSideFooter {
    display: flex;
    flex-direction: column;
    padding: 38px;
}

.PRG_copyright {
    color: #797979;
    position: absolute;
    left: 15px;
    bottom: 3px;
}

.flex_end {
    display: flex;
    justify-content: flex-end;
}

.anchor_unset {
    color: unset!important;
}

.moving_lights_btn {
    width: 220px;
    background-color: #999999;
    color: #FFFFFF;
    border: 1px solid #c32d4d;
    text-align: center;
    padding: 4px 22px;
    cursor: pointer;
}

.moving_lights_btn:hover {
    transition: 0.5s;
    background-color: #c32d4d;
    color: #FFFFFF;
    border: 1px solid #999999;
    text-decoration: unset!important;
}

.color {
    color: var(--color-one);
}

.underline {
    text-decoration: underline;
}

.moving_light_holder {
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px;
    height: 100%;
}

.moving_light_holder_right {
    display: flex;
    flex-direction: column;
    text-align: right;
    border-radius: 15px;
    margin-left: auto;
    align-items: flex-end;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px;
    height: 100%;
}

.b-gray {
    border: 1px solid #c4c4c4;
}

.under_header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 2%;
}

.checkbox_holder {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.moving_light_input_holder input {
    background-color: #cfcfcf;
    width: 100%;
    border: 2px solid #888888;
    border-radius: 10px;
}

.moving_light_input_holder select {
    background-color: #cfcfcf;
    width: 100%;
    border: 2px solid #888888;
    border-radius: 10px;
}

.moving_light_input_holder label {
    font-weight: bold;
}

.legend_square {
    height: 12px;
    width: 12px;
    background-color: #c5c5c5;
}

.attributes_holder {
    padding: 15px 15px;
    display: flex;
    flex-direction: column;
    border: 1px solid #888888;
}

.search_holder {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 8%;
}

.btn_search {
    width: 300px;
    background-color: var(--color-one);
    color: var(--color-two);
    border-radius: 0!important;
    padding: 10px 0;
    font-weight: 600;
}

.btn_search:hover {
    color: #000!important;
}

.btn_jump_to_compare {
    width: 200px;
    background-color: var(--color-one);
    color: var(--color-two);
    border-radius: 8px;
    padding: 5px 15px;
    border: 2px solid #ab190a;
}

.btn_jump_to_compare:hover {
    color: #FFFFFF!important;
    text-decoration: underline;
}

.result_product_holder {
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 40px;
}

.result_product_title {
    text-transform: uppercase;
    color: #be1d41;
    font-weight: bold;
    font-size: 24px;
}

.result_product_title span {
    color: #000000!important;
    font-weight: 400!important;
    text-transform: initial!important;
}

.result_product_details p {
    font-weight: 600;
}

.result_product_details span {
    font-weight: 400!important;
}

#detailed_information .nav-link {
    text-transform: uppercase!important;
    border-radius: 8px!important;
    background-color: #333333!important;
    color: #FFFFFF!important;
}

#detailed_information .nav-link.active {
    background-color: var(--color-one)!important;
    color: var(--color-two)!important;
}

.pill_holder {
    border-radius: 10px;
    border: 2px solid #7a7a7a;
    margin: 0 5%;
}

.PRG_product_img_holder {
    height: 320px;
}

.PRG_product_img_holder img {
    height: -webkit-fill-available;
    object-fit: contain;
}

.rp_img_holder {
    width: 70%;
    height: auto;
    object-fit: cover;
}

/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: rgba(17, 17, 17, 0.521); /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
#header-fixed {
  position: fixed;
  top: 0px;
  display: none;
  background-color: white;
}
#header-fixed th{
    position: relative;
}
.btn-table-section{
    position: absolute;
    bottom: 0;
    /*width: 100%;*/
    left: 0;
    right: 0;
}
.table.sticky-header{
    table-layout: fixed;
}
.table.sticky-header thead th{
    position: relative;
    z-index: 1000;
}
.sticky-header .fixedHeader{
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 1000;
    width: 100%;
    overflow-x: auto;
}
.w-290{
    width: 290px !important;
}
.sidenav-links-holder {
    height: 100%;
    width: 40%;
    position: fixed;
    z-index: 500;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    padding-top: 60px;
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.fade-in {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.2s;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.btn-login {
    width: 100%;
    background-color: #d11047;
    color: #FFFFFF;
}

.btn-login:hover {
    background-color: #9e012e;
}

.login_wrapper {
    background-color: #f6f7fc;
    padding: 40px;
}

.bg-section {
    background-color: #4a6475;
    min-height: 60px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.bg-section p {
    color: #FFFFFF!important;
}

.bg-section i {
    color: #FFFFFF!important;
}

.bg-section i {
    font-size: 24px;
    position: absolute;
    left: 15px;
    top: 25px;
}

.bg-section:hover i {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--color-two)!important;
    background-color: var(--color-one)!important;
}

.nav-pills a {
    color: var(--color-one)!important;
}

.header_listing {
    padding: 0 15px;
}

.listing_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
}

.swal-text {
    text-align: center;
}

.dt-buttons i {
    color: #000000!important;
}

.custom-caption {
    caption-side: top!important;
    color: #d11047;
    font-weight: 600;
    font-size: 20px;
}

.product-box-compare-holder {
    margin-left: 220px;
    padding: 20px 0;
}
.table.sticky-header thead th{
    background: #fff;
}
.main-header{
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 1111;
    width: 100%;
}
.product-box-compare {
    position: relative;
    padding: 0 15px;
    border-right: 1px solid #a3a3a3;
    min-width: 292px;
/*    max-width: 292px;*/
}

.product-box-compare-tools {
    display: flex;
    justify-content: space-between;
}

.change-title {
    border: 0;
    width: 200px;
    height: 50px;
    border-radius: 15px;
}

ol.breadcrumb {
    margin-bottom: 0!important;
    background-color: transparent;
}

ol.breadcrumb li {
    margin: 0 0 0 10px;
}

ol.breadcrumb li a {
    color: #c32d4d!important;
}

ol.breadcrumb li::after {
    content: '/';
    padding-left: 10px;
    color: #c32d4d!important;
}

ol.breadcrumb li:last-child::after { 
    content:'';
    padding-left: 0;
}

.custom-btn-toolbar {
    background-color: transparent;
}

.custom-btn-toolbar i {
    color: #000000!important;
    font-size: 22px;
}

.color-black {
    color: #000000!important;
}

.transparent-black {
    background-color: transparent!important;
    color: #000000!important;
}

.product-manufacturer {
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

.product-model {
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

#compare-table td {
    text-align: center;
}

.min-h-450 {
    min-height: 450px;
}

.gray-bg {
    background-color: #dadada;
    min-height: 86px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 25px -15px 0 -24px;
}

.select-model-loc {
    width: 75%;
    text-align-last:center;
    background-color: #da8299;
    color: #FFFFFF;
    border-radius: 5px;
}

.table-title {
    color: #e14a71;
    font-weight: 600!important;
    font-size: 22px;
    background-color: #FFFFFF!important;
    text-align: left!important;
}

.star-checked {
    color: orange!important;
    transition-property: color;
    transition-duration: 0.3s;
}

.active-tile h5, .swap-tile h5 {
    text-align: center;
}

.active-wall-tile-holder {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    min-height: 365px;
    max-height: 365px;
    overflow-y: auto;
}

.swap-compare-holder {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 365px;
    max-height: 365px;
    overflow-y: auto;
    width: 100%;
    margin: auto;
    padding: 15px 165px;
    border-radius: 8px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.led-tile-img {
    width: 150px;
    height: -webkit-fill-available;
    margin: auto;  
}

.active-wall-tile-holder span {
    font-weight: 600;
}

.active-wall-tile-holder h6 span {
    color: #c73d5c;
    font-weight: 600;
}

.active-wall-tile-holder h6 {
    font-size: 20px;
}

.led_wall_wrapper {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
    margin-top: 15px;
}

select[name="find-similar-by"] {
    width: 35%;
    background-color: #1ea2ff;
    color: #FFFFFF;
    background-image: url('/themes/gearmonkey/assets/images/magic-stick.png');
    background-position: calc(7.5% - 10px) 50%;
    background-size: 15px;
    background-repeat: no-repeat;
    padding-left: 25px;
    border: 1px solid #8a3d44;
    border-radius: 8px;
    position: absolute;
    bottom: 50px;
    right: 35px;
}

.find-similar {
    background-color: #1ea2ff;
    color: #FFFFFF;
    background-image: url('/themes/gearmonkey/assets/images/magic-stick.png');
    background-position: calc(7.5% - 0px) 50%;
    background-size: 15px;
    background-repeat: no-repeat;
    padding-left: 25px;
    border: 1px solid #8a3d44;
    border-radius: 8px;
    position: absolute;
    bottom: 50px;
    right: 35px;
}

.find-similar option {
    background-color: #FFFFFF;
    color: #000;
}

.rb-0 {
    right: 0!important;
    bottom: 0!important;
    padding: 6px 0 6px 30px!important;
    background-position: calc(10.5% - 10px) 50%;
    background-color: #1ea2ff;
    color: #FFFFFF;
    background-image: url(/themes/gearmonkey/assets/images/magic-stick.png);
    background-size: 18px;
    background-repeat: no-repeat;
    padding-left: 25px;
    border: 1px solid #8a3d44;
    border-radius: 8px;
    width: 40%;
    text-align-last: center;
}

.rb-0 option {
    background-color: #FFFFFF;
    color: #000;
}

.label-swap {
    background-color: #e2e2e2;
    border: 1px solid #000;
    border-radius: 5px;
    color: #000;
    padding: 5px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.label-swap span {
    font-weight: 800;
}

input[type="radio"]:checked+label.label-swap { background-color: #333333!important; color: #FFFFFF!important; } 

.swap-compare-holder input[type="radio"] {
    visibility: hidden;
}

.swap-compare-holder i {
    color: #bf1e41!important;
    font-size: 25px;
    padding: 0px 5px;
}

.swap-compare-holder .form-check {
    padding-left: 0!important;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.add-led-tile-holder {
    position: static;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 62px 10px 0px 10px;
}

.add-led-tile-holder button {
    font-weight: 600;
    background-color: #eeeeee;
    border: 1px solid #000;
    border-radius: 5px;
}

.choose-unit-measure input[type="radio"] {
    visibility: hidden;
}

.choose-unit-measure label {
    color: #FFFFFF;
    background-color: #333333;
    border: 1px solid #333333;
    border-radius: 5px;
    padding: 5px 15px 5px 35px;
    background-image: url('/themes/gearmonkey/assets/images/prg-logo-small.png');
    background-position: calc(10% - 0px) 50%;
    background-repeat: no-repeat;
    background-size: 18px;
}

.choose-unit-measure input[type="radio"]:checked+label { 
    background-color: #FFFFFF!important; 
    color: #333333!important;
    border: 1px solid #333333;
} 

.form_wrapper {
    background-color: #f6f7fc;
    padding: 40px;
}

.form_wrapper label {
    font-weight: 600;
}

/* 
.form_wrapper form {
   padding: 0 100px;
} */

.define-size-label {
    color: #FFFFFF;
    background-color: #333333;
    border: 1px solid #333333;
    padding: 5px 15px 5px 35px;
    border-radius: 5px;
    background-image: url('/themes/gearmonkey/assets/images/prg-logo-small.png');
    background-position: calc(10% - 0px) 50%;
    background-repeat: no-repeat;
    background-size: 18px;
}

.define-size input[type="radio"] {
    visibility: hidden;
}

.define-size input[type="radio"]:checked+label { 
    background-color: #FFFFFF!important; 
    color: #333333!important;
    border: 1px solid #333333;
}

.choose-measure span, .define-size span {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.gutters {
    margin-left: 15px;
    margin-right: 15px;
}

.columns-rows i {
    color: #000!important;
    margin-top: 8px;
}

.columns-rows .form-group {
    width: 100px;
}

.columns-rows input[type="number"] {
    width: 60px!important;
    margin: auto;
}

.led-wall-builder-preview {
    position: relative;
    border: 3px solid #bf1e41;
    border-radius: 10px;
    padding: 100px 150px;
}

.led-wall-builder-preview i {
    color: #000!important;
}

.zoom-holder {
    position: absolute;
    top: 100px;
    right: 30px;
    z-index: 500;
}

.zoom-holder button {
    cursor: pointer;
    background: transparent;
    border: 0;
}

.zoom-holder i {
    color: #000!important;
}

.zoomout {
    margin-top: 15px;
}

.led-wall-builder-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.led-wall-builder-table div {
    flex: 1 1 auto;
    box-sizing: border-box;
    border: 1px solid black;
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;  
}

.mb400 {
    margin-bottom: 400px;
}

.tile-image {
    width: 100%;
    height: 100%;
}

.df-col {
    display: flex;
    flex-direction: column;
}

.df-col p {
    margin-bottom: 0;
    text-align: center;
}

.lb-totals-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.led-builder-totals {
    margin-top: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 12px;
}

.lb-totals-holder span {
    color: #cf5771;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    margin-bottom: 12px;
}

.lb-totals-holder h6 span, .lb-totals-holder h6 {
    font-weight: 600!important;
    font-size: 22px!important;
}

.lb-totals-holder p {
    text-align: center;
}

.lb-totals-title {
    position: relative;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #bf1e41;
    padding: 10px;
    border-radius: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.lb-show-builder {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 15px 0;
}

.lb-show-builder h4 {
    left: 15px;
    color: #bf1e41;
}

select#add-to-show-builder {
    width: 280px;
    margin-bottom: 20px;
    background-color: #c94361;
    color: #FFFFFF;
    font-size: 18px;
    padding: 5px 20px 5px 45px;
    border-radius: 5px;
    background-image: url('/themes/gearmonkey/assets/images/pen.svg');
    background-repeat: no-repeat;
    background-position: calc(10% - 10px) 50%;
    background-size: 20px;
}

select#add-to-show-builder option {
    background-color: #FFFFFF;
    color: #000;
}

.add-to-compare-btn {
    background-image: url('/themes/gearmonkey/assets/images/add-to-compare.png');
    background-position: calc(10% - 15px) 50%;
    background-repeat: no-repeat;
    background-size: 18px;
    width: 100%;
    background-color: #bf1e41;
    padding: 5px 20px 5px 45px;
    border-radius: 5px;
    border: 1px solid #767676;
    display: flex;
    align-items: center;
    min-height: 39px;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    font-size: 16px;
}

.add-to-compare-btn:hover {
    color: #FFFFFF!important;
}

.lb-show-builder button, .lb-show-builder a {
    background-color: #1ea2ff;
    color: #FFFFFF;
    padding: 5px 15px;
    border: 1px solid #994c4e;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.lb-show-builder button:hover {
    text-decoration: underline;
}

input.qty {
    width: 100px;
    background-color: #bf1e41;
    border: 2px solid #0e0e0e;
    color: #FFFFFF;
    text-align: center;
    font-weight: 500;
    margin: auto;
    border-radius: 5px;
}

select.dmx_channel_numbers {
    width: 100px;
    background-color: #bf1e41;
    border: 2px solid #0e0e0e;
    color: #FFFFFF;
    text-align: center;
    font-weight: 500;
    margin: auto;
    border-radius: 5px;
}

.p-tb {
    padding-top: 15px;
    padding-bottom: 15px;
}

.btn-total-holder {
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.privacy-btn {
    background: #eee;
    padding: 12px;
    border-radius: 1px;
    cursor: pointer;
    font-size: 13px;
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
}

.privacy-btn.active {
    background: #232323;
    color: #ffffff;
}

.custom-modal-dialog {
    min-width: 768px;
}

.custom-accordion {
    padding: 0!important;
    overflow: auto;
    background-color: #eaeaea;
    border-radius: 1px;
    cursor: pointer;
}

.custom-accordion button {
    text-transform: capitalize;
    font-size: 14px;
    width: 100%;
    height: 100%;
    text-align: left;
    margin: 0;
    font-weight: 400;
    color: #45413e;
    line-height: 14px;
    padding: 20px 15px!important;
    border: 1px solid rgba(0,0,0,.125);
    background-image: url('/themes/gearmonkey/assets/images/arrow-down-sign.png');
    background-position: calc(100% - 25px) 50%;
    background-repeat: no-repeat;
    background-size: 16px;
}

.custom-accordion button:not(.collapsed) {
    background-image: url('/themes/gearmonkey/assets/images/arrow-up-sign.png');
    background-position: calc(100% - 25px) 50%;
    background-repeat: no-repeat;
    background-size: 16px;
}

.card.b-0 {
    margin-top: 15px;
}

/* switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #04a600;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.custom-card-body {
    background: #ebebeb;
    margin-top: 10px;
}

.b-0 {
    border: 0!important;
}

.privacy-body {
    max-height: 548px;
    overflow-y: auto;
}

.save-privacy {
    color: #FFFFFF;
    background: #d11047;
    margin: 0 0 0 15px;
    padding: 16px 14px;
    float: right;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 14px;
    min-width: 173px;
    border: 0;
    text-shadow: none;
    background-image: none;
    transition: transform .2s ease-in-out,background-color .2s ease-in-out;
}

.cancel-privacy {
    color: #FFFFFF;
    background: #929292;
    margin: 0 0 0 15px;
    padding: 16px 14px;
    float: right;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 14px;
    min-width: 173px;
    border: 0;
    text-shadow: none;
    background-image: none;
    transition: transform .2s ease-in-out,background-color .2s ease-in-out;
}

.logo img {
    width: 75%;
    margin-top: 20px;
}

.regular-checkbox {
	-webkit-appearance: none;
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 9px!important;
	border-radius: 3px;
	display: inline-block;
	position: relative;
    margin-left: 10px!important;
}

.regular-checkbox:active, .regular-checkbox:checked:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.regular-checkbox:checked {
	background-color: #e9ecee;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	color: #99a1a7;
}

.regular-checkbox:checked:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
    top: 2px;
    right: 8px;
	color: #000;
}

.regular-radio {
	-webkit-appearance: none;
    border: 3px solid #a71500;
    border-radius: 10px!important;
	background-color: transparent;
	padding: 6px!important;
	border-radius: 3px;
	display: inline-block;
	position: relative;
    margin-left: 10px!important;
}

.regular-radio:checked {
	background-color: #a71500;
}

.fixtures-found {
    display: flex;
    padding: 0 15px;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.fixtures-found p {
    font-size: 20px;
}

.result-holder {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 1.5rem;
}

.show-header p {
    font-style: italic;
    opacity: .7;
    text-align: center;
}

.show-header h1 {
    text-transform: uppercase;
    font-size: 45px!important;
    text-align: center;
}

.show-builder-list {
    margin-bottom: 20px;
    padding: 15px;
}

.show-builder-list li {
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    background-color: #FFFFFF;
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 20px;
}

.show-builder-list {
    font-weight: 600;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.sb-info p {
    font-weight: 600;
    margin: 0;
}

.sb-info span {
    margin-left: 8px;
}

.show-builder-list .sb-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.sb-actions .sb-details {
    background-color: #ececec;
    font-weight: 600;
    border: 0px;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
}

.sb-actions .sb-edit {
    background-color: #ececec;
    font-weight: 600;
    border: 0px;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
}

.sb-actions .sb-delete {
    background-color: #d11047;
    font-weight: 600;
    border: 0px;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
}

.sb-actions .sb-delete:hover, .sb-edit:hover {
    transform-origin: center 60%;
}

.sb-delete i {
    color: #FFFFFF!important;
    font-size: 18px;
}

.sb-edit i {
    color: #808080!important;
    font-size: 18px;
}

.sb-date {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 10px 20px;
    background-color: #5a5a5a;
    width: max-content;
    text-align: center;
}

.sb-date p {
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    color: #FFFFFF;
}

.sb-date span {
    padding-top: 5px;
    color: #FFFFFF;
}

.new-show-btn {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: #FFFFFF;
    background-color: #d11047;
    font-size: 18px;
    margin-bottom: 20px;
}

.new-show-btn:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.new-show-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.sb-name {
    display: flex;
    flex-direction: column;
    margin-left: 25px;
    justify-content: center;
}

/* animation: wiggle .1s 3 alternate; */

@keyframes wiggle {
    0% { transform: rotate(-2deg); }
    100% { transform: rotate(2deg); }
}

.mlight-holder {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px;
    margin: 20px 0;
    border-radius: 20px;
}

.mlight-holder select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/themes/gearmonkey/assets/images/icon-arow-down-grey.svg');
    background-size: 12px 9px;
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) 50%;
}

.jump_manufacturer {
    background-color: #cc4c68;
    color: #FFFFFF;
    width: 150px;
    white-space: normal;
    padding: 10px 15px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}
.jump_manufacturer:hover {
    color: #FFFFFF;
}

.dt-info p {
    font-weight: 600;
}

.dt-info span {
    font-weight: 400;
}

.add-c {
    background-color: #bf1e41;
    color: #FFFFFF;
    border: 1px solid #884149;
    background-image: url('/themes/gearmonkey/assets/images/add-to-compare.png');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(10% - 10px) 50%;
    padding-left: 30px;
}

.add-sb {
    background-color: #bf1e41;
    color: #FFFFFF;
    border: 1px solid #884149;
    min-width: 220px;
    background-image: url('/themes/gearmonkey/assets/images/pen.svg');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(10% - 10px) 50%;
    padding-left: 30px;
    cursor: pointer;
    border-radius: 4px;
}

.add-sb + span.select2 .select2-selection--single {
    background-color: #bf1e41!important;
    color: #FFFFFF!important;
    border: 1px solid #884149!important;
    min-width: 220px;
    background-image: url('/themes/gearmonkey/assets/images/pen.svg');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(10% - 10px) 50%;
    padding-left: 40px;
    cursor: pointer;
    border-radius: 4px!important;
}  

.add-sb + .select2 .select2-selection__rendered {
    color: #FFFFFF!important;
    font-weight: 400;
}

.find-sb {
    background-color: #109cff;
    color: #FFFFFF;
    border: 1px solid #884149;
    min-width: 220px;
    background-image: url('/themes/gearmonkey/assets/images/magic-stick.png');
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: calc(10% - 20px) 50%;
    padding-left: 35px;
    cursor: pointer;
    border-radius: 4px;
}

.find-sb option {
    background-color: #FFFFFF;
    color: #000;
}

.report-err {
    background-color: #ffa731;
    color: #FFFFFF;
    border: 1px solid #884149;
    background-image: url('/themes/gearmonkey/assets/images/speaker.png');
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: calc(10% - 5px) 50%;
    padding-left: 30px;
}

.command_details {
    background-color: transparent;
}

.command_details i {
    color: #999999;
    font-size: 24px;
}

.sb-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.show-edit-btn {
    background-color: #66bfffc7;
    color: rgb(49, 49, 49);
    border: 1px solid #a71500;
    padding: 8px 25px;
}

.show-edit-btn:hover {
    background-color: #66c0ff;
    color: #000!important;
}

.show-edit .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-edit .show-edit-box {
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    background-color: #FFFFFF;
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 20px;
}

.show-edit .show-edit-box h5 {
    position: relative;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: #bf1e41;
    padding: 10px;
    margin: -10px -15px 15px -15px;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.show-edit-eq-holder {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 25px 15px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    background-color: #FFFFFF;
    padding: 10px 25px;
    /* max-height: 130px; */
}

.show-edit-eq-holder-kb {
    box-shadow: none;
    /* max-height: 130px; */
}

.show-edit-eq-holder span {
    color: #cf5771;
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
}

.moving-fixtures-holder {
    max-height: 415px;
    overflow-y: auto;
    margin-bottom: 50px;
}

.mv-box {
    width: 70px;
    max-height: 120px;
    margin-right: 20px;
}

.show-edit-delete {
    background-color: rgb(255, 140, 140);
    font-weight: 600;
    border: 0px;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
    position: absolute;
    right: 5px;
}

.show-edit-delete-all {
    background-color: rgb(255, 140, 140);
    font-weight: 600;
    border: 0px;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
    position: absolute;
    right: 5px;
}

.show-edit-delete, .show-edit-delete-all i {
    color: rgb(207, 0, 0)!important;
    font-size: 18px;
}

.subtotal-show {
    text-decoration: underline;
    color: #bf1e41;
    margin-bottom: 0;
}

.subtotal-show-builder {
    text-decoration: underline;
    color: #bf1e41;
    margin-bottom: 0;
    font-size: 14px;
}

.show-subtotals-holder span {
    color: #bf1e41;
    text-align: center;
    text-transform: uppercase;
}

.pr80 {
    padding-right: 80px;
}

.custom-fixtures input[type="number"] {
    width: 75px;
}

.custom-fixtures .df-col span {
    display: flex;
    align-items: center;
    color: #000!important;
    justify-content: center;
}

.totals-lighting .totals-lighting-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.totals-lighting .df-col span {
    text-align: center;
    text-transform: uppercase;
    color: #bf1e41;
}

.select2-selection {
    padding: .375rem .75rem;
    color: #495057;
    background-color: #fff!important;
    background-clip: padding-box;
    border: 1px solid #ced4da!important;
    border-radius: .25rem!important;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    min-height: 38px!important;
}

.select2-selection .select2-selection__arrow {
    height: 36px!important;
}

.select2-selection .select2-selection__rendered {
    line-height: 24px!important;
    padding-left: 0!important;
}

.swal-button--danger {
    background-color: #bf1e41!important;
}

/* STEPPER */
.gearmonkey-stepper {
    position: relative;
    width: 100%;
    padding: 35px 15px 15px 15px;
}

.gearmonkey-stepper .stepper-item {
    display: none;
    width: 100%;
}

.gearmonkey-stepper .stepper-item.active {
    display: block!important;
}

.gearmonkey-stepper .gearmonkey-stepper-nav {
    position: absolute;
    top: 15px;
    right: 15px;
}

.w-20 {
    width: 225px !important;
}

.w-16 {
    width: 16%;
}

.product-manufacturer {
    min-height: 24px;
}

#compare-table {
    width: unset!important;
}

#compare-table tbody th, #compare-table tbody td {
    border-right: 1px solid #dee2e6;
}

#compare-table tbody td.strong {
    font-weight: bold;
}

.product-box-img-holder {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
}

.custom-fixtures-save {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    position: absolute;
    left: -30px;
    bottom: 0px;
}

.custom-fixtures-save i {
    font-size: 20px;
}

.go-back-btn {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #d11047;
    border: 1px solid #000;
    border-radius: 5px;
}

.go-back-btn:hover {
    background-color: #d11047;
    border: 1px solid #000;
    color: #000;
}

a.btn:hover {
    text-decoration: unset!important;
}

.product-model {
    min-height: 24px;
}

.dt-absolute {
    position: absolute;
    top: -95px;
}

.details-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem!important;
    position: relative;
}

.for-print {
    display: none;
}

.w-15 {
    width: 15%;
}

.customize-title::placeholder {
    color: #000!important;
}

#details-carousel .carousel-control-next-icon, #edit-equipment-carousel .carousel-control-next-icon {
    background-image: url(/themes/gearmonkey/assets/images/right-arrow-carousel.png)!important;
}

#details-carousel .carousel-control-prev-icon, #edit-equipment-carousel .carousel-control-prev-icon {
    background-image: url(/themes/gearmonkey/assets/images/left-arrow-carousel.png)!important;
}

#details-carousel li {
    border: 2px solid #000;
    width: 18px;
    height: 18px;
    margin: 0 8px;
    border-radius: 40px;
}

#details-carousel li.active {
    border: 2px solid #000;
    background-color: #000;
    width: 18px;
    height: 18px;
    border-radius: 40px;
}

.px-50 {
    padding: 0 50px;
}

.mw-25 {
    min-width: 25%;
}

.tab-padding {
    padding: 25px 50px;
}

.tab-padding p {
    font-weight: 600;
}

.tab-padding span {
    font-weight: 400!important;
}

.show-details label {
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
}

.show-details p, .show-details p small {
    font-size: 16px;
    font-weight: 400;
}

.show-details span{
    color: #cf5771;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
}

.black {
    color: #000!important;
}

.add-more-btn {
    background-color: #ececec;
    font-weight: 600;
    border: 0px;
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;
    -webkit-appearance: button;
    position: absolute;
    top: 5px;
    right: 25px;
    display: flex;
    align-items: center;
    color: #000!important;
}

.add-more-btn:hover {
    background-color: #cacaca;
}

.alternative-header {
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    background-color: #FFFFFF;
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: flex;
    justify-content: flex-end;
}

.add-led-btn {
    background-color: #e2e2e2;
    border: 1px solid #000;
    border-radius: 5px;
    color: #000;
    padding: 5px;
    font-weight: 500;
}

.add-led-btn:hover {
    background-color: #bdbdbd;
    color: #000;
}

.led_wall_totals_title {
    color: #cf5771!important;
}

.led_wall_totals_title span {
    color: #000!important;
    text-transform: none!important;
}

.select2-add-new option[value="NEW"]   { background-image:url('/themes/gearmonkey/assets/images/arrow-down-sign.png');   }

li.select2-result__option {
    position: absolute;
    bottom: 0;
    z-index: 50;
    background-color: #aeaeae;
    width: 100%;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

.regular-checkbox-edit {
	-webkit-appearance: none;
	background-color: #fafafa;
	border: 1px solid #cacece;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
	padding: 12px!important;
	border-radius: 3px;
	display: inline-block;
	position: relative;
    margin-top: 0!important;
}

.regular-checkbox-edit:active, .regular-checkbox:checked:active {
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.regular-checkbox-edit:checked {
	background-color: #e9ecee;
	border: 1px solid #adb8c0;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05), inset 15px 10px -12px rgba(255,255,255,0.1);
	color: #99a1a7;
}

.regular-checkbox-edit:checked:after {
	content: '\2714';
	font-size: 14px;
	position: absolute;
    top: 8px;
    right: 6px;
	color: #000;
}

.edit-page .input-group-prepend {
    margin-left: 20px;
}

.input-group-append .radio-edit {
    background-color: #fafafa;
    border: 1px solid #cacece;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding-left: 0;
    padding-right: 10px;
}

.input-group-addon{
    width: 10%;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555;
    text-align: center;
    border-radius: .25rem 0 0 .25rem;
    border: 1px solid #ced4da;
    border-right: none;
    background: #fff;
}

.input-group-addon:last-child {
    border-right: 1px solid #f1f1f1;
}

.input-group-content{
    width: 90%;
    display: inline-flex;
}

.input-group-content input, .input-group-content select, .input-group-content .select2-selection{
    border-radius: 0px !important;
}

.select2-add-new + .select2-container--default {
    width: 100%!important;
}

.input-group-content input:last-child {
    border-left: 0px;
    border-radius:0 .25rem .25rem 0 !important;
}

.input-group-content .select2:last-child .select2-selection {
    border-radius: 0 .25rem .25rem 0 !important;
}

.breadcrumb_holder {
    position: absolute;
    top: -42px;
    font-size: 14px;
}

.breadcrumb_holder li::after {
    content: '|' !important;
    padding-left: 10px !important;
    color: #c32d4d!important;
}

.breadcrumb_holder li:last-child:after {
    content: ''!important;
}

.breadcrumb_holder .breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.breadcrumb_holder .breadcrumb-item.active {
    cursor: unset;
    color: #c32d4d;
}

.breadcrumb_holder .breadcrumb-item {
    cursor: pointer;
}

.returnToTop {
  display: inline-block;
  background-color: #d11047;
  width: 50px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
  opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
.returnToTop::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 40px;
  color: #fff;
}
.returnToTop:hover {
  cursor: pointer;
  background-color: #333;
}
.returnToTop:active {
  background-color: #555;
}
.returnToTop.show {
  opacity: 1;
  visibility: visible;
}

#jumpToCompare {
  display: inline-block;
  background-color: #d11047;
  width: 200px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 90px;
  transition: background-color .3s, 
  opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  line-height: 40px;
  color: #fff;
  text-transform: uppercase;
}

#jumpToCompare:hover {
  cursor: pointer;
  background-color: #333;
  text-decoration: none;
}
#jumpToCompare:active {
  background-color: #555;
}
#jumpToCompare.show {
  opacity: 1;
  visibility: visible;
}

.compare-table-container {

}
.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

#ot-sdk-btn-floating .ot-floating-button__front.custom-persistent-icon {
    background-image: url('../images/CookieIcon_50x50.png')!important;
    background-color: #cf1047!important;
}

#ot-sdk-btn-floating .ot-floating-button__back {
    background-color: #cf1047!important;
}