/* Import Google font - Poppins */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}*/
.container {
    display: flex;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60vh;
/*    background: #1b1e24;
*/}
.wrapper {
  padding: 35px;
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
  background-color: transparent;
  border-radius: 13px;
}
/*.wrapper .icon {
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  display: flex;
  align-items: center;
}
.icon:first-child {
  left: 0;
  display: none;
  background: linear-gradient(90deg, #fff 70%, transparent);
}
.icon:last-child {
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(-90deg, #fff 70%, transparent);
}*/
/*.icon i {
  width: 55px;
  height: 55px;
  cursor: pointer;
  font-size: 1.2rem;
  text-align: center;
  line-height: 55px;
  border-radius: 50%;
}
.icon i:hover {
  background: #efedfb;
}
.icon:first-child i {
  margin-left: 15px;
} 
.icon:last-child i {
  margin-right: 15px;
}*/
.wrapper .tabs-box {
    display: flex;
    gap: 22px;
    list-style: none;
    overflow-x: hidden;
/*    scroll-behavior: smooth;
*/    background-color: transparent;
}
/*.tabs-box.dragging {
  scroll-behavior: auto;
  cursor: grab;
}
*/

.tabs-box .tab {
    cursor: pointer;
    font-size: 1.18rem;
    white-space: nowrap;
    background-color: transparent;
    padding: 13px 20px;
    border-radius: 5px;
    border: 2px solid #d03940;
    color: #d03940;
    font-weight: 900;
}
    .tabs-box .tab:hover {
        cursor: pointer;
        font-size: 1.18rem;
        white-space: nowrap;
        background-color: #d03940;
        padding: 13px 20px;
        border-radius: 5px;
        border: 2px solid darkred;
        color: #ffffff;
        font-weight: 900;
    }
/*.tabs-box.dragging .tab {
  user-select: none;
  pointer-events: none;
}
 .tabs-box .tab.active {
    color: #fff; 
     background: red;
    border-color: transparent;
} */