/* ОБЩИЕ СТИЛИ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: 'Montserrat', sans-serif !important;
  color: #fff;
}

:root {
  --custom-black: #182A2E;
  --custom-dark: #355A62;
  --custom-green: #007093;
  --custom-lightgreen: #13BDDD;
}

.bg-custom-black {
  background: var(--custom-black);
}

.bg-custom-dark {
  background: var(--custom-dark);
}

.bg-custom-green {
  background: var(--custom-green);
}

.bg-custom-lightgreen {
  background: var(--custom-lightgreen);
}

.bg-custom-gradient {
  background: linear-gradient(93.38deg, rgba(16, 186, 219, 0) 43.14%, #10BADB 98.82%);
}

.text-custom-black {
  color: var(--custom-black);
}

.text-custom-lightgreen {
  color: var(--custom-lightgreen);
}

.text-custom-green {
  color: var(--custom-green);
}

.border-custom-lightgreen {
  border: 2px solid var(--custom-lightgreen);
  box-shadow: 0px 2px 7px 0px var(--custom-lightgreen);
}

.font-weight-900 {
  font-weight: 900;
}

@media all and (min-width: 768px) {
  .h1-md-xxl {
    font-size: 48px !important;
  }
}

.btn-custom-lightgreen {
  color: #fff;
  background: var(--custom-lightgreen);
  border: 2px solid var(--custom-lightgreen);
  padding: 0.75rem 2rem;
  transition: 0.2s ease;
}

.btn-custom-lightgreen:hover,
.btn-custom-lightgreen:focus {
  color: #fff;
  background: #11aac6;
  border: 2px solid #11aac6;
}

.btn-custom-outline {
  color: var(--custom-lightgreen);
  background: transparent;
  border: 2px solid var(--custom-lightgreen);
  box-shadow: 0px 2px 7px 0px var(--custom-lightgreen);
  padding: 0.75rem 2rem;
  transition: 0.2s ease;
}

.btn-custom-outline:hover,
.btn-custom-outline:focus {
  color: #11aac6;
  background: transparent;
  border: 2px solid #11aac6;
  box-shadow: 0px 2px 7px 0px #11aac6;
}

.btn-custom-white {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  padding: 0.75rem 2rem;
  transition: 0.2s ease;
}

.btn-custom-white:hover,
.btn-custom-white:focus {
  color: var(--custom-lightgreen);
  background: transparent;
  border: 2px solid var(--custom-lightgreen);
}

.link-custom-lightgreen {
  color: var(--custom-lightgreen);
  transition: 0.2s ease;
}

.link-custom-lightgreen:hover,
.link-custom-lightgreen:focus {
  color: #11aac6;
}

.link-custom-white {
  color: #fff;
  transition: 0.2s ease;
}

.link-custom-white:hover,
.link-custom-white:focus {
  color: var(--custom-lightgreen);
}

.link-custom-underline {
  text-decoration: underline;
}

.link-custom-underline:hover {
  text-decoration: none;
}

.nav-link-custom {
  color: #fff !important;
  background: var(--custom-green);
  transition: 0.2s ease;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--custom-black) !important;
  background: var(--custom-lightgreen) !important;
}

.tab-custom-outline {
  color: #fff;
  background: transparent;
  border: 2px solid var(--custom-lightgreen);
  box-shadow: 0px 2px 7px 0px var(--custom-lightgreen);
  padding: 0.75rem 2rem;
  transition: 0.2s ease;
}

.tab-custom-outline:hover,
.tab-custom-outline:focus,
.tab-custom-outline.active {
  color: #fff;
  background: var(--custom-lightgreen);
}

.custom-breadcrumb-item+.custom-breadcrumb-item::before {
  font-family: AstralIcon;
  font-size: 0.75rem;
  float: left;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  color: var(--custom-lightgreen);
  content: "\e9e0";
  line-height: 2.25;
}

.custom-underline {
  position: relative;
  display: inline-block
}

.custom-underline:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  border-bottom: 2px solid var(--custom-lightgreen);
}

.custom-underline-white {
  position: relative;
}

.custom-underline-white:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  border-bottom: 1px solid #fff;
}

.list-custom li::marker {
  color: var(--custom-lightgreen);
}

/* ГЛАВНАЯ СТРАНИЦА */

.features-scroll {
  overflow-y: scroll;
  height: 580px;
}

@media all and (min-width: 768px) {
  .features-scroll {
    height: 400px;
  }
}

.features-scroll::-webkit-scrollbar {
  width: 16px;
}

/* Track */
.features-scroll::-webkit-scrollbar-track {
  background: var(--custom-black);
  border: 2px solid var(--custom-dark);
  outline: 2px solid var(--custom-black);
  border-radius: 30px;
}

/* Handle */
.features-scroll::-webkit-scrollbar-thumb {
  background: var(--custom-dark);
  border-radius: 30px;
  transition: 0.2s ease
}

/* Handle on hover */
.features-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--custom-green);
}

.tarif-card {
  border: 2px solid var(--custom-lightgreen);
}

.faq-link {
  color: #fff;
  border-bottom: 2px solid var(--custom-lightgreen);
  transition: 0.2s ease;
}

.faq-link:hover {
  color: var(--custom-lightgreen) !important;
}

/* ФОС */

form[name="FEEDBACK"] input.form-control {
  color: var(--custom-dark);
  border: 2px solid var(--custom-lightgreen);
  outline: none;
  box-shadow: 0px 2px 7px 0px var(--custom-lightgreen);
  padding: 0.75rem 2rem;
  transition: 0.2s ease;
}

form[name="FEEDBACK"] input.form-control:hover,
form[name="FEEDBACK"] input.form-control:focus {
  color: var(--custom-dark);
  border: 2px solid #11aac6;
  box-shadow: 0px 2px 7px 0px #11aac6;
  outline: none;
}

form[name="FEEDBACK"] input.form-control::placeholder {
  color: var(--custom-lightgreen);
  opacity: 1;
}

form[name="FEEDBACK"] input.form-control::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: var(--custom-lightgreen);
}

form[name="FEEDBACK"] button[type="submit"] {
  color: #fff;
  background: var(--custom-lightgreen);
  border: 2px solid var(--custom-lightgreen);
  padding: 0.75rem 2rem;
  transition: 0.2s ease;
}

form[name="FEEDBACK"] button[type="submit"]:hover,
form[name="FEEDBACK"] button[type="submit"]:focus {
  border-radius: 50rem;
  color: #fff;
  background: #11aac6;
  border: 2px solid #11aac6;
}

/* СТРАНИЦА ТАРИФЫ */
.etp-radio .custom-control-label::before {
  background-color: transparent;
  border: 2px solid #fff !important
}

.etp-radio .custom-control-label::after {
  background: transparent !important;
}

.collapse-arrow[aria-expanded="true"] .fa-angle-right-b {
  transform: rotate(90deg);
}

/* СТРАНИЦА ПЛОЩАДКИ - РАЗВОДЯЩАЯ */

.services-table>* {
  flex: 0 0 50%;
  text-decoration: underline;
}

@media all and (min-width: 992px) {
  .services-table>* {
    flex: 0 0 33.33%;
  }
}

/* СТРАНИЦА ВОЗМОЖНОСТИ */

.bg-options-1 {
  background: url(<?=SITE_TEMPLATE_PATH?>'/assets/images/options-1.webp') right bottom no-repeat;
}

.bg-options-2 {
  background: url(<?=SITE_TEMPLATE_PATH?>'/assets/images/options-2.webp') right bottom no-repeat;
}

.bg-options-3 {
  background: url(<?=SITE_TEMPLATE_PATH?>'/assets/images/options-3.webp') right bottom no-repeat;
}

@media all and (max-width: 768px) {
  .bg-options-1,
  .bg-options-2,
  .bg-options-3 {
    min-height: 500px;
    background-size: auto 22%;
  }}

@media all and (min-width: 768px) {
  .bg-options-1,
  .bg-options-2,
  .bg-options-3 {
    min-height: auto !important;
    background-size: auto 40%;
  }}

@media all and (min-width: 992px) {
  .bg-options-1,
  .bg-options-2,
  .bg-options-3 {
    min-height: auto !important;
    background-size: auto 80%;
  }
}

/* СТРАНИЦА ТЕХПОДДЕРЖКА */

.bg-support-call {
  background: url('/local/templates/1c-etp/assets/images/support-call.svg') right bottom no-repeat;
}

.bg-support-mail {
  background: url(<?=SITE_TEMPLATE_PATH?>'/assets/images/support-mail.svg') right bottom no-repeat;
}

.bg-support-tg {
  background: url(<?=SITE_TEMPLATE_PATH?>'/assets/images/support-tg.svg') right bottom no-repeat;
}

.bg-support-1c {
  background: url(<?=SITE_TEMPLATE_PATH?>'/assets/images/support-1c.svg') right bottom no-repeat;
}

.bg-support-call,
.bg-support-mail,
.bg-support-tg,
.bg-support-1c {
  background-size: auto 70%;
}

@media all and (min-width: 576px) {
  .bg-support-call,
  .bg-support-mail,
  .bg-support-tg,
  .bg-support-1c {
    background-size: auto 90%;
  }
}

/* СТРАНИЦА ДОКУМЕНТАЦИЯ */

.video-box {
  background: url('local/templates/1c-etp/assets/images/video.png') center / cover no-repeat;
  cursor: pointer;
  height: 343px;
}

.video-grad {
  transition: background-color .2s;
  cursor: pointer;
}

.video-grad:hover {
  background-color: rgba(255,255,255,0.1);
}

.video-grad .video-icon-wrap {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
}

.video-icon {
  width: 50px;
  height: 50px;
}