body a:hover,
body a:active,
body a:focus {
    outline: 0;
    text-decoration: none;
    color: #fff;
}

.hidden,
[hidden] {
    display: none !important;
}

.btn-darkblue,
.btn-darkblue:focus,
.btn-darkblue:hover,
.btn-darkblue:active {
    border: 0;
    background: #1b3f59;
    color: white;
    text-transform: uppercase;
    border-bottom: 5px solid #12293a;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 300;
    padding-top: 25px;
    padding-bottom: 25px;
    line-height: 1;
    -webkit-transition: transform 0.2s ease;
    -moz-transition: transform 0.2s ease;
    -o-transition: transform 0.2s ease;
    transition: transform 0.2s ease;
}

.capitalize {
    text-transform: capitalize;
}

.checkbox label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox label {
    padding-left: 0;
}

.checkbox .cr {
    position: relative;
    display: inline-block;
    border: 2px solid #cbc9c9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.checkbox .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 15%;
}

.checkbox label input[type="checkbox"] {
    display: none;
}

.checkbox label input[type="checkbox"]+.cr>.cr-icon {
    transform: scale(3) rotateZ(-20deg);
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked+.cr>.cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled+.cr {
    opacity: .5;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}


.loading-spinner {
    height: 100px;
    background: url(/static/frontend/images/Spin-Preloader.gif) center no-repeat #fff;
    background-size: 200px;
}

.nav-tabs .nav-link:hover {
    color: #0056b3;
}

.pricing__item--invert a {
    color: #000000;
}

.pricing__item--invert a:hover {
    color: #0056b3;
}

.alert .alert-link {
    color: blue;
}

.alert .alert-link:hover {
    text-decoration: underline;
}

.navbar.hijacked-warning {
    height: 50px;
    justify-content: space-between;

    background-size: 50px 50px;
    background-color: #ffe761;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, .04) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .04) 50%, rgba(0, 0, 0, .04) 75%, transparent 75%, transparent);
}

.hijacked-warning .btn {
    margin: 0 5px;
}

.hijacked-warning-content {
    display: flex;
    align-items: center;
}

.hijacked-warning-text {
    --max-label-chars: 14ch;
    --max-email-chars: 35ch;
    max-width: calc(var(--max-label-chars) + var(--max-email-chars));

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    color: #313131;
}

.hijacked-warning-text-highlight {
    font-weight: bolder;
    color: black;
}

@media(max-width: 1522px) {
    .hijacked-warning .nav-button-text {
        display: none;
    }
}

@media(max-width: 1100px) {
    .hijacked-warning .Notifications-header {
        display: none;
    }
}

:root {
    --cloud-care-gradient: linear-gradient(90deg, #F54180 0%, #338EF7 100%);
}

.cloud-care-button {
    position: relative;
    background: var(--cloud-care-gradient);
    border-radius: 4px;
    padding: 2px;
    cursor: pointer;
    display: block;
    font-size: 12px !important;
    font-weight: 500 !important;
    margin-right: 7px !important;
}

.cloud-care-content {
    position: relative;
    display: flex;
    align-items: center;
    background-color: white;
    padding: 6px 14px;
    border-radius: 4px;
    transition: 0.4s;
}

.cloud-care-button:hover .cloud-care-content {
    background-color: transparent;
    color: white;
}

.cloud-care-badge {
    position: absolute;
    z-index: 100;
    top: -10px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 11px;
    line-height: 13px;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cloud-care-icon {
    margin-right: 8px;
    width: 20px;
    height: 16px;
    position: relative;
}

.cloud-care-icon::before,
.cloud-care-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mask: url('../../images/cloud-gear.svg') no-repeat center / contain;
    -webkit-mask: url('../../images/cloud-gear.svg') no-repeat center / contain;
}

.cloud-care-icon::before {
    background: var(--cloud-care-gradient);
}

.cloud-care-icon::after {
    background-color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cloud-care-button:hover .cloud-care-icon::after {
    opacity: 1;
}

#cloud-care-plans-link {
    position: relative;
    margin-top: 6px;
}

.cloudcare-protected-badge {
    background: var(--cloud-care-gradient);
    margin-left: 8px;
    display: none;
    padding: 4px 6px;
}

.cloudcare-protected-icon {
    width: 11px;
    height: 11px;
    margin-right: 3px;
}

.cloudcare-protected-text {
    box-shadow: 0px 1px 2px 0px #1018280F;
}