.press-controller {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-size: 100% 100%;
  position: relative;


  &__title {
    height: 60px;
    width: 100%;
    padding: 12px 52px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding-left: constant(safe-area-inset-left);
    padding-left: env(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
    padding-right: env(safe-area-inset-right);
  }

  &__title-left {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  &__back {
    height: 100%;
    width: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  &__back-arrow {
    width: 24px;
    height: 24px;
  }

  &__title-info {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
  }

  &__title-right {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  &__tools {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    padding-left: constant(safe-area-inset-left);
    padding-left: env(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
    padding-right: env(safe-area-inset-right);
  }

  &__tools-main {
    width: 42px;
    height: 106px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .7);
    border-radius: 2px;
  }

  &__tools-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    &--sche {
      margin-bottom: 12px;
    }
  }

  &__tools-btn-icon {
    width: 28px;
    height: 28px;
  }

  &__tools-btn-text {
    color: #fff;
    font-size: 9px;
    line-height: 12px;
  }


  &__content {
    box-sizing: border-box;
    height: 40px;
    width: 100%;
    margin: 0;
    padding: 0 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, .32);
  }

  &__content-left {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  &__content-box {
    height: 100%;
    min-width: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  &__play-img {
    width: 15px;
    height: 15px;
  }

  &__content-right {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  &__content-box {
    height: 100%;
    min-width: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  &__resolution-text {
    color: #fff;
    font-size: 12px;
    margin-right: 14px;
  }

  &__full-img {
    width: 15px;
    height: 15px;
  }

  &__content.fullscreen {
    padding-left: constant(safe-area-inset-left);
    padding-left: env(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
    padding-right: env(safe-area-inset-right);
    box-sizing: border-box;
  }

  &__load {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  &__load-img {
    width: 34px;
    height: 18px;
  }

  &__load-text {
    height: 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 20px;
  }
}