@keyframes cr-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes cr-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cr-logo {
    margin: 25px 0 15px 20px;
    width: 200px;
}

.cr-container {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important;
}

.cr-auth-iframe-container {
    background-color: #F4F6F8;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr-version {
    padding-top: 10px;
    font-size: small;
}

.cr-content-window-wrapper {
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.cr-content-window-wrapper .cr-content-window {
    width: 100%;
    max-width: 740px;
    display: inline-block;
    padding: 35px 0 30px 0;
}

.cr-content-window-wrapper .cr-content-window .cr-action-buttons-wrapper {
    margin-top: 20px;
}

.cr-content-window-wrapper .cr-content-window h3 {
    font-weight: 300;
    font-size: 24px;
    color: #292D33;
    line-height: 28px;
}

.cr-content-window-wrapper .cr-content-window button {
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important;
}

.cr-content-window-wrapper .cr-content-window .cr-main-text {
    font-weight: 300;
    font-size: 14px;
    color: #555555;
}

.cr-content-window-wrapper .cr-content-window .cr-primary {
    font-weight: 300;
    background: #EC6702;
    box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    font-size: 16px;
    color: #FFFFFF;
    padding: 15px 30px;
    min-width: 160px;
    display: inline-block;
    border: 1px #ae5702 solid;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.cr-content-window-wrapper .cr-content-window .cr-primary:hover {
    background-color: #b95102;
    border-color: #af4d01;
}


.cr-content-window-wrapper .cr-content-window .cr-secondary {
    font-weight: 300;
    background: #D8D8D8;
    box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    font-size: 16px;
    color: #292D33;
    padding: 15px 30px;
    min-width: 160px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-top: 10px;
    border: 1px solid #e4e9ea;
}

.cr-content-window-wrapper .cr-content-window .cr-secondary:hover {
    background-color: #d7dcdd;
    border-color: #d7dcdd;
}

.cr-content-window-wrapper .cr-content-window .cr-icon {
    content: url(../img/icon_quickstartmailing.svg);
    width: 320px;
    margin-bottom: 30px;
}

.cr-content-window-wrapper .cr-content-window .cr-welcome-icon {
    width: 320px;
    margin-bottom: 30px;
}

.cr-container .cr-loader-big {
    text-align: center;
    min-height: 150px;
    display: none;
}

.cr-container .cr-loader {
    float: left;
    margin-right: 10px;
    border: 3px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #EC6702;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: cr-spin 2s linear infinite;
}

.cr-container .cr-loader-big .cr-loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #EC6702;
    width: 70px;
    height: 70px;
    display: block;
    margin: auto;
}

.cr-container .cr-connecting {
    text-align: center;
    display: none;
    color: #EC6702;
}

.cr-container .cr-interaction-required-text-wrapper {
    border: 1px solid #B3B3B3;
    border-radius: 5px;
    background-color: #ffffff;
    padding: 3%;
}

.cr-container .cr-interaction-continue {
    float: right;
}