.orc-button {
    border: 1px solid #3170B7;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    height: 40px;
    width: 100%;
    padding: 10px;
}

.orc-primary {
    background-color: #3170B7;
    color: #FFF;
}

.orc-primary:active, 
.orc-primary:hover {
    border: 1px solid #12508D;
    background-color: #12508D;
}

.orc-primary:focus-visible {
    border: 1px solid #12508D;
    background-color: #12508D;
    color: #FFF;
    outline: 1px solid #12508D !important;
    outline-offset: 3px;
}

.orc-secondary {
    background-color: #FFF;
    color: #3170B7;
}

.orc-secondary:active,
.orc-secondary:hover {
    background-color: #FFF;
    border: 1px solid #12508D;
    color: #12508D;
}

.orc-secondary:focus-visible {
    background-color: #FFF;
    border: 1px solid #12508D;
    color: #12508D;
    outline: 1px solid #12508D !important;
    outline-offset: 3px;
}

.orc-button:disabled {
    border: 1px solid #5E5E5E;
    background-color: #5E5E5E;
    color: #FFF;
    cursor: not-allowed;
}
.cart-plan-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #E1DFE1;
    border-radius: 5px;
    box-shadow: 0 8px 6px -5px #CDCDCD;
    margin: 14px 8px 8px;
    padding: 16px 8px;
    position: relative;
    pointer-events: all;
    width: 294px;
}

.cart-plan-card .cart-plan-card-featured {
    position: absolute;
    right: -8px;
    top: -12px;
    background-color: #036B37;
    color: #fff;
    font-family: "Simply Cricket Bold", Helvetica, Arial, sans-serif;
    font-size: 12px;
    text-align: center;
    height: 24px;
    width: 106px;
    padding-top: 3px;
}

.cart-plan-card .cart-plan-card-featured:after {
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    bottom: -8px;
    right: 0;
    border-top: 8px solid #01361D;
    border-right: 8px solid #FFF;
}

.cart-plan-card .cart-plan-card-name {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 18px;
    margin: 0;
}

.cart-plan-card .cart-plan-card-body {
    margin: 0 0 16px 0;
}

.cart-plan-card .cart-plan-card-list {
    margin: 0;
    padding: 0 0 16px 16px;
}

.cart-plan-card .cart-plan-card-details {
    font-size: 16px;
    margin: 0 0 16px 0;
}

.cart-plan-card .cart-plan-card-list .cart-plan-card-details{
    margin: 0;
}

.cart-plan-card .cart-plan-card-detail {
    font-size: 8px;
    margin: 0;
}

.cart-plan-card .cart-plan-card-disclaimer {
    font-size: 8px;
    margin: 0;
}

.cart-plan-card .cart-plan-card-disclaimer a {
    color: #3170B7;
}

.cart-plan-card .cart-plan-card-bottom {
    display: flex;
    justify-content: space-between;
    margin: auto 0 0 0;
}

.cart-plan-card .cart-plan-card-bottom .cart-plan-card-price {
    color: #60A630;
    font-size: 20px;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    margin: auto 0;
}

.cart-plan-card .cart-plan-card-bottom .cart-plan-card-cta {
    justify-self: right;
    margin: auto 0;
    min-width: 130px;
}

.full-price-disclaimer {
    font-size: 12px;
}

@media (max-width: 480px) {
    .cart-plan-card {
        width: 100%;
    }

    .cart-plan-card .cart-plan-card-name,
    .cart-plan-card .cart-plan-card-description {
        font-size: 14px;
    }
}
.cart-checkout-button-wrapper .digital-button {
    background: #3170b7;
    border-radius: 5px;
    color: #fff;
    font-family: 'Simply Cricket Demi', Arial, sans-serif;
    font-size: 14px;
    padding: 10px;
    width: 220px;
}

.cart-checkout-button-wrapper .cart-checkout-button {
    background-color: #3170b7;
    text-transform: none;
    height: 42px;
    width: 220px;
}

.cart-checkout-button-wrapper .cart-checkout-button:disabled {
    color: #fff;
}

.cart-checkout-button-wrapper .cart-checkout-button:focus-visible {
    /* TODO: !important flag required here until portallayout CSS dependencies are removed */
    background-color: #12508D;
    outline: 1px solid #12508D !important;
    outline-offset: 3px;
}

.cart-checkout-button-wrapper .loader-wrapper .loader {
    width: 220px;
    height: 42px;
}

@media (max-width: 768px) {
    .cart-checkout-button-wrapper .cart-checkout-button {
        width: 100%;
    }

    .cart-checkout-button-wrapper .loader-wrapper .loader {
        width: 100%;
    }
}
.content-card {
    background-color: #F8F8F8;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    margin: 8px;
    padding: 8px;
    pointer-events: all;
    width: 290px;
}

.content-card .content-card-header {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 19px;
    margin: 0 0 8px 0;
}

.content-card .content-card-content-list {
    margin: 0;
    padding: 0 0 0 16px;
}

.content-card .content-card-content-list li {
    font-size: 16px;
}

.content-card .content-card-footnotes-wrapper {
    margin: 16px 0 0 0;
}

.content-card .content-card-footnotes-wrapper .content-card-footnote {
    font-size: 8px;
}

.content-card .content-card-footnotes-wrapper .content-card-footnote a {
    color: #3170B7;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

@media (max-width: 480px) {
    .content-card {
        width: 100%;
    }

    .content-card .content-card-header,
    .content-card .content-card-content-list li {
        font-size: 14px;
    }
}
[id^="priceDetails-"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.device-image-container {
    margin-right: 20px;
}

.device-image-container img {
    /* image sizing to fit legacy image styles */
    max-width: 45px;
    max-height: 100px;
    min-height: 43px;
    height: auto;
    margin: 0px;
}

.device-details {
    display: flex;
    margin: 10px 0;
}

.device-content p {
    margin: 0;
    font-size: 12px;
}

.device-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.device-container .device-name {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin: 0;
}

.device-container .text-button {
    margin: 0;
    padding: 0;
    font-size: 12px;
    width: fit-content;
}

@media (min-width: 769px) {
    .device-container p {
        font-size: 14px;
    }

    .device-container .device-name {
        font-size: 18px;
    }

    .device-details {
        margin: 0;
        padding: 0 24px 10px;
    }

    [id^="device-price-details"] .dot-flashing {
        right: 100px;
    }
}
.digital-input-group {
    position: relative;
}

.digital-input-group.validation-icon-input-group {
    display: inline-grid;
    width: 90%;
}

.validation-icon-wrapper {
    display: inline-grid;
    width: 10%;
}

.validation-icon-wrapper img {
    height: 24px;
    width: 24px;
}

.digital-input-group .digital-input {
    border-radius: 5px;
    border: 1px solid #ccc;
    caret-color: #1b75bb;
    height: 29px;
    outline: none;
    padding: 24px 8px 16px;
}

.digital-input-group input:focus {
    border: 1px solid #1b75bb;
}

/* Placeholder label */
.digital-input-group label {
    color: #303133;
    cursor: text;
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    font-size: 16px;
    padding: 4px 8px;
    position: absolute;
    text-align: left;
    top: 8px;
    left: 5px;
    transition: 0.15s ease-out all;
    width: 100%;
}

/* Floating Label */
.digital-input-group input:focus + label,
.digital-input-group input:valid + label {
    color: #1b75bb;
    cursor: default;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 12px;
    padding: 0 5px;
    top: 2px;
}

.digital-input-group .input-clear-button {
    background: url('https://cricketwireless.com/uiassets/input-error-button.png')
        center no-repeat;
    cursor: pointer;
    margin: 0;
    position: absolute;
    top: 1px;
    right: 0;
    width: 35px;
    height: 40px;
    visibility: hidden;
}

.digital-input-group .input-clear-button:focus {
    border: 2px solid #1b75bb;
}

.digital-input-group input:focus + label + .input-clear-button,
.digital-input-group input:valid + label + .input-clear-button {
    visibility: visible;
}

.digital-input-group + .validated-input-error {
    margin-left: 10%;
    width: 90%;
}

/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */

:root {
    --dot-ini-color: #E1DFE1;
    --dot-end-color: #5E5E5E;
    --dot-size: 6px;
    --dot-space: 10px;
}

.dot-flashing {
    position: relative;
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 5px;
    background-color: var(--dot-ini-color);
    color: var(--dot-ini-color);
    text-align: right;
}

.dot-flashing::before,
.dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}

.dot-flashing::before {
    left: calc(-1 * var(--dot-space));
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 5px;
    background-color: var(--dot-ini-color);
    color: var(--dot-ini-color);
}

.dot-flashing::after {
    left: var(--dot-space);
    width: var(--dot-size);
    height: var(--dot-size);
    border-radius: 5px;
    background-color: var(--dot-ini-color);
    color: var(--dot-ini-color);
}

@media (prefers-reduced-motion: no-preference) {
    .dot-flashing::before {
        animation: dot-flashing 1s infinite alternate;
        animation-delay: 0s;
    }

    .dot-flashing {
        animation: dot-flashing 1s infinite linear alternate;
        animation-delay: 0.5s;
    }

    .dot-flashing::after {
        animation: dot-flashing 1s infinite alternate;
        animation-delay: 1s;
    }

    @keyframes dot-flashing {
        0% { background-color: var(--dot-ini-color) }
        50%,
        100% { background-color: var(--dot-end-color) }
    }
}

@media (prefers-reduced-motion: reduce) {
    .dot-flashing,
    .dot-flashing::before,
    .dot-flashing::after {
        background-color: #5E5E5E;
        color: #5E5E5E;
    }
}

.calculating:before {
    content: "Calculating...";
    font-size: 12px;
    color: #046A38;
}
.sub-line-edit {
    font-size: 12px;
    text-align: left;
    padding: 0;
    width: fit-content;
}

.new-number-form {
    margin-top: 16px;
    min-width: 165px;
    width: 224px;
}

.new-number-form .submit-button { 
    background-color: #3170b7;
    text-transform: none;
    height: 40px;
    width: 240px;
}

.new-number-form .submit-button:active,
.new-number-form .submit-button:hover {
    border: 1px solid #12508D;
    background-color: #12508D;
}

.new-number-form .submit-button:disabled {
    background-color: #5E5E5E;
    color: #fff;
}

.new-number-form .submit-button:focus-visible {
    /* TODO: !important flag required here until portallayout CSS dependencies are removed */
    background-color: #12508D;
    outline: 1px solid #3170b7 !important;
    outline-offset: 3px;
}

.new-number-zip-complete {
    margin: 0;
}

@media (max-width: 768px) {
    .new-number-form {
        width: 100%;
        max-width: 224px;
    }
}

@media (max-width: 480px) {
    .new-number-zip-complete {
        font-size: 12px;
    }
}
a.tile-link {
    display: grid;
    border: 1px solid #E1DFE1;
    border-radius: 10px;
    box-shadow: 0 0 5px 0 rgba(187, 189, 192, 0.5);
    cursor: pointer;
    height: 120px;
    width: 152px;
    padding: 8px 0;
    margin: 0 16px;
    text-decoration: none;
}

.tile-link:hover,
.tile-link:focus,
.tile-link:active {
    outline: none;
    box-shadow: 0px 2px 15px 3px rgba(187, 189, 192, 0.5);
}

.tile-link-title {
    display: block;
    color: #6E6F72;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 8px;
    padding: 0 8px;
}

.tile-link-text {
    display: block;
    color: #000;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 12px;
    text-align: center;
}

.tile-link-image-wrapper {
    display: grid;
}

.tile-link-image {
    margin: auto;
    width: 30px;
}

.tile-link-detail {
    display: block;
    color: #000;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 9px;
    text-align: center;
}

.tile-link-detail strong {
    color: #60A630;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 12px;
}


/* No image */
.tile-link .tile-link-text-no-image {
    align-self: end;
    color: #60A630;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-align: center;
}

.tile-link .tile-link-detail-no-image {
    color: #6E6F72;
    margin: 0;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 10px;
    text-align: center;
    padding: 0 8px;
}
.no-device-wrapper {
    margin: 16px 0 32px 40px;
    pointer-events: auto;
}

.no-device-tile-wrapper {
    display: grid;
    grid-template-columns: 166px 166px 166px 166px;
    margin: 24px 0;
}

.no-device-header.digital-text {
    color: #60A630;
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    font-size: 22px;
    margin-left: 16px;
}

.no-device-sub-header.digital-text {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin-left: 16px;
}

.no-device-wrapper .all-phones-link {
    background-color: #3170b7;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #fff;
    font-family: 'Simply Cricket Demi', Arial, sans-serif;
    font-size: 14px;
    margin: 0 0 0 16px;
    padding: 10px 25px;
}

.no-device-wrapper .all-phones-link:hover {
    background-color: #12508d;
    text-decoration: none;
}

.no-device-wrapper .all-phones-link:focus {
    /* TODO: !important flag required here until portallayout CSS dependencies are removed */
    background-color: #12508d;
    outline: 1px solid #3170b7 !important;
    outline-offset: 3px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .no-device-wrapper {
        margin: 16px 0 32px;
    }

    .no-device-tile-wrapper {
        display: grid;
        grid-row-gap: 16px;
        grid-template-columns: 166px 166px;
    }
}
.no-device-wrapper {
    margin: 16px 0 32px 40px;
    pointer-events: auto;
}

.no-device-tile-wrapper {
    display: grid;
    grid-template-columns: 166px 166px 166px 166px;
    margin: 24px 0;
}

.no-device-header.digital-text {
    color: #60A630;
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    font-size: 22px;
    margin-left: 16px;
}

.no-device-sub-header.digital-text {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin-left: 16px;
}

.no-device-wrapper .all-phones-link {
    background-color: #3170b7;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #fff;
    font-family: 'Simply Cricket Demi', Arial, sans-serif;
    font-size: 14px;
    margin: 0 0 0 16px;
    padding: 10px 25px;
}

.no-device-wrapper .all-phones-link:hover {
    background-color: #12508d;
    text-decoration: none;
}

.no-device-wrapper .all-phones-link:focus {
    /* TODO: !important flag required here until portallayout CSS dependencies are removed */
    background-color: #12508d;
    outline: 1px solid #3170b7 !important;
    outline-offset: 3px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .no-device-wrapper {
        margin: 16px 0 32px;
    }

    .no-device-tile-wrapper {
        display: grid;
        grid-row-gap: 16px;
        grid-template-columns: 166px 166px;
    }
}
.plan-wrapper {
    border-top: 1px solid #f2f2f2;
    padding: 16px 0;
}

.plan-config-message p {
    color: #60a530;
    font-family: 'Simply Cricket Book', Arial, Helvetica, sans-serif;
    font-size: 22px;
    padding: 0 0 16px 16px;
    margin: 0;
}

.plan-summary {
    display: flex;
    padding: 16px 0px;
}

.plan-summary img {
    width: 40px;
}

.plan-image-container {
    margin-right: 24px;
}

.plan-summary-description-wrapper {
    padding: 0 24px;
    pointer-events: all;
    width: 100%;
}

.plan-container {
    width: 100%;
}

.plan-content {
    display: flex;
    flex-direction: column;
}

.plan-content h2 {
    font-size: 18px !important;
    margin: 0 !important;
}

.plan-content p {
    font-size: 14px;
    margin: 0;
}

[id^="plan-price-details"] {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    text-align: right;
    position: relative;
}

.plan-edit-link {
    cursor: pointer;
    font-size: 12px;
}

.plan-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 24px 0 0 0;
}

@media (max-width: 480px) {
    .plan-cards-wrapper {
        margin: 8px 0 0 0;
    }

    .plan-cards-wrapper .cart-plan-card:nth-child(4) {
        height: auto;
    }
}

@media (max-width: 768px) {

    .plan-config-message,
    .plan-summary {
        margin: 0;
    }

    .plan-config-message p {
        font-size: 20px;
    }

    .plan-summary-description-wrapper {
        padding: 0 0 0 24px;
    }

    .plan-content h2 {
        font-size: 14px;
    }

    .plan-content p {
        font-size: 12px;
    }
}


[id^="plan-price-details"] [role="alert"]+.tooltip-icon {
    top: 1.5em;
    position: absolute;
    right: 0;
}

[id^="plan-price-details"] [role="alert"] {
    margin-top: 16px
}

@media (min-width: 769px) {
    [id^="plan-price-details"] .dot-flashing {
        right: 100px;
    }

    .plan-summary {
        padding: 16px 24px;
    }

    .price-overview+.tooptip-icon {
        top: -25px;
        position: absolute;
        right: 56px;
    }


    [id^="plan-price-details"] .tooltip-icon {
        position: absolute;
        right: 0px;
        top: calc(-1 * (1.5em + 4px));
        margin-right: 54px;
    }


    [id^="plan-price-details"] [role="alert"]+.tooltip-icon {
        top: -3px;
    }
}

[id^="plan-price-details"] .text-button {
    margin: 0;
    padding: 0;
    font-size: 12px;
    width: fit-content;
}

#mainWrapper.editview [id^="toggleCartLine"] {
    display: none;
}
.demi {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

.plan-price i {
    margin-left: 4px;
    margin-right: -20px;
}

.loader-wrapper .loader {
    width: 120px;
    height: 24px;
}

@media (max-width: 768px) {
    .loader-wrapper .loader {
        width: 56px;
    }

    .plan-price i {
        display: block;
        margin-left: auto;
        margin-right: 0;
    }
}
.price-overview {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.price-breakdown {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 4px 0 8px;
}

.price-overview .price-value {
    position: absolute;
    right: 0;
    bottom: 0;
}

.price-breakdown .price-label {
    font-size: 12px;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, Helvetica, sans-serif;
}

.price-breakdown .price-value {
    font-size: 14px;
    color: #5E5E5E;
}

.price-breakdown .price-entry {
    margin-left: 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media (min-width: 769px) {
    .price-breakdown .price-label {
        font-size: 14px;
    }

    .price-overview .price-value {
        right: 75px;
        font-size: 20px;
    }

    .price-breakdown .price-value {
        margin-right: 75px;
        font-size: 18px;
    }
}

.deviceDropDownArrow {
    margin: 0 8px;
    transition: .2s;
}

.deviceDropDownArrow.open {
    transform: rotateX(180deg);
}

.dot-flashing {
    position: absolute;
    right: 25px;
}
.text-button {
    font-family: 'Simply Cricket Demi';
    display: flex;
    align-items: center;       
    color: #3170B7;
}
.text-button,
.text-button:active,
.text-button.active,
.text-button[disabled],
fieldset[disabled] .text-button {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    }
.text-button,
.text-button:hover,
.text-button:focus,
.text-button:active {
    border-color: transparent;
}
.text-button:hover,
.text-button:focus {
    color: #003E7F;
    background-color: transparent;
}
.text-button:focus-visible,
.text-button:focus {
    outline: 1px solid #003E7F !important;
    border-radius: 4px !important;
}
.text-button[disabled],
.text-button[disabled]:hover,
fieldset[disabled] .text-button:hover,
.text-button[disabled]:focus,
fieldset[disabled] .text-button:focus {
    color: #777;
    text-decoration: none;
}

.tooltip-icon {
	background-color: #3170b7;
	border-radius: 100%;
	cursor: pointer;
	font-style: normal;
	font-size: 12px;
	margin: auto;
	height: 16px;
	width: 16px;
	line-height: 16px;
	text-align: center;
	color: #FFFFFF;
	display: inline-block;
	vertical-align: text-top;
}

.tooltip-icon:hover {
	background-color: #12508d;
}

.tooltip-text {
	text-align: left;
	background-color: #3170b7;
	border-radius: 3px;
	color: #fff;
	font-size: 12px;
	margin-top: 3px;
	padding: 10px;
	position: fixed;
	z-index: 101;
	white-space: normal;
}

.tooltip-text .tooltip-content-header {
	margin-bottom: 24px;
}

.tooltip-arrow {
	position: fixed;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #3170b7;
}
.transfer-number .modal-button {
    background-color: #fff;
    color: #1B75BB;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    padding: 0;
    width: auto;
}

.transfer-number .modal-button span {
    font-size: 14px;
}

.transfer-number .modal-button:hover {
    text-decoration: underline;
}

.transfer-number .transfer-number-input-wrapper {
    display: flex;
}

.transfer-number .transfer-number-input-wrapper input {
    border-radius: 5px;
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    padding: 8px;
    width: 240px;
    height: 24px;
}

.transfer-number .transfer-number-input-wrapper input:focus {
    border: 2px solid #3170b7;
}

.transfer-number .port-eligibility-form {
    display: flex;
    flex-direction: column;
}

.transfer-number .port-eligibility-form .field-error-container {
    width: 256px;
}

.transfer-number .remove-line-button {
    background-color: #fff;
    border-color: #3170b7;
    color: #3170b7;
    margin: 0 16px 0 0;
    text-transform: none;
    height: 48px;
    width: 240px;
}

.transfer-number .remove-line-button:active,
.transfer-number .remove-line-button:hover {
    background: #fff;
    border: 1px solid #12508D;
    color: #12508D;
}

.transfer-number .submit-button:disabled {
    background-color: #5E5E5E;
    color: #fff;
}

.transfer-number .submit-button {
    background-color: #3170B7;
    text-transform: none;
    height: 40px;
    width: 240px;
}

.transfer-number .remove-line-button:focus-visible {
    border: 1px solid #12508D;
    color: #12508D;
    outline: 1px solid #12508D !important;
    outline-offset: 3px;
}
.transfer-number .submit-button:focus-visible {
    border: 1px solid #12508D;
    background-color: #12508D;
    color: #FFF;
    outline: 1px solid #12508D !important;
    outline-offset: 3px;
}

.discount-eligibility-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.transfer-number .transfer-number-display {
    margin: 0
}

@media (max-width: 480px) {
    .transfer-number-display {
        font-size: 12px;
    }

    .transfer-number .remove-line-button {
        margin: 0 0 16px 0;
    }

    .discount-eligibility-actions {
        flex-direction: column;
    }
}
.button {
    text-transform: none
}

.clear-cart-button {
    font-family: 'Simply Cricket Demi';
    text-transform: none;
}

#configGoToCart .ready-checkout {
    font-family: 'Simply Cricket Demi', Arial, sans-serif;
    color: #fff;
    font-size: 14px;
    text-transform: none;
    padding: 9px 0px;
}

#cartAddLine .add-another-line {
    font-family: 'Simply Cricket Demi', Arial, sans-serif;
    background: #fff;
    color: #3170b7;
    border-color: #3170b7;
    border: 1px solid #3170b7;
    width: 220px;
    height: 42px;
    text-transform: none;
    font-size: 14px;
    padding: 8px 25px;
    margin-right: 20px;
    margin-bottom: 20px;
}

#cartAddLine .add-another-line:hover{
    border: solid 2px #23527C;
    color: #23527C;
    padding: 7px 24px 7px 24px;
}

#cartAddLine .add-another-line:focus{
    /* TODO: !important flag required here until portallayout CSS dependencies are removed */
    outline: 1px solid #3170b7 !important;
    outline-offset: 3px;
}

@media (max-width: 581px) {
    #cartAddLine .add-another-line{
        width: 100%;
        margin-right: unset;
    }
}
/***********************************
General Styles
***********************************/

article .main > .container-fluid {
    opacity: 1;
}
/*
to be used for A11Y: hides content visually and remains available for screen readers.
*/
.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.sub-content {
    width: 100%;
}

.inner-accordion.features.collapse.in .main h1 {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 0;
}

.main h1 span {
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
}

.main h2,
.main .h2 {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    margin: 0 0 10px 0;
    font-size: 26px;
}

.main h3 {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 18px;
    margin-top: 5px;
}

.main h5 {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 0;
}

.main h2.cart-summary-elements {
    font-size: 18px;
    margin-bottom: 0;
}

.discount-name h2.cart-summary-elements {
    margin-top: 10px;
}

.plan-discounts .discount-name h2.cart-summary-elements {
    margin-top: 3px;
}

.no-device div.device-image {
    text-align: center;
}

.no-device img.device-img {
    width: 30px;
}

.main #accessories_section h2.cart-summary-elements {
    margin-top: 1em;
}

.main h3.cart-bottom-elements {
    font-size: 16px;
}
.main h2.cart-bottom-elements {
    font-size: 16px;
    margin-bottom: 0px;
    margin-top: 5px;
}

.heading-subvalue {
    font-size: 12px;
    font-weight: 400;
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    margin-bottom: 15px;
}



label.sub-title {
    margin-bottom: 0;
}

.discount-icon,
.feature-icon,
.plan-icon,
.phone_number-icon,
.shipping-icon, .device-image .byod {
    min-height: 40px !important;
    margin: 7px 5px 0 0;
    width: 42px !important;
}

.buyflow-content-basic {
    padding-left: 0;
    margin-top: 1em;
}

.activeStep, .byodNotEligibleHeader {
    padding: 16px 0 0 28px;
    font-size: 22px;
    color: #60a530;
    font-family: 'Simply Cricket Book';
    margin-bottom: -5px;
}

.plan-listing .cart-list-details .notEditingParent {
    padding: 0px !important;
}

.activeStep.featuresActiveStep, .plan-listing .activeStep, .phone_number.cart-list .phone_number-listing .activeStep, .subscriberSelection-listing .activeStep {
    animation-duration: 1s;
    animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -webkit-animation-duration: 1s;
}

/***********************************
Button Styles
***********************************/
.add {
    z-index: 1;
    max-width: 150px;
    width: 100%;
}

.toggle-btn {
    width: 25px;
    height: 15px;
    cursor: pointer;
    margin-top: 3px;
    color: #3170b7;
}

.header-total {
    white-space: nowrap;
    top: 50%;
    position: absolute;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 18px;
}

.accessories .add {
    margin-bottom: 15px;
}

.zipCodeCart, 
.numberSpacing input,
.transferNumberCart {
    width: 100% !important;
    max-width: 268px;
}

.transferNumberSize input::placeholder {
    font-size: 1em;
}

.cart-coupon-code .add-coupon-code-link {
    background: #ffffff url('/uiassets/tag.png') no-repeat;
    background-size: 20px;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 16px;
    padding-left: 25px;
}

.cart-coupon-code .submit {
    margin: 5px 7px 0 0;
    width: 150px;
}

.cart-coupon-code label,
.cart-coupon-message p {
    color: #000;
    font-size: 16px;
}

.cart-coupon-code .input-wrapper {
    margin-bottom: 5px;
    position: relative;
}

.cart-coupon-code .input-wrapper .coupon-code {
    text-transform: uppercase;
    max-width: 320px;
}

.cart-coupon-code .help-block,
.remove-coupon-code {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 12px;
}

.cart-coupon-code .help-block {
    color: #3f3f3f;
}

.coupon h3 {
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    margin-top: 15px;
}

.cart-coupon-message p {
    background: #ffffff url('/uiassets/checkmark.png') no-repeat;
    background-size: 20px;
    padding-left: 25px;
}

#appliedCouponCode .cart-total-label {
    padding-top: 40px;
}

.dark-green-text,
.dark-green {
    color: #046a38;
}

/***********************************
Error Styles
***********************************/
.error-container .error-message {
    height: 100%;
    display: none;
}

.error-container .error-message .flash.error {
    margin-top: 21px !important;
    padding-bottom: 10px;
}

.cart-list-details .error-message .flash.error {
    margin-top: 4% !important;
}

.cart-list-details .error-message .flash.error img {
    margin-top: -3px;
}

#itemsNotPresentOnline .flash.error label.error {
    display: block;
}

/***********************************
Remove Styles
***********************************/
.remove {
    /*background: url('/uiassets/remove-item-icon.png') no-repeat left center;*/
    display: block;
    /*margin-bottom: 25px;*/
    /*margin-top: 20px;*/
    /*padding-left: 24px;*/
    text-decoration: none;
}

.remove.open span, .red-alert {
    color: #cf292a;
}

.remove span {
    vertical-align: middle;
}

.remove-options {
    background-color: #FFFFFF;
    padding-bottom: 20px;
    padding-top: 20px;
    z-index: 2;
    color: #cf292a;
}

.remove-message p {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 14px;
    padding: 0;
}

/***********************************
Inventory Error Styles
***********************************/
.inventoryError {
    margin-top: 25px;
}

.inventoryError .flash.error .icon {
    top: -1px;
}

/***********************************
Cart - Empty Styles
***********************************/
.empty-cart .empty-heading, .cart-error-restore-header {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 30px;
    padding-top: 30px;
    text-align: center;
}

.cart-error-restore {
    margin-bottom: 175px;
}

.empty-cart .empty-heading hr {
    margin-top: 30px !important;
}

.empty-details, .cart-restore-message,
.btns-text-wrapper {
    text-align: center;
}

.cart-error-restore-header {
    margin-bottom: 20px !important;
}

.cart-restore-message {
    margin-bottom: 25px !important;
}

.cart-error-restore .accCatalogError-wrapper{
    max-width: 660px;
    margin: auto;
}

.accCatalogError-wrapper .cart-error-restore-header,
.accCatalogError-wrapper .cart-restore-message
{
    text-align: left;
}
.accCatalogError-wrapper p.cart-restore-message{
    margin-left: 20px;
}

.accCatalogError-wrapper ul{
    margin-bottom: 20px;
}

.inventoryError .error-heading,
.catalogError .error-heading,
.itemsNotPresent .error-heading{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cart-restore-message,
.btns-text-wrapper {
    max-width: 660px;
    margin: auto;
}

a.cart-restore-btn {
    margin-left: 20px;
    margin-right: 20px;
}

.empty-details a {
    min-width: 142px;
    display: inline-block;
}

.empty-details h2 {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 16px;
}

.getting-started {
    padding-top: 15px;
    padding-bottom: 20px;
}

.shop-accessories {
    padding-bottom: 100px;
}

/***********************************
Heading Styles
***********************************/
.cart-line-header {
    max-width: 92%;
    padding: 30px 30px 0 30px;;
}

.line-accordion {
    padding: 24px 0;
}

.single-line .header-total {
    display: none;
}

.single-line .sub-line-header {
    transform: translateY(11px);
    height: 0;
    margin: 0;
    padding: 0;
}

.single-line .line-accordion {
    position: relative;
}

.inner-accordion {
    background: none;
    transition: height 200ms;
}

.accordion-toggle-ui {
    transition: .2s;
    width: auto;
    background: none;
    padding: 0;
    margin: 0 10px 0 0;
    border: 0;
    z-index: 50;
    position: absolute;
    top: 26px;
    right: 10px;
}

.accordion-toggle-ui:hover {
    text-decoration: none;
    background: none;
    color: #12508d
}

.accordion-toggle-ui:focus {
    border: 2px solid #78bdef;
}

.accordion-toggle-ui[aria-expanded="true"] {
    transform: rotateX(180deg);
}

.accordion-toggle-ui[aria-expanded="false"] {
    transform: rotateX(0deg);
}

.accordion-toggle-ui[aria-expanded="true"] + .cart-line-header {
    margin-bottom: 0;
    padding-bottom: 0;
}

.accordion-toggle-ui[aria-expanded="true"] + .cart-line-header .header-total {
    opacity: 0;
    transform: translate(-100%, -50%);
}

.accordion-toggle-ui[aria-expanded="true"] + .cart-line-header .h-sub-titles {
    transition-duration: 200ms;
    display: none;
    height: 0;
}

.accordion-toggle-ui[aria-expanded="false"] + .cart-line-header .h-sub-titles {
    display: block;
    margin-right: 0;
    transition-duration: 200ms;
}

.accordion-toggle-ui[aria-expanded="true"] + .cart-line-header .sub-line-header.multi {
    padding-top: 0;
    margin-top: 0;
    transition-duration: 200ms;
}

.accordion-toggle-ui[aria-expanded="false"] + .cart-line-header .sub-line-header.multi {
    padding-bottom: 10px;
}

.accordion-toggle-ui[aria-expanded="true"] + .cart-line-header .remove-line {
    margin-top: 10px;
}

.accordion-toggle-ui[aria-expanded="false"] + .cart-line-header .remove-line {
    display: none;
}

.accordion-toggle-ui[aria-expanded="false"] + .cart-line-header .collapsed-total:not(.multi) {
    display: none;
}


@media (min-width: 581px) {
    .plan-listing .cart-list-details.plan-list-details {
        margin-left: 15px;
    }
    .plan-listing .cart-list-details.plan-list-details:last-child {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .accordion-toggle-ui[aria-expanded="false"] + .cart-line-header .remove-line {
        display: none;
    }

    .accordion-toggle-ui[aria-expanded="false"] + .cart-line-header .sub-line-header.multi {
        padding-bottom: 10px;
    }

    .accordion-toggle-ui[aria-expanded="true"] + .cart-line-header .collapsed-total,
    .accordion-toggle-ui[aria-expanded="false"] + .cart-line-header .remove-line {
        display: none;
    }
    .plans.cart-list .inner-accordion.collapse {
        padding-top: 10px;
    }
}

.btn-primary.decline, .btn-primary.decline.remove {
    color: #3170b7;
    background-color: #fff;
    border-color: #3170b7;
    min-width: 120px;
}

.btn-primary.decline:hover, .btn-primary.decline.remove:hover,
.btn-primary.decline:focus, .btn-primary.decline.remove:focus {
    border: solid 2px #23527C;
    background-color: #ffffff;
    color: #23527C;
    padding: 9px;
}

.panel {
    border: 0;
    background: 0;
}

.cart-head-divider {
    border: 1px solid #e1dfe1;
    width: calc(100% - 30px);
    margin: .55em auto;
}

.items-in-cart {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.items-in-cart h1 {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 30px;
}

.items-in-cart a {
    right: 15px;
    position: absolute;
    bottom: 0;
}

.cart-heading hr {
    margin: 10px 0 20px;
    height: 1px;
    background-color: #e1dfe1;
    width: 100%;
}

.inner-wrapper {
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.checkout-button {
    width: calc(48% - 1em);
    margin-bottom: 0;
}

.checkout-button-wrapper {
    margin-top: 25px;
}

.back-to-cart-button {
    font-size: 16px;
    cursor: pointer;
    padding-top: 25px;
    padding-right: 10px;
}

.email-me-cancel-button,
.protect-button {
    color: #3170b7;
    background-color: #FFFFFF;
    border: 1px solid #cdcdcd;
    width: 100%;
    margin-bottom: 0;
}

.protect-button:hover,
.protect-button:focus {
    color: #23527C;
    background-color: #FFFFFF;
    border: 2px solid #23527C;
}

/***********************************
Error Styles
***********************************/
.flash.error {
    padding-left: 30px;
    padding-top: 0;
    font-size: 14px !important;
}

.flash.error .icon {
    top: 3px;
}

.error-message {
    min-height: 65px;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 14px;
}

.flash.error.api-error {
    margin: 50px 0 !important;
}

div.field-error-container {
    margin-top: 10px;
}

div.field-error-container:after {
    display: none;
}

/***********************************
Top Promo Styles
***********************************/

.promo-link {
    font-size: 14px;
    text-decoration: underline;
}

.panel-group .btn {
    margin-top: 15px;
    min-width: 140px;
    width: auto;
}

.group-headline {
    font-size: 34px;
    line-height: 1.3;
    margin-top: 14px;
}

.group-headline strong {
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 50px;
}

.group-headline sup {
    top: -0.4em;
}

.current-monthly-savings {
    font-size: 30px;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

.current-dollar-savings {
    font-size: 80px;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    line-height: 1.1;
}

.current-dollar-savings sup {
    top: -0.3em;
}

.left-border {
    border-left: 1px solid #DDD;
}

/**
Collapse Area Styles
***********************************/
.panel-collapse hr {
    margin-top: 29px;
    margin-bottom: 12px;
    border-top: 1px solid #bbbdc0;
}

.border-row-2 {
    width: 50%;
    float: left;
}

.panel-group {
    margin-bottom: 15px;
}

.panel-group .panel {
    border: 0;
    background: #f6f6f6;
    box-shadow: inset 0 0 12px 1px rgba(0, 0, 0, .2);
}

.panel-group .padding {
    padding: 25px 0;
}

.panel-group h2 {
    font-size: 35px;
}

.panel-group .h4 {
    font-size: 22px;
}

.panel-group .legal-text {
    margin-top: 20px;
    font-size: 12px;
}

/***********************************
Email me Styles
***********************************/
.email-me-container {
    -webkit-transition: max-height 0.5s;
    -moz-transition: max-height 0.5s;
    -ms-transition: max-height 0.5s;
    -o-transition: max-height 0.5s;
    transition: max-height 0.5s;
    max-height: 320px;
    overflow: hidden;
    margin-bottom: 30px;
}

@-moz-document url-prefix() { 
    .email-me-container {
        overflow: unset;
    }
}

.email-me-container #emailMeForm {
    display: none;
}

.email-me-container.row.collapsed {
    max-height: 30px;
}

.email-me-container .email-link {
    font-size: 16px;
}

.email-me-container .email-link:before {
    content: "";
    display: inline-block;
    background-image: url('/uiassets/email_me.png');
    width: 19px;
    height: 14px;
    margin-right: 10px;
    background-repeat: no-repeat;
    position: relative;
    top: 1px;
}

.email-me-container label {
    font-size: 16px;
}

.email-me-container .accept-wrapper .faux-checkbox {
    float: left;
}

.email-me-container .accept-wrapper label {
    font-size: 14px;
    margin-left: 40px;
}

.email-me-container .accept-wrapper a {
    font-size: 14px;
    margin-left: 16px;
}

.email-me-container .emailmeButtons button {
    width: 100%;
    margin: 0;
    height: 42px;
    white-space: nowrap;
}

.email-me-cancel-button {
    padding: 9px;
}

.email-me-cancel-button:disabled,
.email-me-cancel-button[disabled]:hover {
    color: #ffffff;
    border: none;
}

.email-me-cancel-button:focus,
.email-me-cancel-button:hover {
    background-color: #ffffff;
    color: #23527C;
    border: 2px inset #23527C;
}

.email-me-cancel-button:hover {
    background-color: #ffffff;
    color: #23527C;
    border: 2px solid #23527C;
}

.success-message {
    padding: 0 15px 10px 15px;
    font-size: 16px;
}

.success-message span {
    display: block;
    margin-bottom: 10px;
}

.success-message  .success-message-heading {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

.success-message .success-message-heading:before {
    content: "";
    display: inline-block;
    background-image: url('/uiassets/checkmark.png');
    width: 18px;
    height: 18px;
    background-size: 100%;
    margin-right: 10px;
    background-repeat: no-repeat;
}

/***********************************
Cart Styles
***********************************/
.book-font {
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
}

.demi-font {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

.bold-font {
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
}

.text-danger {
    color: #cf282a;
}

.line-status-dot {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    display: inline-block;
    top: 2px;
    position: relative;
    margin-right: 6px;
}

.line-status-dot.complete {
    background-color: #60A630;
}

.line-status-dot.incomplete {
    background-color: #FFCD00;
}

.inner-accordion.collapse.in {
    pointer-events: all;
}

.inner-accordion.collapse.in,
.inner-accordion.collapsing,
.line-accordion.collapse.in,
.line-accordion.collapsing {
    transition-duration: 200ms;
    opacity: 1;
}

.inner-accordion.collapse,
.inner-accordion.collapsing,
.line-accordion.collapse,
.line-accordion.collapsing {
    opacity: 0;
}

.cart-list > div:first-child {
    margin: 0 15px;
}

/* for the bottom of the cart - shipping/fee info*/
.shipper-fee-info-wrapper {
    width: 92%;
}

.shipping-wrapper, .fee-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 10px 25px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.img-icon-detail-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
}

.icon-img.shipper {
    width: 40px;
    margin-bottom: 20px;
    margin-right: 18px;
}

.icon-img.device-upgrade {
    width: 35px;
    margin-left: 5px;
    margin-bottom: 10px;
    margin-right: 18px;
}

.shipping-details.wrapper, .fee-details.wrapper {
    display: inline-block;
}

.shipping-details.wrapper > h3, .fee-details.wrapper > h3 {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0;
    line-height: 18px;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;;
}

.shipping-details.wrapper > h3 {
    width: 225px;
}

.fee-details.wrapper > h3 {
    width: 200px;
}

.shipping-details.wrapper > p {
    margin: 0;
}

.fee-details.wrapper > p {
    margin: 0;
}

.price-wrapper {
    text-align: right;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

.two-lines {
    width: 100%;
    height: 10px;
    display: block;
    margin-top: 20px;
    border-top: 2px solid #bbbdc0;
    border-bottom: 2px solid #bbbdc0;
}
/* END - for the bottom of the cart - shipping/fee info */

.cart-list .panel:first-child {
    margin-bottom: 0;
}

.price-value {
    font-size: 20px;
}

.main .h-title {
    white-space: nowrap;
    font-size: 22px;
    width: 30%;
    max-width: 275px;
    margin-bottom: 5px;
    padding: 0;
}

.cart-list-details {
    padding: 10px 25px;
}

.plan-discounts .cart-list-details {
    padding-bottom: 0;
}

.multi-line .device-listing .cart-list-details, .single-line .accessory-listing .cart-list-details {
    padding-top: 0;
}

.phone_number-details.inner-line-details {
    padding: 0 15px;
}

.inner-line-details {
    font-size: 14px;
    padding: 0 20px;
    pointer-events: all;
}

.img-item,
.img-item img {
    width: 52px;
    height: auto;
    min-height: 52px;
    max-height: 100px;
}

.main-line-header {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    margin: 0;
    position: relative;
    border-bottom: 2px solid #e1dfe1;
}

.cart-totals.estimated-total {
    margin-top: 25px;
}

.sub-line-header {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    margin: 5px 0 0 0;
    padding-top: 5px;
}

.inner-line-details h3 {
    margin: 0;
}

.inner-line-details span, 
.feature-details-column .price-value {
    font-size: 14px;
}

.line-status {
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
    margin-bottom: 5px;
    margin-top: 7px;
}

.lineBorder {
    border-top: 1px solid #f2f2f2;
}

.phone-selector-error-container {
    margin-top: 5px;
}

.phone-selector-error-container img {
    margin-top: -3px;
}

.cart-items {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 0 0 4px 0;
    box-shadow: 0 2px 6px 4px rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
}

.heading-value {
    font-size: 24px;
    height: 100%;
    margin-top: 15px;
    margin-bottom: 10px;
}

.clear-cart-button {
    color: #3170b7;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    font-size: 16px;
    background: none;
}

.remove-line {
    font-size: 12px;
    margin: 12px 0 0 0;
    cursor: pointer;
    z-index: 500;
    pointer-events: all;
    padding: 0;
    background: none;
    color: #3170b7;
    width: auto;
    white-space: nowrap;
    background: none;
}

.summary-heading {
    display: inline;
    margin: 0;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 30px;
}

.remove-line[data-toggle="modal"]:focus,
.summary-heading:focus,
.clear-cart-button:focus {
    outline: 5px auto -webkit-focus-ring-color !important
}

.remove-line:hover,
.clear-cart-button:hover {
    color: #23527C;
    text-decoration: underline;
    background: none;
}

.price {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    text-align: right;
    pointer-events: none;
    padding: 45px 0 0 0;
}

.device-price, .feature-price, .discount-price {
    padding: 0;
    position: absolute;
    bottom: 18px;
    right: 100px;
}

.phone-price .price {
    text-align: left;
    padding: 0;
}

.single-line .accessory-price.price {
    padding: 36px 0 0 0;
}

.shipping-price {
    padding-top: 32px;
}

#cartContainer .plans .learnmore {
    margin-top: 20px;
}

.productContainer img {
    max-height: 100px;
    width: auto;
    margin: auto;
    display: block;
}

.productContainer a:focus {
    display: inline-block;
}

.cart-coupon-message {
    padding-top: 40px;
}

.upgrade-visible .cart-coupon-message {
    padding-top: 0;
}

.estimated-total .white-background {
    height: 180px;
}

.wide {
    width: 100% !important;
}

/**
Device Styles
***********************************/
.device-listing, .protect-listing, .plan-listing, .plan-discounts, .phone_number-listing, .subscriberSelection-listing {
    position: relative;
}

.device-image, .accessory-image {
    margin: 0 5px 0 -5px;
}

.byod .review-content p {
    font-size: 18px;
}

.device-color {
    font-size: 14px;
}

.imei-number * {
    display: inline-block;
    margin: 0
}

.device-discounts sup {
    top: -0.3em;
}

.device-discounts {
    padding-top: .75em;
}

.voicemail-upgrade {
    background: #e1dfe1;
    padding: 7px 40px;
}

.voicemail-upgrade a {
    color: #12508d;
}

.cart-list .voicemail-upgrade .cart-list-details {
    background: none;
}

.voicemail-upgrade h4 {
    font-size: 24px;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    margin-bottom: 2px;
}

.voicemail-upgrade p {
    font-size: 16px;
}

/**
Plans Styles
***********************************/


.plan-details .group-save-title {
    font-size: 16px;
}

/**
Features Styles
***********************************/

.features .btn-wrapper_features .btn-primary.for-cprotect,
.subscriberStatus button {
    width: calc(48% - 1em);
    max-width: 250px;
    display: inline-block;
    white-space: nowrap;
}

.features .error-message {
    color: #231F20;
}

.features .error-message a {
    margin: 10px 0 25px;
    float: left;
}


#cricketNumberFieldset {
    margin: 0;
    padding: 0;
}

#cricketNumberFieldset .input-wrapper {
    max-width: 268px;
    padding: 0;
    margin: 18px 0 20px 0;
}


.sub-line-edit, .add-line-edit, .sign-in-link {
    display: block;
    cursor: pointer;
    pointer-events: all;
}
.btn-link {
    text-align: left;
    padding: 0;
}
.disableCartLinesHeaderLinks {
    text-decoration: none;
    color: black;
    pointer-events: none;
}

.cart-list-details.features-listing, .plans.cart-list .inner-accordion.collapse, .phone_number.cart-list .phone_number-listing .cart-list-details, .subscriberSelection-listing .inner-accordion.collapse {
    animation-duration: 0.75s;
    animation-delay: 1s;
    -webkit-animation-duration: 0.75s;
    -webkit-animation-delay: 1s;
}

.btn-wrapper_features {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    max-width: 500px;
}

.btn-wrapper_features .for-cprotect, .features .btn-wrapper_features .btn-primary.addtocart,
.subscriberStatus button {
    width: calc(50% - 2em);
    max-width: 200px;
    margin: 1em;
}

.btn-wrapper_features .for-cprotect:first-child,
.subscriberStatus .button-wrapper button:first-child {
    margin-left: 0;
}

/**
Accessories Styles
***********************************/

.accessories.accessory-only {
    margin-top: 0;
}

.accessories.noborder {
    border-top: none;
}

.accessory-image img {
    width: 100%;
}

/** Only the first add accessory button should be shown */
.accessory-listing .add-accessory-btn {
    display: none;
}

.accessories.cart-list div:nth-child(2) .add-accessory-btn {
    display: block;
}

/**
Discount Styles
***********************************/

.devices .device-discounts .device-discount-price,
.devices .device-promo .device-discount-price,
.plans .plan-discounts .line-plan-discount-price {
    padding-left: 0;
    padding-right: 0;
}

.device-discounts .row {
    margin: 0;
}

.accessories-discounts {
    padding-bottom: 10px;
}

.accessories-discounts .row {
    margin: 0 15px;
}

.plan-discounts {
    padding-top: .75em;
}

.plan-discounts .discount-icon.img-item {
    margin: 0 5px 0 0;
}

.plans .plan-discounts .plan-discount-price,
.accessories .accessories-discounts .accessories-discount-price,
.accessories .accessories-discounts .accessory-own-discount-price {
    padding-left: 0;
    padding-right: 0;
}

.devices .device-discounts,
.plans .plan-discounts,
.accessories .accessories-discounts {
    /* border-top: 1px dotted #bbbdc0; */
    margin: 0 15px;
}

.devices .device-promo {
    border-top: 1px dotted #bbbdc0;
    margin: 0 15px;
}

.accessories-discounts.discounts-bottom {
    border-bottom: 1px solid #bbbdc0;
    margin: 10px 30px;
}


.accessories .accessories-discounts .price-value {
    padding: 18px 15px 15px 0;
    margin: 10px 30px;
}

.devices .device-discounts.portin .price-value,
.devices .device-promo.portin .price-value {
    padding-top: 24px;
    padding-bottom: 22px;
}

.device-promo .price {
    font-size: 14px;
}

/**
Cart Bottom Styles
***********************************/
.cart-bottom {
    padding: 0 30px 30px 30px;
}

.cart-bottom-sec {
    margin-top: 2em;
}

.cart-total-label {
    padding: 0;
}

.btn-wrapper_config-bottom {
    display: flex;
    margin: 0 0 15px 14%;
}

.congratsMessaging {
    font-size: 26px;
    color: #60a630;
    margin-left: 14%;
    outline: none;
}

#numberPromoNotEligible .btn-wrapper {
    display: flex !important;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    max-width: 500px;
    margin-left: 0;
}

a.button.shop {
    background-color: #fff;
    border: 2px solid #3170b7;
    color: #3170b7;
    display: inline-block;
    min-width: 160px;
    text-align: center;
    width: auto;
}

a.button.shop:hover, a.button.shop:focus {
    color: #12508d;
    border-color: #12508d;
}

#numberPromoNotEligible button.btn-removeLine {
    color: #3170b7;
    background-color: #fff;
    border-color: #3170b7;
}

#numberPromoNotEligible .btn-removeLine {
    width: calc(48% - 1em);
}

.btn-primary.ready-checkout,
.checkout-button.primary, .button-link {
    white-space: nowrap;
    width: 220px;
}

.btn-primary.ready-checkout {
    margin: 0 17px 15px 0;
}

#cartCheckoutBtn {
    margin: 0 0 15px 0;
}

#keepMyNumber,
#numberPromoNotEligible button.btn-removeLine
#numberPromoNotEligible button.btn-pickAnotherPlan,
#numberPromoNotEligible button.btn-keepGoing {
    display: inline-block;
    white-space: nowrap;
    min-width: 120px;
    width: calc(48% - 1em);
}

.btn-primary.ready-checkout:focus,
#numberPromoNotEligible button.btn-pickAnotherPlan:focus
#numberPromoNotEligible button.btn-keepGoing:focus {
    background-color: #12508d;
    border-color: #12508d;
}

.alternativePayments {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 14px;
    margin-top: 2em;
    width: 100%;
}

.alternativePayments span {
    display: block;
}

#altPaymentsBtns {
    width: 100%;
}

#altPayment_googlePay {
    background-color: #000;
    margin-top: 1em;
    width: 220px;
    border-radius: 5px;
    padding: 10px;
    text-indent: -9999px;
    height: auto;
}

#altPayment_googlePay:hover {
    background-repeat: no-repeat;
    background-position-x: 50%;
    background-position-y: 50%;
    background-size: contain;
    background-origin: content-box;
}

#paypal-button {
    margin-top: 1em;
    width: 220px;
    height: 40px;
}

.apple-pay-button {
    display: inline-block;
    background-size: 100% 60%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 5px;
    box-sizing: border-box;
    min-height: 42px;
    min-width: 120px;
    -apple-pay-button-type: plain;
    white-space: nowrap;
    width: calc(48% - 1em);
    padding: 10px;
    margin-top: 1em;
    text-indent: -9999px;
}

.apple-pay-button-black {
    background-image: -webkit-named-image(apple-pay-logo-white);
    background-color: black;
    color: white;
}

.apple-pay-button-black:hover {
    background-image: -webkit-named-image(apple-pay-logo-white);
    background-color: #3c4043;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% 60%;
    color: white;
}

/**
Bottom Shipping Styles
***********************************/

.shipping-details p {
    margin-bottom: 0
}


.shipping .plan-details p {
    font-size: 14px;
}

.shipping .plan-details a {
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
    color: #000;
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif
}

.shipping .plan-details a:hover {
    text-decoration: none;
}

/**
Bottom Discounts Styles
***********************************/
.promo-cart-form {
    width: 85%;
}

.discount-name {
    min-height: 57px;
}

.discount-details h3 {
    text-transform:none;
}

.inner-line-discounts .cart-list-details * {
    display: inline-block
}

.feature-details-column, 
h2.planHeading.cart-summary-elements, 
h2.zipcode.cart-summary-elements,
h2.subscriberSelectionHeading.cart-summary-elements {
    margin-top: 7px;
}

.feature-details-column {
    padding: 0 15px;
}

.protect-step {
    margin-top: 14px;
}

.protect-step ul {
    margin: 0 0 1px 12px;
    padding: 0;
    width: 60%;
}

.protect-steps-anime {
    animation-duration: .5s !important;
}

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

#acc_discounts_list {
    margin-bottom: 2em;
    padding-top: 1em;
}

#acc_discounts_list .accessory-price.price.sub-line-total {
    padding: 0;
    margin-top: 1em;
}
/**
Bottom Total Styles
***********************************/

.cart-totals.coupon-code-section {
    border: none;
    height: auto;
}

.cart-total-price * {
    display: inline;
}

.cart-total-label .cart-total-price .cart-total-heading {
    line-height: 1.42857143;
    font-size: 22px;
}

.cart-total-label .cart-total-price .price-value {
    width: 16.67%;
    min-width: 144px;
    padding: 0;
    font-size: 22px;
    float: none !important;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
}

.cart-total-label .font-12 {
    padding-top: 10px;
}

.cart-upgrade-fee-label {
    text-align: left;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 18px;
    min-height: 88px;
    padding-top: 40px;
}

#cartContainer {
    margin-top: 5px;
}

#cartContainer .cart-total-price {
    padding: 0;
    width: 100%;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
}

.collapsed-total {
    height: 0;
}

.main .cart-total-heading {
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: left;
}

.main .upgrade-visible .cart-total-heading {
    margin-top: 0;
}

#cartContainer .cart-coupon-price.upgrade-visible {
    line-height: unset;
}

.cart-bottom-sign-in button {
    color: #3170b7;
    background-color: #FFFFFF;
}

.cart-bottom-sign-in button {
    border: 1px solid #3170b7;
}

.cart-coupon-code .cancel {
    margin: 0 17px 0 0;
    width: 150px;
}

.cart-bottom-sign-in button:hover,
.cart-bottom-sign-in button:focus {
    color: #12508d;
    padding: 9px;
    background-color: #FFFFFF;
    border: 2px solid #12508d;
}

.btn-default {
    border: 1px solid #3170b7;
    color: #3170b7;
    background-color: #fff;
}

.btn-default:hover, .btn-default:focus {
    border: solid 1px #23527C;
    background-color: #ffffff;
    color: #23527C;
}

/***********************************
Related Accessories Styles
***********************************/
#accessoryContent {
    padding-top: 30px;
    border-top: 1px solid #868686;
    margin-top: 30px;
}

#accessoryContent h2 {
    font-size: 30px;
}

/***********************************
 SM - MD Styles
***********************************/

@media (max-width: 768px) {
    .accessory-image.img-item {
        margin-top: 10px;
    }

    .accessories-discounts .row {
        margin: 0;
    }

    .accessory-own-discount-price {
        padding-top: 20px !important;
    }

    .cart-list > div:first-child.shipping-listing {
        max-width: 100%;
        margin: 0 !important;
    }

    .cart-coupon-code--hidden {
        display: none;
    }

    .shipping.cart-list:after {
        max-width: 100%;
    }

    .shipping-price {
        padding: 0;
        position: absolute;
        right: 2px;
        top: 20px;
    }

    .main h2.cart-summary-elements {
        font-size: 14px;
    }

    .discount-name h2.cart-summary-elements {
        margin-top: 0;
    }

    .device-image, .accessory-image {
        margin: 0 10px 0 0;
    }

    .sub-line-edit, .add-line-edit, .sign-in-link {
        padding-bottom: 10px;
    }

    .inner-line-details span, 
    .protect-choice, 
    .feature-details-column .price-value {
        font-size: 12px;
    }

    .protect-step ul {
        margin: 0 8px 0 20px;
        width: 90%;
    }

    .feature-details-column, 
    .protect-step, 
    h2.planHeading.cart-summary-elements, 
    h2.zipcode.cart-summary-elements {
        margin-top: 0;
    }

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

    .single-line .price {
        padding: 45px 0 0 0;
    }

    .single-line .price.was-price {
        padding: 0;
    }

    .discount-price {
        padding-top: 30px;
    }

    .byod .device-listing .device-price {
        margin-top: 12px;
    }

    .toggle-btn {
        margin-top: -3px;
    }

    .btn-wrapper_features {
        display: block;
        justify-content: unset;
    }

    .btn-wrapper_config-bottom {
        display: block !important;
        justify-content: unset;
        margin-left: 10%;
    }

    .btn-wrapper_config-bottom button {
        margin-right: 20px;
    }

    .congratsMessage {
        width: 92vw;
        margin: 0 auto;
    }

    .congratsMessaging {
        width: 100vw;
        font-size: 20px;
        margin-left: 10%;
    }

    .btn-wrapper_features .for-cprotect, .btn-wrapper_features .btn-primary.addtocart {
        max-width: calc(100% - 2em);
        width: calc(100% - 2em);
        white-space: nowrap;
        margin: 1em auto;
    }

    .device-price, .feature-price, .discount-price {
        right: 0px;
    }

    /***********************************
    Heading Styles
    ***********************************/
    .main h3 {
        margin-top: 0;
    }

    .cart-heading {
        margin-top: 0;
    }

    .collapsed-total {
        top: -28px;
        position: relative;
    }

    .cart-line-header {
        max-width: 100%;
        padding: 15px 0 0 0;
    }

    .cart-bottom-sec {
        text-align: right;
    }

    .accessory-details {
        padding-bottom: 65px;
    }

    .accessory-details:last-child {
        padding-bottom: 26px;
    }

    .add {
        width: 100%;
        padding-left: 2px;
        padding-right: 2px;
    }

    .device-discounts .cart-list-details {
        padding: 0 0 .75em 0;
    }

    .coupon-code-form,
    .cart-list {
        position: relative;
    }

    .all-lines-wrapper .panel:last-child {
        margin-bottom: 0;
    }

    .sub-line-header {
        height: auto;
    }

    .sub-line-header:not(.multi) {
        height: 0;
    }

    .cart-total-label .cart-total-price .cart-total-heading,
    .cart-total-label .cart-total-price {
        font-size: 16px;
    }

    .main .h-title {
        width: 100%;
        font-size: 18px;
        max-width: unset;
    }

    .accordion-toggle-ui[aria-expanded="true"] + .cart-line-header .header-total {
        opacity: 0;
        transform: translate(-36px, -21px);
    }

    .header-total {
        position: static;
        transform: translate(-36px, -1px);
        font-size: 18px;
    }

    .single-line .header-total {
        transform: translate(0px, -90%);
    }

    .line-status {
        position: static;
        transform: translateY(0);
        padding: 0;
    }

    .accordion-toggle-ui {
        margin-right: -12px;
        width: auto;
    }

    .cart-list-details {
        padding: 10px 0 0 0;
    }

    .for-cprotect.decline.btn {
        background-color: #fff;
        color: #3170b7;
    }

    .img-item,
    .img-item img {
        width: 43px;
        max-width: 45px;
        height: auto;
        min-height: 43px;
        margin: 0 7px 10px 2px;
    }

    .device-image.img-item .device-img {
        margin: 0;
    }

    .cart-items {
        padding: 10px;
    }

    .cart-line-header {
        width: 100%;
        max-width: 100%;
    }

    .single-line .line-accordion,
    .inner-accordion.collapse.in,
    .inner-accordion.collapsing,
    .line-accordion.collapse.in,
    .line-accordion.collapsing {
        max-width: 100%;
    }

    .single-line .line-accordion {
        margin-top: unset;
    }

    .line-accordion {
        padding: 0 0 10px 0;
    }

    .cart-list > div:first-child, .device-discounts {
        margin: 0 !important;
    }

    .device-discounts .cart-list-details + .discount-price.price {
        padding: 0;
    }

    .shipping-listing .cart-list-details {
        margin-bottom: 15px;
    }

    .cart-coupon-code {
        padding: 15px 0;
    }

    .cart-coupon-message {
        padding: 18px 0 0;
    }

    .cart-coupon-code .cancel,
    .cart-coupon-code .submit {
        margin: 0 0 15px 0;
        width: 100%;
    }

    .cart-coupon-code .input-wrapper .coupon-code {
        max-width: 100%;
        width: 100%;
    }

    .promo-cart-form {
        width: 100%;
    }

    .device-promo {
        padding-bottom: 20px;
    }

    .left-border {
        border: none;
    }

    .container-fluid {
        padding: 10px;
    }

    .cart-bottom {
        width: 100%;
        padding: 0 10px;
    }

    /***********************************
    Cart Styles
    ***********************************/
    .phone-selector-error-container {
        width: 59%;
        margin-top: 5px;
    }

    .cart-upgrade-fee-label h3 {
        margin-top: 24px;
    }

    .border-row-2 {
        width: 100%;
        text-align: center;
    }

    .panel-group .btn {
        margin-top: 7px;
    }

    .group-headline {
        margin-top: 20px;
        font-size: 24px;
    }

    .group-headline strong {
        font-size: 36px;
    }

    .border-row-2:nth-child(2) {
        border: 0;
    }

    /***********************************
    Cart Styles
    ***********************************/
    .price .price-value {
        font-size: 18px;
        white-space: nowrap;
        margin-left: -35px;
    }

    .voicemail-upgrade {
        padding-left: 0;
        padding-right: 0;
    }

    .voicemail-upgrade p,
    .voicemail-upgrade h4 {
        text-align: center;
    }

    /**
    Cart Bottom Styles
    ***********************************/
    .cart-total-label .cart-total-price .price-value {
        min-width: unset;
        padding-bottom: 0;
        width: 25%;
    }

    .cart-bottom .cart-bottom-first {
        margin-bottom: 15px;
    }

    .cart-bottom-sec .checkout-button {
        margin-top: 11px;
    }

    .col-xs-centered {
        float: none;
        margin: 0 auto;
    }

    .features .add {
        position: relative;
        top: 0;
        z-index: 0;
        margin-bottom: 14px;
        margin-top: 8px;
    }

    .plans .plan-discounts {
        margin: 10px 10px;
    }

    .shipping-icon {
        margin-left: 2px !important;
    }
}

@media (max-width: 581px) {
    .activeStep, .byodNotEligibleHeader {
        padding: 16px 0 0 4px;
        font-size: 20px;
    }

    .cart-total-label {
        left: 0;
    }

    .email-me-container.row.collapsed {
        max-height: 40px;
    }

    .features .btn-wrapper_features .btn-primary.for-cprotect, .features .btn-wrapper_features .btn-primary.addtocart, .button-link,
    .btn-primary.ready-checkout, #numberPromoNotEligible button.btn-removeLine, #numberPromoNotEligible button.btn-pickAnotherPlan, #numberPromoNotEligible button.btn-keepGoing,
    .checkout-button, .checkout-button.primary, .apple-pay-button, #altPayment_googlePay, #paypal-button {
        margin: 1em 0;
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .alternativePayments{
        text-align: center;
    }

    .inner-line-details {
        padding: 0 15px;
    }

    .multi-line .device-listing .cart-list-details {
        padding-top: 0;
    }

    .device-image {
        margin-top: 3px;
    }

    .sub-line-header {
        margin: 0;
        padding-bottom: 0;
    }

    .devices .device-discounts,
    .plans .plan-discounts,
    .accessories .accessories-discounts {
        margin: 0;
    }

    .btn-wrapper_config-bottom, .inner-wrapper {
        display: block !important;
        justify-content: unset;
        margin: 0px;
    }

    .congratsMessaging {
        width: 100vw;
        font-size: 5.4vw;
        margin: 0 auto;
    }

    .transferNumberSize input::placeholder {
        font-size: 3.3vw;
    }

    a.cart-restore-btn {
        margin-left: 0;
        margin-right: 0;
        width: 100% !important;
    }

    .cart-error-restore > div {
        padding: 0 30px;
    }

    .btns-text-wrapper > a:nth-child(2) {
        margin-bottom: 20px;
    }
}

@media (min-width: 769px) {
    .accessory-own-discount-price {
        padding-top: 30px;
    }

    .devices.byod .price-value {
        margin-top: 1em;
    }

    .header-total {
        transform: translate(-100%, -50%);
        transition-duration: 200ms;
    }

    .inner-accordion.features.collapse.in .feature-icon.img-item.pull-left.col-xs-1 {
        margin-left: 9px;
        margin-top: 15px;
    }

    .expressShipping {
        margin-top: 8px;
    }
}

/* for the bottom of the cart - shipping-fee info*/
@media (max-width: 480px) {
    .shipper-fee-info-wraper {
        width: 100%;
    }
    .cart-bottom-elements.header-three {
        white-space: normal !important;
        margin-bottom: 5px;
    }

    .fee-details.wrapper > .cart-bottom-elements.header-three {
        width: 135px !important;
    }

    .shipping-details.wrapper > h3,
    .fee-details.wrapper > h3{
        font-size: 14px;
    }

    .shipping-details.wrapper > .cart-bottom-elements.header-three {
        max-width: 150px !important;
    }

    .shipping-wrapper, .fee-wrapper {
        margin-left: 7px;
    }

    .icon-img {
        margin-right: 17px;
    }

    .img-icon-detail-wrapper {
        margin-right: 0;
    }

    .icon-img.device-upgrade {
        margin-bottom: 45px;
        width: 35px;
    }

    .price-value.fee {
        margin-top: 30px;
    }

    .shipper-fee-info-wrapper {
        width: 100%;
    }

    .price-value {
        font-size: 17px;
    }

    .email-me-container .accept-wrapper a {
        margin-left: 40px;
    }
}

.temp-accessory-style-1908 {
    box-shadow: none;
    padding: 0 30px;
}

.device-byod-link {
    max-width: 160px;
    border: 2px solid #3170b7;
}
.shop.device-phone-link {
    margin-right: 20px;
}

/* Duplicate line A/B test variants */
.dup-line-indicator {
    color: #046A38;
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
    font-size: 18px;
    padding: 0 24px;
    border-bottom: 1px solid #F2F2F2;
}

#duplicateLineTest {
    background: #f6f6f6;
    display: block;
    margin: 0 -10px -10px;
    padding: 10px;
    padding-left: 75px
}

@media (max-width: 480px) {
    .dup-line-indicator {
        padding: 0 8px;
    }
}


a[data-target="#free-express-shipping-modal"] {
    font-size: 12px;
    vertical-align: top;
}

#duplicateLineBtn {
    pointer-events: all;
    background-color: #fff;
    border: 1px solid #3170B7;
    color: #3170B7;
    width: 220px;
    margin: 1px 0;
}

#duplicateLineBtn:hover {
    border: solid 2px #23527C;
    color: #23527C;
    margin: 0;
}

#duplicateLineBtn:focus {
    outline: 1px solid #3170b7 !important;
    outline-offset: 3px;
}

@media(min-width: 769px) {
    #duplicateLineTest {
        padding: 10px 20px 10px 125px;
    }
}

@media (max-width: 581px) {
    #duplicateLineBtn {
        width: 100%; 
    }
    #duplicateLineTest {
        padding: 10px 20px;
    }
}
.disabled {
    pointer-events: none;
    opacity: .5;
    color: #404041;
    background: none;
}

#mainWrapper.editview .lineInfo{
    display: none;
}

.row.cart-heading {
    height: 53px;
    max-height: 53px;
}

#mainWrapper .cart-heading, #mainWrapper .email-me-container, #mainWrapper .cart-bottom,
#mainWrapper .cart-line-header, #mainWrapper .inner-line-discounts {
    transition-duration: 200ms;
    transition-property: height, max-height, margin, padding, width, max-width;
}

#mainWrapper.editview .cart-heading, 
#mainWrapper.editview .email-me-container, 
#mainWrapper.editview .cart-bottom,
#mainWrapper.editview .cart-line-header, 
#mainWrapper.editview .inner-line-discounts,
#mainWrapper.altview .cart-line-header,
#mainWrapper.altview .email-me-container,
#mainWrapper.altview .cart-heading,
#mainWrapper.altview .cart-bottom,
#mainWrapper.altview .accordion-toggle-ui,
#mainWrapper.altview .inner-line-discounts {
    visibility: hidden;
    opacity: 0;
    height: 0;
    max-height: 0;
    width: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    overflow: hidden;
    pointer-events: none;
    transition-duration: 200ms;
}

#mainWrapper.altview .cart-list > div:first-child {
    margin: 5px 30px;
    max-width: 91%;
}

#mainWrapper.altview .line-accordion {
    padding: 10px 0 5px 0;
    max-width: 100%;
}

#mainWrapper .altView_keep,
#mainWrapper #altView_return {
    display: none;
}

#mainWrapper.altview .primary-nav .row {
    position: relative;
}

#mainWrapper.editview #altView_return,
#mainWrapper.editview .altView_keep,
#mainWrapper.altview #altView_return,
#mainWrapper.altview .altView_keep {
    display: block;
    pointer-events: all;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    transition-duration: 0ms;
}

#mainWrapper.editview .altView_keep,
#mainWrapper.altview .altView_keep {
    width: 250px;
    position: absolute;
    top: 35px;
    left: calc(50% - 110px);
    white-space: nowrap;
}

#mainWrapper.editview #altView_return,
#mainWrapper.altview #altView_return {
    width: 100px;
    height: auto;
    position: relative;
    white-space: nowrap;
    top: 1em;
}

#mainWrapper.altview #altView_return a {
    cursor: pointer;
    padding: 0;
    margin: 0;
    top: 10px;
    position: relative;
}

#mainWrapper.altview .plans .inner-accordion {
    pointer-events: all;
}

#mainWrapper.altview .inner-accordion.devices {
    top: -30px;
}

#mainWrapper.altview .price {
    display: none;
}

#mainWrapper.altview .was-price {
    top: 0;
    position: relative;
}

#mainWrapper.altview .tab-content {
    padding: 10px 95px 0 110px;
}

@media(max-width: 768px) {
    #mainWrapper.altview .altView_keep {
        top: 50px;
        left: 31.5vw;
    }

    #mainWrapper.altview .cart-list > div:first-child {
        margin: 0;
        max-width: 100%;
        width: 100%;
    }

    #mainWrapper.altview .cart-list-details {
        padding: 10px 0;
    }

    #mainWrapper.altview .cart-list-details:last-child {
        padding-bottom: 0;
    }

    #mainWrapper.altview .line-accordion {
        padding: 0;
    }

    #mainWrapper.altview .tab-content {
        padding: 10px 40px;
    }

    #mainWrapper.altview .input-wrapper,
    #mainWrapper.altview .button-wrapper {
        width: 28vw;
    }

    #mainWrapper.altview .device-price.price {
        bottom: 18px;
    }

    #mainWrapper.editview .device-price.price,
    #mainWrapper.altview .device-price.price{
        position: relative;
        bottom: 0;
        top: 50px;
        padding: 0;
    }

    #mainWrapper.editview .altView_keep,
    #mainWrapper.altview .altView_keep {
        max-width: 100%;
        padding: 10px;
        top: 0;
        left: 0;
        position: relative;
        margin-bottom: 20px;
        width: 240px;
        margin-left: auto;
        margin-right: auto;
        display: block !important;
    }
}

@media (max-width: 581px) {
    #mainWrapper.altview .tab-content {
        padding: 10px;
    }

    #mainWrapper.altview .inner-line-details {
        padding: 0 15px;
    }

    #mainWrapper.altview .input-wrapper,
    #mainWrapper.altview .button-wrapper {
        width: 100%;
    }

    #mainWrapper.altview .button.primary {
        width: 100%;
    }
}

@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0);
    }
}

@keyframes bounce {
    from, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    from, 50%, to {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    from {
        -webkit-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes jello {
    from, 11.1%, to {
        -webkit-transform: none;
        transform: none;
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

@keyframes jello {
    from, 11.1%, to {
        -webkit-transform: none;
        transform: none;
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}

@-webkit-keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    from, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    to {
        opacity: 0;
    }
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    to {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}

/**
Line Selector Styles
***********************************/

.subscriberSelectionSubmit {
    padding: 20px 45px 0 45px;
}

.altview .subscriberSelection-listing .tabs-container {
    margin-left: -75px;
}

.subscriberSelection-listing .tabs-tab a {
    padding: 0;
}

.subscriberSelection-listing .tabs-slider {
    width: 140px;
}

.subscriberSelection-listing button {
    width: 240px;
    height: 40px;
}

@media (max-width: 768px) {
    .altview .subscriberSelection-listing .tabs-container {
        margin-left: -40px;
    }

    .subscriberSelection-listing .tabs-tab {
        width: 180px;
    }
}

@media (max-width: 581px) {
    .altview .subscriberSelection-listing .tabs-container {
        margin-left: -26px;
    }

    .subscriberSelection-listing .tabs-tab {
        width: 150px;
    }

    .subscriberSelection-listing button {
        width: 100%;
    }
}


.subscriberProtectStatusHeadingParagraph {
    margin: 0px;
}

@media (max-width: 581px) {
    .subscriberStatus button {
        width: 100%;
    }
}

/**
Cart Plans CSS
***********************************/
a.demi {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

.altview .tabs-container {
    margin: 0 -20px 0;
    padding: 0 64px 0 32px;
}

.tabs-container {
    border-bottom: 1px solid #bbbdc0;
    margin: 10px -45px 0;
    max-width: 1024px;
    overflow-y: hidden;
    padding: 0 108px 0 38px;
    width: calc(100vw - 30px);
}

.tabs-list {
    list-style-type: none;
    margin: 0 0 0 87px;
    overflow: auto;
    padding: 10px 0;
    position: relative;
    white-space: nowrap;
}

.tabs-list::after {
    content: ' ';
    display: table;
    clear: both;
}

.tabs-tab {
    display: inline-block;
    width: 150px;
}

.tabs-tab.active a {
    color: #000000;
}

.tabs-tab a {
    display: block;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 18px;
    padding: 0 0 0 15px;
    text-decoration: none;
    transition: color .15s;
}

.tabs-slider {
    background-color: #3170b7;
    bottom: 0;
    height: 3px;
    left: 0;
    position: absolute;
    transition: left .25s;
    width: 100px;
}

.plans .inner-accordion {
    position: relative;
    top: -20px;
}

.planForm {
    margin: 0 -156px -20px 0;
}

.planTax {
    margin: 0;
    padding: 0;
}

.planTax li {
    background-image: url('/uiassets/checkmark.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 20px;
    margin: 0 0 10px 0;
    padding: 0 0 0 27px;
    list-style: none;
}

.tab-content {
    padding: 10px 0 0 97px;
}

.planPrice {
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 40px;
}

.planMonth {
    margin-top: -20px;
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
    font-size: 17px;
}

.planCol2 {
    margin: 13px 0 0 -29px;
    line-height: 9.5px;
}

.planName {
    font-family: 'Simply Cricket Bold', Helvetica, Arial, sans-serif;
}

.autoPay, .planNameSubHead span, .planNameSubHead sup {
    font-family: 'Simply Cricket Demi', Helvetica, Arial, sans-serif;
}

.planName sup {
    font-family: 'Simply Cricket Book', Helvetica, Arial, sans-serif;
}

.planName sup, .planNameSubHead sup {
    top: -1em !important;
    font-size: 50% !important;
}

.planName, .planNameSubHead {
    font-size: 18px;
}

.planNameSize {
    font-size: 18px;
    margin: 0px;
}

.inner-plan-details {
    padding: 5px 0 0 20px;
}

.included-features, .unlimited-disclaimer {
    padding-left: 14px;
}

.planNameSubHead {
    border-bottom: 1px solid #bbbdc0;
    padding-bottom: 2px;
    margin-top: -11px;
}

.planNameSubHead span {
    color: #60A630;
    font-size: 16px;
}

.planNameSubHead .greenSup {
    color: #60A630;
}

.planDisclaimer {
    font-size: 11px;
}

.checkmark {
    height: 15px;
}

.plans .byodUnlimitedImage {
    float: left;
    margin-right: 2%;
    height: 40px;
    margin-top: 5px;
}

.plans .byodUnlimitedData {
    overflow: hidden;
    padding-bottom: 1%;
}

.plans .planContentHeadSet {
    border-bottom: 1px solid #bbbdc0;
}

.plans .planNoteContent {
    padding-top: 10px;
}

.plans .byodPlan,
.plans .portinPromoPlan {
    display: none !important;
}

.notAvailable{
    display: none;
}

.planCreditPromo a {
    border-style: dotted;
    border-width: thin;
    padding: 5px;
    margin-left: -5px;
}

.unlink {
    color: #000;
    display: inline-block;
    text-decoration: none;
}

.unlink:hover {
    text-decoration: none;
}

.unlink:active {
    text-decoration: none;
}

@media (max-width: 768px) {
    .altview .tabs-container, .tabs-container {
        margin: 10px -40px 0;
        padding: 0 11px 0 40px;
        width: calc(100vw - 20px);
    }

    .tabs-list {
        margin-left: 35px;
    }

    .tabs-tab {
        width: 20vw;
    }

    .planForm {
        margin: 0 -45px -20px 0;
    }

    .tab-content {
        padding: 10px 50px;
    }

    .planCol2 {
        margin: 13px -15px 0 37px;
        line-height: unset;
    }

    .planMessage, .planDetails {
        margin-top: -12px;
    }

    .inner-plan-details {
        padding: 15px 0 0 50px;
        overflow: hidden;
    }

    .planContentAlignment .button.add-to-cart, .planContentAlignment .button.keepPlan {
        width: 100%;
    }

    .unlink {
        margin-bottom: 10px;
    }
}

@media (max-width: 581px) {
    .altview .tabs-container {
        margin: 0 -26px 0;
        padding: 0 4px 0 30px;
        width: calc(100vw - 19px);
    }

    .tabs-container {
        margin: 10px -26px 0;
        padding: 0 0 0 30px;
        width: calc(100vw - 19px);
    }

    .tabs-list {
        margin-left: 5px;
    }

    .tabs-tab {
        width: 28vw;
    }

    .tab-content {
        padding: 10px;
    }
}


/*# sourceMappingURL=cartPage.a2dd53ab1916a245cdfb.css.map*/