/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.caption.huge {
		font-size: 40px !important;
	}

	.caption.big {
		font-size: 32px !important;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
	.bx-theme-blue .bx-logo {
		background-color: #292d2e;
	}

    .bx-logo {
        min-width: 320px;
    }

    .bx-aside-nav-control {
        top: 10px !important;
    }

    .bx-aside-nav {
        padding-top: 120px !important;
    }

    .scheme_container2 {
        height: 300px;
        overflow: scroll;
        margin-bottom: 10px;
    }

    .parts_holder {
        height: auto !important;
        overflow: auto !important;
    }

    .modal-dialog {
        margin: 75px auto !important;
    }

    .search_holder {
        display: none;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
    .bx-aside-nav-control {
        top: 7px !important;
    }
}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
	.bx-wrapper {
		min-width: 320px;
		width: 320px;
	}
}

/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .bx-theme-blue .bx-logo {
        background-color: #fff;
    }

    .bx-logo {
        min-width: auto;
    }

    .search_holder {
        width: 155px;
        right: 15px;
        top: 17px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .search_holder {
        width: 220px;
        right: 18px;
        top: 22px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	.bx-subscribe-holder {
		max-width: 300px;
	}

    .search_holder {
        width: 248px;
        right: 20px;
        top: 26px;
    }
}