#icetab-container {
    display: flex;
    justify-content: center;
}

.tabtab div {
    box-sizing: border-box;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
}

.icetab {
    /* border: 2px solid rgba(13, 100, 253); */
    display: inline-block;
    border-bottom: 0px;
    margin: 0px;
    /* color: #fff; */
    cursor: pointer;
    border-right: 0px;
}

.icetab:first-child {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.icetab:last-child {
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

#icetab-content {
    overflow: hidden;
    position: relative;
    /* border-top: 4px solid rgba(13, 100, 253); */
    /* border-radius: 10px; */
    /*  border-bottom: 4px solid rgba(13, 100, 253); */
}

.tabcontent {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    border-top: 0px;
    transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
}

.tabcontent:first-child {
    position: relative;
}

.tabcontent.tab-active {
    border-top: 0px;
    display: block;
    transform: translateY(0%);
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
}

.codepen-container {
    margin-left: auto;
    margin-right: auto;
}

.tabcontent {
    padding: 60px 0 0 0;
}

.icetab {
    text-align: center;
    text-transform: uppercase;
    padding: 5px;
    background: var(--accent);
}
.icetab .elem {
    color: var(--bs-gray-600);
    background: var(--accent);
    transition: background 0.6s ease-in-out;
}
.current-tab {
}
.current-tab .elem {
    background-color: #fff;
    color: var(--bs-primary);
}
ul.service-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul.service-list li {
    padding: 0.1rem 0;
}
/* @media (max-width: 768px) {
    .icetab {
        min-width: 170px;
        padding: 10px 0;
    }
} */
