
/*Mischa aanpassingen*/

/*.form-wrap-validation span.form-validation:last-child {*/
  /*display:none;*/
/*}*/
    
/* *******************************************
    Main styling 
******************************************* */
  
h2{
	font-size: 20px;
}


.open-data-widget input[type="text"] {
    background: transparent url('/images/background.png') no-repeat left center;
    line-height: 24px;
    width: 170px;
    border: 2px solid #4C4C4C;
    padding: 2px 5px 2px 15px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold;
    color: #404040;
    border-radius: 4px;
    text-align: center;
    margin: 10px 0;
  }
  
  .open-data-widget input[type="text"]:focus {
    outline: none;
    border: 2px solid #4C4C4C;
  }
  
  /* Pillar styles */
  
  .pillar-header {
    text-align: center;
    padding: 10px 10px;
    border-bottom: 1px solid #fff;
  }
  
  .pillar-pricing {
    text-align: center;
    padding: 10px 10px;
    color: #000;
    font-size: smaller;
  
  }
  
  .pillar-spacing {
    padding-top: 20px ;
    margin-right:5px;
  }
  
  .pillar-column {
    -webkit-box-shadow: 9px 7px 9px -6px rgba(107,107,107,0.7);
    -moz-box-shadow: 9px 7px 9px -6px rgba(107,107,107,0.7);
    box-shadow: 9px 7px 9px -6px rgba(107,107,107,0.7);
    padding-left: 20px;
    padding-right: 0;
    margin-bottom: 20px;
    transition: box-shadow 1s, -moz-box-shadow 1s, -webkit-box-shadow 1s, top 1s;
	font-size:100%;
	top: 0;
  }
  
  .pillar-column:hover {
    -webkit-box-shadow: 18px 14px 18px -6px rgba(107,107,107,0.7);
    -moz-box-shadow: 15px 12px 15px -6px rgba(107,107,107,0.7);
    box-shadow: 15px 12px 15px -6px rgba(107,107,107,0.7);
    top:-10px;
  }

  .pillar-column:hover .pillar-pricing {
    transition: font-size 0.8s;
  }


  .pillar-column:hover .pillar-pricing  h5 {
    font-size: 120%;
  }
  
  .pillar-column:hover .pillar-pricing   {
    font-size: 120%;
  }




  .bronze-header {
    background-color: #e89c5b;
  }
  
  .bronze-subheader {
    background-color: #db9851;
  }
  
  .silver-header {
    background-color: #c0c0c0;
  }
  
  .silver-subheader {
    background-color: #b6b6b6;
  }
  
  .gold-header {
    background-color: #ffd700;
  }
  
  .gold-subheader {
    background-color: #eac500;
  }
  
  .pillar-row {
    border: 1px solid #898989;
    border-bottom: 0;
    padding: 15px;
    text-align: center;
    background-color: #dfdfdf;
  
    /*padding-bottom: 5px;*/
  }
  
  .pillar-row:last-child {
    border-bottom: 1px solid #898989;
    /*padding-bottom: 5px;*/
  
  }
  
    /* Login form styling */
  
  
  
  
  #MemberLoginForm_LoginForm label, #LostPasswordForm_lostPasswordForm label{
    /* position: absolute;
    top: 25px;
    left: 19px; */
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #282828;
    pointer-events: none;
    z-index: 9;
    transition: .3s;
    /* transform: translateY(-50%); */
  
    
    opacity: 1;
    transform: none;
    color: #282828;
    font-size: 16px;
  
  }
  
  #MemberLoginForm_LoginForm input, #LostPasswordForm_lostPasswordForm input{
   
    display: block;
    width: 100%;
    height: 50px;
    padding: 12px 19px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #282828;
    background-color: #fff;
    background-image: none;
    border: 1px solid #e6e6e6;
    border-radius: 25px;
    -webkit-appearance: none;
  
  }
  
  
  #MemberLoginForm_LoginForm input:focus, #LostPasswordForm_lostPasswordForm input:focus{
      outline: 0;
  }
  
  
  #MemberLoginForm_LoginForm input.action,  #LostPasswordForm_lostPasswordForm input.action{
   
    display: block;
    width: 100%;
    color: #fff;
    background-color: #f52626;
    border-color: #f52626;
    border-radius: 30px;
  
  }
  
  
/* *******************************************
    Checkbox styling 
******************************************* */
  


  /* Customize the label (the container) */
.container {
    
    display: block;
    position: relative;
    padding-left: 60px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight:normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 20px;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #ff7373;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  




/* *******************************************
    RadioButton styling 
******************************************* */
.container_r {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px; 
  font-weight:normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container_r input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container_r:hover input ~ .radiomark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container_r input:checked ~ .radiomark {
  background-color: #ff7373;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container_r input:checked ~ .radiomark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container_r .radiomark:after {
  top: 8px;
  left: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
}





















/* Restyling because new logo */

h1, .heading-1 {
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6) !important;
}
  
.header-home-2 .rd-navbar-static.rd-navbar {
  background: #000;
  border-bottom: 2px solid #C00;
}

.rd-navbar-collapse{
  border-bottom: 2px solid #C00 !important;
}

  
.header-home-2 .rd-navbar-static .rd-navbar-inner  {
  padding-bottom: 0;
  align-items: flex-end;
  background-color: #000;
  height: 120px !important;
}

.rd-navbar-static .rd-navbar-top-panel,
.rd-navbar-fullwidth .rd-navbar-top-panel {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #2E2E2E !important;
}

.header-default .rd-navbar-static .rd-navbar-top-panel {
  background: transparent;
  border-bottom: 0;
}

.rd-navbar-brand a img {
  margin-top: -20px ;
  /* margin-left: -28px ; */
}

.rd-navbar-inner {
  background: transparent url('/images/header-background-menu_66.jpg') no-repeat right center;
}


.rd-navbar .contact-info {
  font-size: 14px !important;
  font-weight: 500;
}

.social-icon {
  font-size: 1.4em;
}


.material-icons-ico, [class*="material-icons-"]:before  {
  padding-top:3px;
  font-size: 1.4em;
}

.rd-navbar-search {
  display:none !important;
  visibility: hidden !important;
}

.page-loader {
  background-color: #000 !important;
}

.rd-navbar-brand .brand-name img.site-logo {
  background: transparent url('/images/logo-rtcar-header_50.jpg') no-repeat left top;
  height: 110px;
  width: 232px;
}

.swiper-slider {
  max-height:550px !important;
}


.button-primary {
  margin-top: 8px;
}


@media (max-width: 992px) {
  .section-lg {
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .rd-navbar-brand .brand-name  img.site-logo{
    background: transparent url('/images/logo-rtcar-header-mobile.jpg') no-repeat left top !important;
    height: 48px;
    width: 107px; 
    margin: 0 ;
    
  }

  .swiper-slider {
    max-height:200px !important;
  }
}

@media (min-width: 992px) {

  .section-lg {
    padding-top: 10px;
    padding-bottom: 40px;
  }

  .swiper-container-horizontal > .swiper-pagination {
    bottom: 140px;
  }
}

.footer-home-1 .about-text {
  max-width: 1200px;
}


/* Creates a new instance of the
section counter with each ol
element */
.main-content ol {
  list-style-type: decimal;
}

.main-content li {
  margin-left: 40px;
}

.main-content ul {
  list-style-type: circle;
}

#company_details {
  padding-top: 30px;
}

ul {
  list-style-image: url('/images/audio-list-item-transp-small.png');
}

ul.list {
  list-style-image: none;
}


div.form-horizontal-spacer {
  padding-top: 50px;
}

div.form-small-horizontal-spacer {
  padding-top: 15px;
}

