@font-face {
    font-family: 'Aileron';
    src: url('/templates/css/fonts/Aileron-Light.otf');
    font-weight: normal;
    font-style: normal;
    speak: none;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

#cookiespopup {
    position: relative;
    z-index: 9999;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white; /* or any background so it's not transparent */
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2); /* optional for effect */
  }

@font-face {
    font-family: 'Aileron-Bold';
    src: url('/templates/css/fonts/Aileron-Bold.otf');
    font-weight: bold;
    font-style: normal;
    speak: none;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'WorkSans';
    src: url('/templates/css/fonts/WorkSans-Bold.ttf');
    font-weight: normal;
    font-style: normal;
    speak: none;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.gradient-hover {
  background: linear-gradient(90deg, #4caf50, #81c784); /* Default gradient */
  transition: background 0.3s ease; /* Smooth transition for hover effect */
}

.gradient-hover:hover {
  background: linear-gradient(90deg, #81c784, #4caf50); /* Reversed gradient on hover */
}

body {
    /*min-height: 1000px;*/
    color: #333132;
    /*font-family: 'Merriweather';*/
    font-family: 'Aileron';
    font-size: 14px;
    /*color: #5c5c5c;*/
    /*letter-spacing: 1px;*/
    background-color: white;
    /*padding-top: 51px;*/
}

.td-up {
    padding-left: 0px;
    padding-right: 0px;
}

.navbar-default {
    /*box-shadow: 0px 2px 10px rgba(6, 6, 6, 0.05);*/
    box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px rgba(0, 0, 0, .12), 0 2px 4px rgba(0, 0, 0, .24);
    background-color: #fff;
    /*border-color: #ccc;*/
    position: fixed;
}

/* WebKit browsers */
#modalStepWizard .modal-body::-webkit-scrollbar {
    width: 8px;
  }
  
  #modalStepWizard .modal-body::-webkit-scrollbar-track {
    background: transparent;
  }
  
  #modalStepWizard .modal-body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2); /* light gray scroll handle */
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  #modalStepWizard .modal-body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  #modalStepWizard .modal-header {
    border-bottom: none;
  }
  #modalStepWizard .modal-dialog {
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    margin: 1.5rem auto;
    width: 100%;
    max-width: 95%; /* or your modal-lg width */
  }
  
  .panel-selected {
    border: 2px solid #007bff; /* Bootstrap primary color */
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    background-color: #e9f5ff;
    transition: all 0.3s ease;
  }

  .panel-default.cursor-pointer:hover {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
  }

  
  #modalStepWizard .modal-content {
    display: flex;
    flex-direction: column;
    height: 95vh;
    overflow: hidden;
  }

  #modalStepWizard .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
  }
  
  #modalStepWizard .modal-content {
    height: auto;
    max-height: none;
  }
  
  #modalStepWizard .modal-body {
    overflow: visible;
  }
  
  
  .custom-close-btn {
    font-size: 4rem;       /* Bigger "×" symbol */
    line-height: 1;
    padding: 0.5rem 1rem;  /* More click area */
    margin: -1rem -1rem 0 auto; /* Align to top-right neatly */
    background: transparent;
    border: none;
    color: #000;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    cursor: pointer;
  }
  
  .custom-close-btn:hover {
    opacity: 1;
  }
  
  #modalStepWizard .modal-body {
    overflow-y: auto;
    flex: 1 1 auto;
    max-height: calc(100vh - 160px); /* accounts for header/footer */
    padding: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  }


  .input-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .input-block input {
    height: 36px;
      vertical-align: 20px;
    padding: 8px 12px;
    margin-top: -5px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .cke_editable[contenteditable="true"]:empty:before {
    content: attr(data-placeholder);
    color: #999;
    font-style: italic;
  }
.autocomplete-suggestions {
    position: absolute;
    border: 1px solid #ddd;
    background-color: white;
    max-height: 150px;
    overflow-y: auto;
    list-style-type: none;
    padding: 0;
    margin: 5px 0;
    width: 100%;
    z-index: 1000;
  }
  
  .autocomplete-suggestions li {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
  }
  
  .autocomplete-suggestions li:hover {
    background-color: #f0f0f0;
  }
  
  .employer-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 3px;
  }
  
  .input-with-icon {
    position: relative;
  }
  
  .employer-icon-inside {
    position: absolute;
    left: 8px; /* Adjust based on preference */
    top: 70%;
    transform: translateY(-75%);
    width: 20px;
    height: 20px;
    border-radius: 3px;
    pointer-events: none; /* Prevent click events on the icon */
  }
  
  .employer-input {
    padding-left: 32px; /* Add enough padding to avoid overlap with the icon */
  }
  
  .badge {
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    padding: 2px 4px;
    font-size: 0.7em;
    margin-left: 5px;
    vertical-align: middle;
    display: inline-block;
    min-width: 4px;
    text-align: center;
  }
  
  .btn-toolbar>.btn, .btn-toolbar>.btn-group, .btn-toolbar>.input-group {
      margin-top:20px}
  
  /* Tab container */
  .nav-tabs {
      border-bottom: none;
      display: flow;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px;
   
    }
    
    /* Individual tabs */
    .nav-tabs li {
      flex: 1;
      text-align: center;
      margin: 8px;
    }
    
    .nav-tabs a {
      padding: 12px 20px;
      border: 1px solid transparent;
      border-radius: 6px;
      background-color: #ffffff;
      color: #444;
      text-decoration: none;
      display: block;
      font-weight: 500;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }
    
    .nav-tabs a:hover {
      background-color: #e0f3ff;
      color: #007bff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .nav-tabs .active a {
      background-color: #ffffff;
      border: 1px solid #ddd;
      color: #007bff;
      font-weight: bold;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }
    
    /* Tab content area */
    .tab-content {
      border: 1px solid #ddd;
      margin-top:20px;
      padding: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      animation: fadeIn 0.3s ease-in-out;
    }
    
    /* Add fade-in effect for tab content */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
  
    /* Responsive design: Stack tabs vertically on smaller screens */
  @media (max-width: 768px) {
      .nav-tabs {
        flex-direction: column;
      }
    
      .nav-tabs li {
        text-align: left;
      }
    }
  
  /* Styling the More Details button */
  .more-info-button {
      background-color: #007bff; /* Bright blue */
      color: white;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 5px;
      box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
      transition: all 0.3s ease;
      cursor: pointer;
      display: inline-block;
      margin-top: 20px;
    }
    
    /* Hover effect */
    .more-info-button:hover {
      background-color: #0056b3; /* Darker blue */
      box-shadow: 0 6px 12px rgba(0, 86, 179, 0.4);
      transform: translateY(-2px);
    }
    

    
    /* Smooth transition for content display */
    .more-info {
      display: none;
      transition: all 0.3s ease-in-out;
    }
    
    .btn.focus, .btn:focus, .btn:hover {
      color: #ffffff;
  
    }
    @media (min-width: 692px) {
      .col-md-3 {
          width: 25%;
      }
  }
  
  .card-container {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }
  
  .qualification-card {
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 15px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .qualification-card:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      transform: translateY(-2px);
  }
  
  .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 5px;
      background-color: #ebefef63;
        border-radius: 5px;
        padding: 15px;
        font-weight: bold;
      }
  
      
  .qual-title {
      font-weight: bold;
      font-size: 1.1em;
  }
  
  .institution-info {
      font-size: 0.9em;
      color: #666;
  }
  
  .card-dates {
      font-size: 0.9em;
      color: #666;
      margin-bottom: 10px;
  }
  
  .expand-section {
      text-align: right;
  }
  
  .expand-icon {
      font-size: 1.2em;
      transition: transform 0.3s;
  }
  
  .details-content {
      border-top: 1px solid #eee;
      padding-top: 10px;
      margin-top: 10px;
      display: none;
  }
  
  .card-container {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }
  
  .application-card {
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .application-card:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      transform: translateY(-2px);
  }
  
  .card-header {
      display: flex;
      justify-content: space-between;
      font-weight: bold;
      margin-bottom: 5px;
  }
  
  .vacancy-info {
      margin: 10px 0;
      font-size: 1em;
  }
  
  .vacancy-title {
      font-weight: bold;
  }
  
  .status-info {
      display: flex;
      align-items: center;
      font-size: 0.9em;
      color: #666;
  }
  
  .status-label {
      font-weight: bold;
      margin-right: 5px;
  }
  
  .status {
      font-size: 0.9em;
  }
  
  .card-container {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }
  
  .reference-card {
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .reference-card:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      transform: translateY(-2px);
  }
  
  .card-header {
      font-weight: bold;
      font-size: 1.1em;
      margin-bottom: 5px;
  }
  
  .reference-details {
      font-size: 0.9em;
      color: #666;
      display: grid;
      gap: 5px;
  }
  
  .custom-statement-tooltip {
  max-width: 50vw;
  white-space: normal;
  text-align: left;
  font-size: 13px;
  padding: 8px;
}

.__react_component_tooltip {
    max-width: 250px;
    width: 250px;
    white-space: normal !important; /* allow wrapping */
    z-index: 9999 !important;
  }

  .reference-details strong {
      font-weight: bold;
  }
  
  .strong {

    font-weight: bold;
  }

  
  #appReferences {
      box-shadow: none !important;
      border: none !important;
      background: transparent !important;
      padding: 0 !important;
  }
  
  #appReferences .reference-card {
      box-shadow: none !important; /* If there’s a specific card element causing the issue */
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  
  /* Accordion Group Styling */
  .accordion-group {
      max-width: 600px;
      margin: 20px auto;
      padding: 0;
  }
  
  /* Accordion Card */
  .accordion-card {
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      margin-bottom: 15px;
      overflow: hidden;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .accordion-card:hover {
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      transform: translateY(-2px);
  }
  
  /* Accordion Header */
  .accordion-header {
      background-color: #f8f9fa;
      padding: 15px 20px;
      cursor: pointer;
  }
  
  .accordion-title {
      font-size: 16px;
      font-weight: bold;
      color: #333;
      margin: 0;
  }
  
  .accordion-title a {
      text-decoration: none;
      color: inherit;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  
  .accordion-title a:hover {
      text-decoration: none;
  }
  
  /* Collapse Icon */
  .accordion-title a:after {
      content: '\25BC';
      font-size: 16px;
      transition: transform 0.3s;
  }
  
  .accordion-collapse.in .accordion-title a:after {
      transform: rotate(180deg);
  }
  
  /* Accordion Body */
  .accordion-body {
      padding: 15px 20px;
      background-color: #fff;
  }
  
  /* Table Styling in Accordion */
  .accordion-body .table-bordered {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
  }
  
  .accordion-body .table-bordered td,
  .accordion-body .table-bordered th {
      padding: 12px 15px;
      border-bottom: 1px solid #eaeaea;
      vertical-align: top;
  }
  
  /* Question Cell Styling */
  .accordion-body .table-bordered td:first-child {
      font-weight: bold;
      color: #333;
      background-color: #f9f9f9;
      border-right: 1px solid #eaeaea;
      width: 30%;
  }
  
  /* Answer Cell Styling */
  .accordion-body .table-bordered td:last-child {
      color: #555;
      background-color: #fff;
      width: 70%;
  }
  
  /* Hover Effect */
  .accordion-body .table-bordered tr:hover td {
      background-color: #f1f1f1;
  }
  
  /* Optional: Rounded Corners for First and Last Rows */
  .accordion-body .table-bordered tr:first-child td:first-child {
      border-top-left-radius: 8px;
  }
  
  .accordion-body .table-bordered tr:first-child td:last-child {
      border-top-right-radius: 8px;
  }
  
  .accordion-body .table-bordered tr:last-child td:first-child {
      border-bottom-left-radius: 8px;
  }
  
  .accordion-body .table-bordered tr:last-child td:last-child {
      border-bottom-right-radius: 8px;
  }
  
  /* Container for all employment cards */
.card-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

/* Individual employment card */
.employment-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    background-color: #fff;
}

.employment-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Header section for job title and employer info */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.job-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.employer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.employer-name {
    font-size: 14px;
    color: #666;
}

.employer-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

 /* Wrapper for Progress Circle and Image */
 .progress-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    
}


/* Profile Photo */
.profile-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 10px; /* Center the photo within the SVG */
    left: 10px;
    
}

/* Dates section */
.card-dates {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* Expand section */
.expand-section {
    text-align: right;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.expand-icon {
    font-size: 18px;
    transition: transform 0.3s;
}

.expand-icon.expanded {
    transform: rotate(180deg);
}

/* Roles content (initially hidden, shown on expand) */
.roles-content {
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Specific styling for the CV preview tab */
#cvPreviewContent {
    padding: 20px; /* Standard padding */
    height: auto; /* Ensure it adapts to content height */
}

/* PDF and Word Embed Container */
.pdf-container {
    width: 100%;
    max-height: 80vh; /* Cap the height to avoid excess space */
    overflow: hidden; /* Prevent content overflow */
}

/* Full width and fixed height for iframe within pdf-container */
.pdf-container iframe {
    width: 100%;
    height: 80vh; /* Set a fixed height */
    border: none;
}

/* Reset other tab content styling to prevent extra space */
.tab-pane {
    padding: 20px; /* Add consistent padding for all tab content */
    margin-top: 0; /* Remove any potential margin */
    height: 100%; /* Ensure height adjusts based on content */
}

        


    /* Optional: Add CSS media query for better handling on mobile screens */
    @media (max-width: 768px) {
        .pdf-container iframe {
            height: 60vh; /* Adjust height for smaller screens */
        }
    }

    .card {
        background-color: #ffffff;
        border-radius: 12px;
        overflow: hidden;
      }
      
      
      
      .card-body {
        padding: 20px;
        background-color: #f8f9fa; /* Light gray for contrast */
      }
      
      #RecommendedJobs {
        font-size: 1rem;
        padding: 10px;
        color: #6c757d; /* Muted gray text */
      }
      
      
.flex-iframe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80vh;
}

.responsive-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.notAvailableText {
    color: red;
    text-transform: uppercase; /* Converts text to uppercase */
    font-weight: bold; /* Optional for emphasis */
}


.availableFromText {
    
    color: #ff9b07; /* Your desired color */
    font-weight: bold; /* Optional for emphasis */
}

/*#content {
    padding-top:124.5px;
}*/

#menu {
    /*height: 74px;*/
    /*padding-top: 15px;*/
}

.navbar-brand {
    padding-top: 8px;
}

.navbar-nav {
    background-color: #fff;
    margin: 1px -15px 7.5px -15px;
    /*text-transform: uppercase;*/
    margin: 0;
}

.navbar-default .navbar-nav > li > a {
    color: #333132;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
}

.work-img {
    width: 373px;
    margin: 0 10px 8px 0;
    padding: 0;
}

table {
    margin-top: 20px;
    border-collapse: collapse;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .navbar-default .navbar-nav > li > a {
        color: #333132;
        font-size: 14px;
        padding-left: 5px;
        padding-right: 5px;
    }

}



.profile-container {
    display: inline-block;
    width: 150px;               
    height: 150px;              
    border-radius: 50%;         
    overflow: hidden;            
    border: 0px solid #ccc;     
    text-align: center;
}


.profile-picture {
    width: 100%;                 
    height: 100%;                
    object-fit: cover;           
    display: block;
}

.col-lg-2 {
    width:25%
}



@media only screen and (max-width: 250px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    table, thead, tbody, th, td, tr {
        /*display: block;*/
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    td {
        border: none;
        position: relative;
    }

}

.navbar-default .navbar-nav > li > a:hover {
    color: #cc0c43;
    background-color: #eee;
}

.navbar-default .navbar-toggle {
    border-color: #fff;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #000;
}

.navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
}

#apply {
    color: #fff;
    font-size: 16px;
    background-color: #cc0c43;
    border: 1px solid #cc0c43;
}

#apply:hover {
    background-color: #c70249;
}

#login-toggle {
    color: #333132;
    background-color: #ddd;
}

#login-toggle:hover {
    background-color: #ccc;
}

.colLeft, .colRight {
    text-align: center;
}

.title_white {
    color: #fff;
    font-family: 'WorkSans';
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 1.1em;
    padding-bottom: 20px;
    text-align: center;
}

.title_grey {
    color: #333132;
    font-family: 'WorkSans';
    font-size: 26px;
    letter-spacing: 3px;
    line-height: 1.1em;
    padding-bottom: 20px;
}

#section_1_home {
    background-image: url(/templates/ecc/gfx/bg_section_1.jpg);
    background-position: center;
    height: 566px;
    padding-top: 30px;
}

#section_1_home > p {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}

#section_1 {
    background-image: url(/templates/ecc/gfx/bg_section_1.jpg);
    background-position: center;
    height: 566px;
    padding-top: 30px;
}

#section_1 > p {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}

#explore {
    color: #fff;
    padding-top: 80px;
    font-size: 16px;
    line-height: 1.1em;
}

#explore span {
    color: #fff;
    font-size: 22px;
}

#section_2 {
    background-image: url(/templates/ecc/gfx/bg_section_2.jpg);
    background-position: center;
    height: 640px;
    padding-top: 60px;
}

#section_2 > p {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 100px;
    line-height: 1.5em;
}

#section_3 {
    padding-top: 35px;
    padding-bottom: 35px;
    background-color: #fff;
}

#section_3 > p {
    color: #333132;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 30px;
    line-height: 1.5em;
}

#section_3 img {
    width: 300px;
}

#section_4 {
    background-image: url(/templates/ecc/gfx/bg_section_4.jpg);
    background-position: center;
    height: 639px;
    padding-top: 40px;
}

#section_4 > p {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 40px;
    line-height: 1.5em;
}

#section_5 {
    color: #333132;
    font-size: 14px;
    padding-top: 35px;
    padding-bottom: 35px;
    background-color: #fff;
}

#section_6 {
    background-image: url(/templates/ecc/gfx/map.png);
    background-position: center;
    height: 646px;
    padding-top: 40px;
    padding-left: 74px;
    padding-right: 74px;
}

#section_6 .title_grey {
    padding-bottom: 30px;
}

#section_7 {
    background-image: url(/templates/ecc/gfx/bg_section_7.jpg);
    background-position: center;
    height: 640px;
    padding-top: 40px;
}

#section_7 > p {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 70px;
    line-height: 1.5em;
}

.colLeft2, .colRight2 {
    text-align: right;
    padding: 30px 40px 30px 40px;
    min-width: 330px;
}

.img-right {
    float: right;
    padding-left: 10px;
}

.button_pink {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background-color: #cc0c43;
    border: 1px solid #cc0c43;
    padding: 20px 50px 20px 50px;
}

.button_pink:hover, .button_pink:focus {
    border: none;
    color: #fff;
    text-decoration: none;
    background-color: #c70249;
}

.button_grey {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background-color: #333132;
    border: 1px solid #333132;
    padding: 20px;
}

.button_grey:hover, .button_grey:focus {
    border: none;
    color: #fff;
    text-decoration: none;
    background-color: #505050;
}

#css-footer {
    font-size: 14px;
    background-color: #fff;
    height: 230px;
    padding-top: 35px;
    line-height: 1.5em;
    position: relative;
    float: left;
    left: 50%;
    transform: translateX(-50%);
}

#css-footer a {
    color: #777;
}

#css-footer img {
    padding-left: 18px;
    padding-bottom: 30px;
}

#fotter_options {
    font-size: 10px;
    text-align: center;
    margin-bottom: 35px;
}

#css-footer_cr {
    font-size: 10px;
    padding-left: 30px;
}

#a_section_1 {
    background-image: url(/templates/ecc/gfx/a_section_1.jpg);
    background-position: center;
    height: 244px;
    padding-top: 30px;
}

#a_section_1-one {
    background-image: url(/templates/ecc/gfx/a_section_1.jpg);
    background-position: center;
    height: 244px;
    padding-top: 30px;
}

#a_white_p {
    display: none;
    text-align: center;
    color: #fff;
    margin-top: 20px;
    padding-left: 80px;
    padding-right: 90px;
}

#a_section_2 {
    padding-left: 0px;
    background-color: #fff;
    background-position: center;
    padding-top: 30px;
}

#a_bold_section_2 {
    margin-bottom: 70px;
    font-weight: bold;
    text-align: center;
}

#a_down_section_2 {
    display: none;
    margin-top: 30px;
    font-size: 14px;
    padding-left: 0px;
    padding-right: 26px;
    margin-bottom: 60px;
}

#a_link_section_2 {
    color: #cc0c43;
    text-decoration: none;
}

.a_checkbox {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}

.a_checkbox_word {
    text-align: left;
    margin: 7px 0 10px 10px;
    font-size: 18px;
}

#a_first_p {
    padding-top: 6px;
    margin-left: 10px;
}

/*input[type=checkbox], input[type=radio] {
    margin: 6px 20px 0;
    display: inherit;
    float: left;
}*/

#a_space_s2 {
    margin-bottom: 30px;
}

#a_down_section_2 {
    display: none;
    margin-top: 60px;
    font-size: 14px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 60px;
}

#a_section_3 {
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fff;
    background-position: center;
    padding-bottom: 20px;
    padding-top: 30px;
}

#a_bold_section_3 {
    font-family: "WorkSans";
    margin-bottom: 10px;
    font-weight: bold;
}

#a_p_section_3 {
    margin-bottom: 30px;
}

#a_step_nr_image {
    display: none;
    float: left;
    margin-left: 0px;
    margin-top: 0px;
}

#a_number_circle_1 {
    background-image: url(/templates/ecc/gfx/a_step_1.png);
    background-position: center;
    height: 30px;
    width: 30px;
    display: -webkit-inline-box;
}

#a_number_circle_2 {
    background-image: url(/templates/ecc/gfx/a_step_2.png);
    background-position: center;
    height: 30px;
    width: 30px;
    display: -webkit-inline-box;
}

#a_number_circle_3 {
    background-image: url(/templates/ecc/gfx/a_step_3.png);
    background-position: center;
    height: 30px;
    width: 30px;
    display: -webkit-inline-box;
}

#a_number_circle_4 {
    background-image: url(/templates/ecc/gfx/a_step_4.png);
    background-position: center;
    height: 30px;
    width: 30px;
    display: -webkit-inline-box;
}

#a_number_circle_5 {
    background-image: url(/templates/ecc/gfx/a_step_5.png);
    background-position: center;
    height: 30px;
    width: 30px;
    display: -webkit-inline-box;
}

#a_number_circle_6 {
    background-image: url(/templates/ecc/gfx/a_step_6.png);
    background-position: center;
    height: 30px;
    width: 30px;
    display: -webkit-inline-box;
}

#a_number_circle_7 {
    background-image: url(/templates/ecc/gfx/a_step_7.png);
    background-position: center;
    height: 30px;
    width: 30px;
    display: -webkit-inline-box;
}

#a_first_step {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
}

#a_step_div_f {
    margin-bottom: 10px;
    font-weight: bold;
}

#a_second_step {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
}

#a_step_div_s {
    margin-bottom: 10px;
    font-weight: bold;
}

#a_third_step {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
}

#a_step_div_t {
    margin-bottom: 10px;
    font-weight: bold;
}

#a_fourth_step {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
}

#a_step_div_fourth {
    margin-bottom: 10px;
    font-weight: bold;
}

#a_fifth_step {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
}

#a_step_div_fifth {
    margin-bottom: 10px;
    font-weight: bold;
}

#a_sixth_step {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
}

#a_step_div_sixth {
    margin-bottom: 10px;
    font-weight: bold;
}

#a_seventh_step {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#a_step_div_seventh {
    margin-bottom: 10px;
    font-weight: bold;
}

#a_section_4 {
    background-color: #fff;
    background-position: center;
    padding-top: 30px;
}

#a_ready_title {
    margin-bottom: 62px;
    font-family: "WorkSans";
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: #333132;
}

.a_button_pink {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    background-color: #cc0c43;
    border: 1px solid #cc0c43;
    padding: 20px 50px 20px 50px;
}

.a_button_pink:hover, .a_button_pink:focus {
    border: none;
    color: #fff;
    text-decoration: none;
    background-color: #c70249;
}

#a_section_5 {
    background-image: url(/templates/ecc/gfx/a_section_5.jpg);
    background-position: center;
    height: 207px;
    padding-top: 30px;
}

#about_section_1 {
    padding-left: 90px;
    background-image: url(/templates/ecc/gfx/about_section_1.jpg);
    background-position: center;
    height: 500px;
    padding-top: 30px;
    padding-right: 100px;
    font-size: 46px;
    letter-spacing: 3px;
    line-height: 1.1em;
    font-family: "WorkSans";
}

#about_section_2 {
    padding-left: 90px;
    background-image: url(/templates/ecc/gfx/about_section_2.jpg);
    background-position: center;
    height: 500px;
    padding-top: 30px;
    padding-right: 100px;
}

#about_section_3 {
    background-image: url(/templates/ecc/gfx/about_section_3.jpg);
    background-position: center;
    height: 500px;
    padding-top: 30px;
}

#about_title {
    color: #fff;
    font-weight: bold;
    font-size: 28px;
    margin-bottom: 12px;
}

#about_h4 {
    text-decoration: underline;
    color: #fff;
    font-size: 22px;
    margin-bottom: 22px;
}

#about_p {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

#about_section_4 {
    background-color: #fff;
    background-position: center;
    height: 140px;
    padding-top: 30px;
    padding-left: 450px;
}

.about_button_pink {
    color: #fff;
    margin-right: 470px;
    font-size: 16px;
    font-weight: bold;
    background-color: #cc0c43;
    border: 1px solid #cc0c43;
    padding: 20px 50px 20px 50px;
}

h3 {
    /*padding-left: 10px;*/
}

@media (min-width: 768px) and (max-width: 992px) {
    #content {
        padding-top: 66px;
    }
}

@media (min-width: 768px) {

    .navbar-nav {
        background-color: #fff;
    }

    .navbar-default .navbar-nav > li > a:hover {
        color: #cc0c43;
        background-color: #fff;
    }

    .navbar-brand {
        padding-left: 20px;
        padding-right: 30px;
    }

    #login-toggle {
        font-size: 14px;
        background-color: #fff;
        border: 1px solid #333132;
        padding: 7px 10px 7px 10px;
        margin-top: 8px;
        margin-left: 6px;
        /*margin-right: 15px;*/
    }

    #login-toggle:hover {
        background-color: #e8e8e8;
    }

    #apply {
        color: #fff;
        font-size: 14px;
        background-color: #cc0c43;
        border: 1px solid #cc0c43;
        padding: 7px 10px 7px 10px;
        margin-top: 8px;
        margin-left: 6px;
    }

    .title_white {
        font-size: 36px;
        letter-spacing: 2px;
        line-height: 1.1em;
        padding-bottom: 20px;
    }

    .title_grey {
        font-size: 36px;
        letter-spacing: 2px;
        line-height: 1.1em;
        padding-bottom: 20px;
    }

    #section_1_home {
        padding-top: 140px;
    }

    #section_1_home > p {
        color: #fff;
        font-size: 16px;
        padding-left: 40px;
        padding-right: 40px;
    }

    #section_1 {
        padding-top: 140px;
    }

    #section_1 > p {
        color: #fff;
        font-size: 16px;
        padding-left: 40px;
        padding-right: 40px;
    }

    #explore {
        color: #fff;
        padding-top: 150px;
        font-size: 16px;
        line-height: 1.1em;
    }

    #explore span {
        color: #fff;
        font-size: 22px;
    }

    #section_2 {
        padding-top: 100px;
    }

    #section_2 > p {
        font-size: 16px;
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 20px;
        padding-bottom: 100px;
        line-height: 1.5em;
    }

    #section_3 {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    #section_3 > p {
        font-size: 16px;
        padding-left: 40px;
        padding-right: 40px;
        padding-top: 10px;
        padding-bottom: 40px;
        line-height: 1.5em;
    }

    #section_3 img {
        width: 433px;
    }

    #section_4 {
        padding-top: 60px;
    }

    #section_4 > p {
        font-size: 16px;
        padding-left: 140px;
        padding-right: 140px;
        padding-top: 20px;
        padding-bottom: 100px;
        line-height: 1.5em;
    }

    #section_5 {
        font-size: 16px;
    }

    #section_6 {
        padding-left: 140px;
        padding-right: 150px;
    }

    #section_6 .title_grey {
        padding-bottom: 60px;
    }

    #section_7 {
        padding-top: 60px;
    }

    #section_7 > p {
        font-size: 16px;
        padding-left: 140px;
        padding-right: 140px;
        padding-top: 20px;
        padding-bottom: 100px;
        line-height: 1.5em;
    }

    .button_pink {
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        background-color: #cc0c43;
        border: 1px solid #cc0c43;
        padding: 20px 80px 20px 80px;
    }

    .button_grey {
        padding: 20px 50px 20px 50px;
    }

    #css-footer {
        height: 267px;
        padding-top: 35px;
    }

    #css-footer img {
        padding-left: 18px;
        padding-bottom: 30px;
    }

    #fotter_options {
        font-size: 10px;
        text-align: center;
        padding-left: 190px;
        padding-right: 153px;
        margin-bottom: 35px;
    }

    #css-footer_cr {
        font-size: 10px;
        padding-left: 30px;
    }

    #a_section_1 {
        background-image: url(/templates/ecc/gfx/a_section_1.jpg);
        background-position: center;
        height: 244px;
        padding-top: 30px;
    }

    #a_white_p {
        display: none;
        color: #fff;
        margin-top: 20px;
        padding-left: 140px;
        padding-right: 160px;
    }

    #a_section_2 {
        padding-left: 0px;
        background-color: #fff;
        background-position: center;
        padding-top: 30px;
    }

    #a_bold_section_2 {
        margin-bottom: 70px;
        font-weight: bold;
        text-align: center;
    }

    #a_down_section_2 {
        display: none;
        margin-top: 30px;
        font-size: 14px;
        padding-left: 0px;
        padding-right: 26px;
        margin-bottom: 60px;
    }

    #a_link_section_2 {
        color: #cc0c43;
        text-decoration: none;
    }

    .a_checkbox {
        width: 30px;
        height: 30px;
        margin-right: 20px;
    }

    .a_checkbox_word {
        margin: 7px 0 10px 10px;
        font-size: 18px;
    }

    #a_first_p {
        padding-top: 6px;
    }

    /*input[type=checkbox], input[type=radio] {
        margin: 6px 20px 0;
        display: inherit;
        float: left;
    }*/
    #a_down_section_2 {
        display: none;
        margin-top: 30px;
        font-size: 14px;
        padding-left: 0px;
        padding-right: 0px;
        margin-bottom: 60px;
    }

    #a_space_s2 {
        margin-bottom: 10px;
    }

    #a_section_3 {
        padding-left: 15px;
        padding-right: 15px;
        background-color: #fff;
        background-position: center;
        padding-bottom: 20px;
        padding-top: 30px;
    }

    #a_bold_section_3 {
        font-family: "WorkSans";
        padding-left: 30px;
        margin-bottom: 10px;
        font-weight: bold;
        text-align: left;
    }

    #a_p_section_3 {
        margin-bottom: 30px;
        text-align: left;
        padding-left: 30px;
    }

    #a_step_nr_image {
        display: block;
        float: left;
        margin-left: 0px;
        margin-top: 0px;
    }

    #a_number_circle_1 {
        display: none;
        background-image: url(/templates/ecc/gfx/a_step_1.png);
    }

    #a_number_circle_2 {
        display: none;
        background-image: url(/templates/ecc/gfx/a_step_2.png);
    }

    #a_number_circle_3 {
        display: none;
        background-image: url(/templates/ecc/gfx/a_step_3.png);
    }

    #a_number_circle_4 {
        display: none;
        background-image: url(/templates/ecc/gfx/a_step_4.png);
    }

    #a_number_circle_5 {
        display: none;
        background-image: url(/templates/ecc/gfx/a_step_5.png);
    }

    #a_number_circle_6 {
        display: none;
        background-image: url(/templates/ecc/gfx/a_step_6.png);
    }

    #a_number_circle_7 {
        display: none;
        background-image: url(/templates/ecc/gfx/a_step_7.png);
    }

    #a_first_step {
        font-size: 16px;
        margin-top: 35px;
        text-align: left;
        padding-left: 45px;
        margin-bottom: 34px;
    }

    #a_second_step {
        font-size: 16px;
        text-align: left;
        padding-left: 45px;
        margin-top: 57px;
    }

    #a_third_step {
        font-size: 16px;
        text-align: left;
        margin-top: 56px;
        padding-left: 45px;
    }

    #a_fourth_step {
        font-size: 16px;
        text-align: left;
        margin-top: 58px;
        padding-left: 45px;
    }

    #a_fifth_step {
        font-size: 16px;
        text-align: left;
        margin-top: 70px;
        padding-left: 45px;
    }

    #a_sixth_step {
        font-size: 16px;
        text-align: left;
        margin-top: 61px;
        padding-left: 45px;
    }

    #a_seventh_step {
        font-size: 16px;
        text-align: left;
        margin-top: 63px;
        padding-left: 45px;
    }

    #a_section_4 {
        background-color: #fff;
        background-position: center;
        height: auto;
        padding-top: 30px;
    }

    #a_ready_title {
        margin-bottom: 80px;
        font-family: "WorkSans";
        text-align: center;
        font-size: 50px;
        font-weight: bold;
        color: #333132;
    }

    .a_button_pink {
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        background-color: #cc0c43;
        border: 1px solid #cc0c43;
        padding: 20px 50px 20px 50px;
    }

    .a_button_pink:hover, .a_button_pink:focus {
        border: none;
        color: #fff;
        text-decoration: none;
        background-color: #c70249;
    }

    #a_section_5 {
        background-image: url(/templates/ecc/gfx/a_section_5.jpg);
        background-position: center;
        height: 207px;
        padding-top: 30px;
    }

    #about_section_1 {
        padding-left: 90px;
        background-image: url(/templates/ecc/gfx/about_section_1.jpg);
        background-position: center;
        height: 500px;
        padding-top: 30px;
        padding-right: 100px;
    }

    #about_section_2 {
        padding-left: 90px;
        background-image: url(/templates/ecc/gfx/about_section_2.jpg);
        background-position: center;
        height: 500px;
        padding-top: 30px;
        padding-right: 100px;
    }

    #about_section_3 {
        background-image: url(/templates/ecc/gfx/about_section_3.jpg);
        background-position: center;
        height: 500px;
        padding-top: 30px;
    }

    #about_title {
        color: #fff;
        font-weight: bold;
        font-size: 28px;
        margin-bottom: 12px;
    }

    #about_h4 {
        text-decoration: underline;
        color: #fff;
        font-size: 22px;
        margin-bottom: 22px;
    }

    #about_p {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }

    #about_section_4 {
        background-color: #fff;
        background-position: center;
        height: 140px;
        padding-top: 30px;
        padding-left: 450px;
    }

    .about_button_pink {
        color: #fff;
        margin-right: 470px;
        font-size: 16px;
        font-weight: bold;
        background-color: #cc0c43;
        border: 1px solid #cc0c43;
        padding: 20px 50px 20px 50px;
    }

    h3 {
        /*padding-left: 40px;*/
    }

}

@media (min-width: 992px) {

    .td-up {
        padding-left: 0px;
        padding-right: 0px;
    }

    .navbar-brand {
        padding-left: 85px;
        padding-right: 20px;
    }

    /*  #content {
            padding-top:81px;
        }*/
    #login-toggle {
        margin-left: 20px;
    }

    #apply {
        margin-left: 20px;
    }

    .colLeft {
        text-align: right;
        padding-right: 0px;
    }

    .colRight {
        text-align: left;
        padding-left: 0px;
    }

    .colLeft2 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .colRight2 {
        padding-left: 30px;
        padding-right: 30px;
    }

    #section_6 {
        padding-left: 175px;
        padding-right: 230px;
    }

    #section_6 .title_grey {
        padding-bottom: 70px;
    }

    #css-footer {
        height: 240px;
    }

    #a_section_1 {
        background-image: url(/templates/ecc/gfx/a_section_1.jpg);
        background-position: center;
        height: 244px;
        padding-top: 30px;
    }

    #a_white_p {
        display: none;
        color: #fff;
        margin-top: 20px;
        padding-left: 365px;
        padding-right: 370px;
    }

    #a_section_2 {
        background-color: #fff;
        background-position: center;
        padding-top: 30px;
        height: auto;
    }

    #a_bold_section_2 {
        font-family: "WorkSans";
        margin-bottom: 60px;
        font-weight: bold;
        text-align: center;
        padding-left: 0px;
        font-size: 20px;
    }

    .a_checkbox {
        width: 30px;
        height: 30px;
        float: left;
        margin-right: 20px;
    }

    .a_checkbox_word {
        margin: 7px 0 20px;
        font-size: 18px;
        text-align: left;
    }

    #a_first_p {
        padding-top: 6px;
        /*margin-left: 292px;*/
    }

    input[type=checkbox], input[type=radio] {
        margin: 5px 20px 0 20px;
    }

    #a_down_section_2 {
        display: none;
        margin-top: 60px;
        font-size: 14px;
        padding-left: 0px;
        padding-right: 26px;
        margin-bottom: 50px;
    }

    #a_section_3 {
        background-color: #fff;
        background-position: center;
        padding-top: 30px;
    }

    #a_bold_section_3 {
        margin-bottom: 8px;
        font-weight: bold;
    }

    #a_section_4 {
        height: auto;
    }

    #about_section_1 {
        padding-left: 90px;
        background-image: url(/templates/ecc/gfx/about_section_1.jpg);
        background-position: center;
        height: 500px;
        padding-top: 30px;
        padding-right: 100px;
    }

    #about_section_2 {
        padding-left: 90px;
        background-image: url(/templates/ecc/gfx/about_section_2.jpg);
        background-position: center;
        height: 500px;
        padding-top: 30px;
        padding-right: 100px;
    }

    #about_section_3 {
        background-image: url(/templates/ecc/gfx/about_section_3.jpg);
        background-position: center;
        height: 500px;
        padding-top: 30px;
    }

    #about_title {
        color: #fff;
        font-weight: bold;
        font-size: 28px;
        margin-bottom: 12px;
    }

    #about_h4 {
        text-decoration: underline;
        color: #fff;
        font-size: 22px;
        margin-bottom: 22px;
    }

    #about_p {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }

    #about_section_4 {
        background-color: #fff;
        background-position: center;
        height: 140px;
        padding-top: 30px;
        padding-left: 450px;
    }

    .about_button_pink {
        color: #fff;
        margin-right: 470px;
        font-size: 16px;
        font-weight: bold;
        background-color: #cc0c43;
        border: 1px solid #cc0c43;
        padding: 20px 50px 20px 50px;
    }

    h3 {
        /*padding-left: 40px;*/
    }
}

@media (min-width: 1200px) {

    .navbar-brand {
        padding-left: 0px;
        padding-right: 30px;
    }

    #login-toggle {
        margin-left: 20px;
        margin-right: 0px;
    }

    #apply {
        margin-left: 20px;
    }

    .title_white {
        padding-top: 0px;
        font-size: 46px;
        letter-spacing: 3px;
        line-height: 1.1em;
        padding-bottom: 20px;
    }

    .title_grey {
        font-size: 46px;
        letter-spacing: 3px;
        line-height: 1.1em;
        padding-bottom: 20px;
    }

    #section_1_home {
        padding-top: 130px;
    }

    #section_1_home > p {
        font-size: 16px;
        padding-left: 200px;
        padding-right: 200px;
    }

    #section_1 {
        padding-top: 130px;
    }

    #section_1 > p {
        font-size: 16px;
        padding-left: 140px;
        padding-right: 140px;
    }

    #explore {
        color: #fff;
        padding-top: 180px;
        font-size: 16px;
        line-height: 1.1em;
    }

    #explore span {
        color: #fff;
        font-size: 22px;

    }

    #section_2 {
        padding-top: 35px;
    }

    #section_2 > p {
        font-size: 16px;
        padding-left: 240px;
        padding-right: 240px;
        padding-top: 20px;
        padding-bottom: 100px;
        line-height: 1.5em;
    }

    #section_3 {
        padding-top: 35px;
        padding-bottom: 45px;
    }

    #section_3 > p {
        font-size: 16px;
        padding-left: 150px;
        padding-right: 150px;
        padding-top: 10px;
        padding-bottom: 40px;
        line-height: 1.5em;
    }

    #section_4 {
        padding-top: 60px;
    }

    #section_4 > p {
        color: #fff;
        font-size: 16px;
        padding-left: 160px;
        padding-right: 160px;
        padding-top: 20px;
        padding-bottom: 70px;
        line-height: 1.5em;
    }

    #section_6 {
        padding-left: 300px;
        padding-right: 370px;
        padding-top: 60px;
    }

    #section_6 .title_grey {
        padding-bottom: 100px;
    }

    #css-footer {
        height: 220px;
    }

    #css-footer img {
        padding-left: 18px;
        padding-bottom: 30px;
    }

    #a_section_1 {
        background-image: url(/templates/ecc/gfx/a_section_1.jpg);
        background-position: center;
        height: 244px;
        padding-top: 30px;
    }

    #a_section_1-one {
        background-image: url(/templates/ecc/gfx/a_section_1.jpg);
        background-position: center;
        height: 244px;
        padding-top: 90px;
    }

    #a_white_p {
        display: none;
        color: #fff;
        margin-top: 20px;
        padding-left: 365px;
        padding-right: 370px;
    }

    #a_section_2 {
        padding-left: 160px;
        padding-right: 160px;
        background-color: #fff;
        background-position: center;
        padding-top: 30px;
        height: auto;
    }

    #a_bold_section_2 {
        font-family: "WorkSans";
        margin-bottom: 60px;
        font-weight: bold;
        text-align: center;
        padding-left: 0px;
        font-size: 20px;
        padding-right: 100px;
    }

    #checkbox_area {
        padding-left: 50px;
    }

    .a_checkbox {
        width: 30px;
        height: 30px;
        float: left;
        margin-right: 20px;
    }

    .a_checkbox_word {
        margin: 7px 0 20px;
        font-size: 18px;
        text-align: left;
    }

    #a_first_p {
        padding-top: 6px;
        /*margin-left: 292px;*/
    }

    input[type=checkbox], input[type=radio] {
        margin: 5px 0 0;
        margin-right: 20px;
    }

    .a_button_pink {
        color: #fff;
        margin-right: 70px;
        font-size: 16px;
        font-weight: bold;
        background-color: #cc0c43;
        border: 1px solid #cc0c43;
        padding: 20px 50px 20px 50px;
    }

    #a_down_section_2 {
        display: none;
        margin-top: 60px;
        font-size: 14px;
        padding-left: 20px;
        padding-right: 26px;
        margin-bottom: 60px;
    }

    #a_space_s2 {
        margin-bottom: 30px;
    }

    #a_section_3 {
        /*padding-left: 100px;*/
        background-color: #fff;
        background-position: center;
        height: auto;
        padding-top: 30px;
        padding-right: 70px;
    }

    #a_bold_section_3 {
        font-family: "WorkSans";
        padding-left: 40px;
        margin-bottom: 10px;
        font-weight: bold;
        text-align: left;
        font-size: 16px;
    }

    #a_p_section_3 {
        margin-bottom: 40px;
        text-align: left;
        padding-left: 40px;
        font-size: 14px;
    }

    #a_step_nr_image {
        float: left;
        margin-left: 38px;
        margin-top: 0px;
        margin-right: 8px;
    }

    #a_first_step {
        font-size: 18px;
        margin-top: 44px;
        text-align: left;
        padding-left: 80px;
        margin-bottom: -2px;
    }

    #a_step_div_f {
        margin-bottom: 10px;
        font-weight: bold;
    }

    #a_second_step {
        font-size: 18px;
        text-align: left;
        padding-left: 80px;
        margin-top: 53px;
    }

    #a_step_div_s {
        margin-bottom: 10px;
        font-weight: bold;
    }

    #a_third_step {
        font-size: 18px;
        text-align: left;
        margin-top: 50px;
        padding-left: 80px;
        margin-bottom: 0px;
    }

    #a_step_div_t {
        margin-bottom: 10px;
        font-weight: bold;
    }

    #a_fourth_step {
        font-size: 18px;
        text-align: left;
        margin-top: 51px;
        padding-left: 80px;
    }

    #a_step_div_fourth {
        margin-bottom: 10px;
        font-weight: bold;
    }

    #a_fifth_step {
        font-size: 18px;
        text-align: left;
        margin-top: 61px;
        padding-left: 80px;
    }

    #a_step_div_fifth {
        margin-bottom: 10px;
        font-weight: bold;
    }

    #a_sixth_step {
        font-size: 18px;
        text-align: left;
        margin-top: 56px;
        padding-left: 80px;
    }

    #a_step_div_sixth {
        margin-bottom: 10px;
        font-weight: bold;
    }

    #a_seventh_step {
        font-size: 18px;
        text-align: left;
        margin-top: 56px;
        padding-left: 80px;
    }

    #a_step_div_seventh {
        margin-bottom: 10px;
        font-weight: bold;
    }

    #a_section_4 {
        background-color: #fff;
        background-position: center;
        height: 160px;
        padding-top: 30px;
    }

    #a_ready_title {
        margin-right: 0px;
        margin-bottom: 80px;
        font-family: "WorkSans";
        text-align: center;
        font-size: 50px;
        font-weight: bold;
        color: #333132;
    }

    .a_button_pink:hover, .a_button_pink:focus {
        border: none;
        color: #fff;
        text-decoration: none;
        background-color: #c70249;
    }

    #a_section_5 {
        background-image: url(/templates/ecc/gfx/a_section_5.jpg);
        background-position: center;
        height: 207px;
        padding-top: 30px;
    }

    #about_section_1 {
        padding-left: 90px;
        background-image: url(/templates/ecc/gfx/about_section_1.jpg);
        background-position: center;
        height: 400px;
        padding-top: 30px;
        padding-right: 100px;
    }

    #about_section_2 {
        padding-left: 90px;
        background-image: url(/templates/ecc/gfx/about_section_2.jpg);
        background-position: center;
        height: 500px;
        padding-top: 30px;
        padding-right: 100px;
    }

    #about_section_3 {
        background-image: url(/templates/ecc/gfx/about_section_3.jpg);
        background-position: center;
        height: 500px;
        padding-top: 30px;
    }

    #about_title {
        color: #fff;
        font-weight: bold;
        font-size: 28px;
        margin-bottom: 12px;
    }

    h3 {
        /*padding-left: 150px;*/
    }

    #about_h4 {
        text-decoration: underline;
        color: #fff;
        font-size: 22px;
        margin-bottom: 22px;
    }

    #about_p {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
    }

    #about_section_4 {
        background-color: #fff;
        background-position: center;
        height: 140px;
        padding-top: 30px;
        padding-left: 450px;
    }

    .about_button_pink {
        text-decoration: none;
        color: #fff;
        margin-right: 470px;
        font-size: 16px;
        font-weight: bold;
        background-color: #cc0c43;
        padding: 20px 50px 20px 50px;
    }

    .about_button_pink:hover {
        background-color: #c70249;
    }

    #about_button {
        color: #fff;
    }

    #about_button:hover {
        text-decoration: none;
    }

}

.appCompleteWhereToGo img {
    margin: 0 367px;
}

.login-form {
    width: 100%;
    height: 100vh;
    position: absolute;
    background: rgba(255, 255, 255, 0.87);
    right: 0;
    top: 0;
    padding: 200px 0;
    display: none;
    z-index: 1000;
}

.login-cross {
    position: absolute;
    top: 62px;
    right: 10px;
    font-size: 1.8em;
    cursor: pointer;
}

.content-wrapper {
    width: 100%;
    min-height: 200px;
    position: relative;
    float: left;
}

.container {
    /*text-align: center;*/
}

#whitebox {
    width: 100% !important;
    margin: 0 !important;
    /*left: 53.5%;*/
    position: relative;
    /*    transform: translateX(-50%);*/
    float: left;
}

.container-wrapper {
    min-height: 400px;
    padding-right: 0px;
}

.contentpaneopen {
    background: white;
}

@media (min-width: 1200px) {

    .contentpaneopen {
        margin-left: -114px;
    }

}

.candHomeTop {
    margin-top: 40px;
}

td {
    padding-left: 66px;
    padding-right: 20px;
    padding-top: 43px;
}

#sQuestionsForm {
    margin-top: 40px;
}

.sQuestionAnswer {
    float: left;
    margin-bottom: 40px;
    margin-top: 20px;
}

#applicationBreadcrumbCorrecter {
    margin-top: 40px;
}

.centralized {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.firstrow {
    width: 99%;
    margin-left: 1%;
}

.firstleft {
    width: 33%;
    float: left;
    min-height: 369px;
    position: relative;
}

.firstcenter {
    width: 32%;
    float: left;
    margin-left: 1%;
    min-height: 369px;
    position: relative;
}

.firstright {
    width: 33%;
    float: left;
    margin-left: 1%;
    min-height: 369px;
    position: relative;
}

.secondrow {
    width: 69%;
    float: left;
    margin-left: 1%;
    min-height: 397px;
}

.secondleft {
    width: 33%;
    float: left;
    min-height: 250px;
    position: relative;
}

.secondcenter {
    width: 32%;
    float: left;
    margin-left: 1%;
    min-height: 250px;
    position: relative;
}

.secondright {
    width: 33%;
    float: left;
    margin-left: 1%;
    min-height: 250px;
    position: relative;
}

.candHomeRightColumn {
    float: left;
    width: 99%;
    margin-left: 1%;
}

@media screen and (max-width: 778px) {
    .firstrow {
        width: 99%;
        margin-left: 1%;
    }

    .firstleft {
        width: 99%;
        margin-left: 1%;
        float: left;

    }

    .firstright {
        width: 99%;
        margin-left: 1%;
        float: left;
    }

    .secondrow {
        width: 99%;
        margin-left: 1%;
        float: left;
        min-height: 0px;
    }

    .candHomeRightColumn {
        float: left;
        width: 99%;
        margin-left: 1%;
    }

    .secondleft {
        width: 100%;
        float: left;
        min-height: 0px;
    }

    .secondcenter {
        width: 100%;
        float: left;
        min-height: 0px;
    }

    .secondright {
        width: 100%;
        float: left;
        min-height: 0px;
    }
}

.candButtonSmall {
    -moz-box-shadow: inset 0px 1px 0px 0px #fed897;
    background: -moz-linear-gradient(center top, #f6b33d 5%, #d29105 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6b33d', endColorstr='#d29105');
    background-color: #cc0c43;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 0px;
    display: inline-block;
    color: #ffffff !important;
    font-family: arial;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    text-decoration: none;
    float: right;
    cursor: hand;
    cursor: pointer;
    border: none;
    position: absolute;
    bottom: 5px;
    right: 5px;
    z-index: 999;
}

.jobLineBottom {
    padding-bottom: 5px;
    border-bottom: 2px dotted #ccc;
}

/*.row {
    margin:0px;
}*/

form#userform {
    padding: 0px;
    border: none;
}

form#userform td {
    padding: 0px;
}

form#userform input {
    margin-bottom: 5px;
}

#maincolumn_full {
    margin-top: 0px;
    border-color: #ddd;
}

#maincolumn_full_inside {
    padding: 0px;
}

#zenbox_tab {
    top: 90% !important;
    transform: translateY(-50%) !important;
}

.candidatesblock {
    width: 49%;
    float: left;
    position: relative;
    min-height: 317px;
}

.candidatesearchblock {
    width: 33%;
    float: left;
    position: relative;
    margin-left: 1%;
    min-height: 317px;
}

.creditsblock {
    width: 50%;
    float: left;
    position: relative;
    margin-left: 1%;
    min-height: 317px;
}

.graphblock {
    width: 66%;
    float: left;
    position: relative;
    min-height: 317px;
}

.detailsblock {
    width: 100%;
    float: left;
    position: relative;
    min-height: 317px;
}

.postnewblock {
    width: 100%;
    float: left;
    position: relative;
}

.recentregblock {
    width: 50%;
    float: left;
    position: relative;
    margin-left: 1%;
    min-height: 317px;
}

.recentvacblock {
    width: 49%;
    float: left;
    position: relative;
    min-height: 317px;
}

.vacblock {
    width: 50%;
    float: left;
    position: relative;
    min-height: 317px;
    margin-left: 1%;
}

.fieldLabelSMS {
    font-size: 11px;
    margin-left: 120px;
}

.ui-datepicker-header {
    display: block;
    background-color: #df0050;
    color: white;
    text-align: center;
}

.ui-datepicker-header .ui-datepicker-day {
    background-color: #1F3A58;
    padding: 10px;
    font-size: 1rem;
}

.ui-datepicker-header .ui-datepicker-date {
    padding: 20px;
}

.ui-datepicker-header .ui-datepicker-date .ui-datepicker-month,
.ui-datepicker-header .ui-datepicker-date .ui-datepicker-day-num,
.ui-datepicker-header .ui-datepicker-date .ui-datepicker-year {
    padding: 5px;
}

.ui-datepicker-header .ui-datepicker-date .ui-datepicker-month {
    font-size: 2rem;
    text-transform: uppercase;
}

.ui-datepicker-header .ui-datepicker-date .ui-datepicker-day-num {
    font-size: 4.5rem;
}

.ui-datepicker-header .ui-datepicker-date .ui-datepicker-material-year {
    font-size: 1.8rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.4);
}

.ui-datepicker {
    padding: 0;
    border: none;
    box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px rgba(0, 0, 0, .12), 0 2px 4px rgba(0, 0, 0, .24);
    width: 325px;
    background: white;
}

.ui-corner-all {
    border-radius: 0;
}

.ui-widget-header {
    border: 0;
}

.ui-datepicker-header {
    text-align: center;
    background: white;
    padding-bottom: 15px;
    font-weight: 300;
    color: #000;
}

.ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker-header .ui-datepicker-next,
.ui-datepicker-header .ui-datepicker-title {
    border: none;
    outline: none;
    margin: 5px;
}

a.ui-state-default.ui-state-hover {
    background: #eae8e8;
}

.ui-datepicker a {
    cursor: pointer;
}

.ui-datepicker-calendar .ui-state-default {
    background: none;
    border: none;
    text-align: center;
    height: 33px;
    width: 33px;
    line-height: 36px;
}

.ui-datepicker-calendar .ui-state-highlight {
    color: #df0050;
}

.ui-datepicker-calendar .ui-state-active {
    border-radius: 0;
    background-color: #df0050;
    color: white;
}

.ui-datepicker-calendar thead th {
    color: #999999;
    font-weight: 200;
}

.ui-datepicker-buttonpane {
    border: none;
}

.ui-datepicker-buttonpane .ui-state-default {
    background: white;
    border: none;
}

.ui-datepicker-buttonpane .ui-datepicker-close,
.ui-datepicker-buttonpane .ui-datepicker-current {
    background: white;
    color: #df0050;
    text-transform: uppercase;
    border: none;
    opacity: 1;
    font-weight: 200;
    outline: none;
}

.ui-datepicker-buttonpane .ui-datepicker-close:hover,
.ui-datepicker-buttonpane .ui-datepicker-current:hover {
    background: #b4cbe5;
}

/*!
 * jQuery UI Datepicker 1.9.0
 * http://jqueryui.com
 *
 * Copyright 2012 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-datepicker {
    display: none;
    padding: 4px 4px 4px 2px;
    max-width: 260px;
}

.ui-datepicker .ui-datepicker-header {
    padding: .2em 30px;
    position: relative;
    font-size: 12px;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    height: 1.8em;
    position: absolute;
    top: 2px;
    width: 1.8em;
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
    top: 0;
}

.ui-datepicker .ui-datepicker-next {
    right: 10px;
    top: 0;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    display: block;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
}

.ui-datepicker .ui-datepicker-title {
    line-height: 1.8em;
    margin: 0 2.3em;
    text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month-year {
    width: 100%;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 49%;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: .9em;
    margin: 0 0 .4em;
    width: 100%;
}

.ui-datepicker th {
    border: 0;
    font-weight: bold;
    padding: .7em .3em;
    text-align: center;
}

.ui-datepicker td {
    border: 0;
    padding: 1px;
}

.ui-datepicker td span, .ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    margin: .7em 0 0 0;
    padding: 0 .2em;
}

.ui-datepicker .ui-datepicker-buttonpane button {
    cursor: pointer;
    float: right;
    margin: .5em .2em .4em;
    overflow: visible;
    padding: .2em .6em .3em .6em;
    width: auto;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left;
}

/* with multiple calendars */

.ui-datepicker.ui-datepicker-multi {
    width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
    float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
    margin: 0 auto .4em;
    width: 95%;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}

.ui-datepicker-row-break {
    clear: both;
    font-size: 0em;
    width: 100%;
}



/* RTL support */

.ui-datepicker-rtl {
    direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
    left: auto;
    right: 2px;
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    left: auto;
    right: 1px;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: right;
}

.ui-datepicker-rtl .ui-datepicker-group {
    float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
    border-left-width: 1px;
    border-right-width: 0;
}

.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 1px;
    border-right-width: 0;
}

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */

.ui-datepicker-cover {
    filter: mask(); /*must have*/
    height: 200px; /*must have*/
    left: -4px; /*must have*/
    position: absolute; /*must have*/
    top: -4px; /*must have*/
    width: 200px; /*must have*/
    z-index: -1; /*must have*/
}

.accountDetails {
    margin-top: 45px;
}

.lowLine .box {
    width: 150px;
    margin: 10px;
    float: left;
    min-height: 200px;
    border: 1px dashed #ccc;
    padding: 10px;
}

ul.cdItems li {
    width: 460px;
    height: 60px !important;
    line-height: 24px;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px dashed #ccc;
}

ul.cdItems li img {
    left: -10px !important;
    top: 2px !important;
}

.biInner ul.biInnerBoxLeft li {
    display: inline;
    float: left;
    height: 60px;
    margin: 0 3px 25px !important;
    padding: 3px;
    width: 107px;
}

#consVacAdvSearch, #candVacAdvSearch {
    background: none !important;
}

/*.advSearchForm {
    padding: 20px;
    padding-bottom: 45px;
}*/

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: none !important;
}

.clr {
    clear: both;
}

#system-message {
    margin-top: 50px;
}

.indPremContent label {
    font-size: 10px;
}

#jobBudget {
    width: 90%;
}

#maxCpc {
    width: 90%;
}

.jobfeeds-finish {
    clear: both;
}

.jobfeed-button {
    font-size: 1vw;
}

@media (max-width: 944px) {
    .jobfeed-button {
        font-size: 11px;
    }
}

/**
    CSS FOR TIME-SHEET
 */
.timesheet {
    display: flex;
}

.timesheet--row {
    padding-bottom: 12px;
}
.timesheet--paragraph {
    line-height: 30px;
}
.short-input {
    font-size: 16px;
}
.short-input > .input-group > .form-control {
    border-radius: 5px;
}
.short-input > .label {
    font-size: 14px;
    padding: 0;
    color: #000;
}
.short-input > .title {
    font-weight: bold;
}
.short-input > .input-group {
    width: 100%;
}
#datepicker-parent .ranges {
    display: none;
}

/** Timesheet right column */
.timesheet__information {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #e5e5e5;
}
.timesheet__information .information {}
.timesheet__information .information .information__title {
    font-family: 'Aileron-Bold';
}
.timesheet__information .information .information__label {
    margin: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.timesheet__information .information .information__label div {
    display: flex;
}
.timesheet__information .information .information--capital {
    text-transform: uppercase;
}

.timesheet__information .custom-indicator {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.timesheet__information .custom-indicator__select {}
.timesheet__information .custom-indicator__label {
    font-size: 14px;
    color: #333132;
    font-family: 'Aileron-Bold';
}

.timesheet__actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.timesheet__actions .action__button {
    display: flex;
}

.timesheet__alert {
    font-size: 12px;
    color: red;
}

/** ReminderModalElement */
.rs-reminder-button {
    backgroud-color: 'transparent';
    border: 0;
    width: 100%;
    padding: 3px 20px;
    text-align: left;
}
.rs-reminder-button:hover {
    background-color: #f5f5f5;
}
.rs-reminder-button:focus {
    outline: 0;
}
.rs-reminder-modal-container {
    width: 100%;
    padding: 0;
    border-radius: 5px;
}

.rs-reminder-date {
    padding: 10px 0;
}
.rs-reminder-date > div > .react-datepicker-popper {
    z-index: 10;
}
.rs-reminder-date__input-header {
    margin: 0;
}

/** ReminderListElement */
.rs-reminder-list {}
.rs-reminder-list__header {
    font-size: 18px;
    padding-bottom: 20px;
}
.rs-reminder-list__header--bold {
    font-family: 'Aileron-Bold';
}
.rs-reminder-list__content {
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}
.rs-title-input-field > .input-group {
    margin-bottom: 20px;
}

/* Dashboard - view */
.rs-overview-calendar-container {
    margin-bottom: 10px;
}

/** FullCalendar Even Modal */
.rs-fc-event-modal-container {
    padding: 0;
    border-radius: 5px;
    width: 100%;
}

.rs-fc-event-modal-body {
    padding: 0 15px;
}
.rs-fc-event-modal-body--header {
    font-family: 'Aileron-Bold';
}

.fc-widget-header > table,
.fc-bg > table,
.fc-content-skeleton > table {
    margin-top: 0px;
}

/** FullCalendar Timesheet Even Modal */

.rs-fct-event-modal-container {
    padding: 0;
    border-radius: 5px;
    width: 100%;
    max-width: 1200px;
}

.rs-fct-event-modal-loader {
    display: flex;
    justify-content: center;
}

.page-header__blue-button {
    border-radius: 5px;
    background-color: #009be5;
    color: #FFFFFF;
}

.page-header__action-button {
    margin-right: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.page-header__unavailable-button {
    margin-right: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: #FFFFFF;
    background-color: crimson;
}

.kpi-select {
    width: 100%;
    padding-top: 0 !important;
}

.kpi-select .Select-value-label {
    color: #fff !important;
}

.kpi-select .Select-input {
    height: 28px !important;
}

.kpi-select .Select-value {
    line-height: 28px !important;
}

/** Contact Dashboard */

.dashboard {
    position: relative;
    width: 100%;
}

.dashboard__title {
    display: inline-block;
}

@media screen and (max-width: 400px) {
    .dashboard__link {
      display: none !important;
    }
  }
  

.dashboard__link {
    position: absolute;
    display: inline-block;
    font-size: 16px;
    border: 1px solid #ff40b4;
    border-radius: 5px;
    color: #fff;
    background-color: #ff40b4;
    padding: 7px 15px;
    right: 5px;
    top: 25px;
}

.dashboard__link:hover {
    color: #fff;
}