@import "instance";
@import "components/buttons";
@import "components/pro_jersey";

.main_container {
    min-height: 100vh;
    padding: 0;

    .pro_jersey {
      @include center-flex-column;
      min-height: 100vh;
      padding: 20px 0;

      .container_pro_jersey {
        @include position();
      }

      .btn_fed {
        display: block;
      }

      .btn_fed_prev,
      .btn_fed_next {
        @include btn_controls;
        @include whs(35px);
        border: $bd2;
        bottom: 10px;
        position: absolute;
        top: auto;

        @include brp($b6) {
          bottom: 0;
        }

        &::before {
          @include wh(7px, 20px);
        }
      }

      .btn_fed_prev {
        left: calc(50% - 160px);
      }

      .btn_fed_next {
        left: auto;
        right: calc(50% - 160px);
      }
    }
}