/* CSS Document
Description: sticky CSS
Author: Soft Do
Version: 1.0
*/

.sticky {

}

.sticky-wrap{
	box-sizing: border-box;
}

.sticky.sticky-fixed.is-sticky {
	margin-top: 0;
	margin-bottom: 0;
	position: fixed;
}

.sticky.sticky-fixed.is-sticky:not([style*="margin-top"]) {
	margin-top: 0 !important;
}
.sticky.sticky-fixed.is-sticky:not([style*="margin-bottom"]) {
	margin-bottom: 0 !important;
}

@media screen and (min-width: 992px) {
	.sticky.sticky-fixed.is-sticky{
		width: 239.96px!important;
	}
}
@media screen and (min-width: 1200px) {
	.sticky.sticky-fixed.is-sticky{
		width: 202.5px!important;
	}
}