
.headerNav, .stickyNavWrap{display:none;}

.tab-container {
    width: 752px;
    margin: 30px auto;
    display: flex;
    box-sizing: border-box;
}

.tab-item {
    width: 376px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.tab-item.active {
	border: 1px solid #000;
	box-sizing: border-box;
    background-color: #fff;
    color: #000;
    
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


@media screen and (max-width: 752px) {
    .tab-container {
        width: 95%;
    }
    .tab-item {
        width: 50%;
        font-size: 16px;
    }

	.tab-content .pay_step .inline{
		display: block;
		text-indent: -1rem;
        padding-left: 1rem;
	}
}