:root {
    --sw-border-color:  #eeeeee;
    --sw-toolbar-btn-color:  #ffffff;
    --sw-toolbar-btn-background-color:  #016E96;
    --sw-anchor-default-primary-color:  #f8f9fa;
    --sw-anchor-default-secondary-color:  #b0b0b1;
    --sw-anchor-active-primary-color:  #016E96;
    --sw-anchor-active-secondary-color:  #ffffff;
    --sw-anchor-done-primary-color:  #67A7C0;
    --sw-anchor-done-secondary-color:  #fefefe;
    --sw-anchor-disabled-primary-color:  #f8f9fa;
    --sw-anchor-disabled-secondary-color:  #dbe0e5;
    --sw-anchor-error-primary-color:  #dc3545;
    --sw-anchor-error-secondary-color:  #ffffff;
    --sw-anchor-warning-primary-color:  #ffc107;
    --sw-anchor-warning-secondary-color:  #ffffff;
    --sw-progress-color:  #016E96;
    --sw-progress-background-color:  #f8f9fa;
    --sw-loader-color:  #016E96;
    --sw-loader-background-color:  #f8f9fa;
    --sw-loader-background-wrapper-color:  rgba(255, 255, 255, 0.7);
  }
  .sw .toolbar {
      display: flex;
      justify-content: space-between;
  }

  .sw .toolbar>.sw-btn {
    border-radius: 100% !important;
    background-color: transparent;
    color: #016E96;
    padding: 10px 12px;
    font-weight: 900;
    font-size: 18px;
    border: 1px solid #016E96;
  }
  
  @media screen and (max-width: 640px) {
    .sw>.nav {
        flex-direction: row !important;
        flex-wrap: nowrap;
        overflow-x:scroll ;
        text-align: center;
    }
  }
  @media screen and (max-width: 640px) {
    .sw-theme-dots>.nav .nav-link>.num {
    font-size: 1.5em;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: -37px;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
    transition: all .5s ease-in-out;
}
.sw-theme-dots>.nav .nav-link {
    position: relative;
    margin-top: 40px;
    margin-bottom: 0px;
}

.sw>.nav .nav-link {
    display: block;
    padding: 0.8rem;
    text-decoration: none;
}
.sw-theme-dots>.nav::before {
    content: " ";
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--sw-border-color);
    border-radius: 3px;
    z-index: 1;
}
.sw-theme-dots>.nav .nav-link::after {
    content: " ";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    top: -42px;
    width: 46px;
    height: 46px;
    z-index: 99;
    border: 8px solid var(--sw-border-color);
    transition: all .5s ease-in-out;
}
  }
  
