
@font-face {
    font-family: 'Suisse Intl';
    font-weight: 400;
    src: url('https://selfclick.ru/css/fonts/SuisseIntl-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Suisse Intl';
    font-weight: 700;
    src: url('https://selfclick.ru/css/fonts/SuisseIntl-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Suisse Intl';
    font-weight: 500;
    src: url('https://selfclick.ru/css/fonts/SuisseIntl-Book.otf') format('opentype');
}

@font-face {
    font-family: 'TeX Gyre Bonum';
    src: url('https://selfclick.ru/css/fonts/TexgyrebonumItalic.otf') format('opentype');
}
@font-face {
    font-family: 'Cygre';
    src: url('https://selfclick.ru/css/fonts/cygre.ttf');
}


.bonum {
    font-family: 'Tex Gyre Bonum';
}
.suissed {
    font-family: 'Suisse Intl';
}

.sc-btn {
    border-style: dashed!important;
    border-color: #757373!important;
    border-width: 2px!important;
    display: inline-block;
    font-weight: 400;
    min-width: 15em;
    max-width:100%;
    /* text-transform: uppercase; */
    padding: 1em!important;
    font-weight: 900!important;
    position: relative;
    overflow: hidden;
    color: #3b3b3b;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 1rem;
    transition: color .15s
}

.sc-btn .image-iconed {
    width: auto;
    height: 1em;
    vertical-align: middle;
    margin-left: 1em;
    /* margin-right: 1em; */
    right: 3em;
    position: relative;
    margin-right: -2em;
}

/* Основной блок экрана */
.splash-screen {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding-top: calc(10vh);
    color: white;
  }
  
  /* Видео занимает всю область и центрируется */
  .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover; /* позволяет сохранить пропорции и обеспечивает адаптивное покрытие */
  }
  
  /* Полупрозрачный оверлей для лучшей читаемости текста */
  .splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 43, 0.3);
  }
  
  /* Контент располагается над видео и оверлеем */
  .splash-content {
    position: relative;
    z-index: 2;
  }
  
.logo {
    position: relative;
    z-index: 3;
    max-width: calc(90vw);
}
@media (min-width: 992px) {
    .logo {
        max-width: 600px;
    }
}
.cta-btn {
    margin-top: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 1em!important;
    /*box-shadow: 0px 4px 0px 3px #ffffff2e;    */
    min-width: 18em;
    font-weight: 900!important;
    transition: box-shadow 0.1s ease-out;
    position: relative;
    overflow: hidden;
    border:0px;
    transition-duration: 0.5s;

}

.cta-btn-group .cta-btn-inactive {
    background-color: #757373;
    color:white!important;
}

.cta-btn-group .cta-btn-active {
    border-style: dashed!important;
    border-color: #757373!important;
    border-width: 2px!important;
    color: var(--bg-dark);
}

.cta-btn-group .cta-btn{
    margin-left:0px;
    margin-right:0px;
    border-width: 0px;
    min-width:auto;
    padding-left: 1em;
    padding-right:1em;
}

.cta-btn-group .cta-btn:first-child{
    border-right: none;
}

.cta-btn-group .cta-btn:last-child{
    border-left: none;
}

.cta-btn-sm {
 padding-top:0.5em!important;
 padding-bottom:0.5em!important;
}

.cta-btn-shine {
    position: relative;
    overflow: hidden; /* Добавьте это, чтобы скрыть блеск, когда он выходит за границы кнопки */
}
.cta-btn-shine::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -120%;
    width: 250%;
    height: 250%;
    background: linear-gradient(45deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 70%);
    transform: rotate(25deg);
    animation: shine 2.5s infinite;
}
@keyframes shine {
    0% {
        top: -120%;
        left: -120%;
    }
    50% {
        top: 250%;
        left: 250%;
    }
    100% {
        top: -120%;
        left: -120%;
    }

}

.navbar {
    background: rgba(43, 43, 43, 1);
}

.navbrand-image {
    display: block;
    position: fixed;
    width: 4em;
    height: auto;
    border-radius: 4em;
    top: 0.6em;
}

@media (min-width: 992px) {
    .logo {
        max-width: 600px;
    }
    .navbar .container {
        display: flex;
        justify-content: center;
    }
    .navbar-nav {
        margin: auto;
    }
    
    .nav-item .item-icon {
        display: none;
    }

    .nav-link {
        font-size: 1em;
    }


}

@media (max-width: 992px) {

      /* Контент располагается над видео и оверлеем */
  .splash-content {
    position: relative;
    z-index: 2;
    padding-top:2em;
  }

  .splash-overlay-alt {
    display: block;
    background: rgba(0,0,0,0.6);
    
  }

  .btn-text-sm {
    font-size:12px;
  }
 
    .navbar-nav {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        height: calc(100vh);
        padding-top:3em;
    }
    .nav-item {
        padding-left: 1em;
        height: 5em;
        text-transform: uppercase;
        padding-top: 1em;
    }

    .nav-item .item-icon {
        display: inline-block;
        /* height: 1em; */
        width: 3em;
        height:auto;
        max-height: 3em;;
        margin-right: 1em;
    }
}
.decorative-image {
    position: absolute;
    width: 6em; /* Регулируйте размер */
    height: auto;
    z-index:1;
}
.decor-top-left {
    top: -2em;
    left: -3em;
}
.decor-top-right {
    top: -2em;
    right: -3em;
}
.decor-bottom-left {
    bottom: -3em;
    left: -3em;
}
.decor-bottom-right {
    bottom: -3em;
    right: -3em;
}
.decor-bottom-center {
    bottom: -3em;
    right: calc(50% - 3em);
}

.decor-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position:relative;
}

@media (max-width: 768px) {
    .decor-top-left,
    .decor-top-right {
        bottom: -20%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 1em;
    }
    
    .col-sm-margined {
        margin-top:4em;
    }
}

@media (max-width: 768px) {
    .decor-bottom-left,
    .decor-bottom-right {
        top: -10%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 1em;
    }
    
    .col-sm-margined {
        margin-top:4em;
    }
}

.image-iconed {
    width: auto;
    height: 2em;
    vertical-align: middle;
    margin-left: 1em;
    /* margin-right: 1em; */
    right: 3em;
    position: relative;
    margin-right: -2em;
}
.image-iconed-alt {
    width: auto;
    height: 1em;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    margin-right: 1em;
}


.svg-white {
    filter: invert(1);
}

.card-img-cover {
    width: 100%;
    height: 100%;
    border-radius:1rem;
    object-fit: cover;
}
.col-height-limited {
    max-height: 500px;
    display: flex;
    flex-direction: column;
}


.card-fixed {
    height: 100%;
    display: flex;
    flex-direction: column;
}


.row-equal-height {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* Растягиваем колонки на одинаковую высоту */
}

.col-equal-height {
    display: flex;
    flex-direction: column;
}

.card {
    flex: 1; /* Карточка растягивается по высоте */
    display: flex;
    flex-direction: column;
}

.card-body {
    flex-grow: 1; /* Контент внутри карточки растягивается */
}


h2.descriptor {
    font-size:medium;
    font-weight: 300;
}

/* Основной контейнер галереи */
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }
  
  /* Стилизация изображений в галерее */
  .photo-gallery .gallery-image {
    max-width: 100%;
    height: auto;
    border-radius:1rem;
    border-radius: 5px;
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  /* Эффект при наведении */
  .photo-gallery .gallery-image:hover {
    transform: scale(1.05);
  }

.order-backgrounded {

  }

  
.notify-placeholder {
    display: block;
    position: fixed;
    bottom:1em;
    right:1em;
    z-index:9999;
    height:auto;
}

.note-msg {
    margin-bottom:2em;
}


.err-msg {
    display: block;

    min-width: 300px;
    /* min-height: 100px; */
    width: auto;
    height: auto;
    background: rgba(255,0,0,0.8);
    z-index: 9999;
    right: 10px;
    padding: 10px;
    font-weight: 700;
    color: white;
    text-align: center;
}
.success-msg {
    display: block;
    min-width: 300px;
    /* min-height: 100px; */
    width: auto;
    height: auto;
    background: rgba(0,200,0,0.8);
    z-index: 9999;
    right: 10px;
    padding: 10px;
    font-weight: 700;
    color: white;
    text-align: center;
}



.notify-placeholder-alternate {
    display: block;
      position: fixed;
      top: 0px;
      left: 0px;
      z-index: 100;
      backdrop-filter: blur(4px);
      width: 100%;
      height: 100%;
      padding:2em;
      padding-top: calc(19vh);
  }
  
  .note-msg-progressbar {
    display: block;
    width: 90%;
    height: 1em;
    background-color: white;
    padding: 0px;
    position: relative;
    top: 0em;
    left: 5%;
  }
  
  .current-progress {
    display:inline-block;
    position:relative;
    padding:0px;
    background-color: #656565;
    height:0.5em;
  }
  
  .note-msg-alternate {
    display: block;
    text-align: center;
    font-weight: 700;
    color: var(--bg-dark);
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-radius: 2em 2em 0em 0em;
    padding: 1em;
    border-bottom: none;
  }
  
  .nma-head {
    display:block;
    text-align:center;
    font-weight: 700;
    color:White;
    padding-top:0.5em;
    padding-bottom:0.5em;
  }
  
  .nma-body {
   padding:1em;
   text-align:center;
   background:white;
  }
  
  .err-msg-alternate .nma-head {
    background: darkred;
  }
  .success-msg-alternate .nma-head {
    color:black;
    background: greenyellow;
  }
  .warning-msg-alternate .nma-head {
    color:black;
      background:goldenrod;
  }
  
  .btn-plc {
    display: block;
    text-align: center;
    padding: 1em;
  } 
  
  .pr-btn-close {
    display: inline-block;
    min-width: 100px;
    width: auto;
    text-align: center;
    border-radius: 2em;
    border: 1px solid black;
    padding: 0.5em;
    color: var(--bg-dark);
    background-color: white;
  }

.text-cygre {
    font-family: Cygre;
}

.page-title {
    font-size:3.5em;
    text-transform: lowercase;
}

@media (min-width: 992px) {

}

.mh-4 {
    min-height: 4em;
}

.cta-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    top: 0px;
    background-color: var(--yellow);
    border: 2px solid var(--primary);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    position: relative;
  }
  
  /* Состояние checked: показываем вашу иконку */
  .cta-checkbox:checked {
    background-image: url('/src/web/component/icons/Shape_042.png');
    background-repeat: no-repeat;
    background-position: center center;
    /* подгоняем размер галочки внутри */
    background-size: 60% 60%;
  }
  
  /* По желанию: состояние фокуса */
  .cta-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.5); /* пример с прозрачным жёлтым */
  }

  .full-width {
    width:100%;
  }

  #usecase-div  {
    /*background: url('https://cloud.selfclick.ru/direct/original/90ab8f3bc8c0d96afc033693c71e219b.jpg');
    background-repeat:fixed;
    background-size:430px;*/
  }

  .text-bold {
    font-weight: 800;
  }

  .header-select-city {
    margin-left: 1em;
    border-bottom: 2px dashed var(--dark);
    cursor: pointer;
  }

  .text-underline {
    border-bottom: 2px dashed var(--dark);
  }

  .img-navbar-icon {
    width:2em;
  }

  .navbar-toggler {
    border: 1px solid #000000 !important;
  }

/* 1) Разрешаем «выход» вложенных элементов за границы кнопки */
.cta-btn-group .btn {
    position: relative;   /* чтобы абсолютное позиционирование работало относительно этой кнопки */
    overflow: visible;    /* чтобы .price-label не обрезался */
  }
/* 2) Абсолютно позиционируем метку */
.price-label {
    position: absolute;
    top: 2.6em;
    right: -0.4em;
    box-shadow: 0px 2px 5px #2b2b2b4f;
    display: block;
    font-size: 0.75rem;
    padding: 0.2em 0.6em;
    background-color: var(--white);
    color: var(--dark);
    border-radius: 1em;
    margin: 0;
    z-index: 10;
  }

.ln-1  { /*bs5 fix*/
    line-height: 1.2em;

}
.cta-callback {
    box-shadow: 0px 4px 8px #9f9f9f5e;
}


.booking-edit-btn {
    top: -3em;
    position: relative;
}


.order-element {
    display: block;
    padding: 1em;
    background: white;
    border: 7px solid; 
    border-bottom: none;
    border-color: #e1eb4b;
}
.order-element:last-of-type {
    border-bottom: 2px dashed;
}


.order-element-title {
    display: block;
    color: var(--gray);
    font-weight: 100;
    font-size: 0.7rem;
}

.order-element-value {
    display: block;
    width:100%;
    color: var(--gray);
}



@media (max-width: 992px) {
    
    .hide-on-phone {
        display: none;
    }

    .fw-on-phone {
        width: calc(100vw - 2em);
    }

    .w100-on-phone {
        width:100%;
    }

    
    .page-title-aly {
        font-size:2.7em;
        text-transform: lowercase;
    }
}


@media (min-width: 992px) {

    .hide-on-screen {
        display: none;
    }

    
    .w100-on-screen {
        width:100%;
    }
}

.text-small {
    font-size: 0.7em;
}


.enum-block {
    font-size: 5em;
    margin-right: 0.3em;
    font-family: 'TeX Gyre Bonum';
    font-weight: bold;
    vertical-align: middle;
    padding-top: 0em;
    margin-top: 0em;
    opacity: 0.3;
    color: var(--dark);
}
 
.swiper-wrapper {
    padding-bottom:3em;
}

.social-icons-footer .social-icon img {
    max-width: 100px;
}