/* Initial settings */

.pto-modal-wrapper {
    margin: auto;
    z-index: 999995;
    position: fixed;
    background: #efefefe6;
    width: 100%;
    overflow-y: scroll;
    height: 100vh;
	top:0;
}

.pto-modal-wrapper .cqpim_button{
	padding: 6px 25px;
}

.pto-modal-wrapper .initial-settings-popup {
	width: 50%;
	max-width: 450px;
	min-width: 280px;
	margin: 0 auto;
}

.pto-modal-wrapper .initial-notification {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 100vh;
}
.pto-modal-wrapper .pto-logo-container{
	text-align: center;
}

.pto-modal-wrapper .pto-logo {
   max-width: 200px;
}

.pto-modal-wrapper .sub-header{
	margin: 10px 0;
}

.pto-modal-wrapper #wizard select{
	width: 100%;
}


.pto-modal-wrapper .wizard>.steps .current-info,
.pto-modal-wrapper .wizard>.steps .number {
	display: none;
}

.pto-modal-wrapper #wizard,
.pto-modal-wrapper #pre-wizard {
	background: #fff;
	padding: 50px 30px 30px 30px;
	border: solid #dddddf;
	box-shadow: 0 1px 1px 0 rgba(0,0,0,.12), 0 0 0.125rem rgba(0,0,0,.24);
}

.pto-modal-wrapper #pre-wizard {
	padding: 20px;
	border: unset;
}
.pto-modal-wrapper .steps {
	margin-bottom: 15px;
}

.pto-modal-wrapper .steps ul {
	display: flex;
	margin: 0;
	position: relative;
}

.pto-modal-wrapper .steps ul li {
	width: 20.16%;
	margin-right: 10px;
}

.pto-modal-wrapper .steps ul li a {
	display: inline-block;
	width: 100%;
	height: 7px;
	background: #f4f4f4;
}

.pto-modal-wrapper .steps ul li.first a,
.pto-modal-wrapper .steps ul li.checked a {
	background: #6576ff;
	transition: all 0.5s ease;
}

.pto-modal-wrapper .steps ul li.error a {
	background: red;
}

.pto-modal-wrapper .steps ul:before {
	content: "Company Details";
	font-size: 22px;
	color: #000;
	top: -30px;
	position: absolute;
}

.pto-modal-wrapper .steps ul.step-2:before {
	content: "Company Emails";
}

.pto-modal-wrapper .steps ul.step-3:before {
	content: "Financial Details";
}

.pto-modal-wrapper .steps ul.step-4:before {
	content: "Sales Tax";
}

.pto-modal-wrapper .steps ul.step-5:before {
	content: "Payment Gateways";
}

.pto-modal-wrapper .input-group {
	margin-bottom: 10px;
}

.pto-modal-wrapper .input-group label.error{
	color: red;
}

.pto-modal-wrapper .input-group input.error{
	border: solid red 1px;
}

.pto-modal-wrapper .input-group label {
	margin-bottom: 6px;
	display: block;
}

.pto-modal-wrapper .input-group.form-group {
	display: flex;
}

.pto-modal-wrapper .form-input {
	height: 40px;
	border: 1px solid #e6e6e6;
	background: none;
	width: 100%;
	padding: 0 5px;
}

.pto-modal-wrapper #wizard .form-control {
	border-radius: .375rem !important;
}

.pto-modal-wrapper textarea.form-input {
	padding: 5px 0;
	border: 1px solid #e6e6e6;
	background: #fff;
}

.pto-modal-wrapper .actions ul {
	display: flex;
	margin-top: 30px;
	margin-bottom: 0;
	justify-content: space-between;
}

.pto-modal-wrapper .actions li a {
    padding: 10px 15px;
	border: none;
	text-decoration: none;
    align-items: center;
    background: #6576ff;
    cursor: pointer;
    position: relative;
    color: #fff;
    transition-duration: 0.3s;
	font-weight: 700;
	box-shadow: 0 1px 1px 0 rgba(0,0,0,.12), 0 0 0.125rem rgba(0,0,0,.24);
	border-radius: .25rem;
}

.pto-modal-wrapper a {
	text-decoration: none;
}

.pto-modal-wrapper .actions li a:hover,
.pto-modal-wrapper .actions li:first-child a:hover {
	background: #f1c40f;
}

.pto-modal-wrapper .actions li[aria-disabled="true"] a {
	display: none;
}

.pto-modal-wrapper .actions li:first-child a {
	background: #353535;
}

@media (max-width: 767px) {
	.pto-modal-wrapper .initial-settings-popup {
		width: 100%;
	}
}

.pto-modal-wrapper .switch-field {
    display: flex;
    overflow: hidden;
    justify-content: center;
}

.pto-modal-wrapper .switch-field input {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.pto-modal-wrapper .switch-field label {
    background-color: #f4f4f4;
    padding: 8px 16px;
	font-weight: 700;
	cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.12), 0 0 0.125rem rgba(0,0,0,.24);
	transition: all 0.1s ease-in-out;
	color: #000;
}

.pto-modal-wrapper .switch-field input:checked + label {
	background-color: #6576ff;
	color: #fff;
	box-shadow: none;
}

.pto-modal-wrapper .steps ul li a:focus {
	box-shadow: none;
	outline: none;
}

.pto-modal-wrapper .required-star{
	color: red;
	font-weight: 700;
	font-size: 18px;
}
