
#shop {
    border-radius:20px;
}
#shop .shop-sidebar {
    display:flex;
    flex-direction: column;
    min-width:300px;
}
#shop .shop-content {
    flex:1;
    padding-right:0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
#shop .shop-nav-cat {
    background: var(--gradient-1-vertical) !important;
    color: var(--text-color-4);
    border:0;
    text-align: left;
}
#shop .shop-nav-cat[aria-expanded="false"] .arr {
    transition: all ease 0.3s;
}
#shop .shop-nav-cat[aria-expanded="true"] .arr {
    transform: rotate(90deg);
    transition: all ease 0.3s;
}
#shop .shop-nav-item {
    color: var(--text-color-1);
    position:relative;
    display:block;
    text-align: left;
    
    padding:15px 20px;
    font-weight:bold;
    opacity:0.8;
    transition: opacity ease 0.3s;
}
#shop .shop-nav-item::after {
    position:absolute;
    content:'';
    top:20px;
    bottom:20px;
    left:0;
    width:4px;
    background: var(--gradient-1) !important;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all ease 0.3s;

}
#shop .shop-nav-item:hover,#shop .shop-nav-item.active {
    padding-left:25px;
    text-decoration: none;
    opacity:1;
    transition: opacity ease 0.3s;
}
#shop .shop-nav-item:hover::after,#shop .shop-nav-item.active::after {
    top:15px;
    bottom:15px;
    transition: all ease 0.3s;
}
#shop .shop-nav-body {
    background:0;
}
#shop .shop-sidebar-body {
    background:var(--gradient-2);
    padding:20px;
    border-radius:20px;
}
#shop .shop-sidebar-header {
    padding:20px;
    padding-bottom:0;
}
#shop .shop-navigation {
    min-height: calc(100vh - 250px);
    display:flex;
    justify-content: space-between;
    flex-direction: column;
}
#shop .shop-navigation .card {
    background:var(--color-4);
    background-size: 100%;
}
#shop .product {
    display:flex;
    flex-direction: column;
    margin-top:70px;
    height:calc(100% - 70px);
    background: var(--gradient-2-reverted);
    background-size: 500%;
    box-shadow: 0px 0px 21px -1px rgba(0, 0, 0, 0.034);
    border: 0;
    color: var(--text-color-1);
    border-radius: 15px !important;
}
#shop .shop-banner {
    border-radius: 20px;
    padding: 30px;
    background: var(--color-4);
    transform:translateY(-20px);
}
del::after {
    transform: rotate(345deg) translate(-3px,8px);
}

.progress {
    position:relative;
    height:2.5em;
    background:var(--gradient-1-vertical);
    border-radius: 15px;
    overflow:hidden;
}
.progress-bar {
    background-color:var(--color-2);
}
.progress-text {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    display:flex;
    align-items: center;
    justify-content:center;
    color:var(--text-color-4);
    font-weight: bold;
}
#itemModal {
    background:rgba(255, 255, 255, 0.029);
    backdrop-filter:blur(100px);
}
#itemModal .modal-content {
    border-radius:0 !important;
    border:0;
    background:var(--color-4);
}
#itemModal .modal-body {
    overflow-x:hidden;
}
#shop  .quantity-input {
    width:50px;
    padding-left:10px;
    padding-right:10px;
    color:var(--color-4) !important;
    text-align: center;
}
#shop .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
#shop .quantity-form {
    border-radius:15px;
    overflow:hidden;
}
#shop .quantity-input {
    text-align:center !important;
    color:var(--color-4) !important;
    background-color: var(--text-color-1) !important;
    border-radius:0;
}
#shop .quantity-form.no-bg .quantity-input {
    background:transparent !important;
    color:var(--text-color-1) !important;
}
#shop .minus-btn,#shop .plus-btn {
    border-radius:0;
}

#shop .quantity-form.no-bg .minus-btn,#shop .quantity-form.no-bg .plus-btn {
    background:transparent !important;
    color:var(--text-color-1) !important;
    box-shadow: none !important;
}
.package-description {
    max-height:90vh;
    overflow-y:auto;
}
.package-infos {
    background:var(--gradient-1);
    height:90vh;
}