/* ---------- BUTTON ----------- */
a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
}

a.button span {
    line-height: 1;
}

a.btn-primary {
    color: #fff;
    background-color: #2075d6;
    border: 1px solid #0f4f99;
    border-radius: 32px;
    padding: 16px 24px;
}

a.btn-primary-employer {
    color: #fff;
    background-color: #61a30b;
    border: 1px solid #61a30b;
    border-radius: 32px;
    padding: 16px 24px;
}

a.btn-primary > svg,
a.btn-primary-employer > svg {
    margin-right: 10px;
}

a.pepp-btn-secondary,
button.pepp-btn-secondary {
    color: #0f4f99;
    background-color: #fff;
    border: 1px solid #0f4f99;
    border-radius: 32px;
    padding: 12px 16px;
}

a.btn-ad {
    color: #0f4f99;
    background-color: #bef249;
    border: 1px solid #007ca3;
    border-radius: 32px;
    padding: 20px 24px;
}

a.btn-ad-full {
    color: #0f4f99;
}

.btn-reset {
    margin-bottom: 32px;
}

.menu-btn,
.close-btn {
    background: transparent;
    border: 0;
    margin-left: 20px;
}

.menu-btn svg,
.close-btn svg {
    color: #002856;
}

.full-width-btn {
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
}

.full-width-btn svg {
    position: absolute;
    right: 15px;
}

.btn-slider {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #0073aa;
  background: white;
  color: #0073aa;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-slider:hover:not(:disabled) {
  background: #0073aa;
  color: white;
  transform: scale(1.1);
}

.btn-slider:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: #ccc;
  color: #ccc;
}

.pepp-carousel-controls {
    gap: 10px 16px;
}

.pepp-carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #0073aa;
  background: white;
  color: #0073aa;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pepp-carousel-btn:hover:not(:disabled) {
  background: #0073aa;
  color: white;
  transform: scale(1.1);
}

.pepp-carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: #ccc;
  color: #ccc;
}

/* ==========================================================================
   Large Devices (Desktops, < 1200px)
   @media (max-width: 1199.98px)
   ========================================================================== */

@media (max-width: 1199.98px) {

}

/* ==========================================================================
   Medium Devices (Tablets, < 992px)
   @media (max-width: 991.98px)
   ========================================================================== */

@media (max-width: 991.98px) {
    a.btn-primary,
    a.btn-primary-employer,
    a.pepp-btn-secondary {
        padding: 12px 16px;
        font-size: 14px;
    }

    
}

/* ==========================================================================
   Small Devices (Landscape Phones, < 768px)
   @media (max-width: 767.98px)
   ========================================================================== */

@media (max-width: 767.98px) {

}

/* ==========================================================================
   Extra Small Devices (Portrait Phones, < 576px)
   @media (max-width: 575.98px)
   ========================================================================== */

@media (max-width: 575.98px) {

}