@media (max-width: 640px) {
    #background {
        background: url(img/screenshot.png) no-repeat !important;
        background-size: 100% 100%  !important;
        background-size: cover;
        width:100%  !important;
    	height:100%  !important;
    	object-fit: cover;
    }
    #video { display: none; }
}

body{
    background-color: black;
}

.input-mid{
    width: 50%;
}

#icon-mghm{
    width: 6%;
    margin-bottom: 6px;
    color:white;
}
#icon-mghm:hover{
    color:goldenrod;
}
#background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.4;
    filter: saturate(50%)
}

#brand-p1{
    font-family: 'Montserrat';
    text-transform:uppercase;
}
#brand-p2{
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    
}

#services{
    background: white;
}
/*form styles*/
#msform {
	width: 100%;
	margin: 50px auto;
	text-align: center;
    z-index: auto;
    position:relative;
}
#msform fieldset {
	background: #612a71;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 95%;
	margin: 0 2%;
	
	/*stacking fieldsets above each other*/
	position: relative;
    z-index: 5;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea{
	padding: 12px 12px !important;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
  background: rgba(255,255,255,0);
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: white;
	font-size: 13px;
    text-transform:uppercase;
}
#msform .custom-select{
	padding: 0px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
    background: rgba(255,255,255,0);
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: white;
	font-size: 13px;
    text-transform:uppercase;
}
#msform input:focus, #msform textarea:focus, #msform select:focus {
	border-color: rgba(218,165,32,.8);
    outline: 0;
    outline: thin dotted \9;
    -moz-box-shadow: 0 0 8px rgba(218,165,32,.6);
    box-shadow: 0 0 8px rgba(218,165,32,.6) !important;
}

/*inputs placeholders*/
#msform input::placeholder, #msform textarea::placeholder, #msform select::placeholder {
	color: rgba(255,255,255,.5);
}
/*buttons*/
#msform .action-button {
	width: 40%;
	background: rgba(0,0,0,0);
	font-weight: light;
	color: white;
    text-transform: uppercase;
	border: 1 solid white;
	border-radius: 3px;
	cursor: pointer;
	padding: 10px 25px;
	margin: 10px 5px;
    transition: background .3s ease-in;
    display: inline-block;
    

}
#msform .action-button:hover, #msform .action-button:focus {
	background: rgba(255,255,255,1);
	font-weight: bold;
	color: #612a71;
	border: 1 solid white;
	border-radius: 3px;
	cursor: pointer;
	padding: 10px 25px;
	margin: 10px 5px;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: white;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: white;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
    font-family: 'Montserrat';
    text-transform:uppercase;
		margin-bottom: 30px;
		overflow: hidden;
	/*CSS counters to number the steps*/
		counter-reset: step;
    position:relative;
    z-index: 2;
		padding-inline-start:0px !important;
}
#progressbar li {
	list-style-type: none;
	color: dimgray;
	text-transform: uppercase;
	font-size: 9px;
	width: 25%;
	float: left;
	position:relative;
    
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: white;
	background: dimgray;
	border-radius: 3px;
	margin: 0 auto 5px auto;
    position:relative;
    z-index: 2;
    transition: background .2s ease-in;
}
/*progressbar connectors*/
#progressbar li:after {
	content: ' ';
	width: 100%;
	height: 3px;
	background: dimgray;
	position:absolute;
	left: -50%;
	top: 9px;
	z-index: 1; /*put it behind the numbers*/
}
#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:goldenrod;
	color: white;
    
}

/** EMPIEZA CUSTOM DE SELECTS **/

.custom-select {
  position: relative;
  font-family: 'montserrat', sans-serif;
  height: 45px;
  padding-top: 15px;
  text-align: left;
}

.custom-select select {
  /*hide original SELECT element: */
  /*display:none;*/
  visibility: hidden;
  display: block;
  position: absolute;
  height:0;
}

.select-selected {
  background-color: #612a71;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 19px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 9px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px 8px 8px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0) transparent;
  cursor: pointer;
  
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #612a71;
  top: 110%;
  left: 0;
  right: 0;
  z-index: 99;
  
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/**AQUI EMPIEZA EL CUSTOM DE LOS CHECKBOXES **/

/* Customize the label (the container) */
.custom-checkboxes {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Montserrat';
  text-transform:uppercase;
  text-align: left;
  color:white;
  white-space: nowrap;
    }
    
/* Hide the browser's default checkbox */
.custom-checkboxes input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0 !important;
  width: 0 !important;
  vertical-align: middle !important;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.custom-checkboxes:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkboxes input:checked ~ .checkmark {
  background-color: goldenrod;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkboxes input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkboxes .checkmark:after {
  left: 9px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/**
*Success SVG Animation
**/

.animation-ctn{
  text-align:center;
  margin-top:2em;
  margin-bottom: 2em;
}

	@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 200px
    }
}

@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 200px
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 0px
    }
}

@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px
   
    }

    100% {
        stroke-dashoffset: 960px;
      
    }
}

@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px 
    }

    100% {
        stroke-dashoffset: 960px
    }
}

@keyframes colored-circle { 
    0% {
        opacity:0
    }

    100% {
        opacity:100
    }
}

/* other styles */
/* .svg svg {
    display: none
}
 */
.inlinesvg .svg svg {
    display: inline
}

/* .svg img {
    display: none
} */

.icon--order-success svg polyline {
    -webkit-animation: checkmark 1.2s ease-in-out .7s backwards;
    animation: checkmark 0.8s ease-in-out .7s backwards;
    animation-delay: .8s;
}

.icon--order-success svg circle {
    -webkit-animation: checkmark-circle 1s ease-in-out backwards;
    animation: checkmark-circle 0.8s ease-in-out backwards;
    animation-delay: .8s;
}
.icon--order-success svg circle#colored {
    -webkit-animation: colored-circle 1s ease-in-out .7s backwards;
    animation: colored-circle 0.8s ease-in-out .7s backwards;
    animation-delay: .8s;
} 



.error-class
{
    color: white;
    z-index: 1;
    display:block;
    float: none;
    position:relative;
    top:0.2em;
    text-align: left;
    font-family: 'Montserrat';
    font-size:12px !important; 
    text-shadow: 0.4px 0.4px #000;
}
