.border-shadow {
   -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
   -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
   box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
   border-radius: 10px 10px 10px 10px;
   -moz-border-radius: 10px 10px 10px 10px;
   -webkit-border-radius: 10px 10px 10px 10px;
   border: 0px solid #000000;margin-right: 15px;
}
.btn-menu{
   width: 100%; 
   max-height: 55px; 
   margin-right: 5px;
   margin-left: 5px;
   background-color: #b50606;
   margin-top: 10px;
   
}

.btn-dom,
.btn-dom:active,
.btn-dom:hover,
.btn-dom:focus{  
   background-color: #b50606;  
   color: #FFF;
}

.fa-pulse{
   position: center;
   margin-top: 50%;
   color: #b50606
}

.fa-arrow-left{
   color: #e93b3a;
   font-size: 38px;
   margin-top: 7px;
   margin-left: 10px;
}

#header{
   margin-top: 0px;
}

/*Radiobutton*/
.custom-radio div{
   padding:5px 0; 
   font-family: 'Oswald', sans-serif;
   font-weight:300;
}
.radio-custom {
   opacity: 0;
   position: absolute;
}
.radio-custom-label {
   position: relative;
   height: 38px;
   display: inline-block;
   cursor:pointer;
}
.radio-custom+.radio-custom-label:before{
   content: '';
   border: 2px solid #bbbcbc;
   display: inline-block;
   vertical-align: middle;
   width: 30px;
   height: 30px;
   padding: 2px;
   margin-right: 10px;
   border-radius:50%;
}
.radio-custom:checked+.radio-custom-label:after {
   content:"";
   width:18px;
   height:18px;
   display:block;
   position:absolute;
   position: absolute;
   top: calc(50% - 13px);
   left: 6px;
   background:#e93b3a;
   border-radius:50%;
}
.radio-custom:checked+.radio-custom-label:before {
   border: 2px solid #e93b3a;
}


/*Checkbox*/
.custom-checkbox{
   padding:5px 0; 
   font-family: 'Oswald', sans-serif;
   font-weight:300;
}
.checkbox-custom {
   opacity: 0;
   position: absolute;
}
.checkbox-custom-label{
   height: 38px;
   display: inline-block;
   cursor: pointer;
}
.checkbox-custom+.checkbox-custom-label:before{
   content: '';
   border: 2px solid #bbbcbc;
   display: inline-block;
   vertical-align: middle;
   width: 25px;
   height: 25px;
   padding: 2px;
   margin-right: 10px;
   border-radius:3px;
}
.checkbox-custom:checked+.checkbox-custom-label:before {
   background:url(../img/check.png) no-repeat;
   background-size: 22px 22px;
   background-position: 0px 0px;
   border: 2px solid #e93b3a;
}



.loader {
   position: absolute;
   top: calc(50% - 32px);
   left: calc(50% - 32px);
   width: 64px;
   height: 64px;
   border-radius: 50%;
   perspective: 800px;
}

.inner {
   position: absolute;
   box-sizing: border-box;
   width: 100%;
   height: 100%;
   border-radius: 50%;  
}

.inner.one {
   left: 0%;
   top: 0%;
   animation: rotate-one 1s linear infinite;
   border-bottom: 3px solid #e93b3a;
}

.inner.two {
   right: 0%;
   top: 0%;
   animation: rotate-two 1s linear infinite;
   border-right: 3px solid #e93b3a;
}

.inner.three {
   right: 0%;
   bottom: 0%;
   animation: rotate-three 1s linear infinite;
   border-top: 3px solid #e93b3a;
}

@keyframes rotate-one {
   0% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
   }
   100% {
      transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
   }
}

@keyframes rotate-two {
   0% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
   }
   100% {
      transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
   }
}

@keyframes rotate-three {
   0% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
   }
   100% {
      transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
   }
}

.bonus002{
   background: rgba(233, 59, 58,0.9);
   color:#FFF;
   border-radius: 4px;
   max-width: 100px;
   text-align: center;
   vertical-align:middle;
   display:table-cell;
   float: right;
   margin-top:-5px;
   transform: rotate(30deg)
}

.bonus002 p {
   padding-left: 10px;
   padding-right: 10px;
   text-align: center;
   vertical-align:middle;
   display:table-cell;
}