@font-face {
	font-family: 'Fellix';
	src: url('/fonts/Fellix-Regular.eot');
	src: url('/fonts/Fellix-Regular.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Fellix-Regular.woff2') format('woff2'),
		url('/fonts/Fellix-Regular.woff') format('woff');
	font-weight: normal;
}

@font-face {
	font-family: 'Fellix';
	src: url('/fonts/Fellix-Light.eot');
	src: url('/fonts/Fellix-Light.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Fellix-Light.woff2') format('woff2'),
		url('/fonts/Fellix-Light.woff') format('woff');
	font-weight: 300;
}

@font-face {
	font-family: 'Fellix';
	src: url('/fonts/Fellix-Medium.eot');
	src: url('/fonts/Fellix-Medium.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Fellix-Medium.woff2') format('woff2'),
		url('/fonts/Fellix-Medium.woff') format('woff');
	font-weight: 500;
}

@font-face {
	font-family: 'Fellix';
	src: url('/fonts/Fellix-SemiBold.eot');
	src: url('/fonts/Fellix-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Fellix-SemiBold.woff2') format('woff2'),
		url('/fonts/Fellix-SemiBold.woff') format('woff');
	font-weight: 600;
}

@font-face {
	font-family: 'Fellix';
	src: url('/fonts/Fellix-Bold.eot');
	src: url('/fonts/Fellix-Bold.eot?#iefix') format('embedded-opentype'),
		url('/fonts/Fellix-Bold.woff2') format('woff2'),
		url('/fonts/Fellix-Bold.woff') format('woff');
	font-weight: bold;
}

:root {
--font-family: 'Fellix', sans-serif;

--primary-color: #001b74;
--primary-color-300: #003599;
--primary-color-500: #4275d1;
--primary-color-600: #7ba5e9;
--primary-color-700: #b0c9f2;

--secondary-color: #218d93;
--secondary-color-300: #63cdd4;

--danger-color: #dc3545;

--neutral-color: #2a2a2a;
--neutral-color-50: #888888;
--neutral-color-100: #cccccc;
--neutral-color-200: #e3e4e8;
--neutral-color-400: #eef0f2;
--neutral-color-400: #eef0f2;
--neutral-color-500: #f7f2ed;
--neutral-color-600: #f2f4f6;

--warning-color: #FF8946;

--body-background-color: var(--neutral-color-400);
--body-font-family: var(--font-family);
--body-font-size: 1rem;
--body-text-color: var(--primary-color);

--border-radius-sm: 3px;
--border-radius-md: 14px;
--border-radius-lg: 21px;
--border-radius-xl: 100px;
--border-all-radius-sm: 3px;
--border-all-radius-md: 14px;
--border-all-radius-lg: 21px;
--border-all-radius-xl: 100px;
}


/* reset styles */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}

body {
line-height: normal;
}

ol, ul {
list-style: none;
}

blockquote, q {
quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

.clearfix:after {
clear: both;
content: ".";
display: block;
font-size: 0;
height: 0;
line-height: 0;
visibility: hidden;
}

.clearfix {
display: block
}

/* content */
html,
body {
height: 100%;
}

body {
color: var(--primary-color);
font-family: var(--font-family);
background-color: var(--body-background-color);
font-size: var(--body-font-size);
min-width: 320px;
-webkit-text-size-adjust: none;
}

#container {
height: 100%;
display: flex;
flex-flow: column nowrap;
}

b, strong {
font-weight: 600;
}

h1,
.form-section h2 {
font-size: 32px;
padding-bottom: 15px;
color: var(--primary-color);
font-weight: 600;
line-height: 1.1;
}

h3 {
font-size: 26px;
font-weight: 600;
}

a {
color: var(--primary-color-300);
text-decoration: none;
outline: none;
text-decoration: underline;
transition: color .3s;
}

a:hover {
color: var(--primary-color-500);
}

input[type=text],
input[type=password],
textarea {
font-family: var(--font-family);
min-height: 52px;
padding: 13px 25px 15px 25px;
background-color: #ffffff;
border: 2px solid var(--primary-color);
border-radius: var(--border-all-radius-sm);
color: var(--primary-color);
font-size: 17px;
box-sizing: border-box;
}

input[type=password] {
font-size: 12px;
}

input[type=text]:focus-visible,
input[type=password]:focus-visible,
textarea:focus-visible {
outline: none;
}

textarea {
resize: none;
}

input[type=text]:disabled,
input[type=password]:disabled,
textarea:disabled,
.button-link.disabled {
opacity: 0.5;
}

input[type=submit],
input[type=button],
button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 42px;
margin: 0;
padding: 6px 40px 8px 40px;
background-color: var(--warning-color);
border: none;
border-radius: var(--border-all-radius-lg);
font-size: 18px;
font-weight: 400;
font-family: var(--font-family);
color: #ffffff;
line-height: 1;
outline: none;
cursor: pointer;
transition: background-color .3s, color .3s, border-color .3s;
}

input[type=submit]:hover:not(:disabled),
input[type=button]:hover:not(:disabled),
button:hover:not(:disabled),
.button:hover:not(:disabled)  {
background-color: var(--primary-color);
}

input[type=submit]:disabled,
input[type=button]:disabled,
button:disabled {
opacity: 0.5;
cursor: default;
}

input[type=submit].alt,
input[type=button].alt,
button.alt {
border: 2px solid var(--primary-color);
background: transparent;
color: var(--primary-color);
}

input[type=submit].alt:hover,
input[type=button].alt:hover,
button.alt:hover {
background: transparent;
border-color: var(--primary-color-500);
color: var(--primary-color-500);
}

button.next span {
padding-right: 30px;
background: url(/css/main_img/button_next.svg) no-repeat scroll right 5px;
background-size: 16px auto;
}

button.prev span {
padding-left: 30px;
background: url(/css/main_img/button_prev.svg) no-repeat scroll left 5px;
background-size: 16px auto;
}

button.prev:hover span {
background: url(/css/main_img/button_prev_hover.svg) no-repeat scroll left 5px;
background-size: 16px auto;
}

button.dark {
min-height: 36px;
border: 2px solid var(--primary-color);
font-size: 16px;
background: transparent;
color: var(--primary-color);
}

button.dark:hover {
background: transparent;
border-color: var(--primary-color-500);
color: var(--primary-color-500);
}

button.indent-left {
margin-left: 10px;
}

.cancel-link {
color: var(--primary-color);
font-size: 16px;
text-decoration: underline;
margin-left: 20px;
display: inline-block;
}

canvas {
overflow: visible;
}

select {
height: 40px;
padding: 0 18px;
background: #ffffff;
border: 2px solid var(--primary-color-300);
border-radius: var(--border-all-radius-sm);
color: var(--primary-color);
font-family: var(--font-family);
font-size: 16px;
box-sizing: border-box;
transition: border-color .3s, color .3s;
}

select:hover {
border-color: var(--primary-color-500);
color: var(--primary-color-500);
}

select option {
padding: 2px 6px;
color: var(--primary-color);
}

label {
position: relative;
}

.align-left {
text-align: left;
}

.align-right {
text-align: right;
}

.align-center {
text-align: center;
}

.float-left {
float: left;
}

.float-right {
float: right;
}

.float-none {
float: none;
}

.indent-right {
padding-right: 20px;
}

.table {
display: table;
}

.table-row {
display: table-row;
}

.table-cell {
display: table-cell;
}

.download-iframe {
height: 1px;
left: -9000px;
position: absolute;
top: -9000px;
width: 1px;
}

.header-top {
background: var(--neutral-color-600);
box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.header-content {
max-width: 1140px;
padding: 0px 14px;
margin: 0 auto;
}

#header .logo {
float: left;
padding: 6px 0 10px 0px;
position: relative;
z-index: 1;
}

#header .logo a {
display: inline-block;
height: 56px;
padding: 12px 0;
}

#header .logo a img {
display: inline-block;
height: 32px;
width: auto;
margin-top: 12px;
}

#header .details {
float: right;
margin-top: 12px;
font-weight: 600;
font-size: 14px;
line-height: 30px;
color: var(--primary-color);
}

#header .details > div {
float: left;
margin-left: 30px;
}

#header .details > div:first-child {
margin-left: 0;
}

#header .details .logout a {
background: url(/css/main_img/logout.svg) no-repeat scroll right center;
background-size: auto 18px;
display: inline-block;
text-decoration: none;
padding-right: 25px;
color: inherit;
border-bottom: 2px solid transparent;
}

#header .details .logout a:hover {
border-color: var(--primary-color);
}

#header .header-menu {
float: left;
margin: 22px 0 0 50px;
}

#header .header-menu li {
float: left;
margin-left: 30px;
}

#header .header-menu li a {
display: block;
height: 47px;
line-height: 50px;
font-weight: 400;
font-size: 17px;
color: var(--primary-color);
border-bottom: 3px solid transparent;
text-decoration: none;
}

#header .header-menu li a:hover {
border-color: var(--primary-color);
}

.content-width {
max-width: 1140px;
padding: 40px 15px;
margin: 0 auto;
}

.content-max-width {
max-width: 750px;
}

#footer {
margin-top: auto;
}

#footer .footer-contact {
background: var(--neutral-color-600);
font-size: 16px;
}

#footer .footer-contact svg {
fill: currentcolor;
vertical-align: middle
}

#footer .footer-contact .content-width {
padding-bottom: 0;
}

#footer .footer-contact .footer-contact-row {
display: flex;
flex-wrap: wrap;
}

#footer .footer-contact .footer-contact-column {
width: 100%;
box-sizing: border-box;
}

#footer .footer-contact .footer-contact-column.column-1 {
width: 36%;
padding-right: 30px;
padding-bottom: 40px;
}

#footer .footer-contact .footer-contact-column.column-2 {
width: 40%;
padding-right: 30px;
padding-bottom: 40px;
}

#footer .footer-contact .footer-contact-column.column-3 {
width: 28%;
}

#footer .footer-contact .footer-contact-column h4 {
font-size: 30px;
margin-bottom: 20px;
font-weight: 600;
}

#footer .footer-contact .footer-menu li {
margin-bottom: 12px;
}

#footer .footer-contact .footer-menu li:last-child {
margin-bottom: 0;
}

#footer .footer-contact .footer-menu li a {
text-decoration: none;
}

#footer .footer-contact .contact-list li {
margin-bottom: 8px;
}

#footer .footer-contact .contact-list li:last-child {
margin-bottom: 0;
}

#footer .footer-contact .contact-list li label {
margin-left: 10px;
display: inline-block;
}

#footer .footer-contact .contact-list li svg {
position: relative;
top: 2px;
vertical-align: top;
}

#footer .footer-contact .footer-contact-column.column-3 img {
display: block;
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}

#footer .footer-bottom {
font-size: 14px;
}

#footer .footer-bottom .content-width {
text-align: center;
}

#footer .footer-bottom .copyright {
font-size: 16px;
padding-bottom: 20px;
}

#footer .footer-bottom .privacy-policy a {
margin-left: 5px;
display: inline-block;
}

/* tabs */
.content-tabs {
position: relative;
}

.content-tabs .tabs-container {
position: absolute;
top: -60px;
left: 0;
width: 100%;
}

.content-tabs .tabs-wrapper {
max-width: 1140px;
margin: 0 auto;
padding: 0 15px;
}

.content-tabs.no-tab-drop .tabs-wrapper {
overflow: hidden;
height: 50px;
}

.content-tabs .tabs-holder {
margin-left: 220px;
}

.content-tabs .tabs {
position: relative;
z-index: 9;
float: right;
height: 50px;
}

.content-tabs .tabs.with-dropdown {
padding-right: 100px;
}

.content-tabs li {
float: left;
border-top: 1px solid var(--neutral-color-200);
}

.content-tabs li:first-child {
border-top: none;
}

.content-tabs .tabs > li {
position: relative;
z-index: 1;
border: none;
margin-left: 30px;
}

.content-tabs .tabs > li:first-child,
.content-tabs .tabs.with-dropdown > li:nth-child(2) {
margin-left: 0;
}

.content-tabs .tabs > li.menu-toggler {
position: static;
margin-left: 0;
}

.content-tabs .tabs > li.menu-toggler a {
position: relative;
z-index: 1;
}

.content-tabs .tabs > li.menu-toggler ul {
display: none;
position: absolute;
left: 0px;
min-width: 200px;
background: var(--neutral-color-600);
box-shadow: 0 1px 2px 0 rgba(0,0,0,0.25);
}

.content-tabs .tabs > li.menu-toggler ul li {
display: block;
float: none;
}

.content-tabs .tabs > li.menu-toggler li.current a {
color: var(--primary-color);
}

.content-tabs li a {
display: block;
height: 47px;
line-height: 50px;
font-weight: 400;
font-size: 17px;
color: var(--primary-color);
border-bottom: 3px solid transparent;
text-decoration: none;
}

.content-tabs li:not(.disabled) a:hover {
border-color: var(--primary-color);
}

.content-tabs li:not(.disabled).active a,
.content-tabs li:not(.disabled).active a:hover {
border-color: var(--primary-color-500);
color: var(--primary-color-500);
}

.content-tabs li.logout {
display: none;
}

.content-tabs li.logout a span {
display: inline-block;
padding-left: 28px;
background: url(/css/main_img/logout.svg) no-repeat scroll 0 center;
background-size: auto 16px;
}

.content-tabs li a span {
display: block;
cursor: pointer;
}

.content-tabs li.tab-drop > a {
position: relative;
padding: 0;
z-index: 1001;
text-align: right;
min-width: 40px;
}

.content-tabs li.menu-toggler > a > span,
.content-tabs li.tab-drop > a > span {
cursor: pointer;
display: inline-block;
text-align: left;
padding-left: 25px;
background: url(/css/main_img/menu_icon.svg) no-repeat scroll 0 center;
background-size: 16px auto;
}

.content-tabs li.tab-drop > a > span {
background: url(/css/main_img/arrow.svg) no-repeat scroll left center;
background-size: 14px auto;
}

.content-tabs li.tab-drop > a > span {
padding-bottom: 3px;
}

.content-tabs li.tab-drop.expanded > a > span {
background: url(/css/main_img/close_menu_icon.svg) no-repeat scroll 0 center;
background-size: 12px auto;
}

.content-tabs li.menu-toggler a:hover,
.content-tabs li.tab-drop > a:hover {
border-color: transparent;
}

.content-tabs li.menu-toggler ul li a,
.content-tabs li.tab-drop ul li a {
border: none;
padding: 15px 26px;
line-height: 1.3;
height: auto;
font-size: 16px;
}

.content-tabs li.disabled a {
color: var(--neutral-color-50);
opacity: 0.7;
}

.content-tabs li.disabled a span {
cursor: default;
}

/* form inputs */
.input-row .label {
padding-bottom: 8px;
font-size: 17px;
font-weight: 600;
line-height: 1.1;
color: var(--primary-color);
}

.input-row .label.multiline {
padding-top: 0;
}

.input-row .input,
.input-row .text,
.submit-buttons {
width: 310px;
}

#LoginForm .input-row .input,
#LoginForm .input-row .text,
#LoginForm .submit-buttons {
width: 450px;
}

.input-row .input,
.submit-buttons {
line-height: 1.5;
}

.input-row.wide .label {
width: 160px;
}

.input-row.wide .input,
.input-row.wide .text {
padding-left: 170px;
}

.input-row .input {
padding-bottom: 6px;
}

.input-row .input input[type=text],
.input-row .input input[type=password],
.input-row .input textarea {
width: 100%;
box-sizing: border-box;
}

#LoginForm .input-row .input input[type=text]:focus,
#LoginForm .input-row .input input[type=password]:focus {
border-width: 2px;
}

.input-row .input.zip {
width: 120px;
float: left;
padding-left: 10px;
}

.input-row .input.zip input[type=text] {
width: 100px;
}

.input-row .input.city {
width: 200px;
float: left;
padding-left: 0;
}

.input-row .input.city input[type=text] {
width: 188px;
}

.input-row .text {
padding-top: 10px;
}

.button-prefix {
padding: 0 10px;
}

.input-row.invalid,
.table-cell.invalid  {
color: var(--danger-color);
}

.input-row.invalid .input input[type=text],
.input-row.invalid .input input[type=password],
.input-row.invalid .input .dropdown-button,
.dropdown-container.invalid .dropdown-button,
.table-cell.invalid .dropdown-button {
border-color: var(--danger-color);
}

.input-row .radio {
padding-top: 4px;
}

.input-row .radio.no-label {
padding-left: 0;
}

.input-row .radio .item-info {
margin-bottom: -6px;
}

.radio-label {
display: inline-block;
min-width: 95px;
}

.input-row .inline-radio {
float: left;
padding-right: 30px;
}

.input-description {
padding: 8px 12px 10px 12px;
background-color: var(--neutral-color-500);
border-radius: var(--border-all-radius-sm);
font-size: 15px;
}

.submit-buttons {
width: 310px;
}

.submit-buttons.align-left {
text-align: left;
}

.separator {
height: 10px;
line-height: 10px;
font-size: 10px;
}

.separator.double {
height: 14px;
}

.input-separator {
display: inline-block;
width: 20px;
height: 10px;
}

.add-link {
padding: 4px 0;
display: inline-block;
line-height: 1.3;
text-align: left;
font-size: 16px;
}

.edit-link,
.new-subscription-link {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 32px;
margin-top: 10px;
padding: 2px 16px 4px 16px;
color: var(--primary-color);
text-decoration: none;
border: 2px solid var(--primary-color);
border-radius: var(--border-all-radius-lg);
transition: color .3s, border-color .3s;
}

.edit-link:hover,
.new-subscription-link:hover {
border-color: var(--primary-color-500);
color: var(--primary-color-500);
}

.tab-content.consumption .new-subscription-link {
display: flex;
justify-content: start;
}

.tab-content.consumption .new-subscription-link.first {
margin-top: 30px;
}

.edit-link.multi,
.new-subscription-link.multi {
margin-right: 15px;
}

.new-subscription .new-number .dropdown-content {
width: 315px;
max-height: 268px;
}

.new-subscription .new-number .dropdown-content-header {
margin-bottom: 6px;
padding: 5px;
}

.new-subscription .new-number .dropdown-content-header button {
margin-left: 10px;
min-width: 80px;
display: inline-block;
vertical-align: top;
font-size: 14px;
}

.new-subscription .new-number .dropdown-content-header input[type=text] {
display: inline-block;
width: 170px;
min-height: 42px;
padding: 10px 20px 12px 20px;
vertical-align: top;
font-size: 15px;
}

.new-subscription .new-number .dropdown-content-body {
position: relative;
min-height: 109px
}

.new-subscription .new-number .dropdown-content-body.data-loading:after {
position: absolute;
content: '';
width: 32px;
height: 32px;
top: 50%;
left: 50%;
margin-left: -16px;
margin-top: -16px;
background: url(/css/main_img/progress_indicator.svg) no-repeat 0 0;
background-size: 32px 32px;
animation: 1s rotate infinite;
}

.new-subscription .new-number .dropdown-content-body .no-results {
text-align: center;
padding-top: 42px;
}

.new-subscription .new-number .dropdown-content-body-cell {
float: left;
width: 50%;
margin-bottom: 6px;
text-align: center;
}

.new-subscription .new-number .dropdown-content-item {
font-size: 14px;
display: block;
margin: 0 5px;
padding: 5px 6px;
border: 2px solid var(--neutral-color-200);
border-radius: var(--border-all-radius-sm);
color: var(--primary-color);
cursor: pointer;
line-height: 1.25;
text-decoration: none;
transition: background-color .3s, color .3s, border-color .3s;
}

.new-subscription .new-number .dropdown-content-item:hover {
border-color: var(--primary-color);
}

.new-subscription .new-number .dropdown-content-item.active {
background-color: var(--primary-color);
border-color: var(--primary-color);
color: #ffffff;
}

.new-subscription .new-number .dropdown-content-footer {
padding: 1px 6px 5px 0;
text-align: right;
}

.new-subscription .new-number .refresh {
display: inline-block;
padding-left: 22px;
font-size: 14px;
line-height: 24px;
font-weight: 400;
background: url(/css/main_img/refresh.svg) no-repeat scroll 0 center;
background-size: 16px auto;
color: var(--primary-color);
text-decoration: none;
}

.new-subscription .port-date input[type=text] {
float: left;
width: 140px;
}

.new-subscription .submit-buttons {
width: auto;
padding: 30px 0 0 0;
}

.new-subscription table.summary th,
.new-subscription table.summary td {
font-size: 16px;
}

.new-subscription table.summary .with-discount td {
border-bottom: none;
}

.new-subscription table.summary .discount td {
border-top: none;
padding-top: 0;
}

.new-subscription table.summary .discount .cell-description {
color: var(--primary-color-500);
font-weight: 600;
}

.new-subscription table.summary .cell-price {
text-align: right;
}

.new-subscription table.summary tbody tr:last-child td {
border-bottom: 1px solid var(--neutral-color-200);
}

.new-subscription .input-row {
padding-top: 10px;
}

.new-subscription .input-row:first-child {
padding-top: 0;
}

.new-subscription .input-row .text {
padding-top: 0;
}

.new-subscription .service-item {
transition: background-color .3s, border-color .3s;
}

.new-subscription .service-item.bordered-box.white-box {
border-color: #ffffff;
}

/* form sections */
.form-section {
padding-top: 35px;
}

.form-section:first-child,
.form-section.first {
padding-top: 0;
}

.form-section.no-header {
padding-bottom: 0;
}

.form-section.data-loading {
text-align: center;
}

.form-section-title {
font-size: 24px;
font-weight: 600;
color: var(--primary-color);
margin-bottom: 20px;
}

.form-section-title.email,
.form-section-title.password {
border-bottom: 1px solid var(--neutral-color-200);
font-size: 18px;
color: var(--primary-color);
padding-bottom: 10px;
padding-left: 30px;
}

.form-section-title.email {
background: url(/css/main_img/email.svg) no-repeat scroll 0 6px;
background-size: auto 14px;
}

.form-section-title.password {
background: url(/css/main_img/password.svg) no-repeat scroll 0 5px;
background-size: auto 16px;
}

.form-section.no-header .form-section-content {
padding: 0;
}

.invoices-search-form {
float: left;
}

.invoices-search-form input[type=text] {
width: 160px;
float: left;
}

.invoices-search-form button[type=submit] {
margin-left: 20px;
float: left;
}

label.checkbox-label {
position: relative;
display: inline-block;
cursor: pointer;
padding-bottom: 0;
padding-top: 2px;
padding-left: 32px;
margin-bottom: 8px;
font-size: 16px;
line-height: 1.1;
}

label.checkbox-label input {
display: none;
}

label.checkbox-label span {
position: absolute;
left: 0;
margin-right: 8px;
width: 18px;
height: 18px;
border: 2px solid var(--primary-color);
border-radius: var(--border-all-radius-sm);
}

label.checkbox-label input:checked + span {
background: url(/css/main_img/check.svg) center no-repeat;
background-size: 12px auto;
}

label.checkbox-label i {
color: var(--primary-color);
font-style: normal;
}

.form-section-content.white-box .submit-buttons {
padding-top: 15px;
}

.form-section-content.white-box .invoice-type-info {
margin-top: 15px;
}

.form-section-content .empty-content-box {
text-align: center;
padding: 20px 0;
}

.tab-content.consumption .mobile {
display: none !important;
}

.tab-content.consumption .form-section .white-box {
position: relative;
padding: 30px;
}

.tab-content.consumption .form-section .white-box.campaign-box {
margin-bottom: 30px;
}

.tab-content.consumption .form-section .white-box.campaign-box .campaign-confirmation {
display: none;
}

.tab-content.consumption .white-box .left-col {
float: left;
max-width: 360px;
}

.tab-content.consumption .white-box .right-col {
float: right;
width: 160px;
text-align: center;
padding-right: 33px;
}

.tab-content.consumption .white-box.subscription-box .right-col {
padding-left: 33px;
}

.tab-content.consumption .campaign-box h2 {
font-size: 30px;
font-weight: 600;
color: var(--primary-color);
line-height: 31px;
margin-top: -4px;
padding-bottom: 8px;
}

.tab-content.consumption .campaign-box .description {
font-size: 22px;
line-height: 25px;
color: var(--primary-color);
font-weight: 600;
}

.tab-content.consumption .campaign-box .details {
margin-top: 6px;
font-size: 16px;
line-height: 30px;
}

.tab-content.consumption .campaign-box .subscription {
margin-top: 30px;
padding: 15px 0;
border: 1px solid var(--neutral-color-200);
border-radius: var(--border-all-radius-sm);
}

.tab-content.consumption .campaign-box .owner-name {
display: block;
padding-left: 15px;
margin-top: -1px;
font-size: 16px;
line-height: 17px;
color: var(--primary-color);
white-space: pre;
overflow: hidden;
text-overflow: ellipsis;
}

.tab-content.consumption .campaign-box .rate-plan {
display: block;
margin-top: 7px;
padding-left: 15px;
font-size: 16px;
line-height: 17px;
color: var(--primary-color);
white-space: pre;
overflow: hidden;
text-overflow: ellipsis;
}

.tab-content.consumption .campaign-box .close {
position: absolute;
top: 20px;
right: 20px;
width: 14px;
height: 14px;
background: url(/css/main_img/close.svg) no-repeat scroll 0 0;
background-size: 14px 14px;
}

.tab-content.consumption .subscription-box .main {
padding-top: 40px;
}

.tab-content.consumption .subscription-box .owner-name {
position: absolute;
top: 23px;
left: 30px;
right: 180px;
display: block;
font-size: 30px;
font-weight: 600;
text-overflow: ellipsis;
white-space: pre;
overflow: hidden;
color: var(--primary-color);
}

.tab-content.consumption .subscription-box .rate-plan {
display: block;
font-size: 16px;
line-height: 19px;
}

.tab-content.consumption .subscription-box .variant {
display: block;
font-size: 16px;
font-weight: 600;
color: var(--primary-color);
}

.tab-content.consumption .subscription-box .usage-summary .usage-toggler {
position: relative;
cursor: pointer;
width: 300px;
padding: 15px;
border: 2px solid var(--primary-color-300);
color: var(--primary-color-300);
}

.tab-content.consumption .subscription-box .usage-summary .usage-toggler:hover {
background: var(--neutral-color-200);
}

.tab-content.consumption .subscription-box .usage-summary .usage-toggler .arrow {
position: absolute;
top: 15px;
right: 13px;
width: 20px;
height: 20px;
background: url(/css/main_img/toggler_arrow.svg) no-repeat scroll center center;
background-size: 8px auto;
}

.tab-content.consumption .subscription-box .usage-summary .usage-toggler.disabled {
cursor: default;
}

.tab-content.consumption .subscription-box .usage-summary .usage-toggler.disabled .arrow {
display: none;
}

.tab-content.consumption .subscription-box .usage-summary .label {
display: block;
margin-top: -2px;
margin-bottom: 3px;
font-size: 16px;
color: var(--primary-color);
}

.tab-content.consumption .subscription-box .usage-summary .amount {
display: block;
font-size: 20px;
font-weight: 600;
}

.tab-content.consumption .subscription-box .charts-slider {
position: relative;
}

.tab-content.consumption .subscription-box .charts-slider-control {
position: absolute;
top: 85px;
left: -34px;
width: 30px;
height: 30px;
background: var(--neutral-color-100);
cursor: pointer;
background: url(/css/main_img/arrow_circle.svg) no-repeat scroll center center;
background-size: 28px auto;
}

.tab-content.consumption .subscription-box .charts-slider-control:hover {
background: url(/css/main_img/arrow_circle_hover.svg) no-repeat scroll center center;
background-size: 28px auto;
}

.tab-content.consumption .subscription-box .charts-slider-control.prev {
transform: rotate(180deg);
}

.tab-content.consumption .subscription-box .charts-slider-control.next {
left: auto;
right: -34px;
}

.tab-content.consumption .subscription-box .charts-container {
width: 160px;
overflow: hidden;
}

.tab-content.consumption .subscription-box .charts {
width: 3000px;
}

.tab-content.consumption .subscription-box .chart-item {
float: left;
width: 160px;
text-align: center;
}

.tab-content.consumption .subscription-box .chart-label {
height: 32px;
font-size: 13px;
line-height: 14px;
padding: 0 10px;
}

.tab-content.consumption .subscription-box .chart {
position: relative;
height: 130px;
width: 130px;
margin: 0 auto 17px;
}

.tab-content.consumption .subscription-box .chart-legend {
position: absolute;
top: 50%;
left: 10px;
right: 10px;
margin-top: -36px;
text-align: center;
color: var(--primary-color);
}

.tab-content.consumption .subscription-box .chart-legend.empty {
left: 15px;
right: 15px;
margin-top: -20px;
font-weight: 600;
}

.tab-content.consumption .subscription-box .chart-legend .header {
display: block;
font-size: 14px;
line-height: 16px;
font-weight: 600;
}

.tab-content.consumption .subscription-box .chart-legend .used {
display: block;
margin-top: 2px;
font-size: 28px;
line-height: 29px;
font-weight: 600;
}

.tab-content.consumption .subscription-box .chart-legend .size {
display: block;
margin-top: 6px;
font-size: 14px;
line-height: 16px;
font-weight: 600;
}

.tab-content.consumption .subscription-box .chart-details {
margin-top: -5px;
margin-bottom: 15px;
min-height: 64px;
}

.tab-content.consumption .subscription-box .chart-details span {
display: block;
font-size: 13px;
line-height: 16px;
font-weight: 400;
}

.tab-content.consumption .subscription-box .chart-details .rollover.unavailable {
margin-bottom: -1px;
}

.tab-content.consumption .subscription-box .chart-details .info,
.tab-content.consumption .settings .info {
display: inline-block;
width: 20px;
height: 20px;
background: url(/css/main_img/info.svg) no-repeat scroll 0 1px;
background-size: 18px 18px;
vertical-align: middle;
margin-top: -2px;
margin-left: 5px;
cursor: pointer;
}

.tab-content.consumption .campaign-box .assign-campaign,
.tab-content.consumption .subscription-box .add-package {
padding-left: 10px;
padding-right: 10px;
justify-content: center;
min-width: 125px;
font-size: 16px;
}

.tab-content.consumption .subscription-box.mobile {
text-align: center;
}

.tab-content.consumption .subscription-box.mobile .owner-name {
top: 19px;
left: 20px;
right: 20px;
font-size: 21px;
}

.tab-content.consumption .subscription-box.mobile .main {
padding-top: 30px;
min-height: 79px;
}

.tab-content.consumption .subscription-box.mobile .variant {
display: block;
min-width: auto;
padding-right: 0;
padding-bottom: 5px;
}

.tab-content.consumption .subscription-box.mobile .charts-slider {
width: 190px;
margin: 0 auto;
}
.tab-content.consumption .subscription-box.mobile .charts-container,
.tab-content.consumption .subscription-box.mobile .chart-item {
width: 190px;
}

.tab-content.consumption .subscription-box.mobile .charts-slider-control {
top: 99px;
}

.tab-content.consumption .subscription-box.mobile .chart-label {
height: 17px;
padding: 0;
}

.tab-content.consumption .subscription-box.mobile .chart {
width: 180px;
height: 180px;
margin-top: 10px;
margin-bottom: 41px;
}

.tab-content.consumption .subscription-box.mobile .chart-circle,
.tab-content.consumption .subscription-box.mobile .chart-bar {
stroke-width: 2.1;
}

.tab-content.consumption .subscription-box.mobile .chart-legend {
margin-top: -42px;
}

.tab-content.consumption .subscription-box.mobile .chart-legend.empty {
margin-top: -10px;
}

.tab-content.consumption .subscription-box.mobile .chart-legend .used {
font-size: 38px;
line-height: 40px;
margin-top: 4px;
}

.tab-content.consumption .subscription-box.mobile .chart-legend .size {
margin-top: 10px;
}

.tab-content.consumption .subscription-box.mobile .add-package {
width: 180px;
}

.tab-content.consumption .subscription-box.mobile .usage-summary {
margin-top: 25px;
text-align: left;
}

.tab-content.consumption .subscription-box.mobile .usage-summary .usage-toggler {
width: auto;
}

.tab-content.consumption .subscription-box.mobile .usage-summary .usage-toggler .arrow {
right: 17px;
transform: rotate(90deg);
}

.tab-content.consumption .subscription-box.mobile .usage-summary .usage-toggler.expanded .arrow {
transform: rotate(-90deg);
}

.tab-content.consumption.pre-activation .form-section:not(.data-loading) {
width: 50%;
box-sizing: border-box;
padding: 0 15px 30px 15px;
}

.tab-content.consumption.pre-activation .form-section h1,
.tab-content.consumption.pre-activation .form-section h2 {
font-size: 20px;
}

.tab-content.consumption.pre-activation .form-section .white-box {
padding: 15px;
min-height: 375px;
}

.tab-content.consumption.pre-activation .form-section .delivery-address {
padding-bottom: 12px;
text-align: center;
font-size: 16px;
}

.tab-content.consumption.pre-activation .form-section .delivery-address-value {
margin-top: 8px;
line-height: 1.1;
}

.tab-content.consumption.pre-activation .form-section .delivery-date {
margin-left: -15px;
margin-right: -15px;
margin-bottom: 18px;
padding: 8px 15px;
background: var(--primary-color);
color: #ffffff;
text-align: center;
font-size: 16px;
}

.tab-content.consumption.pre-activation .form-section .delivery-date-value {
font-weight: 600;
}

.tab-content.consumption.pre-activation .form-section .delivery-date:not(.date-passed) .delivery-date-value {
line-height: 1.1;
}

.tab-content.consumption.pre-activation .form-section .delivery-date a {
color: #ffffff;
}

.tab-content.consumption.pre-activation .form-section .delivery-date.date-passed a {
font-weight: 400;
}

.tab-content.consumption.pre-activation .form-section .delivery-date.date-passed .delivery-date-label {
font-size: 16px;
}

.tab-content.consumption.pre-activation .form-section .delivery-date-details {
margin-top: 10px;
font-size: 13px;
line-height: 1.2;
}

.tab-content.consumption.pre-activation .form-section .subscription-details {
margin-top: 12px;
padding-top: 10px;
border-top: 1px solid var(--neutral-color-200)
}

.tab-content.consumption.pre-activation .form-section .subscription-details-label {
color: var(--primary-color);
}

.tab-content.consumption.pre-activation .form-section .subscription-details-value {
font-size: 14px;
margin-top: 3px;
}

.tab-content.consumption.pre-activation .form-section .subscription-details-value-col.left {
float: left;
width: 60%;
}

.tab-content.consumption.pre-activation .form-section .subscription-details-value-col.right {
float: right;
width: 40%;
text-align: right;
}

.tab-content.consumption.pre-activation .form-section .general-info {
font-size: 18px;
}

.tab-content.consumption.pre-activation .form-section .general-info h3 {
font-size: 18px;
font-weight: 400;
color: var(--primary-color);
}

.tab-content.consumption.pre-activation .pre-activation-service-item {
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid var(--neutral-color-200)
}

.tab-content.consumption.pre-activation .pre-activation-service-item:last-child {
border-bottom: none;
margin-bottom: 0;
}

.tab-content.consumption.pre-activation .pre-activation-service-item .service-details {
float: left;
padding-left: 24px;
}

.tab-content.consumption.pre-activation .pre-activation-service-item .service-name {
color: var(--primary-color);
font-size: 17px;
}

.tab-content.consumption.pre-activation .pre-activation-service-item .service-price {
margin-top: 2px;
color: var(--neutral-color-50);
font-size: 13px;
}

.tab-content.consumption.pre-activation .pre-activation-service-item .toggle {
float: right;
margin-top: 7px;
margin-right: 24px;
}

.tab-content.consumption.pre-activation .pre-activation-service-items-list a {
font-size: 14px;
}

.tab-content.consumption.pre-activation .form-section.simple-info {
width: 100%;
}

.tab-content.consumption.pre-activation .form-section.simple-info .white-box {
min-height: 0;
}

.tab-content.consumption.pre-activation .form-section.simple-info .subscription-details {
margin-bottom: 12px;
padding-bottom: 10px;
border-bottom: 1px solid var(--neutral-color-200);
}

.tab-content.consumption.pre-activation .form-section.simple-info .subscription-details-value-col.left {
float: none;
width: 100%;
}

.tab-content.consumption.pre-activation .form-section.simple-info .subscription-details-value-col.right {
float: none;
width: 100%;
margin-top: 2px;
font-weight: 600;
text-align: left;
}

.tab-content.services .submit-buttons,
.tab-content.change-subscription .submit-buttons {
padding: 15px 0 0 0;
text-align: left;
width: 100%;
}

.tab-content.sim-cards .activate-sim-card {
margin-top: 10px;
}

.tab-content.sim-cards .sim-card {
position: relative;
margin-bottom: 15px;
}

.tab-content.sim-cards .sim-card:last-child {
margin-bottom: 0;
}

.tab-content.overview .marketing-consent-box {
margin-bottom: 20px;
}

.tab-content.family-subscriptions .white-box,
.tab-content.family-subscriptions .bordered-box {
padding: 18px;
}

.tab-content.family-subscriptions .bordered-box {
margin: 30px 0;
transition: border-color 0.3s ease-out 0s;
}

.tab-content.family-subscriptions .bordered-box .validation-message {
opacity: 0;
padding-left: 24px;
background: url(/css/main_img/info_red.svg) no-repeat scroll 0 center;
background-size: auto 18px;
color: var(--danger-color);
transition: all 0.3s ease-out 0s;
}

.tab-content.family-subscriptions .bordered-box.invalid {
border-color: var(--danger-color);
}

.tab-content.family-subscriptions .bordered-box.invalid.exceeded .validation-message {
opacity: 1;
}

.tab-content.family-subscriptions .sticky-box {
position: sticky;
top: 0;
padding: 10px 0;
margin: -10px 0;
z-index: 3;
}

.tab-content.family-subscriptions .splitted-legend {
display: flex;
justify-content: space-between;
}

.tab-content.sim-replacement .steps-list ol {
position: relative;
display: flex;
align-items: stretch;
justify-content: space-between;
width: 100%;
list-style: none;
}

.tab-content.sim-replacement .steps-list ol:before {
position: absolute;
top: 15px;
left: 50px;
right: 50px;
border-top: 3px solid var(--neutral-color-100);
content: '';
}

.tab-content.sim-replacement .steps-list ol li {
position: relative;
display: block;
flex: 0 1 auto;
text-align: center;
font-weight: 500;
line-height: 21px;
}

.tab-content.sim-replacement .steps-list ol li:nth-child(4) {
width: 124px;
}

.tab-content.sim-replacement .steps-list ol li .icon {
position: relative;
display: inline-block;
width: 28px;
height: 28px;
padding: 0 30px;
background: #ffffff;
z-index: 0;
}

.tab-content.sim-replacement .steps-list ol li .icon span {
display: block;
width: 28px;
height: 28px;
border: 3px solid var(--neutral-color-100);
border-radius: 18px;
box-sizing: border-box;
background-size: 16px auto;
}

.tab-content.sim-replacement .steps-list ol li .label {
display: block;
margin-top: 8px;
font-size: 14px;
}

.tab-content.sim-replacement .steps-list ol li:not(.current) .label {
color: var(--neutral-color-50);
}

.tab-content.sim-replacement .steps-list ol li.current .icon span {
border-color: var(--primary-color);
background: url(/css/main_img/step_check_white.svg) no-repeat scroll 3px center var(--primary-color);
}

.tab-content.sim-replacement .steps-list ol li.completed .icon span {
background: url(/css/main_img/step_check_white.svg) no-repeat scroll 3px center var(--neutral-color-100);
}

.tab-content.sim-replacement .steps-list .mobile {
display: none;
margin-bottom: 30px;
}

.tab-content.sim-replacement .steps-list .mobile .radial-progress {
float: left;
}

.tab-content.sim-replacement .steps-list .mobile p {
padding-left: 80px;
}

.tab-content.sim-replacement .steps-list .mobile p span {
display: block;
}

.tab-content.sim-replacement .steps-list .mobile .progress-label {
padding-top: 8px;
font-family: 'Source Sans Pro', Arial, sans-serif;
font-weight: 600;
font-size: 16px;
}

.tab-content.sim-replacement .steps-list .mobile .progress-label.last {
padding-top: 20px;
}

.tab-content.sim-replacement .steps-list .mobile .progress-description {
padding-top: 3px;
}

.tab-content.sim-replacement .step-details {
position: relative;
margin-top: 20px;
}

.tab-content.sim-replacement .step-details .left-col {
float: left;
width: 50%; 
}

.tab-content.sim-replacement .step-details .right-col {
float: right;
width: 46%; 
}

.tab-content.sim-replacement .step-details h3 {
margin-top: 30px;
font-family: 'Source Sans Pro', Arial, sans-serif;
color: var(--primary-color);
font-size: 22px;
font-weight: 600;
}

.tab-content.sim-replacement .step-details h3:first-child {
margin-top: 0;
}

.tab-content.sim-replacement .step-details p {
margin-top: 15px;
font-size: 15px;
line-height: 21px;
}

.tab-content.sim-replacement .step-details p b {
font-weight: 500;
}

.tab-content.sim-replacement .step-details p.info {
margin-top: 10px;
font-style: italic;
}

.tab-content.sim-replacement .step-details p.long-text {
padding-right: 20px;
}

.tab-content.sim-replacement .step-details .image {
margin-top: 15px;
}

.tab-content.sim-replacement .step-details .image img {
max-width: 225px;
max-height: 225px;
}

.tab-content.sim-replacement .step-details .edit-delivery-address {
margin-top: 20px;
}

.tab-content.sim-replacement .step-details .change-activation-date {
width: 226px;
margin-top: 5px;
text-align: center;
}

.tab-content.sim-replacement .step-details form {
margin-top: 10px;
}

.tab-content.sim-replacement .step-details #ChangeActivationDateForm {
margin-top: 16px;
margin-bottom: 60px;
}

.tab-content.sim-replacement .step-details .input-row .input {
position: relative;
width: auto;
box-sizing: border-box;
}

.tab-content.sim-replacement .step-details .delivery-address {
max-width: 600px;
}

.tab-content.sim-replacement .step-details .delivery-address .input-row .input input[type=text] {
width: 100%;
}

.tab-content.sim-replacement .step-details .delivery-address .input-row .input.zip {
padding-left: 0;
padding-right: 15px;
width: 40%;
}

.tab-content.sim-replacement .step-details .delivery-address .input-row .input.city {
width: 60%;
}

.tab-content.sim-replacement .step-details .input-row .input.picker-input {
width: 259px;
}

.tab-content.sim-replacement .step-details .input-row .input.picker-input > input[type=text] {
padding-left: 48px;
cursor: pointer;
}

.tab-content.sim-replacement .step-details .input-row .input.picker-input > input[type=text]:focus-visible {
outline: none;
}

.tab-content.sim-replacement .step-details .input-row .icon {
position: absolute;
top: 10px;
left: 12px;
width: 32px;
height: 32px;
cursor: pointer;
}

.tab-content.sim-replacement .step-details .input-row .icon.calendar {
background: url(/css/main_img/calendar.svg) no-repeat scroll center;
background-size: 24px auto;
}

.tab-content.sim-replacement .step-details .input-row .icon.arrow {
top: 19px;
left: auto;
right: 20px;
width: 14px;
height: 14px;
background: url(/css/main_img/arrow.svg) no-repeat scroll right center;
background-size: 14px auto;
}

.tab-content.sim-replacement .step-details .input-row .icon.arrow.toggled {
transform: rotateZ(180deg);
}

.tab-content.sim-replacement .step-details .submit-buttons a {
font-size: 16px;
line-height: 40px;
display: inline-block;
padding: 0 20px;
}

.tab-content.sim-replacement .step-details .submit-buttons.activation-date {
margin-top: 5px;
}

.tab-content.sim-replacement .step-details .submit-buttons.activation-date button[type=submit] {
width: 259px;
padding: 0;
}

.marketing-consent-box h3 {
font-size: 30px;
font-weight: 400;
line-height: 38px;
margin-bottom: 10px;
}

.marketing-consent-box p + p {
font-weight: 600;
margin-top: 15px;
}

.marketing-consent-box .input-row.general {
margin-bottom: 15px;
}

.marketing-consent-box .input-row .label-text {
margin-top: -2px;
font-weight: 600;
}

.marketing-consent-box .input-row .label-description {
font-size: 14px;
font-weight: normal;
margin: 0;
}

.tab-content.overview .marketing-consent-box form {
margin-top: 25px;
}

.tab-content.overview .marketing-consent-box button {
margin-top: 20px;
}

.circular-chart {
display: block;
height: 100%;
}

.chart-circle {
fill: none;
stroke-width: 2.4;
stroke: var(--neutral-color-400);
}

.chart-bar {
fill: none;
stroke-width: 2.4;
stroke-linecap: round;
stroke: var(--secondary-color-300);
}

.info-box {
position: relative;
font-weight: 500;
text-align: left;
margin-bottom: 20px;
margin-top: -12px;
}

.tip h3 {
font-weight: 600;
margin-bottom: 5px;
color: var(--primary-color);
font-size: 16px;
}

#LoginForm .tip h3 {
font-size: 20px;
margin-bottom: 15px;
}

.tip .tip-content ul {
list-style-type: disc;
margin-left: 13px;
}

.tip .tip-content ul li {
margin-top: 7px;
}

.tip .tip-content ol {
list-style-type: decimal;
margin-left: 13px;
}

.tip .tip-content ol li {
margin-top: 4px;
}

.form-inputs {
float: left;
width: 50%;
}

#LoginForm .form-inputs {
float: none;
width: auto;
}

.form-inputs-content {
margin-right: 20px;
}

.form-tips {
float: left;
width: 50%;
}

#LoginForm .form-tips {
float: none;
width: auto;
}

.form-tips .tip {
margin-left: 20px;
}

#LoginForm .form-tips .tip {
margin-left: 0;
margin-top: 40px;
padding-top: 40px;
border-top: 1px solid var(--neutral-color-100);
}

.form-tips .tip .tip-content a {
text-decoration: underline;
}

/* settings form */
.settings-form {
display: table;
}

.form-section.settings .form-section-title {
margin-bottom: 10px;
}

.settings-form .input-row {
display: table-cell;
vertical-align: bottom;
}

.settings-form .input-row .input {
padding-bottom: 0;
width: 260px;
}

.settings-form .input-row .input.text {
padding-bottom: 6px;
}

.settings-form .submit-buttons {
display: table-cell;
vertical-align: bottom;
width: 75px;
padding-left: 20px;
}

.settings-form .submit-buttons button:not(.dark) {
width: 100%;
min-height: 52px;
border-radius: var(--border-all-radius-xl);
}

.calendar-link {
float: left;
display: block;
background: url(/css/main_img/calendar.svg) no-repeat scroll center;
background-size: 24px auto;
width: 32px;
height: 32px;
margin: 11px 0 0 10px;
}

/* flash message */
.flash {
position: relative;
min-height: 16px;
padding-top: 16px;
padding-right: 20px;
padding-bottom: 18px;
padding-left: 20px;
margin: 0px 0 25px 0;
font-weight: 500;
border: 1px solid var(--primary-color);
border-radius: var(--border-all-radius-sm);
background-color: #ffffff;
color: var(--primary-color);
}

.flash .icon {
position: absolute;
top: 15px;
left: 20px;
width: 22px;
height: 24px;
}

.flash .indent {
padding-left: 36px;
}

.flash.success {
background-color: var(--primary-color-700);
}

.flash.error {
background-color: var(--neutral-color-500);
border-color: var(--warning-color);
}

.flash.success .icon {
background: url(/css/main_img/flash_success.svg) no-repeat scroll center;
background-size: auto 15px;
}

.flash.error .icon {
background: url(/css/main_img/flash_error.svg) no-repeat scroll center;
background-size: auto 20px;
}

.flash ul {
margin: 3px 0 0 43px;
list-style-type: disc;
}

/* steps */
.steps ul {
padding: 0;
margin: 0 0 -8px 0;
}

.steps li {
float: left;
margin-right: 10px;
margin-bottom: 8px;
position: relative;
list-style: none;
}

.steps li:last-child {
margin-right: 0;
}

.steps li .container {
display: block;
font-size: 14px;
color: #ffffff;
height: 22px;
line-height: 22px;
padding: 1px 7px 2px 7px;
border-radius: var(--border-all-radius-sm);
background: var(--neutral-color-50);
text-decoration: none;
}

.steps li.completed .container {
background: var(--primary-color);
}

.steps li.current .container {
background: var(--warning-color);
color: var(--primary-color);
}

.step-content .form-section {
padding-top: 35px;
}

.product-rate-plan-variants-list .info-box {
float: right;
margin-top: 0;
margin-bottom: 10px;
}

.subscription-types-section,
.subscription-type-products-section,
.product-rate-plans-list {
padding-bottom: 25px;
}

.product-rate-plan-variants-list .radio-row {
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: -18px;
}

.product-rate-plan-variants-list .radio-row .inline-radio {
width: calc(50% - 8px);
box-sizing: border-box;
padding: 0;
}

.product-rate-plan-variants-list .inline-radio label {
display: block;
top: 0;
height: 100%;
padding: 15px 25px;
box-sizing: border-box;
border: 2px solid var(--neutral-color-200);
border-radius: var(--border-all-radius-sm);
box-sizing: border-box;
cursor: pointer;
transition: border-color .3s, color .3s;
}

.product-rate-plan-variants-list .inline-radio input[type=radio] {
position: absolute;
top: 0px;
left: 0;
visibility: hidden;
opacity: 0;
}

.product-rate-plan-variants-list .inline-radio label:hover {
border-color: var(--neutral-color-100);
}

.product-rate-plan-variants-list .inline-radio.selected label {
border-color: var(--primary-color);
}

.product-rate-plan-variants-list .invalid .inline-radio label {
border-color: var(--danger-color);
}

.product-rate-plan-variants-list .inline-radio.selected .indicator-icon {
position: absolute;
top: -10px;
right: -10px;
display: block;
width: 24px;
height: 24px;
padding: 0;
background: url(/css/main_img/check_white.svg) no-repeat scroll center var(--primary-color);
border-radius: 50%;
background-size: 12px auto;
}

.product-rate-plans-list .inline-radio .name,
.product-rate-plan-variants-list .inline-radio .name {
display: block;
color: var(--primary-color);
font-weight: 600;
}

.product-rate-plans-list .invalid .inline-radio .name,
.product-rate-plan-variants-list .invalid .inline-radio .name {
color: inherit;
}

.product-rate-plans-list .inline-radio .price,
.product-rate-plan-variants-list .inline-radio .price {
display: block;
margin-top: 2px;
}

.product-rate-plans-list .inline-radio .price .value,
.product-rate-plan-variants-list .inline-radio .price .value {
font-weight: bold;
color: var(--primary-color);
}

.inline-radio .details {
display: block;
margin-bottom: 20px;
padding-left: 40px;
margin-top: -5px;
font-size: 12px;
font-weight: 300;
}

.product-rate-plans-list .inline-radio .details,
.product-rate-plan-variants-list .inline-radio .details {
max-width: 200px;
}

/* progress indicator */
.progress-indicator {
position: relative;
display: inline-flex;
min-height: 24px;
align-items: center;
padding-left: 30px;
padding-bottom: 2px;
font-size: 16px;
box-sizing: border-box;
}

.progress-indicator .progress-indicator-icon {
position: absolute;
top: 0;
left: 0;
display: block;
width: 24px;
height: 24px;
background: url(/css/main_img/progress_indicator.svg) no-repeat 0 0;
animation: 1s rotate infinite;
}

.form-section.data-loading .progress-indicator {
margin: 50px 0;
}

/* dropdown */
.dropdown-container {
position: relative; 
}

.dropdown-container a {
text-decoration: none;
}

.dropdown-button {
position: relative;
display: block;
height: auto;
line-height: 20px;
border: 2px solid var(--primary-color);
border-radius: var(--border-all-radius-sm);
padding: 9px 9px 10px 10px;
cursor: pointer;
font-weight: 400;
font-family: var(--font-family);
font-weight: 600;
font-size: 17px;
text-decoration: none;
transition: background-color .3s, border-color .3s;
box-sizing: border-box;
}

.dropdown-container.large .dropdown-button {
padding: 13px 20px 15px 25px;
font-size: 16px;
min-height: 52px;
}

.dropdown-container.large.centered .dropdown-button {
width: 50%;
margin: 0 auto;
}

.dropdown-button:hover,
.dropdown-button.active,
.dropdown-container.large .dropdown-button.active {
border-color: var(--primary-color-500);
}

.dropdown-button .dropdown-button-content {
padding-right: 20px;
position: relative;
color: var(--primary-color);
transition: color .3s;
}

.dropdown-button .dropdown-button-content:before {
position: absolute;
top: 5px;
right: 0;
width: 14px;
height: 14px;
content: '';
background: url(/css/main_img/arrow.svg) no-repeat scroll right center;
background-size: 14px auto;
}

.dropdown-button:hover .dropdown-button-content,
.dropdown-button.active .dropdown-button-content {
color: var(--primary-color-500);
}

.dropdown-button:hover .dropdown-button-content:before,
.dropdown-button.active .dropdown-button-content:before {
background: url(/css/main_img/arrow_hover.svg) no-repeat scroll right center;
background-size: 14px auto;
}

.dropdown-button.active .dropdown-button-content:before {
transform: rotateZ(180deg);
top: 4px;
}

.dropdown-button .dropdown-button-content .sim-card-type,
.dropdown-content .sim-card-type {
min-width: 85px;
display: inline-block;
}

.dropdown-content {
background: #ffffff;
padding: 5px;
max-height: 223px;
border-radius: var(--border-all-radius-sm);
overflow-y: auto;
box-shadow: 0 1px 2px 0 rgba(0,0,0,0.25);
}

.dropdown-container .dropdown-content {
display: none;
position: absolute;
z-index: 9;
}

.dropdown-content-row {
display: block;
padding: 5px 6px;
color: var(--primary-color);
cursor: pointer;
line-height: 16px;
font-size: 13px;
}

.dropdown-container.large .dropdown-content-row {
padding: 10px 15px;
}

.dropdown-content-row.no-results {
padding-top: 10px !important;
padding-bottom: 10px !important;
}

.dropdown-content-row.no-results .disable-filter,
.dropdown-container.subscriptions .dropdown-content-row.no-results .disable-filter {
display: inline;
padding: 0;
background: none;
border: none;
color: var(--primary-color);
cursor: pointer;
}

.dropdown-content-row.no-results .disable-filter:hover,
.dropdown-container.subscriptions .dropdown-content-row.no-results .disable-filter:hover {
color: var(--primary-color);
}

.dropdown-container.subscriptions {
margin-bottom: 20px;
}

.dropdown-container.subscriptions .dropdown-content {
max-height: 270px;
}

.dropdown-container.subscriptions .dropdown-content-row.no-results {
padding: 10px 15px;
}

.dropdown-container.large.subscriptions .dropdown-content-row,
.sim-card .dropdown-container .dropdown-content-row {
margin-bottom: 5px;
padding: 0;
}

.sim-card .dropdown-container .dropdown-button {
padding: 10px 15px 12px 20px;
}

.dropdown-container.subscriptions .dropdown-content-row:last-child,
.sim-card .dropdown-container .dropdown-content-row:last-child {
margin-bottom: 0;
}

.dropdown-container.subscriptions .dropdown-content-row a,
.sim-card .dropdown-container .dropdown-content-row a {
display: block;
padding: 8px 15px;
color: var(--primary-color);
cursor: pointer;
border: 2px solid var(--neutral-color-200);
border-radius: var(--border-all-radius-sm);
font-weight: 600;
font-size: 14px;
transition: background-color .3s, color .3s, border-color .3s;
}

.dropdown-container.subscriptions .dropdown-content-row a:hover,
.sim-card .dropdown-container .dropdown-content-row a:hover {
border-color: var(--primary-color-300);
color: var(--primary-color-300);
}

.dropdown-container.subscriptions .dropdown-content-row.active a,
.sim-card .dropdown-container .dropdown-content-row.active a {
color: #ffffff;
background: var(--primary-color);
border-color: var(--primary-color);
}

.dropdown-container.subscriptions .dropdown-content-row .phone-cell {
float: left;
display: block;
width: 140px;
box-sizing: border-box;
display: block;
}

.dropdown-container.subscriptions .dropdown-content-row .owner-cell {
margin-left: 140px;
padding-left: 15px;
display: block;
}

.dropdown-content-row .input-row .label {
float: left;
width: 80px;
padding-top: 0;
}

.dropdown-content-row .input-row .text {
padding-left: 80px;
padding-top: 0;
}

.usage-entries-list {
display: none;
margin-bottom: 15px;
}

.expanded .usage-entries-list {
display: block;
}

.usage-summary .usage-entries-list {
margin-top: 14px;
margin-bottom: 0;
}

.usage-entries-list table,
table.listing {
width: 100%;
}

.usage-entries-list table th,
table.listing th {
text-align: left;
font-weight: 600;
color: var(--primary-color);
}

.usage-entries-list table td,
.usage-entries-list table th,
table.listing td,
table.listing th {
padding: 10px 12px;
border-bottom: 1px solid var(--neutral-color-200);
font-size: 15px;
}

.usage-entries-list table td,
table.listing td {
border-top: 1px solid var(--neutral-color-200);
}

.usage-entries-list table tr:last-child td,
table.listing tr:last-child td {
border-bottom: 1px solid transparent;
}

.usage-entries-list table td:first-child,
.usage-entries-list table th:first-child,
table.listing td:first-child,
table.listing th:first-child {
padding-left: 0;
}

.usage-entries-list table td:last-child,
.usage-entries-list table th:last-child,
table.listing td:last-child,
table.listing th:last-child {
padding-right: 0;
}

table.listing td.strike {
text-decoration: line-through;
}

.usage-entries-list table .cell-date {
width: 70px;
}

.usage-entries-list table .cell-qty,
.usage-entries-list table .cell-amount {
text-align: right;
width: 22%;
}

.usage-entries-list.gprs table .cell-qty {
width: 30%;
}

.usage-entries-list.fees table .cell-qty {
width: 18%;
}

.usage-entries-list table .active td {
border-top: 1px solid var(--neutral-color-200);
}

.usage-entries-list table tfoot td {
border-bottom: none;
}

.usage-entries-list table tfoot .cell-summary-value {
text-align: right;
font-weight: 600;
}

.usage-summary .usage-entries-list table .last td {
border-bottom: none;
padding-bottom: 0;
}

.usage-entries-summary {
padding: 5px 8px;  
border-top: 1px solid var(--neutral-color-200);
}

.usage-entries-list .data-loading,
.usage-entries-list .empty-content-box {
padding: 10px 0;
}

.usage-amount {
margin-top: 10px;
text-align: right;
font-weight: 600;
font-size: 22px;
color: var(--primary-color);
}

.usage-amount .usage-amount-label {
float: left;
display: block;
}

.usage-amount .usage-amount-value {
float: right;
display: block;
color: var(--primary-color);
}

.export-usage {
margin-top: 20px;
text-align: right;
}

table.summary .option td {
padding-top: 6px;
padding-bottom: 6px;
}

table.summary .total td {
font-weight: 600;
color: var(--primary-color);
font-size: 20px;
}

table.summary td .options {
margin: 0;
}

table.summary td .options li {
font-size: 15px;
line-height: 1.1;
}

table.summary .cell-description .options {
margin-left: 20px;
list-style: disc;
}

/* services boxes */
.service-items-list .service-column,
.packages-list .package-column {
width: 50%;
box-sizing: border-box;
padding: 0 15px 30px 15px;
}

.current-subscription .service-items-list .service-column,
.sim-card-services .service-items-list .service-column,
.service-items-list .service-column.container {
width: 100%;
}

.service-items-list .service-item,
.packages-list .package-item {
display: block;
padding: 18px 18px 75px 18px;
position: relative;
text-decoration: none;
position: relative;
height: 100%;
box-sizing: border-box;
color: inherit;
}

.service-items-list .service-column.container .service-item {
padding-bottom: 25px;
}
	
.service-items-list .flex-container {
margin-top: 20px;
display: flex;
}

.service-items-list .flex-column {
width: 50%;
}

.service-items-list .flex-column:first-child {
border-right: 1px solid var(--neutral-color-200);
}

.service-items-list .flex-column:first-child .flex-content {
padding: 10px 35px 10px 0;
}

.service-items-list .flex-column:last-child .flex-content {
padding: 10px 0 10px 35px;
}

.service-items-list .flex-header {
display: flex;
justify-content: space-between;
align-items: center;
}

.service-items-list .custom-service-item-details {
margin-top: 10px;
}

.service-items-list .custom-service-item-row {
display: flex;
font-size: 1rem;
color: var(--primary-color-300);
}

.service-items-list .custom-service-item-row-label {
width: 140px;
font-weight: 500;
white-space: nowrap;
}

.service-items-list .custom-service-item-row-text {
width: 105px;
white-space: nowrap;
}

.packages-list .package-item {
padding-bottom: 72px;
min-height: 80px;
cursor: default;
}

.packages-section .packages-description h3 {
font-weight: 600;
}

.packages-section .packages-description p {
margin-top: 5px;
word-spacing: 5px;
text-align: justify;
}

.packages-section .back-link {
margin-bottom: 0;
margin-top: 10px;
}

.change-subscription .current-subscription .service-items-list .service-item {
padding-bottom: 18px;
}

.service-items-list,
.packages-list,
.pre-activation-items-list {
margin: 0px -15px;
display: flex;
flex-flow: row wrap;
}

.service-items-list .service-item .service-name,
.service-items-list .service-item .custom-service-item-name,
.packages-list .package-item .package-name {
display: block;
font-size: 22px;
font-weight: 600;
line-height: 1.2;
color: var(--primary-color);
}

.service-items-list .service-item .custom-service-item-name {
font-size: 18px;
}

.current-subscription .service-items-list .service-item .service-name {
color: var(--primary-color);
font-size: 24px;
font-weight: 400;
padding-left: 40px;
background: url(/css/main_img/current_subscription.svg) no-repeat scroll 0 center;
background-size: auto 26px;
}

.service-items-list .service-item .service-secondary-text {
font-size: 18px;
font-weight: 600;
line-height: 1;
}

.service-items-list .service-item .service-description {
font-size: 14px;
display: block;
line-height: 16px;
margin-top: 12px;
padding-bottom: 8px;
color: var(--primary-color-300);
}

.service-items-list .service-item .service-description:last-child {
padding-bottom: 0;
}

.service-items-list .service-item .service-price,
.packages-list .package-item .package-price {
display: block;
padding-top: 10px;
padding-bottom: 5px;
color: var(--primary-color);
font-size: 20px;
font-weight: 600;
line-height: 1;
}

.service-items-list .service-item .service-link,
.packages-list .package-item .package-link {
display: inline-block;
margin-top: 2px;
margin-bottom: 8px;
font-size: 14px;
}

.service-items-list .service-item .service-link + .service-description {
margin-top: 0;
}

.current-subscription .service-items-list .service-item .regular-price {
font-size: 22px;
}

.current-subscription .service-items-list .service-item .regular-price span {
display: block;
}

.current-subscription .service-items-list .service-item .discount-description {
margin-bottom: 15px;
}

.current-subscription .service-items-list .service-item .regular-price-value {
text-decoration: line-through;
font-weight: normal;
}

.current-subscription .service-items-list .service-item .discount-price {
margin-top: -15px;
}

.service-items-list .service-item .service-activation {
display: block;
}

.service-items-list .service-item .service-activation b {
font-weight: 500;
}

.packages-list .package-item form {
position: absolute;
left: 18px;
bottom: 18px;
}

.service-items-list .service-item .service-status {
color: var(--secondary-color-300);
font-size: 14px;
font-weight: 600;
}

.service-items-list .service-item button,
.service-items-list .service-item span.activate {
position: absolute;
left: 18px;
bottom: 18px;
min-width: 100px;
}

.service-items-list .service-item button:disabled {
cursor: default;
}

.service-items-list .service-item span.activate {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 42px;
margin: 0;
padding: 6px 40px 8px 40px;
background-color: var(--primary-color);
border: 2px solid var(--primary-color);
border-radius: var(--border-all-radius-lg);
font-size: 18px;
font-weight: 400;
font-family: var(--font-family);
color: #ffffff;
line-height: 1;
cursor: pointer;
transition: background-color .3s, color .3s, border-color .3s;
box-sizing: border-box;
}

.service-items-list .service-item button:not(:disabled):hover {
background: var(--primary-color);
}

.service-items-list .service-item span.activate:not(:disabled):hover {
border-color: var(--primary-color-500);
background-color: var(--primary-color-500);
}

.service-items-list .service-item button.deactivate,
.service-items-list .service-item.subscribe span.activate {
background: none;
color: var(--primary-color);
border: 2px solid var(--primary-color);
}

.service-items-list .service-item button.deactivate:not(:disabled):hover,
.service-items-list .service-item.subscribe span.activate:not(:disabled):hover {
background: none;
border-color: var(--primary-color-500);
color: var(--primary-color-500);
}

.service-items-list .service-item .button-link {
position: absolute;
right: 25px;
bottom: 20px;
min-width: 114px;
font-size: 16px;
padding: 0 20px;
height: 40px;
line-height: 38px;
background: none;
color: var(--primary-color);
border: 2px solid var(--primary-color-300);
box-sizing: border-box;
cursor: pointer;
text-align: center;
text-decoration: none;
}

.service-items-list .service-item .button-link:hover {
background: var(--neutral-color-200);
}

.service-items-list .service-item.data-control button {
position: static;
}

.service-items-list .service-item.data-control .service-description:not(.last) {
margin-bottom: 25px;
}

.service-items-list .service-item.data-control .input-description {
margin-bottom: -7px;
}

.service-items-list + .tip,
.form-section.services-info .tip {
background: url('/css/main_img/info.svg') var(--neutral-color-600) no-repeat top 28px left 24px;
background-size: 32px 32px;
padding: 18px 18px 18px 75px;
border-radius: var(--border-all-radius-sm);
}

.form-section.services-info .tip + .tip {
margin-top: 20px;
}

/* sim card boxes */
.sim-card-services .service-items-list .service-item {
padding-bottom: 15px;
min-height: 0;
}

.sim-card-services .service-item .service-item-main-info {
float: left;
width: 65%;
}

.sim-card-services .service-item .service-item-details {
float: right;
min-width: 160px;
}

.sim-card-services .service-item .service-price {
padding-top: 3px;
padding-bottom: 5px;
font-size: 20px;
font-weight: 600;
}

.sim-card-services .service-items-list .service-item button {
position: static;
margin-top: 15px;
width: 100%;
}

/* sim cards */
.sim-card .form-section-title {
margin-bottom: 10px;
}

.sim-card .sim-card-status {
display: inline-block;
color: var(--primary-color-300);
font-size: 14px;
font-weight: 600;
margin-left: 15px;
margin-top: 5px;
}

.sim-card .sim-card-status.blocked {
color: var(--danger-color);
}

.sim-card .sim-card-status.info {
color: var(--primary-color-500);
}

.sim-card .dropdown-container {
position: absolute;
top: 18px;
right: 18px;
min-width: 180px;
}

.sim-card .dropdown-content {
width: 170px;
}

.sim-card .phone-number {
font-size: 16px;
margin-bottom: 25px;
}

.sim-card .details-toggler {
display: inline-block;
font-size: 16px;
}

.sim-card .details-toggler.esim {
margin-top: 10px;
}

.sim-card .details-content .text-row {
padding-bottom: 5px;
font-size: 16px;
}

.sim-card .details-content {
margin-top: 10px;
}

.sim-card .details-content .text-row span {
display: inline-block;
font-weight: 600;
min-width: 80px;
}

.sim-card .details-content .details-link {
margin-left: 10px;
}

.sim-card .esim-details {
margin-top: 32px;
}

.sim-card .image {
float: left;
}

.sim-card .image img {
max-width: 150px;
max-height: 150px;
}

.sim-card .esim-description {
padding-left: 180px;
}

.sim-card .esim-description .next-steps {
line-height: 18px;
}

.sim-card .esim-description .next-steps span {
display: block;
margin-bottom: 4px;
}

.sim-card .esim-description .next-steps span:first-child {
margin-bottom: 8px;
}

.sim-card .esim-description .next-steps.multi > span {
margin-bottom: 4px;
}

.sim-card .esim-description .next-steps span.wifi {
display: inline-block;
width: 16px;
height: 16px;
background: url(/css/main_img/wifi.svg) no-repeat scroll 0 -1px;
background-size: 100% 100%;
margin: 0 0 -2px 4px;
}

.sim-card .esim-description ol {
list-style: decimal;
margin-left: 16px;
}

.sim-card .esim-description ol li {
margin-bottom: 4px;
}

.sim-card .esim-description h4 {
margin-top: 25px;
margin-bottom: 8px;
font-size: 16px;
font-weight: 600;
}

.sim-card .esim-description p {
line-height: 18px;
}

.usage-entries {
margin-top: 30px;
}

.invoices .invoice-status {
padding: 0 8px 2px 8px;
line-height: 26px;
border-radius: var(--border-all-radius-sm);
font-weight: 400;
min-width: 82px;
text-align: center;
}

.invoice .status-in-credit,
.invoice .status-credited {
background: var(--secondary-color);
color: #ffffff;
}

.invoice .status-overpaid,
.invoice .status-paid {
background: var(--secondary-color-300);
color: #ffffff;
}

.invoice .status-to-pay,
.invoice .status-partially-paid {
background: var(--warning-color);
color: #ffffff;
}

.invoice .status-unpaid {
background: var(--danger-color);
color: #ffffff;
}

/* AJAX loading box */
.loading-layer {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999998;
background: #ffffff;
opacity: 0.01;
}

.loading-box {
position: fixed;
top: 0;
left: 50%;
padding: 0 10px;
background: rgba(0,0,0,0.7);
z-index: 999999;
}

.loading-box div {
position: relative;
display: flex;
align-items: center;
padding: 4px 0 6px 26px;
color: #ffffff;
}

.loading-box .loading-box-icon {
position: absolute;
top: 4px;
left: 0;
display: block;
width: 20px;
height: 20px;
background: url(/css/main_img/progress_indicator_white.svg) no-repeat 0 0;
background-size: 20px 20px;
animation: 1s rotate infinite;
}

/* system info box */
.system-info-box {
padding: 40px 15px 0 15px;
max-width: 1140px;
margin: 0 auto;
}

.system-info-box.hidden {
transition: all 0.4s ease-out 0s;
transform: scale(1, 0);
opacity: 0;
}

.system-info-box-content {
min-height: 16px;
padding: 18px 35px 18px 20px;
font-size: 16px;
font-weight: 600;
background-color: var(--neutral-color-500);
border: 2px solid var(--warning-color);
position: relative;
}

.system-info-box-content h1,
.system-info-box-content h2,
.system-info-box-content h3 {
border: none;
color: var(--primary-color);
font-weight: 600;
line-height: 1.2;
font-size: 30px;
margin: 0 0 5px 0;
padding: 0;
}

.system-info-box-content h2 {
font-size: 24px;
}

.system-info-box-content h3 {
font-size: 20px;
}

.system-info-box-content p {
margin-top: 8px;
}

.system-info-box-close {
display: none;
position: absolute;
top: 12px;
right: 12px;
width: 10px;
height: 10px;
background: url(/css/main_img/close.svg) no-repeat scroll 0 center;
background-size: 10px auto;
cursor: pointer;
}

.white-box {
background: #ffffff;
padding: 20px 18px 22px 18px;
border-radius: var(--border-all-radius-sm);
}

.white-box .table-container {
margin-top: -12px;
margin-bottom: -12px;
}

#LoginForm .white-box {
background: none;
padding-left: 0;
padding-right: 0;
}

.account-section .white-box {
margin-bottom: 30px;
}

.account-section .white-box:last-child {
margin-bottom: 0;
}

.bordered-box {
padding: 30px 30px 35px 30px;
border: 1px solid var(--primary-color-300);
border-radius: var(--border-all-radius-sm);
}

.subscription-section .terms-link {
float: right;
font-size: 16px;
}

.subscription-section .rate-plan-name {
color: var(--primary-color);
font-size: 30px;
line-height: 1.1;
padding-bottom: 5px;
font-weight: 600;
}

.subscription-section .rate-plan-details {
padding-bottom: 10px;
}

.subscription-section .rate-plan-details > span {
padding-right: 5px;
}

.subscription-section .phone-number {
color: var(--primary-color);
font-size: 30px;
font-weight: 600;
}

.subscription-section .owner-name {
font-size: 22px;
color: var(--primary-color);
font-weight: 600;
}

.back-link {
display: inline-block;
font-weight: 500;
padding-left: 28px;
background: url(/css/main_img/back.svg) no-repeat scroll 0 5px;
background-size: 16px auto;
margin-bottom: 15px;
text-decoration: none;
}

.usage-togglers {
padding-bottom: 5px;
}

.usage-togglers .usage-toggler {
cursor: pointer;
display: inline-block;
margin-right: 10px;
margin-bottom: 10px;
padding: 8px 15px;
color: var(--primary-color);
cursor: pointer;
border: 2px solid var(--primary-color);
border-radius: var(--border-all-radius-lg);
font-weight: 500;
font-size: 14px;
text-decoration: none;
transition: background-color .3s, color .3s, border-color .3s;
}

.usage-togglers .usage-toggler:hover {
border-color: var(--primary-color-500);
color: var(--primary-color-500);
}

.usage-togglers .usage-toggler.active {
background: var(--primary-color);
color: #ffffff;
border-color: var(--primary-color);
}

.last-invoice .last-invoice-details {
float: left;
}

.last-invoice .invoice-due-date strong {
padding-left: 5px;
}

.last-invoice .invoice-amount {
font-size: 40px;
color: var(--primary-color);
padding: 25px 0;
line-height: 1;
margin-left: -3px;
font-weight: 500;
}

.last-invoice .invoice-amount span {
display: block;
font-size: 16px;
line-height: normal;
}

.invoice-payment-info > div {
float: left;
padding-right: 25px;
}

.invoice-payment-info > div span {
display: block;
}

.last-invoice .invoice-status {
display: inline-block;
}

.last-invoice .last-invoice-links {
float: right;
text-align: right;
}

.last-invoice .last-invoice-links .invoice-pdf,
.last-invoice .last-invoice-links .invoice-usage {
padding-top: 8px;
}

.last-invoice .last-invoice-links a {
cursor: pointer;
}

.invoices .invoices-forms {
padding-bottom: 10px;
}

.invoices-sort-form-wrapper {
padding-top: 20px;
}

.invoices-sort-form-wrapper h1 {
float: left;
}

.invoices-sort-form {
float: right;
margin-top: -25px;
}

.invoices-sort-form .input {
width: auto;
padding: 0;
position: relative;
border-radius: var(--border-all-radius-sm);
}

.invoices-sort-form .input:hover {
background: var(--neutral-color-600);
}

.invoices-sort-form .input select {
appearance: none;
height: 40px;
background: transparent;
position: relative;
z-index: 1;
width: 200px;
cursor: pointer;
}

.invoices-sort-form .input:before {
position: absolute;
top: 50%;
margin-top: -7px;
right: 18px;
width: 14px;
height: 14px;
content: '';
background: url(/css/main_img/arrow.svg) no-repeat scroll right center;
background-size: 14px auto;
}

.invoices-sort-form .input:hover select {
background: transparent;
}

.invoices-sort-form .input:hover:before {
background-image: url(/css/main_img/arrow_hover.svg);
}

.invoices-sort-form .input select::-ms-expand {
display: none;
}

.invoices-sort-form .input select option {
font-size: 14px;
font-weight: 400;
padding: 3px 12px;
background: #ffffff;
}

.invoices-list .invoice {
margin-bottom: 10px;
padding-bottom: 18px;
}

.invoices-list .invoice:last-child {
margin-bottom: 0;
}

.invoices-list .invoice .invoice-details-row {
display: table;
width: 100%;
}

.invoices-list .invoice .invoice-details-column {
display: table-cell;
vertical-align: middle;
}

.invoices-list .invoice .invoice-details > div {
float: left;
box-sizing: border-box;
}

.invoices-list .invoice .invoice-details .invoice-number {
width: 95px;
}

.invoices-list .invoice .invoice-details .invoice-amount {
width: 100px;
}

.invoices-list .invoice .invoice-details .invoice-period,
.invoices-list .invoice .invoice-details .invoice-due-date {
width: 80px;
}

.invoices-list .invoice .invoice-details > div span {
display: block;
}

.invoices-list .invoice .invoice-links {
float: right;
white-space: nowrap;
line-height: 26px;
text-align: center;
}

.invoices-list .invoice .invoice-links a {
cursor: pointer;
}

.invoices-list .invoice .invoice-links .invoice-usage {
margin-top: 8px
}

.invoices-list .invoice .invoice-links .invoice-pdf {
margin-top: 8px
}

.pager {
padding-top: 15px;
}

.pager .pager-link {
display: inline-block;
height: 35px;
line-height: 35px;
border: 2px solid var(--primary-color);
border-radius: var(--border-all-radius-lg);
font-size: 16px;
color: var(--primary-color);
padding: 0 20px;
text-decoration: none;
transition: color .3s, border-color .3s;
}

.pager .pager-link span {
padding-left: 25px;
display: inline-block;
background: url(/css/main_img/plus.svg) no-repeat scroll 0 center;
background-size: 24px auto;
}

.pager .pager-link:hover {
border-color: var(--primary-color-500);
color: var(--primary-color-500);
}
	
.pager .pager-link:hover span {
background: url(/css/main_img/plus_hover.svg) no-repeat scroll 0 center;
background-size: 24px auto;
}
	
.white-box.contact-complete h2 {
font-size: 24px;
font-weight: 600;
color: var(--primary-color);
}

.white-box.contact-complete p {
margin-top: 10px;
}

/* toggler */
.toggle-slide {
overflow: hidden;
cursor: pointer;
user-select: none;
text-align: center;
border-radius: var(--border-all-radius-lg);
background-color: var(--neutral-color-100);
width: 38px;
height: 24px;
padding: 0 2px;
transition: background-color .3s;
}

.toggle-slide:not(.disabled):hover {
background-color: var(--neutral-color-50);
}

.toggle-slide.disabled {
opacity: 0.7;
cursor: default;
}

.toggle-slide .toggle-inner {
width: 56px;
margin-left: -18px;
}

.toggle-slide.active .toggle-inner {
margin-left: 0;
}

.toggle-slide.enabled {
background-color: var(--primary-color);
}

.toggle-slide.enabled:not(.disabled):hover {
background-color: var(--primary-color-500);
}

.toggle-slide .toggle-blob,
.toggle-slide .toggle-off,
.toggle-slide .toggle-on {
float: left;
height: 24px;
line-height: 24px;
font-size: 13px;
color: #ffffff;
}

.toggle-slide .toggle-on {
width: 28px;
padding-left: 8px;
box-sizing: border-box;
text-align: left;
font-weight: 600;
}

.toggle-slide .toggle-off {
margin-left: -10px;
width: 28px;
padding-right: 6px;
line-height: 21px;
font-size: 15px;
box-sizing: border-box;
text-align: right;
}

.toggle-slide .toggle-blob {
position: relative;
z-index: 8;
height: 20px;
width: 20px;
margin-top: 2px;
margin-left: -10px;
background-color: #ffffff;
border-radius: 50%;
}

.toggle-slide:not(.disabled) .toggle-blob {
cursor: hand;
cursor: grab;
}

.radial-progress {
height: 60px;
width: 60px;
position: relative;
}

.radial-progress .inner {
position: absolute;
z-index: 2;
top: 50%;
left: 50%;
height: 50px;
width: 50px;
margin: -25px 0 0 -25px;
background: #ffffff;
border-radius: 100%;
}

.radial-progress .number {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
text-align: center;
transform: translate(-50%, -50%);
z-index: 3;
font-size: 13px;
font-weight: 500;
}

.radial-progress .bar {
position: absolute;
height: 100%;
width: 100%;
background: var(--neutral-color-200);
border-radius: 100%;
clip: rect(0px, 60px, 60px, 30px);
}

.radial-progress .bar .progress {
position: absolute;
height: 100%;
width: 100%;
border-radius: 100%;
clip: rect(0px, 30px, 60px, 0px);
background: var(--primary-color);
}

.radial-progress .left .progress {
z-index: 1;
}

.radial-progress .right {
transform: rotate(180deg);
z-index: 1;
}

.radial-progress.p25 .left .progress {
transform: rotate(90deg);
}

.radial-progress.p50 .left .progress,
.radial-progress.p75 .left .progress,
.radial-progress.p100 .left .progress {
transform: rotate(180deg);
}

.radial-progress.p75 .right .progress {
transform: rotate(90deg);
}

.radial-progress.p100 .right .progress {
transform: rotate(180deg);
}

.linear-progress-header,
.slider-header {
margin-bottom: 16px;
font-size: 16px;
font-weight: 600;
}

.linear-progress-header .change-family-package {
font-weight: normal;
float: right;
}

.linear-progress {
position: relative;
background-color: var(--neutral-color-100);
border-radius: var(--border-all-radius-xl);
height: 12px;
}

.linear-progress .linear-progress-track {
position: absolute;
max-width: 100%;
border-radius: var(--border-all-radius-xl);
background-color: var(--primary-color);
height: 12px;
transition: background-color 0.3s ease-out 0s;
z-index: 3;
}

.linear-progress .linear-progress-track.exceeded {
background-color: var(--danger-color);
}

.linear-progress .linear-progress-track.rollover {
right: 0;
z-index: 2;
background-color: var(--primary-color);
}

.linear-progress-labels {
display: flex;
margin-top: 6px;
}

.linear-progress-label:first-child {
flex-grow: 1;
}

.linear-progress-legend {
margin-top: 14px;
font-size: 14px;
}

.linear-progress-legend .line {
display: inline-block;
width: 18px;
height: 6px;
margin-right: 8px;
border-radius: var(--border-all-radius-lg);
vertical-align: middle;
background-color: var(--primary-color);
}

.linear-progress-legend .available .line {
background-color: var(--neutral-color-100);
}

.linear-progress-legend .rollover .line {
background-color: var(--primary-color);
}

.slider {
position: relative;
background-color: var(--neutral-color-100);
border-radius: var(--border-all-radius-xl);
height: 6px;
}

.slider-track {
position: absolute;
top: 0;
left: 0;
bottom: 0;
border-radius: var(--border-all-radius-xl);
background-color: var(--primary-color);
}

.slider-track.used {
background-color: var(--secondary-color-300);
z-index: 1;
}

.slider-thumb {
position: absolute;
width: 0;
height: 20px;
margin-top: -7px;
z-index: 2;
cursor: pointer;
}

.slider-thumb::before {
content: "";
display: block;
position: absolute;
background: var(--primary-color);
top: 0px;
left: -9px;
width: 20px;
height: 20px;
border-radius: 50%;
}

.slider-labels {
display: flex;
margin-top: 6px;
}

.slider-label:first-child {
flex-grow: 1;
}

.slider-legend {
margin-top: 14px;
font-size: 14px;
}

.slider-legend .line {
display: inline-block;
width: 18px;
height: 6px;
margin-right: 8px;
border-radius: var(--border-all-radius-lg);
vertical-align: middle;
background-color: var(--primary-color);
}

.slider-legend .used .line {
background-color: var(--secondary-color-300);
}

.spinner {
margin: 24px auto;
font-size: 9px;
width: 12px;
height: 12px;
border-radius: 50%;
position: relative;
animation: spinner 0.7s infinite ease;
transform: translateZ(0);
}

@-webkit-keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	0%,
	100% {
		box-shadow: 0em -2.6em 0em 0em var(--primary-color), 1.8em -1.8em 0 0em rgba(0, 27, 116, 0.4), 2.5em 0em 0 0em rgba(0, 27, 116, 0.4), 1.75em 1.75em 0 0em rgba(0, 27, 116, 0.4), 0em 2.5em 0 0em rgba(0, 27, 116, 0.4), -1.8em 1.8em 0 0em rgba(0, 27, 116, 0.4), -2.6em 0em 0 0em rgba(0, 27, 116, 0.6), -1.8em -1.8em 0 0em rgba(0, 27, 116, 0.8);
	}
	12.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(0, 27, 116, 0.8), 1.8em -1.8em 0 0em var(--primary-color), 2.5em 0em 0 0em rgba(0, 27, 116, 0.4), 1.75em 1.75em 0 0em rgba(0, 27, 116, 0.4), 0em 2.5em 0 0em rgba(0, 27, 116, 0.4), -1.8em 1.8em 0 0em rgba(0, 27, 116, 0.4), -2.6em 0em 0 0em rgba(0, 27, 116, 0.4), -1.8em -1.8em 0 0em rgba(0, 27, 116, 0.6);
	}
	25% {
		box-shadow: 0em -2.6em 0em 0em rgba(0, 27, 116, 0.6), 1.8em -1.8em 0 0em rgba(0, 27, 116, 0.8), 2.5em 0em 0 0em var(--primary-color), 1.75em 1.75em 0 0em rgba(0, 27, 116, 0.4), 0em 2.5em 0 0em rgba(0, 27, 116, 0.4), -1.8em 1.8em 0 0em rgba(0, 27, 116, 0.4), -2.6em 0em 0 0em rgba(0, 27, 116, 0.4), -1.8em -1.8em 0 0em rgba(0, 27, 116, 0.4);
	}
	37.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(0, 27, 116, 0.4), 1.8em -1.8em 0 0em rgba(0, 27, 116, 0.6), 2.5em 0em 0 0em rgba(0, 27, 116, 0.8), 1.75em 1.75em 0 0em var(--primary-color), 0em 2.5em 0 0em rgba(0, 27, 116, 0.4), -1.8em 1.8em 0 0em rgba(0, 27, 116, 0.4), -2.6em 0em 0 0em rgba(0, 27, 116, 0.4), -1.8em -1.8em 0 0em rgba(0, 27, 116, 0.4);
	}
	50% {
		box-shadow: 0em -2.6em 0em 0em rgba(0, 27, 116, 0.4), 1.8em -1.8em 0 0em rgba(0, 27, 116, 0.4), 2.5em 0em 0 0em rgba(0, 27, 116, 0.6), 1.75em 1.75em 0 0em rgba(0, 27, 116, 0.8), 0em 2.5em 0 0em var(--primary-color), -1.8em 1.8em 0 0em rgba(0, 27, 116, 0.4), -2.6em 0em 0 0em rgba(0, 27, 116, 0.4), -1.8em -1.8em 0 0em rgba(0, 27, 116, 0.4);
	}
	62.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(0, 27, 116, 0.4), 1.8em -1.8em 0 0em rgba(0, 27, 116, 0.4), 2.5em 0em 0 0em rgba(0, 27, 116, 0.4), 1.75em 1.75em 0 0em rgba(0, 27, 116, 0.6), 0em 2.5em 0 0em rgba(0, 27, 116, 0.8), -1.8em 1.8em 0 0em var(--primary-color), -2.6em 0em 0 0em rgba(0, 27, 116, 0.4), -1.8em -1.8em 0 0em rgba(0, 27, 116, 0.4);
	}
	75% {
		box-shadow: 0em -2.6em 0em 0em rgba(0, 27, 116, 0.4), 1.8em -1.8em 0 0em rgba(0, 27, 116, 0.4), 2.5em 0em 0 0em rgba(0, 27, 116, 0.4), 1.75em 1.75em 0 0em rgba(0, 27, 116, 0.4), 0em 2.5em 0 0em rgba(0, 27, 116, 0.6), -1.8em 1.8em 0 0em rgba(0, 27, 116, 0.8), -2.6em 0em 0 0em var(--primary-color), -1.8em -1.8em 0 0em rgba(0, 27, 116, 0.4);
	}
	87.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(0, 27, 116, 0.4), 1.8em -1.8em 0 0em rgba(0, 27, 116, 0.4), 2.5em 0em 0 0em rgba(0, 27, 116, 0.4), 1.75em 1.75em 0 0em rgba(0, 27, 116, 0.4), 0em 2.5em 0 0em rgba(0, 27, 116, 0.4), -1.8em 1.8em 0 0em rgba(0, 27, 116, 0.6), -2.6em 0em 0 0em rgba(0, 27, 116, 0.8), -1.8em -1.8em 0 0em var(--primary-color);
	}
}

@-moz-document url-prefix() {
	.dropdown-container.subscriptions .dropdown-content {
	max-height: 275px;
	}
}

@media screen and (max-width: 1080px) {
	.content-tabs.subscriptions-full-width-menu .tabs {
	float: none;
	padding-right: 100px;
	}
	
	/* footer */
	#footer .footer-contact .footer-contact-column.column-1 {
	width: 50%;
	}

	#footer .footer-contact .footer-contact-column.column-2 {
	width: 50%;
	padding-right: 0px;
	}

	#footer .footer-contact .footer-contact-column.column-3 {
	display: none;
	}
}

@media screen and (max-width: 970px) {
	.system-info-box-close {
	right: -5px;
	}
	
	.input-row .input,
	.input-row .text,
	.submit-buttons {
	padding-left: 0;
	width: auto;
	}
}

@media screen and (max-width: 940px) {
	.content-tabs.subscriptions-config-menu .tabs {
	float: none;
	padding-right: 100px;
	}
}

@media screen and (max-width: 800px) {
	#header .details {
	display: none;
	}

	table.invoices .cell-pdf span,
	table.invoices .cell-usage span {
	display: none;
	}
	
	.dropdown-container.subscriptions {
	float: none;
	width: auto;
	margin-bottom: 20px;
	}
	
	.content-tabs li.logout {
	display: block;
	}

	.subscription-section .rate-plan-name {
	font-size: 22px;
	padding-right: 60px;
	}
	
	.service-items-list .service-column,
	.packages-list .package-column {
	width: 50%;
	}
	
	.content-tabs ul > li.tab-drop {
	border: none;
	}

	.content-tabs li a {
	border-bottom-width: 2px;
	font-size: 16px;
	height: 48px;
	}
	
	.product-rate-plan-variants-list .radio-row .inline-radio {
	width: calc(50% - 8px);
	}
}

@media screen and (max-width: 760px) {
	#header .header-menu li:not(.main) {
	display: none;
	}
	
	.invoices-list .invoice .invoice-details > div {
	float: none;
	padding-right: 0;
	padding-bottom: 5px;
	white-space: nowrap;
	}
	
	.invoices-list .invoice .invoice-details > div:last-child {
	padding-bottom: 0;
	}
	
	.invoices-list .invoice .invoice-details > div span {
	display: inline-block;
	}
	
	.invoices-list .invoice .invoice-details .invoice-number,
	.invoices-list .invoice .invoice-details .invoice-amount,
	.invoices-list .invoice .invoice-details .invoice-period,
	.invoices-list .invoice .invoice-details .invoice-due-date {
	width: auto;
	}
	
	.invoices-list .invoice .invoice-details > div span:first-child {
	width: 100px;
	}
	
	/* footer */
	#footer .footer-contact .footer-contact-column.column-1,
	#footer .footer-contact .footer-contact-column.column-2 {
	width: 100%;
	padding-right: 0;
	}
	
	.tab-content.consumption.pre-activation .form-section:not(.data-loading) {
	width: 100%;
	}
	
	.tab-content.consumption.pre-activation .form-section .white-box {
	min-height: 0;
	}

	.tab-content.sim-replacement .step-details .left-col,
	.tab-content.sim-replacement .step-details .right-col {
	float: none;
	width: 100%;
	}

	.tab-content.sim-replacement .step-details .right-col {
	margin-top: 30px;
	}

	.tab-content.sim-replacement .step-details p.long-text {
	padding-right: 0;
	}
}

@media screen and (max-width: 720px) {
	.subscriptions-invoice-menu .tabs {
	float: none;
	padding-right: 100px;
	}
}

@media screen and (max-width: 700px) {
	.content-tabs.subscriptions-toggle-menu .tabs {
	float: none;
	padding-right: 100px;
	}
	
	/* form inputs */
	.form-inputs,
	.form-tips {
	float: none;
	width: auto;
	margin: 0;
	}

	.form-inputs-content,
	.form-tips .tips {
	margin: 0 0 20px 0;
	}
	
	.form-tips {
	padding-top: 20px;
	}
	
	.input-row .label {
	float: none;
	width: auto;
	}
	
	.input-row .input,
	.input-row .input.zip,
	.input-row .text {
	padding-left: 0;
	}
	
	/* dropdown */
	.dropdown-container.large .dropdown-button {
	height: auto;
	}
	
	.dropdown-container.large.centered .dropdown-button,
	.dropdown-container.subscriptions.large.centered .dropdown-button {
	width: auto;
	margin: 0;
	}
	
	.dropdown-container.large .dropdown-content-row {
	padding: 6px 10px;
	}
	
	.dropdown-container.subscriptions .phone-cell {
	width: auto;
	}
	
	.dropdown-content-row .input-row .label {
	padding-top: 0;
	}
	
	table.invoices .cell-pdf {
	width: auto;
	}
	
	table.invoices .cell-usage {
	width: auto;
	}
	
	table.invoices .cell-amount,
	table.invoices .cell-balance {
	display: none;
	}
	
	/* tip */
	.form-tips .tip {
	margin-left: 0;
	}
	
	.tip h3 {
	margin-bottom: 10px;
	}
	
	.tip .tip-content {
   	line-height: 1.3;
	}
	
	.header-bottom {
	height: auto;
	}
	
	.input-row .input,
	.input-row .text,
	.submit-buttons,
	#LoginForm .input-row .input,
	#LoginForm .input-row .text,
	#LoginForm .submit-buttons {
	width: auto;
	}
	
	.invoices-list .invoice {
	padding-bottom: 20px;
	}
	
	.dropdown-container.sim-cards {
	width: auto;
	}
	
	.last-invoice .last-invoice-links {
	float: none;
	padding-bottom: 15px;
	}
	
	.last-invoice .last-invoice-details {
	float: none;
	margin-top: -30px;
	}
	
	.last-invoice .last-invoice-links  .invoice-status {
	float: left;
	}
	
	.last-invoice .last-invoice-links .invoice-pdf {
	padding-top: 0;
	}
	
	.invoices-search-form {
	float: none;
	}
	
	.invoices-sort-form-wrapper {
	padding-top: 0;
	}
	
	.invoices-sort-form {
	display: none;
	}
}

@media screen and (max-width: 650px) {
	.tab-content.consumption .form-section .desktop {
	display: none;
	}
	
	.tab-content.consumption .form-section .mobile {
	display: block !important;
	}
	
	.tab-content.consumption .form-section .white-box {
	padding: 20px;
	}
	
	.tab-content.consumption .campaign-box h2 {
	font-size: 18px;
	line-height: 21px;
	padding-bottom: 4px;
	}

	.tab-content.consumption .campaign-box .description {
	font-size: 16px;
	line-height: 19px;
	}

	.tab-content.consumption .campaign-box .details {
	font-size: 14px;
	line-height: 20px;
	margin-top: 3px;
	}
	
	.tab-content.consumption .campaign-box .subscription {
	margin-top: 7px;
	padding: 10px 0;
	}
	
	.tab-content.consumption .campaign-box .owner-name {
	padding-left: 10px;
	font-size: 14px;
	line-height: 16px;
	font-weight: 600;
	}

	.tab-content.consumption .campaign-box .rate-plan {
	padding-left: 10px;
	margin-top: 5px;
	}
	
	.tab-content.consumption .campaign-box .assign-campaign {
	width: 110px;
	}
	
	.tab-content.consumption .campaign-box .left-col {
	max-width: 245px;
	}
	
	.tab-content.consumption .campaign-box .right-col {
	width: 125px;
	text-align: right;
	}
	
	.tab-content.sim-replacement .steps-list .desktop {
	display: none;
	}
	
	.tab-content.sim-replacement .steps-list .mobile {
	display: block !important;
	}
	
	.service-items-list .service-column,
	.packages-list .package-column {
	width: 100%;
	}
	
	.service-items-list .flex-container {
	display: block;
	}
	
	.service-items-list .flex-column {
	width: 100%;
	}
	
	.service-items-list .flex-column:first-child {
	border: none;
	}
	
	.service-items-list .flex-column:first-child .flex-content,
	.service-items-list .flex-column:last-child .flex-content {
	padding: 10px 0;
	}
}

@media screen and (max-width: 600px) {
	.sim-card .form-section-title {
	margin-bottom: 2px;
	}
	
	.sim-card .sim-card-status {
	display: block;
	clear: both;
	margin: 0 0 15px 0;
	}
	
	.sim-card .image {
	float: none;
	text-align: center;
	}
	
	.sim-card .esim-description {
	padding: 25px 0 0 0;
	}
	
	.invoices-list .invoice .invoice-details-row {
	display: block;
	width: auto;
	}
	
	.invoices-list .invoice .invoice-details-column {
	display: block;
	}
	
	.invoices-list .invoice .invoice-links {
	float: none;
	padding-top: 25px;
	text-align: left;
	}
	
	.invoices-list .invoice .invoice-links .invoice-status {
	display: inline-block;
	}
	
	.sim-card-services .service-item .service-item-main-info {
	width: 57%;
	}
}

@media screen and (max-width: 585px) {
	.content-tabs.subscriptions-tiny-menu .tabs {
	float: none;
	padding-right: 100px;
	}
}

@media screen and (max-width: 560px) {
	table.invoices th.cell-status a {
	display: none;
	}
	
	table.invoices .cell-status {
	text-align: center;
	}
	
	table.invoices .cell-status span {
 	width: 0;
	padding-left: 22px;
	overflow: hidden;
	}
	
	.form-section.white-box .submit-buttons {
	padding-left: 0;
	}
	
	.product-rate-plan-variants-list .radio-row .inline-radio {
	width: 100%;
	}
}

@media screen and (max-width: 540px) {
	.invoice-payment-info > div:first-child,
	.invoice-payment-info > div:nth-child(3) {
	min-width: 100px;
	}
}

@media screen and (max-width: 480px) {
	#header .header-menu {
	margin-left: 0;
	}
	
	/* dropdown */
	.dropdown-button span.dropdown-button-content {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	}
	
	.dropdown-container.subscriptions .dropdown-content-row .phone-cell {
	float: none;
	width: auto;
	}
	
	.dropdown-container.subscriptions .dropdown-content-row .owner-cell {
	margin-left: 0;
	padding-left: 0;
	}
	
	/* settings form */
	.settings-form {
	width: 100%;
	}
	
	.settings-form .input-row .input {
	width: auto;
	}
	
	.service-items-list .service-item .service-action-button {
	font-size: 14px;
	height: 28px;
	line-height: 28px;
	}
	
	.last-invoice .invoice-amount {
	font-size: 36px;
	}
	
	.tab-content.consumption .campaign-box .left-col {
	max-width: 55%;
	}
	
	.tab-content.consumption .subscription-box .left-col {
	max-width: 57%;
	}
	
	.new-subscription table.summary th.cell-price {
	display: none;
	}
	
	.edit-link,
	.new-subscription-link,
	.tab-content.consumption .new-subscription-link {
	min-width: 200px;
	justify-content: center;
	}
	
	.sim-card-services .service-item .service-item-main-info {
	float: none;
	width: auto;
	}
	
	.sim-card-services .service-item .service-item-details {
	margin-top: 15px;
	float: none;
	}
	
	.sim-card .dropdown-container {
	position: relative;
	top: 18px;
	left: 0;
	margin-bottom: 30px;
	}
	
	.tab-content.family-subscriptions .splitted-legend {
	display: block;
	}
	
	.tab-content.family-subscriptions .bordered-box .validation-message {
	margin-top: 2px;
	}
	
	/* footer */
	#footer .footer-contact {
	font-size: 16px;
	}
	
	#footer .footer-contact .footer-menu li.footer-social-media a {
	line-height: 40px;
	}
}

@media screen and (max-width: 420px) {
	#header .logo a {
	padding: 0;	
	}
	
	.content-tabs .tabs-container {
	position: static;
	background: var(--neutral-color-600);
	border-top: 1px solid rgba(0,0,0,0.1);
	}
	
	.content-tabs .tabs-holder {
	margin-left: 0;
	}
	
	.content-tabs .tabs.with-dropdown {
	float: none;
	}
	
	.content-tabs .tabs > li.menu-toggler ul,
	.content-tabs li.tab-drop > ul {
	left: -15px;
	right: -15px;
	}
	
	.content-tabs li.tab-drop > ul {
	text-align: left;
	}
	
	.content-tabs li.menu-toggler ul li a,
	.content-tabs li.tab-drop ul li a {
	padding-left: 15px;
	padding-right: 15px;
	}
	
	.tab-content.consumption .campaign-box .left-col {
	max-width: 51%;
	}
	
	.tab-content.consumption .subscription-box .left-col {
	max-width: 50%;
	}
	
	.tab-content.sim-replacement .step-details .delivery-address .input-row .input.zip,
	.tab-content.sim-replacement .step-details .delivery-address .input-row .input.city {
	width: 100%;
	padding-right: 0;
	}
	
	.usage-entries-list table td,
	.usage-entries-list table th {
	padding: 4px 6px;
	}
	
	.input-row .inline-radio {
	padding-right: 15px;
	}
	
	.tab-content.sim-cards h1 {
	float: none;
	}
	
	.tab-content.sim-cards .activate-sim-card {
	float: none;
	display: inline-block;
	margin-top: 0;
	margin-bottom: 15px;
	}
	
	.linear-progress-header .change-family-package {
	float: none;
	}
	
	.new-subscription .submit-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	}
	
	.new-subscription .submit-buttons > div {
	width: 100%;
	display: flex;
    flex-direction: column;
	align-items: center;
	}
	
	.new-subscription .submit-buttons button {
	width: 100%;
	margin-bottom: 16px;
	}
	
	.new-subscription .submit-buttons .cancel-link {
	margin: 0;
	}
}

@media screen and (max-width: 400px) {
	.tab-content.consumption .campaign-box .left-col,
	.tab-content.consumption .campaign-box .right-col {
	float: none;
	max-width: 100%;
	width: auto;
	}
	
	.tab-content.consumption .campaign-box .right-col {
	margin: 0 10px;
	padding: 0;
	}
	
	.tab-content.consumption .campaign-box .assign-campaign {
	width: 100%;
	margin-top: 10px;
	}
	
	.new-subscription .new-number .dropdown-content-header button {
	padding-left: 16px;
	padding-right: 16px;
	}
	
	.new-subscription .new-number .dropdown-content-header input[type=text] {
	padding-left: 16px;
	padding-right: 16px;
	width: 160px;
	}
}

@media screen and (max-width: 380px) {
	.tab-content.sim-replacement .step-details .submit-buttons.activation-date button[type=submit],
	.tab-content.sim-replacement .step-details .input-row .input.picker-input {
	width: 100%;
	}

	.tab-content.sim-replacement .step-details .change-activation-date {
	box-sizing: border-box;
	width: 100%;
	height: 33px;
	}
}

@media screen and (max-width: 370px) {
	.usage-entries-list table .cell-description div {
	max-width: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	}
}

@media screen and (max-width: 350px) {
	.tab-content.consumption .subscription-box .owner-name {
	right: 20px;
	}
	
	.tab-content.consumption .subscription-box .left-col {
	max-width: 100%;
	}
	
	.tab-content.consumption .subscription-box .right-col {
	display: none;
	}
}

@media screen and (max-width: 340px) {
	#header .logo {
	padding: 10px 0;
	}
	
	#header .logo a {
	height: 40px;
	}
	
	#header .logo a img {
	margin-top: 7px;
	}
	
	#header .header-menu {
	clear: left;
	margin: -10px 0 0 0;
	position: relative;
	z-index: 1;
	}
	
	#header .header-menu li {
	margin: 0;
	}
	
	#header .header-menu li a {
	height: 36px;
	line-height: 36px;
	}
	
	.usage-entries-list table .cell-description div {
	max-width: 76px;
	overflow: hidden;
	text-overflow: ellipsis;
	}
	
	.service-items-list .custom-service-item-row {
	flex-direction: column;
	margin-bottom: 10px;
	}
}