/* Form styles */
#msform {
	width: 100%;
	margin: 50px auto;
	
	position: relative;
}
#msform fieldset {

	/*stacking fieldsets above each other*/
	position: relative;
}
 
/* Hide all except first fieldset */
#msform fieldset:not(:first-of-type) {
	display: none;
}
img.logo {
	max-width: 155px;
	margin-top: 5px;
}
#msform p {
	color: #8b9ab0;
	font-size: 12px;
}
 
#msform label {
	padding-right:0px 15px;
	font-size: 16px;
	text-align: left;
	
/*
	font-weight:600px !important;
*/
}
 
 
/* Inputs */
.cinebals-contact-form input[type="number"], .cinebals-contact-form select{
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #FF6600;
    border-radius: 5px;
    background: transparent;
    color: #fff !important;
} 
#msform .submitbutton {
    position: relative;
    -moz-user-select: none !important;
    background-color: #Ff6600;
    cursor: pointer !important;
    display: inline-block !important;
    text-align: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    border-color: #FF6600 !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-radius: 0 !important;
    padding: 10px 20px 10px 20px !important;
    width: fit-content !important;
    margin-top: 10px;
    color: #fff;
}
#msform .submitbutton:before {
    border: 1px solid #00AEEF;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.3s ease 0s;
    width: 100%;
    left: 2px;
    top: 4px;
}
#name-error, #emailid-error, #mobile-error, #address_line1-error, #state-error, #pincode-error, #proposal_subject-error{
    color: red;
    font-weight: 300;
    padding-left: 10px;
    font-family: 'IBM Plex Sans', sans-serif;
    margin-top:0px;
} 
textarea::placeholder {
    color: #fff !important;
       opacity: 1;
      font-size:18px;
      font-weight:400;
  }
 
/* Headings */
.fs-title {
	font-size: 20px;
	font-weight: 400;
	color: #a94442;
	margin-bottom: 20px;
	background-color: #9999CC;
	margin-top: 20px;
	padding:5px;
	color:#fff;
}
.fs-subtitle {
	font-weight: 400;
	font-size: 19px;
	color: #434a54;
	margin-bottom: 20px;
}
 
/* Progressbar */
#progressbar {
	margin-bottom: 50px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
    list-style-type: none;
    color: #8b9ab0;
    text-transform: uppercase;
    font-size: 14px!important;
    width: 33.33%;
    float: left;
    position: relative;
    text-align: center;
}
#progressbar li.active {
    color: #ff6600;
}
#progressbar li.active:after{
    z-index:1;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 35px;
    height: 35px;
    line-height: 16px;
    display: flex;
    font-size: 18px;
    color: #333;
    background: white;
    border-radius: 3em;
    margin: 0 auto 5px auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #8b9ab0;
    opacity: 0.5;
}
 
/* Progressbar connectors */
#progressbar li:after {
	content: '';
	width: 95%;
	height: 2px;
	background: white;
	position: absolute;
	left: -48%;
	top: 15px;
	z-index: -1;
}
#progressbar li:first-child:after {
	/* connector not needed before the first step */
	content: none; 
}
 
/* Marking active/completed steps green */
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #f06000;
    color: white;
    border: 1px solid #f06000;
    opacity: 1;
}
 
/* css for checkbox */
 
/* The container */
#msform .action-button{
    position:relative;
    -moz-user-select: none !important;
    background-color: #Ff6600;
    cursor: pointer !important;
    display: inline-block !important;
    text-align: center !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    border-color: #FF6600 !important;
    border-style: solid !important;
    border-width: 1px !important;
    border-radius: 0 !important;
    padding: 10px 40px 10px 25px !important;
    width: fit-content !important;
    margin-top: 10px;
    color: #fff;
}
#msform .action-button:before {
    border: 1px solid #00AEEF;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.3s ease 0s;
    width: 100%;
    left: 2px;
    top: 4px;
}
#msform .action-button:after{
    content: "";
    height: 100%;
    width: 26px;
    background-image: url(../images/next-white.png);
    background-repeat: no-repeat;
    background-size: 11px;
    position: absolute!important;
    right: 0;
    top: unset;
    z-index: 99;
    display: block;
    transform: translateY(-43%);
}
#msform .action-button.previous{
    padding: 10px 25px 10px 40px !important;
}
#msform .action-button.previous:after{
    left: 0;
    top: unset;
    z-index: 99;
    display: block;
    transform: translateY(-102%) rotate(180deg);
}
#msform .checkstyle {
  display: inline-flex;
  position: relative;
  width: auto;
  padding-left: 35px;
  padding-right: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
 
/* Hide the browser's default checkbox */
#msform .checkstyle input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#msform select option {
    background: #1F1F1F;
}
.loader_holder{
    position:relative;
    float: right;
}
.loader_holder .loader{
    position:absolute;
    right:75px;
    top:15px;
}
.loader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    display:none;
}

.loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    margin: 4px;
    border: 2px solid #F96703;
    border-radius: 50%;
    animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #F96703 transparent transparent transparent;
}

.loader div:nth-child(1) {
    animation-delay: -0.45s;
}

.loader div:nth-child(2) {
    animation-delay: -0.3s;
}

.loader div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Create a custom checkbox */
#msform .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
 
/* On mouse-over, add a grey background color */
#msform .checkstyle:hover input ~ .checkmark {
  background-color: #ccc;
}
 
/* When the checkbox is checked, add a blue background */
#msform .checkstyle input:checked ~ .checkmark {
  background-color: #2196F3;
}
 
/* Create the checkmark/indicator (hidden when not checked) */
#msform .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
 
/* Show the checkmark when checked */
#msform .checkstyle input:checked ~ .checkmark:after {
  display: block;
}
 
/* Style the checkmark/indicator */
#msform .checkstyle .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
 
.terms_text a:hover {
    text-decoration:none !important;
}
 
.listordercls {
	line-height: 25px !important;
	font-size:13px !important;
	list-style: none !important;
	padding-left:0px !important;
}