#page-content .my-services-page {
    display: block;
}
.my-services-page .subscription-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 5px;
    position: relative;
}
.my-services-page .subscription-card.error {
    background-color: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0);
}
.my-services-page .subscription-card.load-details .sc-body,
.my-services-page .subscription-card.load-details .sc-footer {
    filter: blur(2px);
}
.my-services-page .subscription-card.update-details .sc-body,
.my-services-page .subscription-card.update-details .sc-footer {
    filter: opacity(0.4);
}
.my-services-page .subscription-card .sc-body {
    padding: 8px;
}
.my-services-page .subscription-card .sc-body > * {
    float: left;
}
.my-services-page .subscription-card .sc-footer {
    clear: both;
    display: flex;
    padding: 8px 8px 0px;
    justify-content: space-between;
}
.my-services-page .subscription-card .sc-footer .sc-pay {
    padding: 10px;
}
.my-services-page .subscription-card .sc-footer button.pending-pay {
    padding-left: 25px;
    padding-right: 25px;
    display: none;
}

.my-services-page .subscription-card:not(.active) .sc-expired-on,
.my-services-page .subscription-card:not(.active) .sc-auto-renewal {
    display: none;
}

.my-services-page .subscription-card.pending_payment .sc-footer button.pending-pay {
    display: block;
}
.my-services-page .subscription-card .sc-footer .sc-controls {
    padding: 5px;
}
.my-services-page .subscription-card .sc-footer .sc-controls .sc-control {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    position: relative;
}
.my-services-page .subscription-card .sc-footer .sc-controls .sc-control > * {
    transition-duration: 300ms;
    color: rgb(122, 135, 142);
}
.my-services-page .subscription-card .sc-footer .sc-controls .sc-control:hover > * {
    color: #1e6586;
}
.my-services-page .subscription-card .sc-footer .sc-controls a,
.my-services-page .subscription-card .sc-footer .sc-controls button {
    background-color: transparent;
    border: none;
    text-decoration: none;
    padding: 0px;
    margin: 0px;
    font-weight: bold;
    font-size: 1.1em;
}
.my-services-page .subscription-card .sc-footer .sc-controls
    .sc-control:not(:last-child)::after {
        content: '|';
        display: inline-block;
        padding: 0 5px;
        font-size: 1.2em;
    }

.my-services-page .subscription-card .sc-body .sc-picture {
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    color: #afc8e6;
    font-size: 55px;
    text-align: center;
    width: 70px;
    height: 75px;
    max-height: 75px;
}
.my-services-page .subscription-card .sc-body .sc-header {
    padding: 0 10px;
}
.my-services-page .subscription-card .sc-body .sc-header h5 {
    font-size: 18px;
    font-weight: bold;
}
.my-services-page .subscription-card .sc-body .sc-header,
.my-services-page .subscription-card .sc-body .sc-content {
    /* 75px - picture width + some safety 5px width to be sure it won't wrap */
    width: calc(100% - 75px);
}
.my-services-page .subscription-card .sc-body .sc-info {
    font-size: 1.1em;
    padding-right: 0px;
    margin-top: 5px;
}
.my-services-page .subscription-card .sc-body .sc-info-name {
    font-weight: bold;
    font-size: 13px;
}
.my-services-page .subscription-card .sc-body .sc-info-device-limit {
    font-weight: bold;
    font-size: 13px;
}
.my-services-page .subscription-card .sc-body .sc-info-key {
    margin-left: 6px;
    font-size: 13px;
    vertical-align: middle;
}
.my-services-page .subscription-card .sc-body .sc-plan-name .sc-info-key a {
    text-decoration: underline;
    cursor: pointer;
    transition-duration: 300ms;
}
.my-services-page .subscription-card .sc-body .sc-plan-name .sc-info-key a:hover {
    color: #1e6586;
}
.my-services-page .subscription-card .sc-body .sc-content .sc-plan-description {
    font-size: 13px;
}
.my-services-page .subscription-card .sc-dns-help,
.my-services-page .subscription-card .sc-workflow-help {
    font-size: 13px;
    padding: 0px 8px 8px 12px;
}

.my-services-page .subscription-card .sc-dns-help a,
.my-services-page .subscription-card .sc-workflow-help a {
    color: #337ab7;
}
.my-services-page .subscription-card .sc-body .sc-content .sc-auto-renewal .sc-info-key {
    text-transform: capitalize;
}
.my-services-page .subscription-card .network-list-container {
    padding-left: 10px;
}
.my-services-page .subscription-card .network-list-container li {
    padding-bottom: 5px;
    cursor: pointer;
}
.my-services-page .subscription-card .network-list-container li .media-body {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.my-services-page .subscription-card .network-list-container li .media-body i {
    margin-right: 5px;
    opacity: 0.5;
}

.my-services-page .my-services-filter-status-all {
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .my-services-page .subscription-card .sc-footer {
        border-top: 1px solid #eee;
    }
    .my-services-page .subscription-card .sc-body {
        align-items: stretch;
    }
    .my-services-page .subscription-card .sc-body .sc-header {
        /*
            The height of the picture. Next element will wrap to the next line
            because of "float" property (for small screens)
        */
        height: 75px;
    }
    .my-services-page .subscription-card .sc-body .sc-content {
        width: 100%;
    }
    .my-services-page .subscription-card .sc-body .sc-header h5 {
        display: flex;
        flex-direction: column;
    }
    .my-services-page .subscription-card .sc-body .sc-header h5 .service-status {
        padding-bottom: 5px;
    }
    .my-services-page .subscription-card .sc-body .sc-content .sc-info > .row > *:first-child {
        padding-left: 0px;
    }
}

.sc-body1 {
    display: none !important;
}

.my-services-page .subscription-card .sc-body .sc-header h5 .service-status .ss-pending-payment {
    color: orange;
}

.my-services-page .subscription-card .sc-body .sc-header h5 .service-status .ss-payment-in-progress {
    color: orange;
}

.my-services-page .subscription-card .sc-body .sc-header h5 .service-status .ss-payment-error {
    color: red;
}

.my-services-page .subscription-card .sc-body .sc-header h5 .service-status .ss-active {
    color: green;
}

.my-services-page .subscription-card .sc-body .sc-header h5 .service-status .ss-expired,
.my-services-page .subscription-card .sc-body .sc-header h5 .service-status .ss-expiring {
    color: darkred;
}

#plan-networks-list {
    list-style: none;
}

#buy-plan-modal .service-logo .service-logo-content img {
    max-height: inherit;
    max-width: inherit;
}
