.switch {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 25px;
}

.switch>span {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    width: auto;
    text-align: center;
    padding: 0 10px；
    box-sizing: border-box;
}

input.check-toggle-round-flat:checked~.off {
    color: #3d3b3b;
}

input.check-toggle-round-flat:checked~.on {
    color: #fff;
}

.switch>span.on {
    left: 18px;
    color: #3d3b3b;
}

.switch>span.off {
    right: 8px;
    color: #fff;
}

.check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.check-toggle+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input.check-toggle-round-flat+label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
    width: 90px;
    height: 25px;
    background-color: #3d3b3b;
    border-radius: 60px;
    cursor: pointer;
}

input.check-toggle-round-flat+label:before,
input.check-toggle-round-flat+label:after {
    display: block;
    position: absolute;
    content: "";
}

input.check-toggle-round-flat+label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: #3d3b3b;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
}

input.check-toggle-round-flat+label:after {
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 45px;
    background-color: #fff;
    border-radius: 52px;
    transition: margin 0.2s;
}

input.check-toggle-round-flat:checked+label:after {
    margin-left: 43px;
}

.lang-content {
    display: none;
}

.lang-content[data-lang="en"] {
    display: block;
}

@media (min-width: 992px) {
    .col-4.col-5-large {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .switch {
      margin-top: 20px;
      margin-left: 0 !important;
    }
  }