@import 'variants.css';
/* INDEX
  1.0 BUTTONS
  2.0 LINKS
  2.1 SHOWCASE FILTERS 
*/

/*------- 1.0  BUTTONS -------*/
body{
    -webkit-font-smoothing: antialiased;
    font-smooth:antialiased;
}

.btn-primary{
    background-color:var(--acent);
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: .2rem;
    transition: .3s ease;
}
.btn-primary:hover{
    background-color: #114ba3;
}
.btn_grimer{
    background-color:#8340f3;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: .2rem;
    transition: .3s ease;
}
.btn_grimer:hover{
    background-color: #AA8FFF;
}
.btn-green{
    border:2px solid #0078F2;
    box-shadow: #0078F2;
    font-weight: 600;
    border-radius: .2rem;
    color: #fff;
    text-decoration: none;
}
.btn-secondary{
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: .2rem;
    font-weight: 500;
}
.btn-outline{
    background-color: transparent;
    color: var(--secondary-color-90);
    border: 1px solid var(--secondary-color-60);
    text-decoration: none;
    border-radius: .2rem;
    font-weight: 500;
    transition: .3s ease;
}
.btn-complementary{
    background-color: var(--light-gray);
    color: #fff;
    text-decoration: none;
    border-radius: .2rem;
    font-weight: 500;
    border:transparent
}
.link-acent{
    color: var(--acent-light);
    text-decoration: none;
}
.acent_btn{
    background-color: var(--acent);
    color: white;
    text-decoration: none;
}
.link_simple{
    color: var(--secondary-color);
    text-decoration: none;
    opacity: .6;
    transition: .3s ease-in;
}
.link_simple:hover{
    opacity: 1;
}
.link{
    color: var(--secondary-color);
    text-decoration: none;
}
.divider {
    border: 0;
    height: 1px;
    background-color: var(--light-gray-61);
}
/*----------- FORMS AND INPUTS ------------*/
.sg-input {
    background: rgba(216,216,216,.11);
    padding: 1rem 2rem;
    border-radius: 5px;
    outline: transparent;
    border: 1px solid transparent;
    color: #fff; }

      .sg-input:focus{
        outline: 1px solid rgba(51,53,174,0.29);
        border: 1px solid  #0078F2;
        border-radius: 5px;
      }
/*----------- HORIZONTAL NAVIGATION ------------*/
    .horizontal_overflow_wrapper::-webkit-scrollbar{
    height: 10px;
    }
    .horizontal_overflow_wrapper{
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color-40) var(--light-gray);
    }
    .horizontal_overflow_wrapper::-webkit-scrollbar-track {
    background: var(--light-gray);
    }
    .horizontal_overflow_wrapper::-webkit-scrollbar-thumb{
    background-color: var(--secondary-color-40);
    border-radius: 6px;
    }
    .horizontal_overflow_wrapper{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    }
.sup-tag{
    font-size: 11px;
    color: var(--secondary-color);
    background-color: var(--success);
    font-weight: 600;
}
/*----------- EXTRA DETAILS ------------*/
.bracket-title::after{
    margin-top: 0.2rem;
    content: "";
    display: block;
    width: 20px;
    height: 3px;
    background: #0078F2;
    position: relative;
    text-align: left;
    clear: both;
}
.customizePc_card{
    background-color: #090E41;
    background-image: url('/assets/images/shining.svg');
    background-repeat: no-repeat;
    background-position: top right;
    display: block;
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    transition: .3s ease-in;
}
.customizePc_card:hover{
    border: 1px solid var(--acent);
}