  /**/
  .main {
    position: relative;
    width: 1000px;
    min-width: 1000px;
    min-height: 600px;
    height: 600px;
    padding: 25px;
    background-color: #ecf0f3;
    box-shadow: 10px 10px 10px #d1d9e6, -10px -10px 10px #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: 600px;
    height: 100%;
    padding: 25px;
    background-color: #ecf0f3;
    transition: 1.25s;
  }
  
  .form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .form__icon {
    object-fit: contain;
    width: 30px;
    margin: 0 5px;
    opacity: 0.5;
    transition: 0.15s;
  }
  .form__icon:hover {
    opacity: 1;
    transition: 0.15s;
    cursor: pointer;
  }
  .form__input {
    width: 350px;
    height: 40px;
    margin: 4px 0;
    padding-left: 25px;
    font-size: 15px;
    letter-spacing: 0.15px;
    border: none;
    outline: none;
    font-family: "Sora", sans-serif;
    background-color: #ecf0f3;
    transition: 0.25s ease;
    border-radius: 8px;
    box-shadow: inset 2px 2px 4px #d1d9e6, inset -2px -2px 4px #f9f9f9;
  }
  .form__input:focus {
    box-shadow: inset 4px 4px 4px #d1d9e6, inset -4px -4px 4px #f9f9f9;
  }
  .form__span {
    margin-top: 30px;
    margin-bottom: 12px;
  }
  .form__link {
    color: #181818;
    font-size: 15px;
    margin-top: 25px;
    border-bottom: 1px solid #a0a5a8;
    line-height: 2;
  }
  
  .title {
    font-size: 34px;
    font-weight: 700;
    line-height: 3;
    color: #181818;
  }
  
  .description {
    font-size: 14px;
    letter-spacing: 0.25px;
    text-align: center;
    line-height: 1.6;
  }
   
  /**/
  .a-container {
    z-index: 100;
    left: calc(100% - 600px );
  }
  
  .b-container {
    left: calc(100% - 600px );
    z-index: 0;
  }
  
  .switch {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 400px;
    padding: 50px;
    z-index: 200;
    transition: 1.25s;
    background-color: #ecf0f3;
    overflow: hidden;
    box-shadow: 4px 4px 10px #d1d9e6, -4px -4px 10px #f9f9f9;
  }
  .switch__circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: #ecf0f3;
    box-shadow: inset 8px 8px 12px #d1d9e6, inset -8px -8px 12px #f9f9f9;
    bottom: -60%;
    left: -60%;
    transition: 1.25s;
  }
  .switch__circle--t {
    top: -30%;
    left: 60%;
    width: 300px;
    height: 300px;
  }
  .switch__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    width: 400px;
    padding: 50px 55px;
    transition: 1.25s;
  }
  .switch__button {
    cursor: pointer;
  }
  .switch__button:hover {
    box-shadow: 6px 6px 10px #d1d9e6, -6px -6px 10px #f9f9f9;
    transform: scale(0.985);
    transition: 0.25s;
  }
  .switch__button:active, .switch__button:focus {
    box-shadow: 2px 2px 6px #d1d9e6, -2px -2px 6px #f9f9f9;
    transform: scale(0.97);
    transition: 0.25s;
  }
  
  /**/
  .is-txr {
    left: calc(100% - 400px );
    transition: 1.25s;
    transform-origin: left;
  }
  
  .is-txl {
    left: 0;
    transition: 1.25s;
    transform-origin: right;
  }
  
  .is-z200 {
    z-index: 200;
    transition: 1.25s;
  }
  
  .is-hidden {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: 1.25s;
  }
  
  .is-gx {
    animation: is-gx 1.25s;
  }
  
  @keyframes is-gx {
    0%, 10%, 100% {
      width: 400px;
    }
    30%, 50% {
      width: 500px;
    }
  }


 /* waves start*/

  :root {
    --gray: #e0e5ec;
    --size: 5vw;
    --scalingFactor: calc(100 / 5); /*related to size*/

    --lightmodetext: #8a92a5;
    --lightmodegrey: #ebecf0;
    --lightmodegrey2: #e6e7ec;
    --lightmodegrey3: #e3e4e9;
    --darkgrey: #8a92a5;
    --lightgrey: #ebecf0;
    --lightgrey2: #e6e7ec;
    --lightgrey3: #e3e4e9;
    --brightblue: #1758f1;
    --darkblue: #0732bf;
    --brightred: #ef1717;
    --darkred: #bf0b0b;
    --brightyellow: #ffd100;
    --darkyellow: #e0bb00;
    --brightgreen: #4ee51b;
    --darkgreen: #42c916;
    --brightpink: #ef17a4;
    --darkpink: #ce0e88;
    --brightpurple: #9517ef;
    --darkpurple: #720bbc;
    --sansfam: 'Nunito', sans-serif;
  }
  /* search bar start */


  
  .finder {
    border: 1px solid #fff;
    background-color: #f6f5f0;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 9px 9px 16px rgba(189, 189, 189, 0.6), -9px -9px 16px rgba(255, 255, 255, 0.5);
  }
  
  .finder__outer {
    
   padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: inset 10px 10px 15px -10px #c3c3c3, inset -10px -10px 15px -10px #ffffff;
  }
  
  .finder__inner {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
  }
  
  .finder__form {
    flex: 1;
    height: calc(100% + 3rem);
  }
  
  .finder__input {
    height: calc(100% + 3rem);
    border: none;
    background-color: transparent;
    outline: none;
    font-size: 1.5rem;
    letter-spacing: 0.75px;
  }
  
  .finder__icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    transition: all 0.2s;
    box-shadow: inset 0 0 0 20px #292929;
    border-radius: 50%;
    position: relative;
  }
  .finder__icon:after, .finder__icon:before {
    display: block;
    content: "";
    position: absolute;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .finder__icon:after {
    width: 10px;
    height: 10px;
    background-color: #292929;
    border: 3px solid #f6f5f0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    left: 0px;
    right: 0;
    margin: auto;
    border-radius: 50%;
  }
  .active .finder__icon:after {
    border-width: 10px;
    background-color: #f6f5f0;
  }
  
  .finder__icon:before {
    width: 4px;
    height: 13px;
    background-color: #f6f5f0;
    top: 50%;
    left: 20px;
    transform: rotateZ(45deg) translate(-50%, 0);
    transform-origin: 0 0;
    border-radius: 4px;
  }
  .active .finder__icon:before {
    background-color: #292929;
    width: 6px;
    transform: rotateZ(45deg) translate(-50%, 25px);
  }
  
  .processing .finder__icon {
    transform-origin: 50%;
    animation: spinner 0.3s linear infinite;
    animation-delay: 0.5s;
  }
  
  .active .finder__icon {
    transform: translateY(-5px);
  }
  
  @keyframes spinner {
    0% {
      transform: rotateZ(45deg);
    }
    100% {
      transform: rotateZ(405deg);
    }
  }

  /* search bar end */






    /* card start */
  .app-container {
  
    border-radius: 40px;
    box-shadow: -2px -2px 4px 0px #ffffff, 50px 50px 50px 0px rgba(0, 0, 0, 0.25);
    display: block;
    flex: 1;
    min-height: 500px;
    max-width: 350px;
    margin-bottom: 25px;
    overflow: hidden;
    padding: 30px;
  }
  
  .app-top-bar {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .app-heading {
    color: var(--font-color);
    display: block;
    flex: 1;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    text-align: center;
  }
  

  .app-card
  {
    box-shadow: -6px -6px 8px rgb(255 255 255 / 90%), 5px 5px 8px rgb(0 0 0 / 7%);
    height: 88px;
    border-radius: 18px;
    padding: 25px;
    font-size: 36px;
  }
  /* card end */


  /* loader start */


  .ring{
    background-color: #ececec;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    box-shadow: 
    -10px -10px 15px rgba(255,255,255,0.3),
    10px 10px 15px rgba(70,70,70,0.15),
    inset -10px -10px 15px rgba(255,255,255,0.3),
    inset 10px 10px 15px rgba(70,70,70,0.15);
    border: 15px solid #ececec;
    border-radius: 50%;
}
.ring4{
    height: 30px;
    width: 30px;
    animation: glow4 2.5s infinite;
}
@keyframes glow4{
    0%{
        background-color: #ececec;
    }
    20%{
        background-color: --brightgreen;
    }
    100%{
        background-color: --darkgreen;
    }
}

.ring3{
    height: 120px;
    width: 120px;
    animation: glow3 2.5s infinite;
}
@keyframes glow3{
    20%{
        background-color: #ececec;
    }
    40%{
        background-color: #ffad00;
    }
    100%{
        background-color: #ffad00;
    }
}

.ring2{
    height: 200px;
    width: 200px;
    animation: glow2 2.5s infinite;
}
@keyframes glow2{
    40%{
        background-color: #ececec;
    }
    60%{
        background-color: #ffad00;
    }
    100%{
        background-color: #ffad00;
    }
}

.ring1{
    height: 280px;
    width: 280px;
    animation: glow1 2.5s infinite;
}
@keyframes glow1{
    60%{
        background-color: #ececec;
    }
    80%{
        background-color: #ffad00;
    }
    100%{
        background-color: #ffad00;
    }
}

  /* loader end */

  /* Table Section Information */

/*
* Title : Table content
* Description : This is the css of the Table on the content.
*/

.table {
    max-width: 1200px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 3px 3px 7px #ababab, -3px -3px 7px #ffffff;
  }
  
  .table > thead > tr {
    text-align: center;
    font-weight: bold;
  }
  
  .table > tbody > tr {
    text-align: center;
  }
  
  .table > thead > tr > th {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .table > tbody > tr > td {
    padding-top: 8px;
    padding-bottom: 8px;
    border-top: thin solid rgba(0, 0, 0, 0.1);
  }
  
  /* Table component FINISH */







/* start new elements form */


.accentpicker {
    height: 194px;
    width: 24px;
    position: absolute;
    top: 40px;
    right: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .accentpicker i {
    border: 6px solid var(--lightgrey);
    box-shadow: -3px -3px 4px rgba(255,255,255,1), -1px -1px 0 rgba(255,255,255,1), 2px 2px 4px rgba(0,0,0,0.2);
  }
  .accentpicker i.selected {
    box-shadow: 3px 3px 4px rgba(255,255,255,1), 1px 1px 0 rgba(255,255,255,1), -2px -2px 4px rgba(0,0,0,0.2);
  }
  .accentpicker .blue {
    height: 24px;
    width: 24px;
    margin: 5px 0;
    background: var(--brightblue);
    border-radius: 100%;
    cursor: pointer;
  }
  .accentpicker .yellow {
    height: 24px;
    width: 24px;
    margin: 5px 0;
    background: var(--brightyellow);
    border-radius: 100%;
    cursor: pointer;
  }
  .accentpicker .red {
    height: 24px;
    width: 24px;
    margin: 5px 0;
    background: var(--brightred);
    border-radius: 100%;
    cursor: pointer;
  }
  .accentpicker .green {
    height: 24px;
    width: 24px;
    margin: 5px 0;
    background: var(--brightgreen);
    border-radius: 100%;
    cursor: pointer;
  }
  .accentpicker .purple {
    height: 24px;
    width: 24px;
    margin: 5px 0;
    background: var(--brightpurple);
    border-radius: 100%;
    cursor: pointer;
  }
  .accentpicker .pink {
    height: 24px;
    width: 24px;
    margin: 5px 0;
    background: var(--brightpink);
    border-radius: 100%;
    cursor: pointer;
  }
  
  
  .flexcontainer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .breakflex {
    width: 100%;
    height: 50px;
  }
  
  /** Radio Styles **/
  .radiogroup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .radiogroup label {
    font-family: var(--sansfam);
    font-size: 16px;
    font-weight: 600;
    flex-basis: 100%;
    margin: 0 0 10px 25px;
    color: var(--darkgrey);
  }
  .radiowrapper {
    position: relative;
    width: 36px;
    height: 36px;
    background: linear-gradient(310deg, var(--lightgrey), var(--lightgrey3));
    border-radius: 36px;
    margin: 20px;
    box-shadow: 4px 4px 6px rgba(0,0,0,0.15), -3px -3px 6px rgba(255,255,255,0.7), inset 1px 1px 0 rgba(255,255,255,1);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .radiowrapper::before {
    display: block;
    height: 13px;
    width: 13px;
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 13px;
    background: transparent;
    transition: all 0.2s ease;
  }
  .blueaccent .radiowrapper::before {
    border: 2px solid var(--darkblue);
  }
  .redaccent .radiowrapper::before {
    border: 2px solid var(--darkred);
  }
  .yellowaccent .radiowrapper::before {
    border: 2px solid var(--darkyellow);
  }
  .greenaccent .radiowrapper::before {
    border: 2px solid var(--darkgreen);
  }
  .purpleaccent .radiowrapper::before {
    border: 2px solid var(--darkpurple);
  }
  .pinkaccent .radiowrapper::before {
    border: 2px solid var(--darkpink);
  }
  .radiowrapper.checked {
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.2), 1px 1px 0 rgba(255,255,255,1);
  }
  
  .blueaccent .radiowrapper.checked::before {
    background: var(--darkblue);
  }
  .redaccent .radiowrapper.checked::before {
    background: var(--darkred);
  }
  .yellowaccent .radiowrapper.checked::before {
    background: var(--darkyellow);
  }
  .greenaccent .radiowrapper.checked::before {
    background: var(--darkgreen);
  }
  .purpleaccent .radiowrapper.checked::before {
    background: var(--darkpurple);
  }
  .pinkaccent .radiowrapper.checked::before {
    background: var(--darkpink);
  }
  .radiowrapper input {
    display: none;
  }
  
  /** Button Styles **/
  .buttongroup {
    display: flex;
    flex-direction: row;
  }
  .neubtn {
    display: block;
    height: 60px;
    background: var(--lightgrey);
    border-radius: 60px;
    padding: 0 50px;
    margin: 0 40px;
    line-height: 60px;
    text-align: center;
    color: var(--darkgrey);
    text-decoration: none;
    font-size: 21px;
    font-family: var(--sansfam);
    transition: all 0.2s ease;
  }
  .hiddenbtn:hover {
    background: linear-gradient(135deg, var(--lightgrey), var(--lightgrey2));
    box-shadow: 8px 8px 16px rgba(0,0,0,0.15), inset 1px 1px 0 rgba(255,255,255,1), -4px -4px 8px rgba(255,255,255,0.6);
  }
  .plainbtn {
    background: linear-gradient(135deg, var(--lightgrey), var(--lightgrey2));
    background-size: 400%;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.15), inset 1px 1px 0 rgba(255,255,255,1), -4px -4px 8px rgba(255,255,255,0.6);
  }
  .neubtn.pressed {
    box-shadow: -2px -2px 2px rgba(0,0,0,0.15), inset -1px -1px 0 rgba(255,255,255,1), 1px 1px 2px rgba(255,255,255,0.6);
  }
  
  /** Toggle/Checkbox Styles **/
  .togglegroup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .togglegroup label {
    font-family: var(--sansfam);
    font-size: 16px;
    font-weight: 600;
    flex-basis: 100%;
    margin: 0 0 10px 25px;
    color: var(--darkgrey);
  }
  .blueaccent .checkboxwrapper {
      background-image: linear-gradient(to right, var(--darkblue) 0%, var(--brightblue) 49%, var(--brightblue) 50%, var(--lightgrey) 51%, var(--lightgrey) 100%);
  }
  .redaccent .checkboxwrapper {
      background-image: linear-gradient(to right, var(--darkred) 0%, var(--brightred) 49%, var(--brightred) 50%, var(--lightgrey) 51%, var(--lightgrey) 100%);
  }
  .yellowaccent .checkboxwrapper {
      background-image: linear-gradient(to right, var(--darkyellow) 0%, var(--brightyellow) 49%, var(--brightyellow) 50%, var(--lightgrey) 51%, var(--lightgrey) 100%);
  }
  .greenaccent .checkboxwrapper {
      background-image: linear-gradient(to right, var(--darkgreen) 0%, var(--brightgreen) 49%, var(--brightgreen) 50%, var(--lightgrey) 51%, var(--lightgrey) 100%);
  }
  .purpleaccent .checkboxwrapper {
      background-image: linear-gradient(to right, var(--darkpurple) 0%, var(--brightpurple) 49%, var(--brightpurple) 50%, var(--lightgrey) 51%, var(--lightgrey) 100%);
  }
  .pinkaccent .checkboxwrapper {
      background-image: linear-gradient(to right, var(--darkpink) 0%, var(--brightpink) 49%, var(--brightpink) 50%, var(--lightgrey) 51%, var(--lightgrey) 100%);
  }
  .checkboxwrapper {
    width: 64px;
    height: 32px;
    margin: 20px;
    border-radius: 32px;
    box-shadow: 10px 4px 12px rgba(0,0,0,0.15), -7px -7px 14px rgba(255,255,255,1), inset 1px 1px 0 rgba(255,255,255,1);
    position: relative;
    cursor: pointer;
    background-size: 400%;
  }
  .checkboxwrapper:not(.selected) {
    background-position: 58% 0%;
    transition: all 0.15s ease;
  }
  .checkboxwrapper.selected {
    background-position: 0 0;
    transition: all 1s ease;
  }
  .checkboxwrapper input {
    display: none;
  }
  .checkboxwrapper::after {
    display: block;
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background: #f0f0f0;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2), -2px -2px 4px rgba(255,255,255,1), inset 1px 1px 0 rgba(255,255,255,1);
  }
  .checkboxwrapper::after {
    transition: all 0.3s ease;
  }
  .checkboxwrapper.selected {
    box-shadow: 10px 4px 12px rgba(0,0,0,0.15), -5px -5px 10px rgba(255,255,255,1), -1px -1px 0 rgba(255,255,255,1), inset 3px 3px 3px rgba(0,0,0,0.15), 1px 1px 0 rgba(255,255,255,1);
  }
  .checkboxwrapper.selected::after {
    transform: translateX(32px);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.2), -2px -2px 4px rgba(255,255,255,0.3), inset 1px 1px 0 rgba(255,255,255,1);
  }
  
  
  /** Text Input Styles **/
  .inputgroup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 50%;
    padding: 50px;
    justify-content: space-evenly;
  }
  .inputgroup input[type="text"] {
    width: 300px;
    height: 48px;
    border-radius: 48px;
    background: linear-gradient(270deg, var(--lightgrey), var(--lightgrey2));
    border: 0 none;
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.2), inset -3px -3px 6px rgba(255,255,255,0.9);
    outline: none;
    padding-left: 20px;
    color: var(--darkgrey);
    font-size: 18px;
  }
  input[type="text"]::placeholder {
    color: var(--darkgrey);
  }
  .inputgroup input[type="text"]::selection {
    background: var(--brightblue);
    color: var(--lightblue);
  }
  .searchwrapper {
    width: 300px;
    height: 48px;
    position: relative;
  }
  .searchwrapper input {
    padding-left: 48px !important;
  }
  .searchwrapper input::focus {
    linear-gradient(135deg, var(--lightgrey), var(--lightgrey2));
  }
  .searchwrapper input::placeholder {
    letter-spacing: normal;
    transform-origin: center left;
    transition: all 0.5s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  .searchwrapper input:focus::placeholder {
    letter-spacing: 60px;
    transform: translateX(300px) scale(2);
  }
  .searchwrapper i {
    display: block;
    height: 24px;
    width: 24px;
    position: absolute;
    top: 16px;
    left: 16px;
    color: var(--darkgrey);
  }
  
  .bargroup {
    width: 250px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .barwrapper {
    width: 32px;
    height: 200px;
    border-radius: 32px;
    background: var(--lightgrey);
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.2), inset -3px -3px 6px rgba(255,255,255,0.9);
    position: relative;
  }
  .barwrapper::before {
    content: '';
    display: block;
    width: 32px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 32px;
    background: linear-gradient(to top, var(--darkblue) 25%, var(--brightblue));
  }
  .blueaccent .barwrapper::before {
    background: linear-gradient(to top, var(--darkblue) 25%, var(--brightblue));
  }
  .redaccent .barwrapper::before {
    background: linear-gradient(to top, var(--darkred) 25%, var(--brightred));
  }
  .yellowaccent .barwrapper::before {
    background: linear-gradient(to top, var(--darkyellow) 25%, var(--brightyellow));
  }
  .greenaccent .barwrapper::before {
    background: linear-gradient(to top, var(--darkgreen) 25%, var(--brightgreen));
  }
  .pinkaccent .barwrapper::before {
    background: linear-gradient(to top, var(--darkpink) 25%, var(--brightpink));
  }
  .purpleaccent .barwrapper::before {
    background: linear-gradient(to top, var(--darkpurple) 25%, var(--brightpurple));
  }
  .barwrapper:nth-of-type(1)::before {
    height: 80px;
  }
  .barwrapper:nth-of-type(2)::before {
    height: 160px;
  }
  .barwrapper:nth-of-type(3)::before {
    height: 100px;
  }
  .barwrapper:nth-of-type(4)::before {
    height: 40px;
  }
  .barwrapper:nth-of-type(5)::before {
    height: 190px;
  }
  
  
  /** Slider Styles **/
  .sliderwrapper {
    position: relative;
    margin-left: 50px;
  }
  .rangeslider {
    width: 500px;
    height: 16px;
    border-radius: 16px;
    position: relative;
    background: linear-gradient(to bottom right, var(--lightgrey), var(--lightgrey3));
    box-shadow: -3px -3px 5px rgba(255,255,255,0.7), 4px 4px 6px rgba(0,0,0,0.15), -1px -1px 0 rgba(255,255,255,1);
  }
  .rangeslider__fill {
    height: 100%;
    top: 0;
    border-radius: 16px;
    box-shadow: inset -1px -1px 1px rgba(0,0,0,0.1);
    position: absolute;
  }
  .blueaccent .rangeslider__fill {
    background: linear-gradient(to right, var(--darkblue), var(--brightblue));
  }
  .redaccent .rangeslider__fill {
    background: linear-gradient(to right, var(--darkred), var(--brightred));
  }
  .yellowaccent .rangeslider__fill {
    background: linear-gradient(to right, var(--darkyellow), var(--brightyellow));
  }
  .greenaccent .rangeslider__fill {
    background: linear-gradient(to right, var(--darkgreen), var(--brightgreen));
  }
  .purpleaccent .rangeslider__fill {
    background: linear-gradient(to right, var(--darkpurple), var(--brightpurple));
  }
  .pinkaccent .rangeslider__fill {
    background: linear-gradient(to right, var(--darkpink), var(--brightpink));
  }
  .rangeslider__handle {
    background: linear-gradient(to bottom, var(--lightgrey), var(--lightgrey3));
    cursor: ew-resize;
    display: inline-block;
    width: 10px;
    height: 36px;
    position: absolute;
    top: -10px;
    border-radius: 8px;
    box-shadow: -2px -2px 2px rgba(255,255,255,0.5), 2px 2px 2px rgba(0,0,0,0.15), -1px -1px 0 rgba(255,255,255,1);
    touch-action: pan-y;
    -ms-touch-action: pan-y;
  }
  input[type="range"]:focus + .rangeslider .rangeslider__handle {
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  }
  .rangeoutput {
    position: absolute;
    top: -70px;
    left: calc(50% - 27px);
    min-height: 32px;
    min-width: 32px;
    border-radius: 16px;
    padding: 15px;
    font-family: var(--sansfam);
    font-size: 18px;
    color: transparent;
    text-shadow: -1px -1px 1px rgba(255,255,255,1), 1px 1px 1px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
  }
  .rangeoutput.visible {
    box-shadow: 4px 4px 6px rgba(0,0,0,0.15), -3px -3px 5px rgba(255,255,255,0.7), -1px -1px 0 rgba(255,255,255,1);
    color: #fff;
    background: #f0f0f0;
    text-shadow: -1px -1px 1px rgba(255,255,255,1), 1px 1px 1px rgba(0,0,0,0.15);
  }

  /* new elements form end */


/* new table start */
table.neumorphic{
    width: 600px;
    border-spacing: 0;
    color: #212121;
    text-align: center;
    overflow: hidden;
    box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.6),
    -9px -9px 16px rgba(255, 255, 255, 0.6);
    border-radius: 12px;
  }
  table.neumorphic thead{
    box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.6);
  }
  table.neumorphic th{
    padding: 7px;
  }
  
  table.neumorphic>tbody>tr>td {
    padding: 10px;
    font-size: 14px;
    position: relative;
  }
  
  
  table.neumorphic>tbody>tr:hover {
    padding: 20px;
    box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.6),
    -9px -9px 16px rgba(255, 255, 255, 0.6);
  }
  
  table.neumorphic tr td:first-child::before {
    content: "";
    position: absolute;
    padding: 7px;
    top: 0;
    left: -5000px;
    width: 10000px;
    height: 100%;
    z-index: -10;
  }
  
  table.neumorphic td:hover::after {
    content: "";
    position: absolute;
    box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.6),
    -9px -9px 16px rgba(255, 255, 255, 0.6);
    left: 0;
    top: -5000px;
    height: 10000px;
    width: 100%;
    z-index: -1;
  }

/* new table end */

.dropdown-toggle {
    position: relative;
    display: inline-block;
}

.dropdown-toggle--button {
    font-size: 15px;
    min-width: 150px;
    min-height: 50px;
    cursor: pointer;
    text-align: left;
    padding: 8px 8px 8px 20px;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 3px 3px 7px #ababab, -3px -3px 7px #fff;
}


.dropdown-toggle--content {
    display: none;
    position: absolute;
    min-width: 150px;
    padding: 5px;
    background-color: #fff;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 3px 3px 7px #ababab, -3px -3px 7px #fff;
}

.dropdown-toggle--content a {
    color: #000;
    padding: 8px;
    text-decoration: none;
    display: block;
}