@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 10px;
    width: 200px;
}

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

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

.cr-content-window-wrapper .cr-content-window {
    background: #FFFFFF;
    border: 1px solid #E1E1E1;
    box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    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;
    color: #FFFFFF;
    background: #EC6702;
    border-radius: 5px;
    font-size: 16px;
    padding: 15px 30px;
    min-width: 160px;
    width: 580px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px #ae5702 solid;
}

.cr-content-window-wrapper .cr-content-window .cr-secondary {
    font-weight: 300;
    background: #D8D8D8;
    border-radius: 5px;
    font-size: 16px;
    color: #292D33;
    padding: 15px 30px;
    min-width: 160px;
    width: 580px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    margin-top: 10px;
    border: 1px solid #a2a2a2;
}

.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;
}