.ty-carousel {
  position: relative;
  overflow: hidden; }
  .ty-carousel__container {
    position: relative;
    list-style: none;
    padding: 0; }
  .ty-carousel-item {
    float: left; }
  .ty-carousel__arrow-group {
    position: absolute;
    left: 0;
    top: 0;
    list-style: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .ty-carousel__arrow-left, .ty-carousel__arrow-right {
    cursor: pointer; }
  .ty-carousel__dots-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    list-style: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .ty-carousel__dot {
    width: 20px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 3px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: width 400ms;
    transition: width 400ms; }
    .ty-carousel__dot_active {
      width: 30px;
      background-color: #fff; }
