.your_form{
	text-align: left;
}
.your_form label {
    font-weight: 300;
    color: #a0a0a0;
}
/* label icons */
.fa.fa-asterisk::before{
	font-size:10px;
}

/* form setting, focus color and look */
.your_form .form-control:focus, .psuedofocus {
    border-color: rgb(202, 224, 13);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(202, 224, 13, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(204,224,13,.6);
}
/* end cap on input groups */
.your_form .input-group-addon {
    min-width: 2.4em;
    font-size: 1.2em;
}

/*range slider*/
.your_form input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 6px 0;
    border: 0;
    -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0);
    box-shadow: inset 0 0 0 rgba(0,0,0,0);
}
.your_form input[type=range].form-control:focus {
    border-color: rgb(0,0,0,0);
    outline: 0;
    -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0), 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 rgba(0,0,0,0), 0 0 0 rgba(0,0,0,0);
}
.your_form input[type=range]:focus {
  outline: none;
}
.your_form input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 7px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #cae00d;
  border-radius: 0px;
  border: 1px solid #cae00d;
}
.your_form input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1.4px solid #cccccc;
  height: 19px;
  width: 19px;
  border-radius: 19px;
  background: #ececec;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
.your_form input[type=range]:focus::-webkit-slider-runnable-track {
  background: #edf88e;
}
.your_form input[type=range]::-moz-range-track {
  width: 100%;
  height: 7px;
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: #cae00d;
  border-radius: 0px;
  border: 1px solid #cae00d;
}
.your_form input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1.4px solid #cccccc;
  height: 19px;
  width: 19px;
  border-radius: 19px;
  background: #ececec;
  cursor: pointer;
}
.your_form input[type=range]::-ms-track {
  width: 100%;
  height: 7px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.your_form input[type=range]::-ms-fill-lower {
  background: #484f05;
  border: 1px solid #cae00d;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
.your_form input[type=range]::-ms-fill-upper {
  background: #cae00d;
  border: 1px solid #cae00d;
  border-radius: 0px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
.your_form input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1.4px solid #cccccc;
  height: 19px;
  width: 19px;
  border-radius: 19px;
  background: #ececec;
  cursor: pointer;
  height: 7px;
}
.your_form input[type=range]:focus::-ms-fill-lower {
  background: #cae00d;
}
.your_form input[type=range]:focus::-ms-fill-upper {
  background: #edf88e;
}
.your_form input[type=range].range-slider__range{
	width: calc(100% - (73px));
	display: inline-block;
    height: inherit;
    padding: 6px 12px 2px;
}
.your_form .range-slider{
	width:100%;
}
.your_form .range-slider__value {
  display: inline-block;
  position: relative;
  width: 60px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #555;
  padding: 5px 10px;
  margin-left: 8px;
}
.your_form .range-slider__value:after {
	position: absolute;
	top: 8px;
	left: -7px;
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-right: 7px solid #555;
	border-bottom: 7px solid transparent;
	content: '';
}
/*required alerts*/
.your_form .alert {
    margin-top: 2px;
    margin-bottom: 0px;
}
/*color picker*/
.colorpicker-2x .colorpicker-saturation {
    width: 200px;
    height: 200px;
}
.colorpicker-2x .colorpicker-hue,
.colorpicker-2x .colorpicker-alpha {
    width: 30px;
    height: 200px;
}
.colorpicker-2x .colorpicker-color,
.colorpicker-2x .colorpicker-color div {
    height: 30px;
}
.colorpicker-component > .input-group-addon {
	vertical-align: bottom;
}
.your_form .spectrum{
      animation: colorchange 20s infinite; /* animation-name followed by duration in seconds*/
         /* you could also use milliseconds (ms) or something like 2.5s */
      -webkit-animation: colorchange 20s infinite; /* Chrome and Safari */
    }

    @keyframes colorchange
    {
		0%  {background: red;}
		10% {background: fuchsia;}
		20% {background: purple;}
		30% {background: blue;}    
		40% {background: aqua;}
		50% {background: lime;}
		60% {background: green;}
		70% {background: lime;}      
		80% {background: yellow;}
		90% {background: orange;}
		100% {background: red;}
    }

    @-webkit-keyframes colorchange /* Safari and Chrome - necessary duplicate */
    {
		0%  {background: red;}
		10% {background: fuchsia;}
		20% {background: purple;}
		30% {background: blue;}    
		40% {background: aqua;}
		50% {background: lime;}
		60% {background: green;}
		70% {background: lime;}      
		80% {background: yellow;}
		90% {background: orange;}
		100% {background: red;}
    }
    
    @-moz-keyframes colorchange /* Mozilla Firefox - necessary duplicate */
    {
		0%  {background: red;}
		10% {background: fuchsia;}
		20% {background: purple;}
		30% {background: blue;}    
		40% {background: aqua;}
		50% {background: lime;}
		60% {background: green;}
		70% {background: lime;}      
		80% {background: yellow;}
		90% {background: orange;}
		100% {background: red;}
    }
    
    @-o-keyframes colorchange /* Opera - necessary duplicate */
    {
		0%  {background: red;}
		10% {background: fuchsia;}
		20% {background: purple;}
		30% {background: blue;}    
		40% {background: aqua;}
		50% {background: lime;}
		60% {background: green;}
		70% {background: lime;}      
		80% {background: yellow;}
		90% {background: orange;}
		100% {background: red;}
    }
/* ratings */
.your_form .ratingicon{
	font-size: 1.35em;
    margin: 0 2px;
    cursor:pointer;
}
.your_form .ratings{
	padding: 9px 0 0 0;
	text-align: center;
	white-space: nowrap;
}
.your_form .active{
	opacity: .5;
}
/* Credit card fields */
.your_form .flipper .card-logo{
	position: absolute;
    top: 35px;
    left: 16px;
    width: 64px;
    height: 40px;
    background-color: #ffffff;
    background-size: contain;
    border-radius: 5px;
    box-shadow: 0px 1px 0px rgba(85, 85, 85, 0.50);
    z-index: 3;
}
.your_form .flipper .card-acceptance{
	position: absolute;
    top: 35px;
    right: 16px;
    z-index: 3;
    font-size: .7em;
    width: calc(100% - 109px);
    color: #a0a0a0;
}
.your_form .creditcard.back .swipe-bar{
	width: 100%;
    height: 42px;
    margin-top: 15px;
    background-color: #332203;
}
.your_form .creditcard.back .toggle-back{
	text-align: center;
}
.your_form .creditcard.back .signature{
    display: inline-block;
    padding: .5em;
    margin-top: 1em;
    margin-left: 1em;
    font-size: small;
}
.your_form .creditcard.back .code{
	color:green;
	padding: .5em 1em;
    display: inline-block;
    background-color: #fff;
}
.your_form .creditcard.back .explanation{
    padding: .5em;
    font-size: .8em;
}
.your_form .card-logo{
	background-image:url(images/defaultcard.png);
}
.your_form .card-logo.diners_club_carte_blanche{
	background-image:url(images/diners_club_carte_blanche.png);
}
.your_form .card-logo.diners_club_international{
	background-image:url(images/diners_club_international.png);
}
.your_form .card-logo.jcb{
	background-image:url(images/jcb.png);
}
.your_form .card-logo.laser{
	background-image:url(images/laser.png);
}
.your_form .card-logo.dankort{
	background-image:url(images/dankort.png);
}
.your_form .card-logo.maestro{
	background-image:url(images/maestro.png);
}
.your_form .card-logo.uatp{
	background-image:url(images/uatp.png);
}
.your_form .card-logo.visa_electron{
	background-image:url(images/visa_electron.png);
}
.your_form .card-logo.visa{
	background-image:url(images/visa.png);
}
.your_form .card-logo.mastercard{
	background-image:url(images/mastercard.png);
}
.your_form .card-logo.discover{
	background-image:url(images/discover.png);
}
.your_form .card-logo.amex{
	background-image:url(images/amex.png);
}

.your_form .creditcard{
    padding: 0 0 20px 0;
    background-color: #eeeeee;
    margin-top: 20px;
    border-radius: .75em;
    box-shadow: 1px 1px 5px #333;
}

.your_form .creditcard .card-top{
    margin-top: 60px;
    margin-bottom: 10px;
}
.your_form .creditcard .card-bottom{
	margin-bottom: 10px;
    margin-top: 10px;
}

.your_form .creditcard .card-left{
	float:left;
	margin-left:10px
}
.your_form .creditcard .card-right{
	float:right;
	margin-right:10px;
}

.your_form .creditcard .card-top.card-left{
	width:calc(100% - 86px)
}
.your_form .creditcard .card-top.card-right{
	width:57px;
}

.your_form .creditcard .card-bottom.card-left{
	width:calc(100% - 139px)
}
.your_form .creditcard .card-bottom.card-right{
	width:110px;
}
.your_form .creditcard select{
	width:50px;
	display: inline-block;
	padding: 0;
}

.your_form .creditcard .card-bottom.card-right div span{
	margin: 0 2px;
}
/* hidden credit card fields */
.your_form .creditcard .vertical {
    overflow: hidden
}
.your_form .creditcard .vertical li {
    float: left;
    width: 50%
}
.your_form .creditcard .vertical li .or {
    color: #aaa;
    float: left;
    font-size: 12px;
    margin-left: -8px;
    margin-top: 32px
}
.your_form .creditcard .vertical li:last-child label {
    margin-left: 17px;
}
.your_form .creditcard .vertical li:last-child input {
    float: right
}
.your_form .creditcard .vertical input {
    width: 80%
}

@media only screen and (max-width: 768px){



}
/* card flip */
/* entire container, keeps perspective */
.your_form .flip-container {
	perspective: 1000px;
	/*transform-style: preserve-3d;*/
}
/* not on hover 
	.flip-container:hover .back {
		transform: rotateY(0deg);
	}
	.flip-container:hover .front {
	    transform: rotateY(180deg);
	}
*/

.your_form .flip-container, .front, .back {
	height: 234px;
    max-width: 404px;
    margin: 5px 0 20px 0;
}

/* flip speed goes here */
.your_form .flipper {
	transition: 0.6s;
	transform-style: preserve-3d;
	position: relative;
}

/* hide back of pane during swap */
.your_form .front, .back {
	backface-visibility: hidden;
	transition: 0.6s;
	transform-style: preserve-3d;
	position: absolute;
	top: 0;
	left: 0;
}

.your_form .front {
	z-index: 2;
	transform: rotateY(0deg);
}

.your_form .back {
	transform: rotateY(-180deg);
}
/* action to flip card */ 
.your_form .flip-container.flip .flipper {
	transform: rotateY(180deg);
}

/* password */
.your_form input[type="password"] ~ .peek,
.your_form input[type="text"] ~ .peek,
.your_form input ~ .delete{
	position: relative;
}

.your_form input[type="text"].focused:valid ~ .peek::after,
.your_form input[type="password"].focused:valid ~ .peek::after,
.your_form input.focused:valid ~ .delete::after,
.your_form input ~ .check::after{
	content: ' ';
	display: block;
	position: absolute;
	top: 5px;
	right: 5px;
	width: 25px;
	z-index:2;
}
.your_form input ~ .check::after{
	content: url(images/gridicons-not-tick.svg);	
}
.your_form input[type="text"].focused:valid ~ .peek.adj-right::after,
.your_form input[type="password"].focused:valid ~ .peek.adj-right::after,
.your_form input.focused:valid ~ .delete.adj-right::after,
.your_form input ~ .check.adj-right::after{
	right:48px;
}
.your_form input[type="text"].focused:valid ~ .peek.adj-top::after,
.your_form input[type="password"].focused:valid ~ .peek.adj-top::after,
.your_form input.focused:valid ~ .delete.adj-top::after,
.your_form input ~ .check.adj-top::after{
	top:33px;
	right:20px;
}
.your_form .creditcard input ~ .check.adj-top::after {
    position: relative;
    content: url(images/gridicons-not-tick.svg);
    top: -29px;
    left: calc(100% - 25px);
}
.your_form input ~ .check.adj-top.valid::after,
.your_form input ~ .check.adj-right.valid::after,
.your_form input ~ .check.valid::after{
	content: url(images/gridicons-tick.svg);	
}
.your_form input[type="text"].focused:valid ~ .peek::after{
	content: url(images/gridicons-visible.svg);	
	cursor:pointer;
	opacity: 0.2;
}
.your_form input[type="text"].focused:valid ~ .peek:hover::after{
	opacity: 1;
}
.your_form input[type="password"].focused:valid ~ .peek::after{
	content: url(images/gridicons-not-visible.svg);
	cursor:pointer;
	opacity: 0.2;
}
.your_form input[type="password"].focused:valid ~ .peek:hover::after{
	opacity: 1;
}
.your_form input.focused:valid ~ .delete::after{
	content: '×';
    opacity: .2;
    filter: alpha(opacity=20);
    top: 10px;
    text-align: center;
    vertical-align: middle;
    font-size: 19px;
    font-weight: 700;
    line-height: 15px;
    width: 15px;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    cursor: pointer;
}
.your_form input.focused:valid ~ .delete:hover::after{
	opacity: 1;
    filter: alpha(opacity=100);
    /* red circle white x
    background-color: red;
    border-radius: 7.5px;
    color: #fff;
    text-shadow: 0 1px 0 #000;
    */
}


/* SELECT */
/*!
 * Bootstrap-select v1.12.4 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2017 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */

select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}
.bootstrap-select {
  width: 220px \0;
  /*IE9 and below*/
}
.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  color: #999;
}
.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}
.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 220px;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not([class*="col-"]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}
.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
  outline: none !important;
}
.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}
.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
/*# sourceMappingURL=bootstrap-select.css.map */


