﻿.sync-wizard-modal .modal-title {
    background: #197A85;
    color: white;
    font-size: 16px;
    padding: 10px;
    position: relative;
    margin: -20px -20px 0 -20px;
}

.wizard-pages {
	text-align: left;
	padding: 0px;
}

.wizard-pages h2 {
	font-size:20px;
	margin: 0;
}

.wizard-pages h3 {
    font-size: 16px;
    margin: 10px 0;
    color: #5a5a5a;
}

.wizard-pages ul {
    padding-left: 18px;
}

.wizard-pages .note {
    font-style: italic;
	color: grey;
}

.wizard-pages .centered-btn {
    margin: 0 auto;
    display: block;
	position:relative;
	z-index: 100;
}

.modal-title img {
    width: 85px;
    position: absolute;
    left: 15px;
    top: 5px;
}

.wizard-pages .media-container {
	max-width: 600px;
	margin: 0 auto;
}
.wizard-pages .video-box {
	position: relative;
	background: whitesmoke;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
	width: 100%;
}

.wizard-pages .video-box p {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #197A85;
}

.wizard-pages hr.hr-and, .wizard-pages hr.hr-or {
    position: relative;
    margin-bottom: 30px;
	overflow: visible;
}

.wizard-pages hr:after {
    display: block;
    position: absolute;
    text-transform: uppercase;
    left: 50%;
    background: white;
    top: -10px;
    padding: 0 10px;
    color: grey;
}

.wizard-pages hr.hr-and:after {
    content: "and";
    margin-left: -25px;
}

.wizard-pages hr.hr-or:after {
    content: "or";
    margin-left: -20px;
}

.wizard-pages .result-table td {
	vertical-align: middle !important;
}

.wizard-pages .result-table td .btn {
	padding: 2px 0;
	float: right;
}

.wizard-pages .result-table th {
    color: #197A85;
}

.wizard-pages .result-table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 1px solid #197A85;
}

.wizard-pages .confirmation-backdrop {
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.wizard-pages .confirmation-box {
    position: absolute;
    background: white;
    padding: 15px;
    max-width: 300px;
    width: 100%;
    left: 50%;
    margin-left: -20%;
    top: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.wizard-pages .confirmation-header {
    background: #197A85;
    color: white;
    text-align: center;
    padding: 5px;
    margin: -15px -15px 15px -15px;
}

.wizard-pages .provider-name {
    text-align: center;
    font-weight: 600;
	margin-bottom: 5px;
}

.wizard-pages .provider-office, .wizard-pages .provider-address {
    text-align: center;
    color: grey;
	margin-bottom: 0;
}

.wizard-pages .sync-options {
	margin-bottom: 15px;
}

.wizard-pages .options-label {
    font-size: 16px;
    margin-bottom: 15px;
}

.wizard-pages .selected-provider {
    background: whitesmoke;
    max-width: 660px;
    margin: 0 auto;
    padding: 10px 5px;
    display: flex;
    justify-content: center;
	margin-bottom: 20px;
}

.wizard-pages .selected-provider p {
	color:#197A85;
	margin: 5px 10px;
	font-size: 14px;
	font-weight: bold;
}

.wizard-pages span.spinner {
    -webkit-animation: glyphicon-spin-r 2s infinite linear;
    animation: glyphicon-spin-r 2s infinite linear;
	font-size: 120px;
    color: #197A85;
}

.wizard-pages .sync-page {
    text-align: center;
}

.wizard-pages .spinner-box {
    position: relative;
}

.wizard-pages .spinner-box .counter {
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    color: grey;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -14px;
}

.wizard-pages .sync-page h2 {
    font-size: 18px;
}

.wizard-pages .sync-page h3 {
    font-size: 16px;
    margin: 30px 0 40px 0;
}

.sync-wizard-modal .modal-title .header-btn {
    width: auto;
    padding: 0;
    font-size: 16px;
    position: absolute;
    right: 10px;
    /*color: #034879;*/
}

.auto-width {
	width: auto;
}

.wizard-pages .pagination {
    display: inline-block;
}

.wizard-pages .pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
}

.wizard-pages .pagination a:active {
    background-color: whitesmoke;
}

@-webkit-keyframes glyphicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes glyphicon-spin-r {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes glyphicon-spin-l {
    0% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes glyphicon-spin-l {
    0% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}