.cc-order {
    display: block !important;
    box-sizing: border-box !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    color: #121212 !important;
    text-align: left !important
}

.cc-order *,
.cc-order *::before,
.cc-order *::after {
    box-sizing: border-box !important
}

.cc-order .cc-order__title {
    margin: 0 0 24px !important;
    padding: 0 !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    border-bottom: solid 1px #eee;
}

.cc-order .cc-order__group {
    margin: 0 0 24px !important;
    padding: 0 !important;
    border: 0 !important
}

.cc-order .cc-order__group:last-of-type {
    margin-bottom: 0 !important
}

.cc-order .cc-order__group-title {
    padding: 0 !important;
    font-weight: 700 !important;
    font-size: 21px !important;
    margin-bottom: 10px !important;
}

.cc-order .cc-order__details {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important
}

.cc-order .cc-order__row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 5px 0 !important;
    line-height: 110% !important;
}

.cc-order .cc-order__row:last-child {
    border-bottom: 0 !important
}

.cc-order .cc-order__row dt {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    flex: 0 0 auto !important
}

.cc-order .cc-order__row dd {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #121212 !important;
    text-align: right !important
}

.cc-order .cc-order__sign {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 24px 0 0 !important;
    padding: 15px 30px !important;
    background: #0060E6 !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background .2s ease, border-color .2s ease !important
}

.cc-order .cc-order__sign:hover {
    background: #004cb8 !important;
    color: #fff !important
}

.cc-order .cc-order__sign:after {
    content: "";
    margin-left: 8px;
    background-image: url('../images/mitid-logo-hvid.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 30px;
    height: 18px;
}

.cc-order .cc-order__signed {
    margin: 24px 0 0 !important;
    padding: 14px 20px !important;
    background: #d1fae5 !important;
    color: #047857 !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-align: center !important
}

.cc-order .cc-order__msg {
    margin: 0 0 16px !important;
    padding: 0 !important;
}

.cc-order .cc-order__retry {
    display: inline-block !important;
    margin: 0 !important;
    padding: 12px 28px !important;
    background: #fff !important;
    color: #1A588E !important;
    border: 1px solid #1A588E !important;
    border-radius: 9999px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important
}

.cc-order .cc-order__retry:hover {
    background: #1A588E !important;
    color: #fff !important
}

.cc-order .cc-order__skeleton {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 0 !important
}

.cc-order .cc-order__sk {
    display: block !important;
    height: 16px !important;
    border-radius: 6px !important;
    background: #eee !important;
    background-image: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%) !important;
    background-size: 800px 100% !important;
    animation: cc-order-shimmer 1.4s infinite linear !important
}

.cc-order .cc-order__sk--btn {
    height: 48px !important;
    border-radius: 6px !important;
    margin-top: 6px !important
}

.cc-order__sign-title {
    font-size: 21px !important;
    border-top: solid 1px #eee;
    padding-top: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}

@keyframes cc-order-shimmer {
    0% {
        background-position: -400px 0
    }

    100% {
        background-position: 400px 0
    }
}

@media(max-width:480px) {
    .cc-order .cc-order__row {
        flex-direction: column !important;
        gap: 2px !important
    }

    .cc-order .cc-order__row dd {
        text-align: left !important
    }

    .cc-order .cc-order__sign {
        padding: 15px !important;
    }
}