

/* Start:/support/style.css?17852406713775*/
.support-table {
   width: 100%;
   background-color: #fff;
   font-family: 'Open Sans', sans-serif;
   color: #313131;
   margin-top: 40px;
   margin-bottom: 40px;
   position: relative;
}

.st-header {
   display: flex;
   align-items: stretch;
   gap: 10%;
   position: sticky;
   -webkit-position: sticky;
   top: 0;
   z-index: 20;
   background: #fff;
}

.st-col-params {
   flex: 0 0 35%;
   padding: 20px;
   text-align: left;
   font-weight: 700;
   font-size: 16px;
   box-sizing: border-box;
   border-bottom: 1px solid #e5e5e5;
   display: flex;
   flex-direction: column;
   justify-content: center;
   position: relative;
   z-index: 2; 
}

.st-col-params--head {
   text-transform: uppercase;
   color: #8B9195;
   text-align: center;
   justify-content: flex-end;
   font-size: 16px;
   border-bottom: 1px solid #e5e5e5;
   display: flex;
   flex-direction: column;
}

.st-col-params--foot {
   font-weight: 400;
   color: #313131;
   border-bottom: none;
}

.st-row--foot .st-value {
   border-bottom: none;
}

.st-col-values {
   flex: 1;
   display: flex;
   overflow: hidden;
}

.st-col-values__inner {
   display: flex;
   width: 100%;
}

.st-value {
   flex: 1;
   padding: 20px;
   text-align: center;
   font-size: 15px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   box-sizing: border-box;
   border-bottom: 1px solid #e5e5e5;
}

.st-value--head {
   text-transform: uppercase;
   color: #8B9195;
   font-size: 16px;
}

.st-red-line {
   display: block;
   margin-top: 10px;
   width: 100%;
   max-width: 80px;
}

.st-row {
   display: flex;
   align-items: stretch;
   gap: 10%;
}

.st-sublist {
   margin: 15px 0 0 20px;
   padding: 0;
   list-style: disc;
   font-weight: 700;
   font-size: 16px;
   color: #313131;
   text-align: left;
}
.st-value:has(.st-reaction) {
   justify-content: flex-end;
}
.st-reaction {
   margin: 0;
   line-height: 1.5;
   font-weight: 400;
}

.st-indicators {
   display: none;
   justify-content: center;
   gap: 10px;
   padding: 16px 0;
   background: #fff;
}

.st-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   border: none;
   background: #cbced2;
   cursor: pointer;
   padding: 0;
   transition: all 0.3s ease;
}

.st-dot--active {
   background: #cc2b24;
   transform: scale(1.3);
}

@media (max-width: 768px) {
   .support-table {
      margin-top: 20px;
      margin-bottom: 20px;
      height: 70vh;
      overflow-y: auto;
   }
   .st-value--head img {
      width: 32px;
   }
   .st-header,
   .st-row {
      gap: 0;
   }

   .st-indicators {
      display: flex;
   }

   .st-col-params {
      flex: 0 0 45%;
      padding: 15px 12px 15px 0;
      font-size: 13px;
      font-weight: 600;
      line-height: 1.4;
      background: #fff;
   }

   .st-col-params--head {
      font-size: 12px;
      padding: 12px;
   }

   .st-col-params--foot {
      font-weight: 400;
      padding: 12px;
   }

   .st-col-values {
      overflow: hidden;
      touch-action: pan-y;
   }

   .st-col-values__inner {
      display: flex;
      transform: translateX(calc(var(--st-index, 0) * -100% + var(--st-drag, 0px)));
      transition: transform 0.3s ease;
      will-change: transform;
   }

   .support-table.st-dragging .st-col-values__inner {
      transition: none;
   }

   .st-value {
      flex: 0 0 100%; 
      width: 100%;
      padding: 15px 10px;
      font-size: 13px;
      border-left: 1px solid #e5e5e5;
      box-sizing: border-box;
   }

   .st-value--head {
      font-size: 12px;
   }

   .st-sublist {
      margin-left: 15px;
      font-size: 12px;
   }

   .st-row--foot .st-value {
      padding: 12px 10px;
   }

   .support-level2__link.btn {
      width: 115px;
      height: 45px;
      font-size: 12px;
   }
}
/* End */


/* Start:/bitrix/templates/reddatabase/components/bitrix/form/request/bitrix/form.result.new/.default/style.css?17069527032000*/
.request-form .errors {
	margin-bottom: 25px;
}

.request-form input[type="checkbox"] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	width: auto;
}

.request-form input[type="checkbox"] + label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #8b9195;
	font-weight: 600;
}

.request-form input[type="checkbox"] + label:before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	border: 1px solid #bbb;
	border-radius: 0.25em;
	margin-right: 0.5em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
}

.request-form input[type="checkbox"]:not(:disabled):not(:checked) + label:hover:before {
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.request-form input[type="checkbox"]:not(:disabled):active + label:before {
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.request-form input[type="checkbox"]:focus + label:before {
	box-shadow: 0 0 0 0.2rem rgba(232, 76, 61, 0.25);
}

.request-form input[type="checkbox"]:focus:not(:checked) + label:before {
	opacity: 0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.request-form input[type="checkbox"]:checked + label:before {
	border-color: #cc2b24;
	background-color: #cc2b24;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.request-form input[type="checkbox"]:disabled + label:before {
	background-color: #e9ecef;
}

.client-name
{
	display: none;
}
/* End */
/* /support/style.css?17852406713775 */
/* /bitrix/templates/reddatabase/components/bitrix/form/request/bitrix/form.result.new/.default/style.css?17069527032000 */
