* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Bit Cell";
  src: url("../../fonts/BitCell-Regular.woff2") format("woff2"),
    url("../../fonts/BitCell-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.broconf {
  height: 120px;
  display: flex;
  align-items: center;
  background: #f3f4ff;
  font-family: "Bit Cell", sans-serif;
  color: #060606;
  position: relative;
    z-index: 9999;
}

.broconf .container {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 70px;
  max-width: 1035px;
  padding: 0 10px;
  margin: 0 auto;
}

.broconf-info {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 46px;
  text-transform: uppercase;
  line-height: 0.7;
}

.broconf-info:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 24px;
  background: url("../../images/icon-left.png") no-repeat center center / contain;
  right: calc(100% + 15px);
  top: 7px;
}

.broconf-info:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 25px;
  background: url("../../images/icon-right.png") no-repeat center center / contain;
  left: calc(100% + -1px);
  bottom: 1px;
}

.broconf-info img {
}

.broconf-logo {
  display: flex;
  object-fit: contain;
  margin: 2px auto 0;
}

.broconf-timer {
  padding: 1px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 288px;
}

.timer-col {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  text-align: center;
}

.timer-col span {
  background: #000;
  height: 50px;
  border-radius: 3px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 57px;
  text-align: center;
  line-height: 1;
}

.timer-col p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  font-size: 24px;
}

.broconf-nav {
  width: 296px;
  padding-top: 3px;
  padding-right: 4px;
  position: relative;
}

.broconf-btn {
  width: 100%;
  height: 40px;
  display: flex;
  position: relative;
  font-size: 36px;

  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.broconf-btn span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  position: relative;
  z-index: 1;
  gap: 8px;
}

.broconf-btn::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -3px;
  width: 100%;
  height: 100%;
  background: #ffa200;
}

.broconf-btn::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 100%;
  height: 100%;
  background: #f92d00;
}

.broconf-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "Bit Cell", sans-serif;
  font-size: 23px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.broconf-volume img {
  width: 12px;
}

@media (max-width: 950px) {
  .broconf {
    height: 60px;
  }

  .broconf .container {
    height: 100%;
  }
  .broconf-nav {
    display: none;
  }

  .broconf-info {
    left: auto;
    transform: translate(0, 0);
    font-size: 26px;
    right: 23px;
    top: 9px;
  }
  .broconf-logo {
    width: 108px;
  }

  .broconf-timer {
    width: 168px;
    gap: 12px;
    padding: 10px 0 0 0;
  }
  .timer-col span {
    height: 30px;
    font-size: 34px;
  }
  .timer-col p {
    bottom: 4px;
  }
  .broconf-info:after {
    width: 23px;
    height: 14px;
    left: calc(100% + -14px);
  }
  .broconf-info:before {
    width: 27px;
    height: 14px;
    right: calc(100% + -14px);
    top: 23px;
  }
}


@media (max-width: 370px) {
  .broconf-timer {
    width: 138px;
    gap: 6px;
  }
  .timer-col span {
    font-size: 28px;

  }
  .broconf-info {
    right: 14px;
  }
}