.sc-content {
    display: none;
}

.bzm,
.bzm * {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.bzm {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    font: 400 16px sans-serif;
    background: #222;
    background: rgba(55, 58, 71, 0.9);
    opacity: 0;
    -webkit-transform: scale(0) translateZ(0);
            transform: scale(0) translateZ(0);
    -webkit-transition: opacity 300ms ease 300ms, -webkit-transform 0 ease 600ms;
            transition: opacity 300ms ease 300ms, transform 0 ease 600ms;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
}

.bzm--oldie {
    display: none;
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}

.bzm--show {
    opacity: 1;
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
    -webkit-transition: opacity 300ms ease;
            transition: opacity 300ms ease;
}

.bzm--oldie-show {
    display: block;
}

.bzm-dialog {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    max-width: 700px;
    margin: 0 auto;
    color: #222;
    background: #fff;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: -webkit-transform 300ms ease;
            transition: transform 300ms ease;
    will-change: transform;
}

.bzm--oldie .bzm-dialog {
    top: 0;
    bottom: auto;
}

.bzm--show .bzm-dialog {
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: -webkit-transform 300ms ease 300ms;
            transition: transform 300ms ease 300ms;
}

.bzm-header,
.bzm-body,
.bzm-footer {
    padding: 16px;
}

.bzm-header {
    border-bottom: solid 1px #ddd;
}

.bzm-footer {
    border-top: solid 1px #ddd;
    text-align: right;
}

.bzm-title {
    margin: 0;
}

.bzm-header-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    border: 0;
    overflow: hidden;
    text-indent: -200px;
    color: #888;
    background: none;
}

.bzm-header-close:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 1;
    text-indent: 0;
    content: '\00d7';
}

.bzm-header-close:hover,
.bzm-header-close:focus {
    color: #222;
}

.bzm-btn {
    padding: 8px 16px;
    border: solid 1px #fff;
    line-height: 1.4;
    color: #fff;
    background: #4c7eb0;
}

.bzm-btn:hover,
.bzm-btn:focus {
    background: #5b98d5;
}

.bzm-btn:focus {
    outline: #5b98d5 solid 1px;
}

.bzm-btn:active {
    background: #4878a8;
    -webkit-transform: scale(.98);
        -ms-transform: scale(.98);
            transform: scale(.98);
}

.bzm-disable-scroll {
    max-height: 100%;
    overflow: hidden;
}

/*----- Tabs -----*/
.sctabs {
width:100%;
display:inline-block;
}

/*----- Tab Links -----*/
/* Clearfix */
.sctabs .sctab-links {
	margin:0;
	padding:0;
	border-bottom: 1px solid #eee;
}

.sctab-links:after {
	display:block;
	clear:both;
	content:'';
}

.sctab-links li {
	margin:0px;
	float:left;
	list-style:none;
}

.sctab-links a {
	background: #eee none repeat scroll 0 0;
    color: #000;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin: 0 2px;
    padding: 7px 8px;
    transition: all 0.15s linear 0s;
}

.sctab-links a:hover {
	background:#a7cce5;
	text-decoration:none;
}

.sctab-links li.active a, .sctab-links li.active a:hover {
	background:#333;
	color:#fff;
}

/*----- Content of Tabs -----*/

.sctab {
	display:none;
}

.size-chart-thumb {
	width:100%;
	height:auto;
}

.sctab.active {
	display:block;
}

.sctab-content ul.measure {
	margin:0 0 10px;
	padding:0;
}

.sctab-content ul.measure li {
	margin:0;
	padding:3px 0 0;
	display:block;
	list-style-type:none;
}

.sctab-content ul.measure li span {
	background: #f9f9f9 none repeat scroll 0 0;
    border-bottom: 1px solid #ddd;
    display: block;
    float: left;
    font-weight: bold;
    margin: 0 0 3px;
    padding: 5px;
    width: 100%;
}

.sctab-content ul.measure-child {
	margin:0;
	padding:0;
}

.sctab-content ul.measure-child li {
	border: 1px solid #eee;
    display: inline-block;
    list-style-type: none;
    margin: 0 1px 0 0;
    min-width: 45px;
    padding: 5px;
    text-align: center;
    text-transform: uppercase;
}

.sctab-content ul.measure-child li.color {
	background:#f9f9f9;
}

@media only screen and (max-width: 479px) {
	.sctab-content ul.measure li span {
		width:100%;
	}
	.sctab-links li, .sctab-links li a {
		width:100% !important;
	}
	.sctab-content ul.measure-child li {
		min-width: 49.5px;
	}
}