* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
.container {
    max-width: 1140px;
    padding: 0px 15px;
    margin: 0 auto;
    overflow-x: clip;
}

a {
    color: black;
}

.flex {
    display: flex;
}

h1 {
    font-size: 23px;
    font-weight: 800;
}

.stock {
    font-family: "Inter", sans-serif;
    padding-top: 5px;
}

.wrapper_tabcontent {
    margin-bottom: 3rem;
}

.tabs p {
    cursor: pointer;
    padding: 10px;
    font-size: 13px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    line-height: unset;
}

.tabs a {
    cursor: pointer;
    padding: 10px;
    font-size: 13px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    line-height: unset;
}

.my-tabs-toggle {
    box-sizing: border-box;
    border-radius: 8px;
    height: calc(100% - 4px);
    width: var(--width);
    background: white;
    top: 0;
    bottom: 0;
    left: var(--left);
    position: absolute;
    transition: .3s ease-in-out;
    transition-property: width, left;
    margin: auto 0;
}

.grid {
    display: grid;
}

.tabs {
    position: relative;
    margin-top: 15px;
    width: fit-content;
    padding: 2px;
    background: rgba(43, 93, 168, 0.1);
    border-radius: 10px;
}

.tabcontent {
    display: none;
    flex-flow: column;
    translate: var(--translate-x) 0;
}

#current img {
    transition: 500ms;
    width: 100%;
    height: 100%;
}

.tabcontent.active {
    transition: all 1s ease;
    display: flex;
    animation: fadeEffect 1s ease forwards;
}

#current.active {
    display: block;
    column-width: 445px;
    column-gap: 20px;
}

.current-box+.current-box {
    margin-top: 10px;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        translate: 0;
    }
}

.flex-c {
    display: flex;
    align-items: center;
}

.tabs-completed-box--text {
    margin-left: 10px;
}

.tabs-completed-box--text h3 {
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 5px;
}

.tabs-completed-box--text p {
    font-size: 13px;
    line-height: 16px;
}

.tabs-completed-box {
    transition: 500ms;
    position: relative;
    padding-block: 18px;
    border-bottom: 1px solid transparent;
    border-image: 100% 1 1 linear-gradient(90deg, transparent 90px, #e9eef6 0);
}

.tabs-completed-box--text {
    position: relative;
}

#completed {
    border-top: 1px solid rgba(43, 93, 168, 0.1);
    padding-top: 10px;
}

.jc-sb {
    margin: 15px 0px;
}

.tabs-completed-box:active * {
    color: #2b5da8;
}

#current img:active {
    filter: brightness(0.8);
}

.current-box {
    position: relative;
}

.current-btn {
    display: none;
    bottom: 30px;
    transition: 300ms;
    left: 30px;
    line-height: 14px;
    font-size: 18px;
    color: white;
    padding: 18px 68px;
    filter: drop-shadow(0px 10px 50px rgba(0, 0, 0, 0.15));
    border-radius: 30px;
    border: 1px solid white;
    margin-bottom: unset !important;
    position: absolute;
}

.current-btn:hover {
    background: white;
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.15);
    color: black;
}

a.overlay-link {
    position: absolute;
    inset: 0;
}

.tabs-completed-box img {
    width: 80px;
    aspect-ratio: 1;
}