﻿.col-3 {
	display: block;
	width: 100%;
}

.text-1 {
	font-size: 45px;
}

.text-2 {
	font-size: 24px;
	font-weight: 300;
}

.text-3 {
	font-size: 20px;
}

.text-4 {
	font-size: 14px;
	font-weight: 300;
}

.title-1 {
	border-bottom: 1px solid #ccc;
	color: #999;
	font-size: 16px;
	margin-bottom: 6.5px;
}

.table-overflow {
    overflow-x: scroll;
}

.no-padding {
    padding: 0 !important;
}

@media(min-width:640px) {
    .title-1 {
        font-size: 15px;
    }
}

.tab-box .title-2 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 13px;
    position: relative;
}

.tab-box .title-2::after {
    content: '';
    width: 20px;
    height: 3px;
    background-color: var(--secondary-color);
    position: absolute;
    top: 115%;
    left: 0;
}

@media(min-width:640px) {
	.title-2 {
		font-size: 20px;
		margin-bottom: 19.5px;
	}
}

.value-1 {
	color: var(--primary-color);
	display: inline-block;
	font-size: 28px;
	line-height: 26px;
	position: relative;
}

@media(min-width:640px) {
	.value-1 {
		font-size: 28px;
	}
}

.value-1.right {
	float: right;
}

.value-1 .legend {
	color: #ccc;
	font-size: 14px;
	line-height: 13px;
	position: absolute;
	left: 0;
	top: 100%;
}

.value-1.right .legend {
	left: auto;
	right: 0;
}

.simple-box {
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #ccc;
	margin-bottom: 19.5px;
	padding: 19.5px;
}

@media(min-width:640px) {
    .simple-box {
        border: 1px solid #ccc;
        padding: 26px;
        flex-grow: 1;
    }
}

@media(min-width:1024px) {
	.simple-box {
		margin-bottom: 26px;
	}
}

.tab-box {
	margin-bottom: 13px;
}

@media(min-width:1024px) {
	.tab-box {
		margin-bottom: 26px;
		max-width: 100%;
	}
}

.tab-box .tab-labels {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

	.tab-box .tab-labels .tab-label {
		border-bottom: 1px solid #ccc;
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		color: var(--primary-color);
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		font-size: 12px;
		font-weight: 300;
		line-height: 13px;
		padding: 5px;
		text-align: center;
	}

@media(min-width:640px) {
	.tab-box .tab-labels .tab-label {
		padding: 0;
		font-size: 16px;
		line-height: 26px;
	}
}

.tab-box .tab-labels .tab-label.active {
	border-color: #ccc;
	border-bottom: 1px solid #fff;
	font-weight: 400;
}

.tab-box .tab-labels .tab-label:last-child {
	border-right: 1px solid #ccc;
}

.tab-box .tab-labels .tab-label.active + .tab-label {
    border-left: 1px solid #ccc;
}

.tab-box .tab-labels .tab-label.active:last-child {
    border-right: 1px solid #ccc;
}

.tab-box .tab-contents {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 13px;
}

@media(min-width:1024px) {
	.tab-box .tab-contents {
		padding: 26px;
	}
}

.tab-box .tab-contents .tab-content {
	display: none;
}

	.tab-box .tab-contents .tab-content.active {
		display: block;
	}

.td-1 .item {
	padding: 19.5px 0;
}


@media(max-width:639px) {
	.td-1 .item {
		border-bottom: 1px solid #ccc;
	}

		.td-1 .item:last-child {
			border-bottom: 1px solid #fff;
		}
}

@media(min-width:640px) {
	.td-1 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

		.td-1 .item {
			padding: 26px;
			-ms-flex-preferred-size: 50%;
			flex-basis: 50%;
			width: 50%;
		}
}

@media(min-width:640px) and (max-width:1023px) {
	.td-1 .item:nth-child(odd) {
		border-right: 1px solid #ccc;
	}

	.td-1 .item:nth-child(1), .td-1 .item:nth-child(2) {
		border-bottom: 1px solid #ccc;
	}
}

@media(min-width:1024px) {
	.td-1 {
		border-top: 0 !important;
		margin-top: -32px;
	}

		.td-1 .item {
			-ms-flex-preferred-size: 25%;
			flex-basis: 25%;
			padding: 0 26px;
			width: 25%;
		}

			.td-1 .item:first-child {
				padding-left: 0;
			}

			.td-1 .item:last-child {
				padding-right: 0;
			}

			.td-1 .item:nth-child(2), .td-1 .item:nth-child(3), .td-1 .item:nth-child(4) {
				border-left: 1px solid #ccc;
			}
}

@media(min-width:1024px) {
	.main-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		max-width: 100vw;
		overflow-x: hidden;
	}

		.main-wrapper .sidebar {
			-ms-flex-preferred-size: 280px;
			flex-basis: 280px;
			min-width: 280px;
			width: 280px;
		}

		.main-wrapper .main {
			-webkit-box-flex: 1;
			-ms-flex-positive: 1;
			flex-grow: 1;
			-ms-flex-preferred-size: calc(100% - 280px);
			flex-basis: calc(100% - 280px);
			max-width: calc(100% - 280px);
			width: calc(100% - 280px);
		}
}

.main {
	padding-top: 19.5px;
}

@media(min-width:640px) {
	.main {
		padding: 26px;
	}
}

@media(min-width:640px) {
	.main .row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		max-width: 100%;
	}

		.main .row .col-1 {
			-ms-flex-preferred-size: 100%;
			flex-basis: 100%;
			max-width: 100%;
			width: 100%;
		}

		.main .row .col-1-2 {
			-ms-flex-preferred-size: calc(50% - 10px);
			flex-basis: calc(50% - 10px);
			max-width: calc(50% - 10px);
			width: calc(50% - 10px);
		}
}

@media(min-width:1024px) {
	.main .row .col-1, .main .row .col-1-2 {
		-ms-flex-preferred-size: calc(1 / 3 * 100% - 13px);
		flex-basis: calc(1 / 3 * 100% - 13px);
		max-width: calc(1 / 3 * 100% - 13px);
		width: calc(1 / 3 * 100% - 13px);
	}

	.main .row .col-2 {
		-ms-flex-preferred-size: calc(50% - 10px);
		flex-basis: calc(50% - 10px);
		max-width: calc(50% - 10px);
		width: calc(50% - 10px);
	}

	.main .row .col-3 {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
		width: 100%;
	}
}

@media(min-width:1024px) {
	.jarvis-sidebar .main-menu ul li:nth-child(5),
	.jarvis-sidebar .main-menu ul li:nth-child(6),
	.jarvis-sidebar .main-menu ul li:nth-child(7),
	.jarvis-sidebar .main-menu ul li:nth-child(8) {
		border-bottom: 1px solid var(--primary-color);
	}
	.jarvis-sidebar .main-menu ul li:nth-child(9) {
		border-right: 1px solid var(--primary-color);
	}
}


/*
    Styles Card Volume 
 */
.card .item {
    padding-left: 0;
    margin-top: -25px;
}

.card {
    /*width: 32.5%;*/
    height: 400px;
}

.span-values {
    border-bottom: 1px solid #ccc;
    color: #999;
    font-size: 12px;
    margin-bottom: 15px;
}

.color {
    margin-top: 6px;
    position: relative;
    float: right;
    width: 5%;
    height: 10px;
}

.data-val {
    margin-right: 3%;
    float: right;
    font-size: 15px;
    font-weight: bold;
    color: var(--primary-color);
}

.data {
    margin-bottom: 6px;
}

.color-visa {
    background: #D7DF23;
}

.color-mastercard {
    background: #ED1C24;
}

.color-discover {
    background: #B3B3B3;
}

.color-amex {
    background: var(--primary-color);
}

.color-debit {
    background: #662D91;
}

.color-other {
    background: #009245;
}

#boxPciStatus {
    height: 110px;
    background-color: red;
    width: 100%;
}

#boxMoney {
    margin-top: 10px;
    width: 100%;
    background-color: #d9d9d9;
    height: 280px;
}

.lblPciStatus {
    font-size: 20px;
    padding-left: 20px;
    padding-top: 12px;
    color: #fff;
}

.lblNotComplaint {
    float: right;
    font-size: 42px;
    font-family: sans-serif;
    padding-right: 15px;
    color: #fff;
    font-weight: bold;
}

/*.data-values-pie {
    width: 60%;
    float: left;
}*/

.pie-graph {
    width: 35%;
    float: right;
}

#lblCongrats {
    font-size: 25px;
    text-align: center;
    color: #20437e;
    padding-top: 32px;
}

#lblDescribe {
    text-align: center;
    color: #666666;
    font-size: 20px;
}

#lblMoney {
    font-size: 42px !important;
    font-family: sans-serif;
    color: #666666;
}

@media screen and (max-width: 1400px) {
    .lblNotComplaint {
        font-size: 30px;
    }

    .lblPciStatus {
        font-size: 13px;
    }

    .data-values-pie {
        width: 100% !important;
    }

    .pie-graph {
        width: 100% !important;
    }

    .data {
        margin-bottom: 2px;
    }

    /*.pie-graph {
        width: 150px !important;
        height: 150px !important;
    }*/

    #lblCongrats {
        padding-top: 15px;
    }
}


/* Support tickets */

.btn-box {
    width: 250px;
    height: 250px;
    border: 3px solid #1d417d;
    box-shadow: 1px 1px #bbb;
    cursor: pointer;
    text-decoration: none !important;
}

.box-icon {
    text-align: center;
}

.btn-box img {
    display: inline-block;
    height: auto;
    width: 60%;
}

.lblBoxButtons {
    margin-top: 12px;
    font-size: 25px;
    text-align: center;
    text-decoration: none;
    color: #1d417d;
    text-transform: uppercase;
}
.lblBoxButtonsCallUs {
	padding-bottom: 19px;
}

/* Coming soon */
.box-coming-soon {
    width: 215px;
    height: 215px;
	box-shadow: 1px 1px #bbb;
    cursor: pointer;
    text-decoration: none !important;
    background-color: #1d417d;
    border: 1px solid #fff;
    border-style: double;
    border-width: 4px;
    margin-left: 30%;
}

.lbl-box-coming-soon {
    text-align: center;
    font-size: 40px;
    margin-top: 35px;
    color: #fff;
    text-transform: uppercase;
    font-family: sans-serif;
}

/* Call Us modal */
.icon-call-us {
    position: relative;
    float: right;
    width: 5%;
    height: 10px;
    color: #1d417d;
}

.number-phone-call-us {
    margin-right: 3%;
    float: left;
    font-size: 23px;
    font-weight: bold;
    color: #1d417d;
}

.container-call-us {
    padding: 22px;
}

.values-call-us {
    padding: 20px;
}

/* title */

.title-section {
    font-size: 20px;
    color: #1d417d;
    text-transform: uppercase;
}


/*Merchant Portal*/

.tab-box .tab-labels .tab-label-portal {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    color: var(--primary-color);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 12px;
    font-weight: 300;
    line-height: 13px;
    padding: 5px;
    text-align: center;
}

@media(min-width:640px) {
    .tab-box .tab-labels .tab-label-portal {
        padding: 0;
        font-size: 16px;
        line-height: 26px;
    }
}


.tab-box .tab-labels .tab-label-portal.active {
    border-color: #ccc;
    border-top: 1px solid #fff;
    font-weight: 400;
}

.tab-box .tab-labels .tab-label-portal:last-child {
    border-right: 1px solid #ccc;
}

.tab-box .tab-labels .tab-label-portal.active + .tab-label-portal {
    border-left: 1px solid #ccc;
}

.tab-box .tab-labels .tab-label-portal.active:last-child {
    border-right: 1px solid #ccc;
}
.tab-box .tab-labels .tab-label-portal:first-child {
    border-left: 1px solid #ccc;
}

.tab-box .tab-contents-portal {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 13px;
}

@media(min-width:1024px) {
    .tab-box .tab-contents-portal {
        padding: 26px;
    }
}

.tab-box .tab-contents-portal .tab-content {
    display: none;
}

.tab-box .tab-contents-portal .tab-content.active {
    display: block;
}

.tab-contents-portal .tab-content {
    margin-top: -20px;
}

.box-portal {
    margin-top: -50px !important;
}

.margin-span {
    margin-bottom: 8px;
}

.box-merchant-portal {
    width: 49%;
}

/* Styles my Account */
#tabsMyAccount .list-tabs {
	text-transform: uppercase;
	width: 100%;
}
#tabsMyAccount .tab-items {
	font-size: 16px;
	line-height: 26px;
	border-bottom: 1px solid var(--primary-color);
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-top: 1px solid #ccc;
	color: var(--primary-color);
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-weight: 300;
	line-height: 13px;
	padding: 5px;
	text-align: center;
	width: 25%;
}
#tabsMyAccount li.active {
	border-color: var(--primary-color);
	border-bottom: 1px solid #fff;
	font-weight: 400;
}
#tabsMyAccount .tab-content {
	border-bottom: 1px solid var(--primary-color);
	border-left: 1px solid var(--primary-color);
	border-right: 1px solid var(--primary-color);
}

#tabsMyAccount #merchant-info-widget .control-label {
	margin-top: 12px;
}

#tabsMyAccount #btnCancelOwner {
	margin-left: 15px;
}

.responsible-table--principal-row {
    display: table;
    width: 100%;
}

.responsible-table--wrappable-row {
    display: table-cell;
    width: 50%;
    border-bottom: 1px solid #eee;
}

@media (max-width: 1024px) {

    .responsible-table--wrappable-row {
        display: table-cell;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
}
