body { background-color: #f4f4fa !important; }
.fixed-width { width: 445px; }
@media (max-width: 767px) {
    .fixed-width { width: 100%; }
}
@media (min-width: 768px) {
    body {
        background-image: url("/ui/fe/images/abstract-squares.png");
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: left bottom;
    }
}
.side-panel { position: absolute; top: 154px; left: calc(50% + (445px/2)); }
@media (max-width: 1199px) {
    .side-panel { display: none; }
}
.side-panel h2 {
    font-size: 20px;
    font-weight: 600;
}
.side-panel ul {
    list-style: none;
}
.side-panel li {
    font-size: 14px;
}
.side-panel li .c-icon {
    color: #0ba2c7;
}
.panel {
    border: 0;
    background-image: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 1) 40%,
        rgba(255, 255, 255, 1) 100%
    );
}
.panel h1 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00254a;
}
.panel h3 {
    font-size: 15px;
    color: #1b1b1b;
    line-height: 1.4;
}
a .selectable-box {
	color: #444;
}
.selectable-box {
	background:#f7f7f7;
	border: 1px solid #d7d7d7;
}
.selectable-box:hover {
	background:#e7e7e7;
	border: 1px solid #979797;
	cursor:pointer;
}
.selectable-box.selected {
	background:#dbf4e4;
	border: 1px solid #979797;
}

.form-group label {
    text-transform: none;
    letter-spacing: normal;
    font-size: 14px;
    font-weight: 600;
}
.form-actions .btn,
.modal-footer .btn {
    text-transform: none;
    letter-spacing: normal;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
}
.social-actions .btn {
    text-transform: none;
    letter-spacing: normal;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: #fff;
    position: relative;
}
.social-actions .btn:hover,
.social-actions .btn:focus {
    border-color: #bbb;
}
.social-actions .btn img {
    position: absolute;
    left: 15px;
    width: 20px;
}
.agreement {
    font-size: 13px;
}
.btn-primary.disabled,
.btn-primary:not(:hover):not(:focus) {
    box-shadow: none;
}
#stepIndicators {
    position: relative;
    width: 100%;
}
#stepIndicators::after {
    content: '';
    position: absolute;
    width: calc(100% - 77px);
    margin: 0 10px;
    border-bottom: 2px solid #0ba2c7;
    z-index: 1;
}
.step {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    border: 2px solid #0ba2c7;
    background: #f4f4fa;
    color: #0ba2c7;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.step.done span,
.step.active span {
    display: none;
}
.step.done {
    background: #0ba2c7;
    color: #fff;
    font-weight: bold;
}
.step.done::before {
    content: "\eb88";
    font-family: 'Xorbia' !important;
    speak: none;
    font-weight: bold;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.step.active {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.step.active::before {
    content: '';
    background: #0ba2c7;
    width: 8px;
    height: 8px;
    border-radius: 4px;
}
.digit-input {
    width: 48px;
    height: 48px;
    font-weight: 600;
    outline: none;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    text-align: center;
    transition: border-color 200ms ease-in-out;
}
.digit-input:focus {
    border-color: #0ba2c7;
}
.digits .error-msg {
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
}