:root{

    --bg-gradien:linear-gradient(270deg, #000000 0, #F58220 100%);
    --second-color:#ff9c00;
}
.header-button a {
    background: var(--bg-gradien);
    height: 30px;
    font-weight: 500;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    position: relative;
    border: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.header-button a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--bg-gradien);
    opacity: .3;
    left: 0;
    top: 0;
    border-radius: 6px;
    -webkit-animation: scaleIn 1s ease infinite alternate;
    animation: scaleIn 1s ease infinite alternate;
    z-index: -1;
}
@-webkit-keyframes scaleIn {
    to {
        -webkit-transform: scale(1.1,1.3);
        transform: scale(1.1,1.3)
    }
}

@keyframes scaleIn {
    to {
        -webkit-transform: scale(1.1,1.3);
        transform: scale(1.1,1.3)
    }
}
/* Header mn */
.mobile_nav-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.mobile_nav-icon .icon {
    width: 25px;
    position: relative;
    text-align: right;
    display: flex;
    justify-content: end;
    flex-flow: column;
    align-items: end;
    gap: 5px;
}

.mobile_nav-icon .icon span {
    position: relative;
    transition: all 0.3s ease-in-out;
    transition-delay: 40ms;
    width: 16px;
    height: 2px;
    background: #fff;
    display: inline-block;
}

.mobile_nav-icon .icon:before,
.mobile_nav-icon .icon:after {
    content: "";
    height: 2px;
    transition: all 0.3s ease-in-out;
    transition-delay: 40ms;
    background: #fff;
    display: inline-block;
}

.mobile_nav-icon .icon:before {
    width: 20px;
}

.mobile_nav-icon .icon:after {
    width: 23px;
}

.mobile_nav-icon.rotate-mb .icon *,
.mobile_nav-icon.rotate-mb .icon:after,
.mobile_nav-icon.rotate-mb .icon:before {
    background-color: var(--second-color);
    width: 25px;
}
div#menu_bar form .search-field {
    border-radius: 4px;
    border: 1px solid var(--primary-color);
}
div#menu_bar form {
    margin-bottom: 15px;
}

div#menu_bar form.searchform button.ux-search-submit {
    width: 20px;
    height: 20px;
    min-height: 20px;
    min-width: 20px;
    font-size: 14px !important;
    padding: 0 !important;
    background: none;
    border: none;
    color: #000;
    line-height: 1;
    top: 0px;
}

div#menu_bar form.searchform .flex-col:last-child {
    width: 20px;
    height: 20px;
    left: auto;
    right: 5px;
    position: absolute;
}
div#menu_bar {
    position: absolute;
    top: 0;
    background: var(--bg-gradien);
    z-index: 99999;
    -webkit-box-shadow: 0 1px 8px #555555;
    -moz-box-shadow: 0 1px 8px #555555;
    -o-box-shadow: 0 1px 8px #555555;
    box-shadow: 0 1px 8px #555555;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    transform: translateX(-350px);
    transition: .5s;
    padding: 0 15px;
}

div#menu_bar.scroll-menu {
    transform: translateX(0);
    transition: .5s;
}

div#menu_bar .bar_close {
    text-align: center;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

div#menu_bar .bar_close i.fa.fa-times {
    font-size: 16px;
    margin-right: 5px;
}

div#menu_bar ul#header_menu>li {
    border: none;
    position: relative;
    margin: 0
}

div#menu_bar ul#header_menu>li:not(:last-child) {
    border-bottom: 1px solid #ffffff;
}

div#menu_bar ul#header_menu>li>a {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 10px;
    text-transform: uppercase;
}

div#menu_bar ul#header_menu>li button.toggle {
    position: absolute;
    right: 0;
    margin: 0;
    opacity: 1;
    color: #fff;
    top: 3px
}

div#menu_bar ul.sub-menu {
    border: none;
    padding: 0;
    margin: 0
}

div#menu_bar ul.sub-menu li a {
    color: #fff;
    font-size: 14px;
    height: 34px;
    display: flex;
    align-items: center;
    position: relative
}

div#menu_bar ul.sub-menu li a::before {
    content: "\f0da";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
    font-size: 14px;
    color: #fff;
}

div#menu_bar ul.sub-menu li {
    list-style: none;
    margin: 0;
    position: relative;
}

div#menu_bar ul#header_menu button.toggle:after {
    content: "\f067";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
    font-size: 12px;
    color: #fff;
    top: 50%;
    position: absolute;
    left: 50%;
    margin: 0;
    width: 13px;
    height: 13px;
    transform: translate(-50%, -50%)
}

div#menu_bar i.icon-angle-down {
    display: none
}

div#menu_bar ul#header_menu button.toggle {
    width: 30px;
    min-height: 30px;
    height: 30px;
    -webkit-transition: transform .3s ease-out;
    -moz-transition: transform .3s ease-out;
    transition: transform .3s ease-out;
    right: 5px
}

div#menu_bar ul#header_menu .active>.toggle {
    transform: rotate(-180deg);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg)
}

div#menu_bar ul#header_menu ul.sub-menu {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    max-height: 0;
    -webkit-transition: max-height .3s, -webkit-transform .3s;
    transition: max-height .3s, -webkit-transform .3s;
    -o-transition: max-height .3s, transform .3s;
    transition: max-height .3s, transform .3s;
    transition: max-height .3s, transform .3s, -webkit-transform .3s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    overflow-y: hidden;
    display: block!important;
    padding-left: 15px!important
}

div#menu_bar ul#header_menu li.active>ul.sub-menu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    max-height: 100vh
}

html.js.active body {
    overflow: hidden;
}
div#masthead {
    border-bottom: 5px solid #F58220;
}
.ss_footer .icon-box {
    padding: 6px 0;
    align-items: center;
}

.ss_footer .icon-box img {
    padding: 0;
}
.ss_footer .icon-box p {
    margin: 0;
    font-size: 14px;
}
.border_10{
    border-radius: 10px;
    overflow: hidden;
}
.copyright-footer {
    font-size: 14px;
    color: #fff;
}
.footer_title p {
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
}

.title_loaction p {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
}

.footer_title:after {
    position: absolute;
    width: 60px;
    height: 3px;
    background: #fff;
    content: "";
    bottom: -10px;
}

.footer_title {
    position: relative;
}
.zalo-chat-widget {
    bottom: 80px !important;
    right: 25px !important;
}
/* Home */
a.button.btn_thamdu {
    display: inline-flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    border: none;
    padding: 0 30px;
    position: relative;
}
.btn_thamdu:before {
    content: "\f044";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    margin-right: 13px;
    font-size: 25px;
}
.text_effect > *{
    font-weight: 100;
    letter-spacing: 2px;
    text-align: center;
    color: #f35626;
    background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 10s infinite linear;
    font-weight: bold;
}
@-webkit-keyframes hue {
    from {
      -webkit-filter: hue-rotate(0deg);
    }
    to {
      -webkit-filter: hue-rotate(-360deg);
    }
  }
  .slider_boder img {
    border-radius: 10px;
    overflow: hidden;
}
.list_none ul{
    margin: 0;
}
.list_none li {
    list-style: none;
    margin-left: 0 !important;
    padding-left: 20px;
    position: relative;
}

.list_none li:before {
    content: "";
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill="%23ce2222" d="M3.33 8L10 12l10-6l-10-6L0 6h10v2zM0 8v8l2-2.22V9.2zm10 12l-5-3l-2-1.2v-6l7 4.2l7-4.2v6z"/></svg>');
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-size: 100%;
    top: 4px;
}
button.flickity-button.flickity-prev-next-button.next {
    display: block;
    background: rgb(255 255 255 / 0%) url(/wp-content/uploads/2025/05/btn-right.webp) center center no-repeat !important;
          opacity: 1;
      color: transparent;
  }
  button.flickity-button.flickity-prev-next-button.previous {
    display: block;
    background: rgb(255 255 255 / 0%) url(/wp-content/uploads/2025/05/btn-left.webp) center center no-repeat !important;
          opacity: 1;
      color: transparent;
  }
  .flickity-prev-next-button svg,.flickity-prev-next-button .arrow {
    fill: none !important;
}
.item_duongua .box .box-image {
    background: #fff;
    transition: all .5s ease-in-out;
    padding: 25px;
}

.item_duongua .box {
    position: relative;
    background: #fff;
    box-shadow: 0 25px 35px -25px #97a3b8;
    border-radius: 10px;
    transition: all .3s ease-in;
    overflow: hidden;
	height:100%;
}

.item_duongua .box .box-text {
    padding: 25px;
}

.item_duongua .box .box-text p {
    padding-bottom: 20px;
    font-weight: bold;
    min-height: 120px;
}

.item_duongua .box .box-image img {
    border-radius: 0 30px;
    overflow: hidden;
    box-shadow: 0px 5px 20px 0px rgba(0,0,0,.25);
    box-sizing: border-box;
}

.item_duongua .box:hover {
    box-shadow: 0 0 2px -1px rgba(233,30,99,.8);
    transform: translateY(-1px);
}

.item_duongua .box:hover .box-image {
    background: #0e76bc;
}
.item_duongua .box div {
    overflow: initial;
}
.set_bottom .title h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    background-image: linear-gradient(120deg,#f58019 0%,#0e76bc 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.25em;
    background-position: 0 90%;
    transition: background-size .25s ease-in;
    display: inline-block;
    width: auto;
}
@keyframes elementor-animation-push {
    50% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1)
    }
}
.icon_footer .icon-box-img {
    height: 80px;
    background: #0e76bc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.icon_footer .icon-box-img svg {
    padding: 0;
    width: 50px;
    height: 40px;
}


.icon_footer p {
    color: #f58220;
    font-size: 14px;
    margin: 0;
    text-transform: capitalize;
}
.icon_footer p:first-child {
    font-size: 16px;
    color: #0e76bc;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.4;
}

.icon_footer .icon-box-text {
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.ss_review .col_item .mes {
    font-size: 15px;
    margin-bottom: 15px;
}

.ss_review .col_item .icon-box 
 img {
    border-radius: 50%;
    padding: 0;
    border: 1px solid #fff;
}

.ss_review .col_item .icon-box p:first-child {
    font-size: 18px;
    margin-bottom: 5px;
}
.ss_review .col_item .icon-box:after {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(/wp-content/uploads/2025/05/quote.webp);
    background-size: 40px;
    top: -40px;
    position: absolute;
    right: 0;
}

.ss_review .col_item .icon-box {
    position: relative;
}
.frame_boder iframe{
    border-radius: 10px;
    overflow: hidden;
}
.form_uudai .form_group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
}

.form_uudai {
    background-image: url(/wp-content/uploads/2025/05/bg_form.webp);
    padding: 20px;
    border-radius: 5px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.form_uudai label {
    color: #fff;
    font-size: 14px;
}

.form_uudai label span.required {
    color: #ff3232;
}

.form_uudai  .wpcf7-form-control {
    border-radius: 4px;
    border: none;
    background: #fff;
    font-size: 14px;
}

.form_uudai .wpcf7-form-control.wpcf7-submit.form_4 {
    width: 100%;
    margin: 0;
    background: #ff9c00;
    font-weight: 500;
    animation: 10s linear 0s infinite normal none running hue;
}
.wpcf7 .wpcf7-not-valid-tip {
    font-size: 12px;
}
.animation-image {
    animation: zoom-in-zoom-out 1s ease infinite
}
@keyframes zoom-in-zoom-out {
    0% {transform: scale(1,1)}
    50% {transform: scale(1.1,1.1)}
    100% {transform: scale(1,1)}
}
span.wpcf7-spinner {
    display: none;
}
.brand-slider{
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.row.set_gallery {
    display: flex;
    width: calc(250px * 27);
    flex-flow: initial;
	    -webkit-animation: scroll 20s linear infinite;
    animation: scroll 20s linear infinite;
}

.set_gallery .gallery-col.col {
    height: 58px;
    min-width: 120px;
    border-radius: 12px;
    border: 1px solid #0e76bc;
    margin: 0 6px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}
.set_gallery .gallery-col.col .col-inner {
    height: 100% !important;
    display: flex;
    align-items: center;
}
@-webkit-keyframes scroll {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(calc(-250px * 1));
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(calc(-250px * 1));
    }

    100% {
        transform: translateX(0);
    }
}
.row.set_gallery:nth-child(2) {
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
}

.row.set_gallery:last-child {
    -webkit-animation: scroll 25s linear infinite;
    animation: scroll 25s linear infinite;
}
.brand-slider:after,.brand-slider:before {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.brand-slider:after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.brand-slider:before {
    left: 0;
    top: 0;
}
.col_duhocsinh .img {
    border-radius: 5px;
    overflow: hidden;
}

.col_duhocsinh p:first-child {
    text-shadow: 2px 0 #0e76bc, -2px 0 #0e76bc, 0 2px #0e76bc, 0 -2px #0e76bc, 1px 1px #0e76bc, -1px -1px #0e76bc, 1px -1px #0e76bc, -1px 1px #0e76bc;
    font-size: 20px;
    color: #fff;
    margin: 0;
}

.col_duhocsinh p:nth-child(2){
    font-style: italic;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 14px;
}
.col_duhocsinh:last-child .img {
    border-radius: 5px !important;
}
.col_duhocsinh .img.logo {
    border-radius: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px !important;
    margin: 0;
}
.col_duhocsinh .img.logo3 {
    left: 10px;
}

.col_duhocsinh .img.logo2 {
    bottom: 10px;
    top: auto;
    left: 10px;
    z-index: 1;
}
.border_5{
    border-radius: 5px;
    overflow: hidden;
}
.content_last p {
    text-shadow: 2px 0 #0e76bc, -2px 0 #0e76bc, 0 2px #0e76bc, 0 -2px #0e76bc, 1px 1px #0e76bc, -1px -1px #0e76bc, 1px -1px #0e76bc, -1px 1px #0e76bc;
    font-size: 20px;
    color: #fff;
    margin: 0;
}
.accordion .accordion-item {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0px 4px 28px -4px rgba(0, 0, 0, 0.12);
}

.accordion .accordion-item:not(:last-child) {
    margin-bottom: 14px;
}

.accordion .accordion-item .accordion-title {
        border: none;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: #000;
    padding-left: 48px;
    background: #FAFAFA;
    text-align: left;
}
.accordion .accordion-item .accordion-title button.toggle {
    right: auto;
    left: 10px;
    top: 12px;
    border: none;
    height: 24px;
    width: 24px;
    margin: 0;
    min-height: 24px;
    background-image: url(https://www.set-edu.com/su-kien-uu-dai/wp-content/uploads/2024/02/plus.svg);
    opacity: 1;
    border: 1px solid;
    background-size: 20px;
    background-position: center;
	    transform-origin: initial;
}
.accordion .accordion-item .accordion-title button.toggle i {
    display: none;
}
.accordion .accordion-item .accordion-title.active button.toggle {
    background-image: url(https://www.set-edu.com/su-kien-uu-dai/wp-content/uploads/2024/02/minus.svg);
}
.accordion .accordion-item .accordion-title.active {
    background: #fff;
	color: var(--primary-color);
}

.accordion .accordion-item .accordion-inner {
    padding: 0 24px 24px;
    background: #fff;
}

.accordion .accordion-item .accordion-inner p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 0;
}
.img_gift {
    border-radius: 10px;
    overflow: hidden;
}

.img_gift:hover {
    animation-name: elementor-animation-push;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}
@keyframes elementor-animation-push {
    50% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1)
    }
}
.home_table table tr, .home_table table tr td,.home_table table {
    border: 1px dashed #5271ff;
    border-collapse: collapse;
    color: #000;
}

.home_table table tr td.column-1,.home_table table tr th {
    padding-left: 5px;
}

.home_table {
    height: 585px;
    overflow-y: scroll;
    background: #9ff9fd4d;
}

.home_table table thead {
    background: var(--primary-color);
}

.home_table table thead * {
    color: #fff;
}
/* popup */
.popup-custom-full {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
    top: 0;
    left: 0;
}
.wpcf7-response-output {
    display: none;
}
.bg_overlay_popup {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #00000040;
    width: 100%;
    height: 100vh;
    z-index: 999999999;
    cursor: pointer;
}

.popup-content {
    position: absolute;
    z-index: 9999999999;
    background-color: #fff;
    border-radius: 0.4rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    max-width: 650px;
    height: auto;
    padding: 0;
}

.popup-content .tb-box {
    padding: 20px;
}

.popup-content .tb-box .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.popup-content .tb-box .content .title-form {
    margin-bottom: 10px;
    font-size: 23px;
    text-align: center;
    color: var(--primary-color);
}

.popup-content .tb-box .content p {
    text-align: center;
}

.popup-content .tb-box .submit {
    text-align: center;
}
.popup-content .tb-box .submit button.close_popup-custom {
    margin: 0;
    background-color: var(--primary-color);
    margin-top: 10px;
    text-transform: inherit;
    border-radius: 4px;
    color: #fff;
    animation: 10s linear 0s infinite normal none running hue;
}
.div_button .load {
  display: flex;
  column-gap: 5px;
	align-items: center;
}

.div_button .load .dot {
  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 50%;
  animation: loading 1s infinite alternate;
}

.div_button .load .dot:nth-child(1) {
  background-color: #4285f4;
  animation-delay: -0.25s;
}

.div_button .load .dot:nth-child(2) {
  background-color: #ea4335;
  animation-delay: -0.5s;
}

.div_button .load .dot:nth-child(3) {
  background-color: #fbbc05;
  animation-delay: -0.75s;
}

.div_button .load .dot:nth-child(4) {
  background-color: #34a853;
  animation-delay: -1s;
}

@keyframes loading {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(5px);
  }
}
.div_button {
    display: flex;
    justify-content: start;
    gap: 20px;
}
.load.d-none {
    opacity: 0;
    visibility: hidden;
}
@keyframes animatedgradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  .popup-content .tb-box {
    position: relative;
    background: #fff;
    border-radius: 4px;
}

.popup-content .tb-box:after {
    content: "";
    position: absolute;
    top: calc(-1 * 3px);
    left: calc(-1 * 3px);
    height: calc(100% + 3px * 2);
    width: calc(100% + 3px * 2);
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    border-radius: calc(2 * 3px);
    z-index: -1;
    -webkit-animation: animatedgradient 3s ease alternate infinite;
    animation: animatedgradient 3s ease alternate infinite;
    background-size: 300% 300%;
}
/* Pc      --------------------------------------------- */
@media(min-width: 766px){

}
@media (width: 1024px){

}
@media (max-width: 1024px){

}
@media (min-width: 990px) and (max-width: 1100px){

}
/*************** ------------------------PC và Tablet  --------------------------  ***************/
@media (min-width: 740px){

}
/*************** ------------------------Tablet  --------------------------  ***************/
@media (min-width: 740px) and (max-width: 1023px){

}
@media (max-width:990px){

}
/*************** ------------------------Mobile và Tablet --------------------------  ***************/
@media (max-width: 1023px){

}

 /*************** ------------------------ Mobile   --------------------------  ***************/
@media screen and (max-width: 549px){
    #logo img {
        max-height: 60px;
    }
    .header-button a {
        width: max-content;
        font-size: 12px;
        height: 36px;
    }
    a.button.btn_thamdu {
        font-size: 14px;
        height: 44px;
        padding: 0 20px;
    }  
    .btn_thamdu:before {
        font-size: 20px;
    }
    .set_bottom .title h2 {
        font-size: 26px;
    }
    .form_uudai .form_group {
        grid-template-columns: repeat(1, 1fr);
    }
    
}


* {
    scrollbar-width: thin;
    scrollbar-color: #ffcc32 rgba(217, 217, 217, 0.1);
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(163,169,181,1) 27%, rgba(188,194,208,1) 74%, rgba(0,0,0,1) 100%);
}

*::-webkit-scrollbar-thumb {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(163,169,181,1) 27%, rgba(188,194,208,1) 74%, rgba(0,0,0,1) 100%);
    border-radius: 20px;
    border: 5px solid rgba(217, 217, 217, 0.1);
}

